@charset "UTF-8";
/*======================================
    Font size
======================================*/
/*======================================
    color
======================================*/
/*======================================
    font
======================================*/
@font-face {
  font-family: "DIN Condensed Bold.ttf";
  src: url(../fonts/DIN\ Condensed\ Bold.ttf);
  font-weight: 700;
}
/*======================================
    common
======================================*/
html {
  font-size: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

body {
  background-color: #fff;
}

img {
  width: 100%;
}

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

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
@media screen and (max-width: 768px) {
  br.is_pc {
    display: none;
  }
}

br.is_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  br.is_sp {
    display: block;
  }
}

.text_white {
  color: #fff;
}

.text_center {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sp_hide {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .pc_hide {
    display: none !important;
  }
}

/*======================================
    layout
======================================*/
.container {
  overflow: hidden;
}

.inner {
  max-width: 67.5rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 85.3%;
    max-width: 31.25rem;
  }
}

.inner_s {
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .inner_s {
    max-width: 31.25rem;
  }
}

.inner_m {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .inner_m {
    max-width: 31.25rem;
  }
}

/*======================================
    background
======================================*/
.bg_green {
  padding-top: 18.75rem;
  background-color: #00a440;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .bg_green {
    padding-top: 5.75rem;
  }
}
.bg_green::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24.25rem;
  background-image: url(../img/common/bg_green.png);
  background-repeat: repeat-x;
  background-size: 125rem 31.25rem;
  background-position: 40.5% top;
  background-color: #fff;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .bg_green::before {
    background-image: url(../img/common/bg_green_sp.png);
    background-size: 48rem 175.875rem;
    background-position: 50% top;
  }
}

.bg_black {
  padding-top: 18.75rem;
  background-color: #000;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .bg_black {
    padding-top: 6rem;
  }
}
.bg_black::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18.75rem;
  background-image: url(../img/common/bg_black.png);
  background-repeat: repeat-x;
  background-size: 124.125rem 30.25rem;
  background-position: 40% top;
  background-color: #00a440;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .bg_black::before {
    background-image: url(../img/common/bg_black_sp.png);
    background-size: 48rem 186.375rem;
    background-position: 50% top;
  }
}

/*======================================
    section
======================================*/
.section_ttl {
  text-align: center;
}
.section_ttl h2 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.235em;
  font-feature-settings: "palt";
  line-height: 1.9333333333;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .section_ttl h2 {
    font-size: 0.8125rem;
    letter-spacing: 0.215em;
    margin-top: 0.375rem;
  }
}
.section_ttl p {
  font-size: 1.75rem;
}
@media screen and (max-width: 768px) {
  .section_ttl p {
    font-size: 1.125rem;
  }
}
.section_ttl p img {
  height: 1em;
  width: auto;
}

/*======================================
    button
======================================*/
.button_more {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 10.375rem;
  height: 3rem;
  background-color: #000;
  color: #fff;
  padding-top: 0.1em;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .button_more {
    max-width: 10rem;
    height: 2.875rem;
  }
}
.button_more:hover {
  opacity: 0.7;
}
.button_more:hover .more::before {
  transform: translate(140%, -100%);
}
.button_more .more {
  font-size: 1.375rem;
  font-weight: 700;
  font-family: "DIN Condensed", sans-serif;
  letter-spacing: 0.13em;
  font-feature-settings: "palt";
  position: relative;
}
.button_more .more::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(120%, -100%);
  width: 1.32em;
  aspect-ratio: 29/7;
  background: url(../img/top/icon_arrow_more.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .button_more .more::before {
    width: 1em;
  }
}

/*======================================
    header
======================================*/
.header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 4rem;
    background-color: #fff;
  }
}

.h_logo_wrap {
  background-color: #ededed;
  display: flex;
  align-items: center;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .h_logo_wrap {
    flex: 1;
  }
}
@media screen and (max-width: 1024px) {
  .h_logo_wrap {
    width: 85.3%;
    margin-left: auto;
    margin-right: auto;
  }
}

.h_logo {
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 29.6875rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .h_logo {
    max-width: 15.25rem;
  }
}
.h_logo a {
  display: block;
  max-width: 20.125rem;
  width: 68%;
}
@media screen and (max-width: 1024px) {
  .h_logo a {
    width: 100%;
  }
}

.h_nav {
  width: 67.5%;
  max-width: 62.5rem;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .h_nav {
    width: 100%;
    position: fixed;
    top: 4rem;
    left: 0;
    z-index: 200;
    height: calc(100vh - 4rem);
    background-color: #000;
    overflow: auto;
    padding: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(105%);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
  .h_nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}

.h_items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 0.1875rem;
}
@media screen and (max-width: 768px) {
  .h_items {
    display: flex;
    flex-direction: column;
  }
}

.h_item_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 0.8125rem;
  height: 6.25rem;
  letter-spacing: 0.075em;
  line-height: 2.2307692308;
  background-color: #000;
  color: #fff;
  transition: background-color 0.3s ease;
}
.h_item_link:hover {
  background-color: #00a440;
}
.h_item_link.active {
  background-color: #00a440;
}
.h_item_link .en {
  font-family: "DIN Condensed", sans-serif;
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.13em;
  font-feature-settings: "palt";
  line-height: 1;
}

/*======================================
    drawer
======================================*/
.d_icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 4rem;
  aspect-ratio: 1/1;
  background-color: #000;
  color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 400;
}
.d_icon.active .d_icon_bars .bar.bar1, .d_icon.active .d_icon_bars .bar.bar2 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
}
.d_icon.active .d_icon_bars .bar.bar3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
}
@media screen and (min-width: 1025px) {
  .d_icon {
    display: none;
  }
}

.d_icon_bars {
  width: 2rem;
  height: 0.875rem;
  position: relative;
}
.d_icon_bars .bar {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 0.0625rem;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.d_icon_bars .bar.bar1 {
  top: 0;
}
.d_icon_bars .bar.bar2 {
  top: 50%;
}
.d_icon_bars .bar.bar3 {
  top: 100%;
}

.d_icon_menu {
  font-size: 0.9375rem;
  font-family: "DIN Condensed", sans-serif;
  letter-spacing: 0.13em;
  font-feature-settings: "palt";
  margin-top: 0.5rem;
}

/*======================================
    footer
======================================*/
.footer {
  background-color: #000;
  color: #fff;
  padding: 4.375rem 0 8.75rem;
}
.footer.f_bg_mountain {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .footer.f_bg_mountain.f_recruit::before, .footer.f_bg_mountain.f_recruit::after {
    display: none;
  }
}
.footer.f_bg_mountain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18.75rem;
  background-image: url(../img/common/bg_footer_green.png);
  background-image: url(../img/common/bg_footer.png);
  background-repeat: repeat-x;
  background-size: 125rem 31.25rem;
  background-position: center top;
  z-index: -2;
  transform: translateY(-75%);
}
@media screen and (max-width: 768px) {
  .footer.f_bg_mountain::before {
    background-image: url(../img/common/bg_green_sp.png);
    background-size: 48rem 175.875rem;
    background-position: 50% top;
    transform: translateY(-6.25rem);
    height: 12.5rem;
  }
}
.footer.f_bg_mountain::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18.75rem;
  background-repeat: repeat-x;
  background-position: center top;
  z-index: -1;
  background-image: url(../img/common/bg_black.png);
  background-size: 125rem 31.25rem;
  transform: translateY(-75%);
}
@media screen and (min-width: 769px) {
  .footer.f_bg_mountain::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .footer.f_bg_mountain::after {
    background-image: url(../img/common/bg_black_sp.png);
    background-size: 48rem 186.375rem;
    transform: translateY(-4.375rem);
  }
}
.footer.f_bg_mountain.f_black_mountain::before {
  display: none;
}
.footer.f_bg_mountain.f_black_mountain::after {
  display: block;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 1.875rem 0 2.5rem;
    display: flex;
    flex-direction: column;
  }
  .footer.f_page .inner {
    display: flex;
    flex-direction: column;
  }
  .footer.f_page .f_company {
    order: 2;
  }
  .footer.f_page .f_body {
    order: 2;
    margin-top: 0;
  }
  .footer.f_page .f_logo {
    margin-bottom: 0.625rem;
  }
  .footer.f_page .f_company_text {
    line-height: 1.7857142857;
  }
  .footer.f_page .f_contact_sp {
    order: 1;
    margin-top: 0;
  }
  .footer.f_page .f_links {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.25rem;
    order: 3;
    margin-top: 1.25rem;
  }
  .footer.f_page .f_links .f_link {
    height: 3.625rem;
  }
  .footer.f_page .f_links .f_link .f_link_head {
    font-size: 1.25rem;
  }
  .footer.f_page .f_links .f_link .f_link_head .logo {
    width: 1.875rem;
  }
  .footer.f_page .f_links .f_link .f_link_head .logo.-youtube {
    width: 2rem;
  }
  .footer.f_page .f_links .f_link .f_link_text {
    display: none;
  }
  .footer.f_page .f_icon_top {
    order: 4;
    max-width: 5.375rem;
    margin: 1.25rem auto;
  }
  .footer.f_page .copyright {
    order: 5;
    margin-top: 0;
  }
}

.f_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .f_head {
    display: contents;
  }
}

.f_links {
  max-width: 46.125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.125rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .f_links {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
    order: 1;
  }
}

.f_link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #00a440;
  height: 6.75rem;
  border: 0.125rem solid #00a440;
  transition: background-color 0.3s ease;
}
.f_link:hover {
  background-color: #fff;
}

.f_link_head {
  font-size: 2.1875rem;
  font-family: "DIN Condensed", sans-serif;
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}
.f_link_head .logo {
  display: inline-block;
  width: 2.1875rem;
}
.f_link_head .logo.-youtube {
  width: 2.375rem;
}

.f_link_text {
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.75;
  letter-spacing: 0.16em;
  margin-top: 0.625rem;
  font-feature-settings: "palt";
}

.f_icon_top {
  display: block;
  max-width: 10.4375rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .f_icon_top {
    order: 3;
    width: 8.5rem;
    margin: 1.875rem auto 1.25rem;
  }
}
.f_icon_top:hover, .f_icon_top:focus {
  transform: scale(1.05);
}

.f_body {
  margin-top: 2.5rem;
  display: flex;
  align-items: flex-end;
  column-gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .f_body {
    margin-top: 1.25rem;
    display: block;
  }
}

.f_company {
  flex: 1;
}

.f_logo {
  display: block;
  max-width: 25.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .f_logo {
    max-width: 17.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.f_company_text {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .f_company_text {
    text-align: center;
    font-size: 0.875rem;
    font-feature-settings: "palt";
  }
}
.f_company_text a {
  font-weight: inherit;
}

.f_nav_links {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-auto-flow: column;
  column-gap: 3.125rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .f_nav_links {
    display: none;
  }
}

.f_nav_link a {
  display: inline-block;
  line-height: 2.5;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.235em;
  font-feature-settings: "palt";
  position: relative;
}
.f_nav_link a::before {
  content: "";
  position: absolute;
  bottom: 0.4em;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: #fff;
  transform: translateY(0.1em);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.f_nav_link a:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.copyright {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .copyright {
    margin-top: 1.25rem;
  }
}
.copyright small {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  font-feature-settings: "palt";
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .copyright small {
    font-size: 0.8125rem;
    letter-spacing: normal;
    white-space: nowrap;
  }
}

.f_contact_sp {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  margin: 3.125rem 0 1.875rem;
}
@media screen and (min-width: 769px) {
  .f_contact_sp {
    display: none;
  }
}

.f_contact_button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #ff7900;
  color: #fff;
  height: 6.25rem;
  clip-path: polygon(0.9375rem 0%, 100% 0, 100% 0.9375rem, 100% calc(100% - 0.9375rem), calc(100% - 0.9375rem) 100%, 0.9375rem 100%, 0 100%, 0% 0.9375rem);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1.4615384615;
  font-weight: 700;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.f_contact_button:hover {
  background-color: #fff;
  color: #ff7900;
}
.f_contact_button .en {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: "DIN Condensed", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .f_contact_button .en {
    letter-spacing: 0.13em;
  }
}
.f_contact_button .tel {
  padding-left: 3.75rem;
  position: relative;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt";
  text-align: center;
}
.f_contact_button .tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3.125rem;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_tel.svg) no-repeat center/contain;
}
.f_contact_button .num {
  font-size: 1.9375rem;
  font-family: "DIN Condensed", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
}

.f_contact_text {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 2.25;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}

/*======================================
    page
======================================*/
.page {
  padding-top: 11.25rem;
}
@media screen and (max-width: 768px) {
  .page {
    padding-top: 6.25rem;
  }
}

.p_title {
  text-align: center;
}
.p_title p {
  font-size: 2.125rem;
}
@media screen and (max-width: 768px) {
  .p_title p {
    font-size: 1.0625rem;
  }
}
.p_title p img {
  width: auto;
  height: 1em;
}
.p_title h1,
.p_title h2,
.p_title p.p_title_jp {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.235em;
  font-feature-settings: "palt";
  line-height: 2;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p_title h1,
  .p_title h2,
  .p_title p.p_title_jp {
    font-size: 0.8125rem;
    margin-top: 0.25rem;
  }
}

.p-section_ttl {
  text-align: center;
}
.p-section_ttl h2 {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.380952381;
  letter-spacing: 0.235em;
  font-feature-settings: "palt";
}
.p-section_ttl p {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "DIN Condensed", sans-serif;
  letter-spacing: 0.13em;
  font-feature-settings: "palt";
  line-height: 1.7777777778;
}

.c_contact_button {
  max-width: 32.6875rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 9.375rem;
}
@media screen and (max-width: 768px) {
  .c_contact_button {
    display: none;
  }
  .c_contact_button .pc_contact_button {
    height: 5.9375rem;
  }
  .c_contact_button .pc_contact_button span.en {
    font-size: 1.875rem;
    line-height: 1;
  }
  .c_contact_button.show {
    display: block;
    width: 100%;
    margin-top: 4.375rem;
  }
}

/*======================================
    company
======================================*/
.p-message {
  max-width: 92.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-message {
    margin-top: 1.25rem;
  }
}

.p-message_inner {
  max-width: 80rem;
  display: grid;
  grid-template-columns: 52.34% auto;
  column-gap: 3rem;
}
@media screen and (min-width: 769px) {
  .p-message_inner {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .p-message_inner {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width: 769px) {
  .p-message_intro {
    padding-top: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .p-message_intro {
    display: contents;
  }
}

.p-message_intro_wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 16.875rem auto;
}
@media screen and (max-width: 768px) {
  .p-message_intro_wrap {
    order: 1;
    grid-template-rows: 7.125rem auto;
    width: 100%;
    max-width: 28.75rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-message_intro_img {
  clip-path: polygon(0 0, calc(100% - 6rem) 0%, 100% 6.5625rem, 100% calc(100% - 6rem), 100% 100%, 6rem 100%, 0% calc(100% - 6.5625rem), 0% 6rem);
  grid-column: 1/2;
  grid-row: 1/2;
  min-width: 0;
  width: 88.96%;
  aspect-ratio: 596/564;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-message_intro_img {
    clip-path: polygon(0 0, calc(100% - 3.125rem) 0%, 100% 3.125rem, 100% calc(100% - 3.125rem), 100% 100%, 3.125rem 100%, 0% calc(100% - 3.125rem), 0% 3.125rem);
    width: 83.2%;
    aspect-ratio: 312/268;
  }
}
.p-message_intro_img img {
  height: 100%;
  object-fit: cover;
}

.p-message_intro_name {
  grid-column: 1/2;
  grid-row: 2/3;
  min-width: 0;
  width: 71.34%;
  margin-left: auto;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.195em;
  font-feature-settings: "palt";
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  aspect-ratio: 478/427;
  background-color: #00a440;
  padding: 3.125rem 1.75rem;
  clip-path: polygon(0 0, calc(100% - 4.75rem) 0%, 100% 5.5rem, 100% calc(100% - 4.75rem), 100% 100%, 4.75rem 100%, 0% calc(100% - 5.5rem), 0% 4.75rem);
}
@media screen and (max-width: 768px) {
  .p-message_intro_name {
    font-size: 1.0625rem;
    padding: 2.25rem 1.75rem;
    clip-path: polygon(0 0, calc(100% - 2.5rem) 0%, 100% 2.8125rem, 100% calc(100% - 2.5rem), 100% 100%, 2.5rem 100%, 0% calc(100% - 2.8125rem), 0% 2.5rem);
    width: 66.13%;
    aspect-ratio: 248/222;
  }
}
.p-message_intro_name .sm {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.195em;
  font-feature-settings: "palt";
  margin-right: 0.25em;
}
@media screen and (max-width: 768px) {
  .p-message_intro_name .sm {
    font-size: 0.8125rem;
  }
}

.p-message_intro_en {
  font-size: 2.8125rem;
  font-weight: 700;
  font-family: "DIN Condensed", sans-serif;
  letter-spacing: 0.015em;
  font-feature-settings: "palt";
  margin-top: 1.25rem;
  color: #00a440;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-message_intro_en {
    text-align: left;
    order: 3;
    font-size: 1.3125rem;
    letter-spacing: 0.05em;
    margin-top: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-message_texts {
    display: contents;
  }
}

.p-message_title {
  font-size: 1.4375rem;
  font-weight: 700;
  letter-spacing: 0.135em;
  font-feature-settings: "palt";
  color: #00a440;
}
@media screen and (max-width: 768px) {
  .p-message_title {
    order: 2;
    font-size: 1.125rem;
    letter-spacing: 0.095em;
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .p-message_intro_head {
    width: 85.3%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .p-message_text_wrap {
    width: 74.67%;
    margin-left: auto;
    margin-right: auto;
    order: 4;
  }
}

.p-message_lead {
  margin-top: 1.625rem;
}
@media screen and (max-width: 768px) {
  .p-message_lead {
    margin-top: 0.625rem;
  }
}
.p-message_lead span {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  font-feature-settings: "palt";
  color: #fff;
  display: inline;
  background-color: #00a440;
  padding: 0.4em 1em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 2.75;
}
@media screen and (max-width: 768px) {
  .p-message_lead span {
    font-size: 1.0625rem;
  }
}

.p-message_text {
  font-size: 0.875rem;
  line-height: 2.2857142857;
  font-weight: 500;
  text-align: justify;
  font-feature-settings: "palt";
  letter-spacing: 0.055em;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-message_text {
    font-size: 0.8125rem;
    line-height: 2.1538461538;
    letter-spacing: 0.035em;
  }
}

.p-profile_lists {
  padding-top: 1px solid rgba(0, 0, 0, 0.5);
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-profile_lists {
    margin-top: 1rem;
  }
}

.p-profile_list:nth-child(n+2) {
  border-top: 1px solid #009844;
}

.p-profile_list_item {
  display: grid;
  grid-template-columns: 8.625rem auto;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-profile_list_item {
    grid-template-columns: 6.4375rem auto;
  }
}
.p-profile_list_item dt, .p-profile_list_item dd {
  font-size: 0.875rem;
  font-feature-settings: "palt";
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 3.3125rem;
}
@media screen and (max-width: 768px) {
  .p-profile_list_item dt, .p-profile_list_item dd {
    font-size: 0.8125rem;
  }
}
.p-profile_list_item dt {
  font-weight: 700;
  background-color: #000;
  color: #00a440;
  letter-spacing: 0.055em;
  line-height: 1.2857142857;
  text-align: center;
  align-items: center;
  padding: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-profile_list_item dt {
    line-height: 1.3846153846;
  }
}
.p-profile_list_item dd {
  font-weight: 500;
  letter-spacing: 0.115em;
  line-height: 1.7142857143;
  padding: 0.625rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-profile_list_item dd {
    padding: 0.625rem 1.5rem;
    letter-spacing: 0.075em;
    line-height: 1.6923076923;
  }
}

.p-history {
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-history {
    margin-top: 2.5rem;
  }
}

.p-history_wrap {
  background-color: #fff;
  clip-path: polygon(3.625rem 0%, calc(100% - 3.625rem) 0%, 100% 3.625rem, 100% calc(100% - 3.625rem), calc(100% - 3.625rem) 100%, 3.625rem 100%, 0% calc(100% - 3.625rem), 0% 3.625rem);
  padding: 3.5rem 3.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-history_wrap {
    clip-path: polygon(2.625rem 0%, calc(100% - 2.625rem) 0%, 100% 2.625rem, 100% calc(100% - 2.625rem), calc(100% - 2.625rem) 100%, 2.625rem 100%, 0% calc(100% - 2.625rem), 0% 2.625rem);
    margin-top: 0;
    padding: 2rem 1.25rem 2rem 2rem;
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 769px) {
  .p-history_lists:nth-child(2) {
    padding-left: 3.5rem;
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    margin-left: 1rem;
  }
}

.p-history_list_item {
  display: grid;
  grid-template-columns: 7.5rem auto;
  column-gap: 2.25rem;
  padding: 0.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-history_list_item {
    grid-template-columns: 6.25rem auto;
    column-gap: 1.375rem;
  }
}
.p-history_list_item dt, .p-history_list_item dd {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  font-feature-settings: "palt";
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .p-history_list_item dt, .p-history_list_item dd {
    font-size: 0.8125rem;
    line-height: 1.4615384615;
  }
}
.p-history_list_item dt {
  display: grid;
  grid-template-columns: 4rem auto;
  text-align: right;
}
.p-history_list_item dt .year {
  white-space: nowrap;
}
.p-company_bg_green {
  padding-bottom: 11.25rem;
}
@media screen and (max-width: 768px) {
  .p-company_bg_green {
    padding-bottom: 3.125rem;
  }
}

.p-company_section_title {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.195em;
  font-feature-settings: "palt";
  text-align: center;
  line-height: 1.2272727273;
}
@media screen and (max-width: 768px) {
  .p-company_section_title {
    font-size: 1.25rem;
    letter-spacing: 0.188em;
  }
}

.p-license_wrap {
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .p-license_wrap {
    grid-template-columns: 1fr;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: 1.25rem;
  }
}

@media screen and (min-width: 769px) {
  .p-license_lists:first-child .p-license_list {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
  }
}
@media screen and (max-width: 768px) {
  .p-license_lists:nth-child(n+2) {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}

.p-license_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 4.5rem;
}
@media screen and (min-width: 769px) {
  .p-license_list {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
  .p-license_list:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}
@media screen and (max-width: 768px) {
  .p-license_list:nth-child(n+2) {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}

.p-license_list_item {
  display: grid;
  grid-template-columns: auto 4.375rem;
  column-gap: 1.25rem;
  align-items: center;
  padding: 0 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-license_list_item {
    padding: 0 1.25rem;
    grid-template-columns: auto 2.5rem;
    column-gap: 0.625rem;
  }
}
.p-license_list_item dt, .p-license_list_item dd {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  font-feature-settings: "palt";
  line-height: 1.5;
  padding: 0.625rem 0;
}
.p-license_list_item dd {
  text-align: right;
}

.p-philosophy {
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-philosophy {
    margin-top: 2.75rem;
  }
}

.p-philosophy_lead {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.115em;
  line-height: 1.5;
  font-feature-settings: "palt";
  text-align: center;
  color: #00a440;
  margin: 0.625rem -1em 0;
}
@media screen and (max-width: 768px) {
  .p-philosophy_lead {
    font-size: 1.3125rem;
    line-height: 1.2857142857;
    margin-top: 1rem;
  }
}

.p-philosophy_text {
  font-size: 0.875rem;
  letter-spacing: 0.155em;
  font-feature-settings: "palt";
  text-align: center;
  line-height: 1.9285714286;
  font-weight: 300;
  margin-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  .p-philosophy_text {
    font-size: 0.8125rem;
    line-height: 1.7692307692;
    margin-top: 1.125rem;
  }
}

.p-policy {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-policy {
    margin-top: 2.875rem;
  }
}

.p-policy_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.25rem;
  row-gap: 2.375rem;
  padding: 2.25rem 3.125rem 2.25rem 6.25rem;
  margin-top: 1.5rem;
  background-color: #00a440;
  clip-path: polygon(3.625rem 0%, calc(100% - 3.625rem) 0%, 100% 3.875rem, 100% calc(100% - 3.875rem), calc(100% - 3.625rem) 100%, 3.625rem 100%, 0% calc(100% - 3.875rem), 0% 3.875rem);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-policy_items {
    margin-top: 1rem;
    clip-path: polygon(2.625rem 0%, calc(100% - 2.625rem) 0%, 100% 3rem, 100% calc(100% - 3rem), calc(100% - 2.625rem) 100%, 2.625rem 100%, 0% calc(100% - 3rem), 0% 3rem);
    grid-template-columns: 1fr;
    padding: 2.25rem 1.875rem 3.75rem;
    row-gap: 1.875rem;
  }
}
.p-policy_items::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #000;
  clip-path: polygon(3.625rem 0%, calc(100% - 3.625rem) 0%, 100% 3.875rem, 100% calc(100% - 3.875rem), calc(100% - 3.625rem) 100%, 3.625rem 100%, 0% calc(100% - 3.875rem), 0% 3.875rem);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-policy_items::before {
    clip-path: polygon(2.625rem 0%, calc(100% - 2.625rem) 0%, 100% 3rem, 100% calc(100% - 3rem), calc(100% - 2.625rem) 100%, 2.625rem 100%, 0% calc(100% - 3rem), 0% 3rem);
  }
}

@media screen and (min-width: 769px) {
  .p-policy_item:nth-child(even) {
    margin-left: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .p-policy_item {
    text-align: center;
  }
}

.p-policy_item_title {
  position: relative;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2272727273;
}
@media screen and (max-width: 768px) {
  .p-policy_item_title {
    display: inline-block;
    padding-left: 1em;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
  }
}
.p-policy_item_title .num {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
}
@media screen and (max-width: 768px) {
  .p-policy_item_title .num {
    transform: translateX(0);
  }
}

.p-policy_item_text {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  line-height: 1.9285714286;
  font-weight: 500;
  font-feature-settings: "palt";
  margin-top: 0.375rem;
}
@media screen and (max-width: 768px) {
  .p-policy_item_text {
    line-height: 1.3571428571;
  }
}

.p-knowledge {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-knowledge {
    margin-top: 2.875rem;
  }
}

.p-knowledge_lists {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.125rem, 1fr));
  column-gap: 1rem;
  row-gap: 0.9375rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-knowledge_lists {
    margin-top: 1.25rem;
  }
}

.p-knowledge_list {
  min-width: 0;
  aspect-ratio: 1/1;
  font-size: 1.25rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.195em;
  font-feature-settings: "palt";
  line-height: 1.5;
  font-weight: 500;
  background-color: #00a440;
  z-index: 1;
  overflow: hidden;
  position: relative;
  clip-path: polygon(2.875rem 0%, calc(100% - 2.875rem) 0%, 100% 2.875rem, 100% calc(100% - 2.875rem), calc(100% - 2.875rem) 100%, 2.875rem 100%, 0% calc(100% - 2.875rem), 0% 2.875rem);
}
@media screen and (max-width: 768px) {
  .p-knowledge_list {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
  }
}
.p-knowledge_list::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #000;
  z-index: -1;
  clip-path: polygon(2.875rem 0%, calc(100% - 2.875rem) 0%, 100% 2.875rem, 100% calc(100% - 2.875rem), calc(100% - 2.875rem) 100%, 2.875rem 100%, 0% calc(100% - 2.875rem), 0% 2.875rem);
}

/*======================================
    sanbe office
======================================*/
.p-office {
  background-color: #00a440;
}
@media screen and (min-width: 769px) {
  .p-office {
    padding-bottom: 20rem;
  }
}

.p-office_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 10rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-office_wrap {
    margin-top: 1.5rem;
    row-gap: 1.875rem;
    padding-bottom: 8.75rem;
  }
}

.p-office_item {
  max-width: 54.375rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-office_item:nth-child(n+2) {
    padding-top: 1.875rem;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
  }
}

.p-office_item_head {
  display: grid;
  grid-template-columns: 59.3% auto;
  column-gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-office_item_head {
    display: flex;
    flex-direction: column;
  }
}

.p-office_item_eye {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-office_item_eye {
    order: 2;
    display: flex;
    column-gap: 0.875rem;
    margin-top: 1.25rem;
  }
}

.p-office_item_en {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 2.3125rem;
  font-family: "DIN Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.11em;
  font-feature-settings: "palt";
  color: #fff;
}
@media screen and (min-width: 769px) {
  .p-office_item_en {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-115%, -0.2em);
    line-height: 1.75;
  }
}
@media screen and (max-width: 768px) {
  .p-office_item_en {
    line-height: 1;
    font-size: 1.25rem;
    margin-left: -0.15em;
  }
}

.p-office_item_img {
  aspect-ratio: 516/352;
  overflow: hidden;
  clip-path: polygon(0% 0%, calc(100% - 3rem) 0%, 100% 3.25rem, 100% 100%, 3rem 100%, 0% calc(100% - 3.25rem));
}
@media screen and (max-width: 768px) {
  .p-office_item_img {
    flex: 1;
    aspect-ratio: 290/198;
    clip-path: polygon(0% 0%, calc(100% - 1.625rem) 0%, 100% 1.625rem, 100% 100%, 1.625rem 100%, 0% calc(100% - 1.625rem));
  }
}
.p-office_item_img img {
  height: 100%;
  object-fit: cover;
}
.p-office_item_img.no_img {
  position: relative;
  background-color: #878787;
}
.p-office_item_img.no_img::before {
  content: "No image";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.375rem;
  font-family: "DIN Condensed", sans-serif;
}

.p-office_item_texts {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: span 3;
  row-gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-office_item_texts {
    display: contents;
  }
}

.p-office_item_title {
  clip-path: polygon(0.4375rem 0%, 100% 0%, 100% calc(100% - 0.4375rem), calc(100% - 0.4375rem) 100%, 0% 100%, 0% 0.4375rem);
  background-color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  font-feature-settings: "palt";
  line-height: 1.5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75rem;
  padding: 0.625rem 1.25rem;
  color: #00a440;
}
@media screen and (max-width: 768px) {
  .p-office_item_title {
    order: 1;
    font-size: 1.0625rem;
    min-height: 2.3125rem;
    padding: 0.3125rem 1.25rem;
    clip-path: polygon(0.25rem 0%, 100% 0%, 100% calc(100% - 0.25rem), calc(100% - 0.25rem) 100%, 0% 100%, 0% 0.25rem);
  }
}

.p-office_item_text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.135em;
  text-align: justify;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .p-office_item_text {
    order: 3;
    margin-top: 0.625rem;
    font-size: 0.8125rem;
    letter-spacing: 0.052em;
    line-height: 2.1538461538;
  }
}

@media screen and (max-width: 768px) {
  .p-office_item_meta {
    order: 4;
    margin-top: 1rem;
  }
}

.p-office_item_meta_text {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.095em;
  font-feature-settings: "palt";
  line-height: 1.7692307692;
}
@media screen and (max-width: 768px) {
  .p-office_item_meta_text {
    letter-spacing: 0.052em;
    line-height: 1.8461538462;
    text-align: center;
  }
}
.p-office_item_meta_text a {
  font-weight: inherit;
}

.p-office_item_map {
  margin: 1.25rem 0;
  aspect-ratio: 870/228;
}
@media screen and (max-width: 768px) {
  .p-office_item_map {
    aspect-ratio: 320/180;
    margin: 0.625rem 0;
  }
}
.p-office_item_map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}

.p-office_item_tel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.875rem;
  background-color: #000;
  color: #ff7900;
  max-width: 34.25rem;
  margin: 1.25rem auto 0;
  line-height: 1;
  padding-top: 0.5rem;
  transition: filter 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-office_item_tel {
    min-height: 2.875rem;
    margin-top: 0.75rem;
  }
}
.p-office_item_tel:hover {
  filter: brightness(1.1);
}
.p-office_item_tel .tel {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  font-family: "DIN Condensed", sans-serif;
  letter-spacing: 0.075em;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-office_item_tel .tel {
    font-size: 1.375rem;
    padding-left: 1.75rem;
  }
}
.p-office_item_tel .tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-62.5%);
  aspect-ratio: 1/1;
  width: 1.875rem;
  background: url(../img/page/icon_tel_accent.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-office_item_tel .tel::before {
    width: 1.375rem;
  }
}

/*======================================
    privacy policy
======================================*/
.p-privacy {
  margin-top: 3.625rem;
  padding-bottom: 18.125rem;
}
@media screen and (max-width: 768px) {
  .p-privacy {
    margin-top: 1.875rem;
    padding-bottom: 6.875rem;
  }
}

.p-privacy_title {
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.095em;
  font-feature-settings: "palt";
  line-height: 1.75;
  text-align: center;
}

.p-privacy_text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 3.0714285714;
  font-feature-settings: "palt";
  text-align: justify;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-privacy_text {
    font-size: 0.8125rem;
    line-height: 2.1538461538;
    letter-spacing: 0.052em;
    margin-top: 0.625rem;
  }
}

.p-privacy_meta {
  text-align: center;
  margin-top: 1.875rem;
  line-height: 2.1428571429;
  letter-spacing: 0.135em;
}
@media screen and (max-width: 768px) {
  .p-privacy_meta {
    margin-top: 1.25rem;
  }
}

/*======================================
    news
======================================*/
.p-news {
  background-color: #ededed;
}

.p-news_wrap {
  margin-top: 2rem;
  max-width: 45.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-news_wrap {
    margin-top: 0.625rem;
  }
}

.p-news_lists {
  background-color: #fff;
  padding: 0 0.625rem;
}
.p-news_lists .news_list_link {
  column-gap: 1.625rem;
}
.p-news_lists .news_list_link::before {
  display: none;
}
@media screen and (min-width: 769px) {
  .p-news_lists .news_list_link {
    grid-template-columns: 6.875rem auto;
  }
}
@media screen and (max-width: 768px) {
  .p-news_lists .news_list_link {
    display: grid;
    grid-template-columns: 6.5rem auto;
    align-items: center;
    padding: 0.875rem 0;
    justify-content: start;
    min-height: 4.375rem;
    column-gap: 1.25rem;
  }
  .p-news_lists .news_list_link .news_list_title {
    margin-top: 0;
  }
  .p-news_lists .news_list_link .news_list_date {
    display: flex;
    align-items: center;
    height: 100%;
    border-right: 1px solid rgba(0, 0, 0, 0.5);
  }
}
.p-news_lists .news_list_title span.new {
  color: #ff0000;
  display: inline-block;
  margin-left: 0.25em;
}

.p-news_text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  font-feature-settings: "palt";
  letter-spacing: 0.135em;
}

.a-pagination {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(3.75rem, 1fr));
  column-gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .a-pagination {
    grid-template-columns: repeat(auto-fit, minmax(1.625rem, 1fr));
    column-gap: 0.5rem;
    margin-top: 1.25rem;
  }
}
.a-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 2.125rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  font-feature-settings: "palt";
  text-align: center;
  color: #bfbfbf;
  background-color: #fff;
}
.a-pagination .page-numbers.current {
  color: #fff;
  background-color: #00a440;
}
.a-pagination .page-numbers.next, .a-pagination .page-numbers.prev {
  background-color: #bfbfbf;
  position: relative;
}
.a-pagination .page-numbers.next::before, .a-pagination .page-numbers.prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 7/13;
  transform: translate(-50%, -50%);
  width: 0.4375rem;
  transition: transform 0.3s ease;
}
.a-pagination .page-numbers.next::before {
  background: url(../img/page/pagination_next.svg) no-repeat center/contain;
}
.a-pagination .page-numbers.prev::before {
  background: url(../img/page/pagination_prev.svg) no-repeat center/contain;
}
.a-pagination a.next:hover::before {
  transform: translate(-30%, -50%);
}
.a-pagination a.prev:hover::before {
  transform: translate(-70%, -50%);
}

.p-sponsor {
  margin-top: 6.875rem;
  padding-bottom: 20.625rem;
}
@media screen and (max-width: 768px) {
  .p-sponsor {
    margin-top: 2.875rem;
    padding-bottom: 7.5rem;
  }
}

.p-sponsor_wrap {
  margin-top: 1.875rem;
  background-color: #fff;
  padding: 2.25rem 1.25rem 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-sponsor_wrap {
    margin-top: 1.5rem;
    padding: 1.25rem 1.25rem 2.875rem;
  }
}

.p-sponsor_text {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.155em;
  line-height: 1.9333333333;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .p-sponsor_text {
    font-size: 0.8125rem;
    line-height: 2.0769230769;
    letter-spacing: 0.08em;
  }
}

.p-sponsor_lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 3.125rem;
  row-gap: 3.125rem;
  align-items: center;
  margin-top: 1.25rem;
  row-gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-sponsor_lists {
    column-gap: 1.875rem;
  }
}

.p-sponsor_list:nth-child(1) {
  width: 14.6875rem;
}
@media screen and (max-width: 768px) {
  .p-sponsor_list:nth-child(1) {
    width: 10.25rem;
  }
}
.p-sponsor_list:nth-child(2) {
  width: 18.875rem;
}
@media screen and (max-width: 768px) {
  .p-sponsor_list:nth-child(2) {
    width: 13.125rem;
  }
}

.s-news {
  padding-bottom: 20rem;
}
@media screen and (max-width: 768px) {
  .s-news {
    padding-bottom: 8.125rem;
  }
}

.s-news_article {
  max-width: 51.125rem;
  margin: 5rem auto 0;
  padding: 1.625rem 3.125rem 2.5rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .s-news_article {
    margin-top: 0.625rem;
    padding: 1.625rem 1.25rem 1.875rem;
  }
}

.s-news_date {
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  font-feature-settings: "palt";
  color: #00a440;
  line-height: 1.9411764706;
}
@media screen and (max-width: 768px) {
  .s-news_date {
    font-size: 0.8125rem;
    line-height: 1.6153846154;
  }
}

.s-news_title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.148em;
  line-height: 1.5;
  text-align: center;
  font-feature-settings: "palt";
  margin-top: 0.375rem;
}
@media screen and (max-width: 768px) {
  .s-news_title {
    font-size: 1rem;
    margin-top: 0;
  }
}

.s-news_eye {
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .s-news_eye {
    margin-top: 1.25rem;
  }
}
.s-news_eye img {
  height: auto;
}

.s-news_contents {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .s-news_contents {
    margin-top: 0.875rem;
  }
}
.s-news_contents p,
.s-news_contents ul,
.s-news_contents ol {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  font-feature-settings: "palt";
  line-height: 2.4285714286;
  text-align: justify;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .s-news_contents p,
  .s-news_contents ul,
  .s-news_contents ol {
    font-size: 0.8125rem;
    line-height: 2.1538461538;
    letter-spacing: 0.052em;
  }
}
.s-news_contents ul,
.s-news_contents ol {
  padding-left: 1em;
  margin-left: 1em;
}
.s-news_contents ul li,
.s-news_contents ol li {
  font-weight: inherit;
}
.s-news_contents ul {
  list-style: disc;
}
.s-news_contents ol {
  list-style: decimal;
}
.s-news_contents img {
  height: auto;
  width: 100%;
  max-width: 100%;
  margin: 1.25rem auto 0;
}
.s-news_contents .has-text-align-center {
  text-align: center;
}
.s-news_contents .has-text-align-right {
  text-align: right;
}

.s-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 1.25rem;
  align-items: center;
  max-width: 28.125rem;
  margin: 8.125rem auto 0;
}
@media screen and (max-width: 768px) {
  .s-pagination {
    max-width: 12.875rem;
    margin-top: 1.25rem;
  }
}

.s-pagination_prev {
  grid-column: 1/2;
  grid-row: 1/2;
  display: block;
  width: 2.1875rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.s-pagination_prev:hover {
  transform: translateX(-20%);
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .s-pagination_prev {
    width: 1.6875rem;
  }
}

.s-pagination_all {
  grid-column: 2/3;
  grid-row: 1/2;
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.115em;
  font-feature-settings: "palt";
  line-height: 1.8888888889;
  border-bottom: 1px solid #000;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .s-pagination_all {
    font-size: 1rem;
  }
}
.s-pagination_all:hover {
  opacity: 0.7;
}

.s-pagination_next {
  grid-column: 3/4;
  grid-row: 1/2;
  display: block;
  width: 2.1875rem;
  margin-left: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.s-pagination_next:hover {
  transform: translateX(20%);
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .s-pagination_next {
    width: 1.6875rem;
  }
}

/*======================================
    about us
======================================*/
.p-about {
  background-color: #ededed;
}

.p-about_wrap {
  display: grid;
  grid-template-columns: 1fr;
}

.p-about_bg {
  height: 70rem;
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width: 768px) {
  .p-about_bg {
    height: 24.375rem;
  }
}
.p-about_bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 53.75rem;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: #ededed;
}
@media screen and (max-width: 768px) {
  .p-about_bg::before {
    display: none;
  }
}

.p-about_contents {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 2;
  padding-top: 24.375rem;
}
@media screen and (max-width: 768px) {
  .p-about_contents {
    padding-top: 5.625rem;
  }
}
.p-about_contents .p_title {
  text-align: left;
}
@media screen and (min-width: 769px) {
  .p-about_contents .p_title p {
    font-size: 2.625rem;
  }
  .p-about_contents .p_title h1 {
    font-size: 1.1875rem;
    letter-spacing: 0.235em;
  }
}
@media screen and (max-width: 768px) {
  .p-about_contents .p_title {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-about_contents .p_title p {
    font-size: 1.3125rem;
  }
  .p-about_contents .p_title h1 {
    font-size: 0.875rem;
    letter-spacing: 0.235em;
  }
}

.p-strength {
  margin-top: 22.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-strength {
    margin-top: 13.75rem;
  }
}
.p-strength::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(45%, -91%);
  aspect-ratio: 404/478;
  background: url(../img/page/logo_illust_color.svg) no-repeat center/contain;
  width: 25.25rem;
}
@media screen and (max-width: 768px) {
  .p-strength::before {
    display: none;
  }
}

.p-strength_title {
  text-align: center;
}
.p-strength_title p {
  display: inline-block;
  width: 19.875rem;
}
@media screen and (max-width: 768px) {
  .p-strength_title p {
    width: 11.5rem;
  }
}
.p-strength_title h2 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.235em;
  font-feature-settings: "palt";
  line-height: 1.9333333333;
  margin-top: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-strength_title h2 {
    font-size: 0.8125rem;
    margin-top: 0.125rem;
  }
}

.p-strength_text {
  text-align: justify;
  font-feature-settings: "palt";
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 2.2;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-strength_text {
    margin-top: 0.625rem;
    width: 87%;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.095em;
  }
}

.p-strength_lists {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-content: center;
  column-gap: 3.75rem;
  row-gap: 5rem;
  max-width: 59.375rem;
  margin: 5rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-strength_lists {
    grid-template-columns: 1fr;
    width: 86.875%;
    max-width: 21.875rem;
    margin-top: 3.75rem;
    row-gap: 3.75rem;
  }
}

@media screen and (min-width: 769px) {
  .p-strength_list {
    grid-column: span 2;
  }
  .p-strength_list:nth-child(4) {
    grid-column: 2/4;
  }
  .p-strength_list:nth-child(5) {
    grid-column: 4/6;
  }
}

@media screen and (max-width: 768px) {
  .p-strength_list_img {
    width: 77.7%;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(4%);
  }
}

.p-strength_list_title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.175em;
  font-feature-settings: "palt";
  line-height: 1.5;
  margin-top: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-strength_list_title {
    letter-spacing: 0.195em;
    font-size: 1.3125rem;
  }
}

.p-strength_list_lead {
  color: #00a440;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  font-feature-settings: "palt";
  text-align: center;
  line-height: 1.5;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-strength_list_lead {
    font-size: 1.125rem;
    letter-spacing: 0.055em;
  }
}

.p-strength_list_text {
  font-size: 0.875rem;
  text-align: justify;
  font-feature-settings: "palt";
  font-weight: 500;
  letter-spacing: 0.115em;
  line-height: 1.7142857143;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-strength_list_text {
    margin-top: 0.5rem;
  }
}

.p-trust {
  margin-top: 5.625rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 769px) {
  .p-trust {
    background-image: linear-gradient(to bottom, #00a440 60%, #000 40%);
  }
}
@media screen and (max-width: 768px) {
  .p-trust {
    margin-top: 2.5rem;
    overflow: hidden;
    padding-bottom: 0;
  }
}
.p-trust::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 54%;
  background-image: url(../img/common/bg_black.png);
  background-repeat: repeat-x;
  background-size: 125rem 31.25rem;
  background-position: 26% top;
  background-color: rgba(255, 255, 255, 0);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-trust::after {
    background-image: url(../img/common/bg_black_sp.png);
    background-size: 48rem 186.375rem;
    background-position: 50% top;
    top: 3.75rem;
    height: 100%;
    background-color: unset;
  }
}
.p-trust .p-section_ttl p {
  font-size: 2.25rem;
}
.p-trust .p-section_ttl p img {
  width: auto;
  height: 1em;
}
.p-trust .p-section_ttl h2 {
  font-size: 1.125rem;
  letter-spacing: 0.215em;
}
.p-trust::before {
  background-color: #ededed;
}

.p-trust_wrap {
  padding: 5.875rem 4.375rem 2.5rem;
  background-color: #fff;
  margin-top: 3.125rem;
  clip-path: polygon(19.75rem 0%, calc(100% - 19.75rem) 0%, 100% 19.75rem, 100% calc(100% - 19.75rem), calc(100% - 19.75rem) 100%, 19.75rem 100%, 0% calc(100% - 19.75rem), 0% 19.75rem);
}
@media screen and (min-width: 769px) {
  .p-trust_wrap {
    min-height: 67.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-trust_wrap {
    padding: 3.125rem 2.5rem 3.125rem;
    clip-path: polygon(5.875rem 0%, calc(100% - 5.875rem) 0%, 100% 4.125rem, 100% calc(100% - 4.125rem), calc(100% - 5.875rem) 100%, 5.875rem 100%, 0% calc(100% - 4.125rem), 0% 4.125rem);
  }
  .p-trust_wrap .p-section_ttl p {
    font-size: 1.125rem;
  }
  .p-trust_wrap .p-section_ttl h2 {
    font-size: 0.8125rem;
    letter-spacing: 0.151em;
  }
}

.p-trust_head {
  margin-top: 2.875rem;
  display: grid;
  grid-template-columns: 11.25rem auto;
  column-gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-trust_head {
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 4.25rem auto;
    column-gap: 0.625rem;
    align-items: center;
    margin-top: 1.875rem;
  }
}

.p-trust_head_logo {
  max-width: 10.375rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-trust_head_logo {
    max-width: 3.25rem;
  }
}

@media screen and (max-width: 768px) {
  .p-trust_head_texts {
    display: contents;
  }
}

.p-trust_head_title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.135em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .p-trust_head_title {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

.p-trust_head_text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.195em;
  font-feature-settings: "palt";
  text-align: justify;
  line-height: 2.0714285714;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-trust_head_text {
    grid-row: 2/3;
    grid-column: 1/3;
    line-height: 1.7142857143;
    margin-top: 1.25rem;
  }
}

.p-trust_head_pdf {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.125rem;
  min-height: 4rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-feature-settings: "palt";
  text-align: center;
  padding: 0.5em 1.5em;
  color: #fff;
  background-color: #00a440;
  transition: filter 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-trust_head_pdf {
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    min-height: 3.6875rem;
    margin-top: 1.625rem;
  }
}
.p-trust_head_pdf:hover {
  filter: brightness(1.2);
}

.p-trust_body {
  margin-top: 2.875rem;
  padding-top: 3.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .p-trust_body {
    margin-top: 1.625rem;
    padding-top: 1.5rem;
  }
}

.p-trust_body_title {
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.135em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .p-trust_body_title {
    font-size: 0.875rem;
    letter-spacing: 0.151em;
  }
}

.p-trust_logos {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.875rem;
  row-gap: 1.875rem;
  flex-wrap: wrap;
  max-width: 49rem;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-trust_logos {
    column-gap: 0.625rem;
    row-gap: 1.5rem;
  }
}
@media screen and (min-width: 769px) {
  .p-trust_logos {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-trust_logos {
    margin: 1.25rem -1.25rem 0;
  }
}

.p-trust_logos_pc {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.875rem;
  row-gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-trust_logos_pc {
    column-gap: 0.625rem;
    row-gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-trust_logos_pc {
    display: contents;
  }
}

.p-trust_logo.-logo1 {
  width: 10rem;
}
@media screen and (max-width: 768px) {
  .p-trust_logo.-logo1 {
    width: 6.5rem;
  }
}
.p-trust_logo.-logo2 {
  width: 6.125rem;
}
@media screen and (max-width: 768px) {
  .p-trust_logo.-logo2 {
    width: 4rem;
  }
}
.p-trust_logo.-logo3 {
  width: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-trust_logo.-logo3 {
    width: 3.625rem;
  }
}
.p-trust_logo.-logo4 {
  width: 5.125rem;
}
@media screen and (max-width: 768px) {
  .p-trust_logo.-logo4 {
    width: 3.75rem;
  }
}
.p-trust_logo.-logo5 {
  width: 6.5rem;
}
@media screen and (max-width: 768px) {
  .p-trust_logo.-logo5 {
    width: 4.75rem;
  }
}
.p-trust_logo.-logo6 {
  width: 5.125rem;
}
@media screen and (max-width: 768px) {
  .p-trust_logo.-logo6 {
    width: 4rem;
  }
}
.p-trust_logo.-logo7 {
  width: 8.5rem;
}
@media screen and (max-width: 768px) {
  .p-trust_logo.-logo7 {
    width: 6.375rem;
  }
}
.p-trust_logo.-logo8 {
  width: 5.25rem;
}
@media screen and (max-width: 768px) {
  .p-trust_logo.-logo8 {
    width: 4.125rem;
  }
}
.p-trust_logo.-logo9 {
  width: 8rem;
}
@media screen and (max-width: 768px) {
  .p-trust_logo.-logo9 {
    width: 6.125rem;
  }
}
.p-trust_logo.-logo10 {
  width: 3.875rem;
}
@media screen and (max-width: 768px) {
  .p-trust_logo.-logo10 {
    width: 2.6875rem;
  }
}
.p-trust_logo.-logo11 {
  width: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-trust_logo.-logo11 {
    width: 4.75rem;
  }
}
.p-trust_logo.-logo12 {
  width: 12.75rem;
}
@media screen and (max-width: 768px) {
  .p-trust_logo.-logo12 {
    width: 10.5rem;
  }
}

/*======================================
    recruit
======================================*/
.p-recruit {
  background-color: #ededed;
}

.p-recruit_bg {
  height: 26.25rem;
}
@media screen and (max-width: 768px) {
  .p-recruit_bg {
    height: 12.5rem;
  }
}

.p-recruit_head {
  background-color: #000;
  padding: 3.75rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-recruit_head {
    padding: 1.625rem 0 0;
  }
}

.p-recruit_head_wrapper {
  max-width: 92.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.125rem;
  color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-recruit_head_wrapper {
    width: 85.3%;
    margin-top: 3.125rem;
  }
}

.p-recruit_head_wrap {
  max-width: 77.75rem;
  margin-left: auto;
  width: 90%;
  display: grid;
  grid-template-columns: 24.25rem 1fr;
  column-gap: 3.75rem;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .p-recruit_head_wrap {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 31.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-recruit_head_texts {
  padding-top: 0.625rem;
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width: 768px) {
  .p-recruit_head_texts {
    display: contents;
  }
}

.p-recruit_head_title {
  display: flex;
  align-items: flex-end;
  column-gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-recruit_head_title {
    text-align: center;
    display: block;
  }
}
.p-recruit_head_title p {
  font-family: "DIN Condensed", sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .p-recruit_head_title p {
    display: none;
  }
}
.p-recruit_head_title h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.235em;
  font-feature-settings: "palt";
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .p-recruit_head_title h3 {
    font-size: 1.0625rem;
    line-height: 1.3529411765;
  }
}

.p-recruit_head_text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.115em;
  font-feature-settings: "palt";
  text-align: justify;
  line-height: 2.2857142857;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-recruit_head_text {
    line-height: 2;
  }
}

.p-recruit_head_by {
  text-align: right;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.195em;
  font-feature-settings: "palt";
  margin-top: 0.375rem;
}
@media screen and (max-width: 768px) {
  .p-recruit_head_by {
    margin-top: 0.875rem;
    font-size: 0.8125rem;
  }
}
.p-recruit_head_by .name {
  display: inline-block;
  font-size: 1.25rem;
  margin-left: 0.5em;
  letter-spacing: 0.195em;
}
@media screen and (max-width: 768px) {
  .p-recruit_head_by .name {
    font-size: 1.0625rem;
  }
}

.p-recruit_head_logo {
  max-width: 19.125rem;
  margin-left: 0.625rem;
  margin-top: 2.375rem;
}
@media screen and (max-width: 768px) {
  .p-recruit_head_logo {
    max-width: 6.875rem;
    grid-column: 1/2;
    grid-row: 4/5;
    min-width: 0;
    position: relative;
    z-index: 3;
    margin-top: 2.5rem;
    margin-left: 3rem;
  }
}

.p-recruit_head_imgs {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-recruit_head_imgs {
    grid-column: 1/2;
    grid-row: 4/5;
    margin-top: 1.125rem;
  }
}

.p-recruit_head_img {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 89.2%;
  aspect-ratio: 710/424;
  overflow: hidden;
  position: relative;
  z-index: 2;
  min-width: 0;
  clip-path: polygon(4rem 0%, 100% 0%, 100% calc(100% - 5rem), calc(100% - 4rem) 100%, 0% 100%, 0% 5rem);
}
@media screen and (max-width: 768px) {
  .p-recruit_head_img {
    width: 100%;
    clip-path: polygon(1.75rem 0%, 100% 0%, 100% calc(100% - 2.25rem), calc(100% - 1.75rem) 100%, 0% 100%, 0% 2.25rem);
    aspect-ratio: 320/256;
  }
}
.p-recruit_head_img img {
  height: 100%;
  object-fit: cover;
}

.p-recruit_head_img_bg {
  grid-column: 1/2;
  grid-row: 1/2;
  aspect-ratio: 714/500;
  width: 89.7%;
  background-color: #fff;
  margin-left: auto;
  transform: translateY(4%);
  min-width: 0;
  clip-path: polygon(4.125rem 0%, 100% 0%, 100% calc(100% - 4.625rem), calc(100% - 4.125rem) 100%, 0% 100%, 0% 4.625rem);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-recruit_head_img_bg {
    display: none;
  }
}

.p-voice {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-voice {
    margin-top: 3.125rem;
  }
}
.p-voice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-32.5rem);
  width: 100%;
  height: calc(100% + 39.75rem);
  background-color: #00a440;
  z-index: -1;
  clip-path: polygon(0 53.75rem, 100% 0%, 100% calc(100% - 53.75rem), 0% 100%);
}
@media screen and (max-width: 768px) {
  .p-voice::before {
    clip-path: polygon(0 12.625rem, 100% 0%, 100% calc(100% - 12.625rem), 0% 100%);
    transform: translateY(-9rem);
    height: calc(100% + 10rem);
  }
}

@media screen and (min-width: 769px) {
  .p-recruit_section_title p {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit_section_title h2.lg {
    font-size: 1.25rem;
  }
}

.p-voice_lists {
  column-gap: 1.25rem;
  row-gap: 1.875rem;
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-voice_lists {
    grid-template-columns: 1fr;
    margin-top: 1.25rem;
  }
}

.p-voice_list {
  background-color: #ededed;
  clip-path: polygon(0 0, 100% 0, 100% 1.875rem, 100% calc(100% - 1.875rem), calc(100% - 1.875rem) 100%, 1.875rem 100%, 0 100%, 0% 1.875rem);
  grid-column: span 10;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .p-voice_list:nth-child(1) {
    grid-column: span 17;
  }
  .p-voice_list:nth-child(2) {
    grid-column: span 13;
  }
  .p-voice_list:nth-child(n+3) .p-voice_list_body {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .p-voice_list:nth-child(n+3) .p-voice_list_lead {
    line-height: 1.380952381;
  }
}

.p-voice_list_img {
  max-width: 28.75rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-voice_list_img {
    aspect-ratio: 320/202;
  }
}
.p-voice_list_img img {
  height: 100%;
  object-fit: cover;
}

.p-voice_list_body {
  padding: 1.875rem 3.125rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-voice_list_body {
    padding: 1.25rem 2.5rem 1.5rem;
  }
}

.p-voice_list_num {
  font-size: 2.25rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-voice_list_num {
    font-size: 1.8125rem;
  }
}
.p-voice_list_num img {
  height: 1em;
  width: auto;
}

.p-voice_list_lead {
  text-align: center;
  font-weight: 700;
  font-size: 1.3125rem;
  line-height: 1.4761904762;
  letter-spacing: 0.115em;
  font-feature-settings: "palt";
  margin-top: 1.375rem;
  margin-left: -0.5em;
  margin-right: -0.5em;
}
@media screen and (max-width: 768px) {
  .p-voice_list_lead {
    font-size: 1.0625rem;
    line-height: 1.5882352941;
    margin-top: 0.625rem;
  }
}

.p-voice_list_texts {
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-voice_list_texts {
    margin-bottom: 1rem;
  }
}

.p-voice_list_text {
  font-weight: 500;
  text-align: justify;
  font-feature-settings: "palt";
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  line-height: 2.0769230769;
  letter-spacing: 0.015em;
}
@media screen and (max-width: 768px) {
  .p-voice_list_text {
    margin-top: 0.625rem;
    display: none;
  }
  .p-voice_list_text.show {
    display: block;
  }
}

.p-voice_list_bottom {
  text-align: center;
  margin-top: auto;
}

.p-voice_list_name {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 2.1428571429;
  font-feature-settings: "palt";
}
.p-voice_list_name .name {
  display: inline-block;
  margin-left: 1em;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.135em;
}

.p-voice_list_since {
  font-size: 0.875rem;
  letter-spacing: 0.095em;
  font-feature-settings: "palt";
  line-height: 2;
}

.p-voice_list_button {
  color: rgba(255, 255, 255, 0);
  aspect-ratio: 80/40;
  max-width: 5rem;
  margin: 0.625rem auto 0;
  display: block;
  position: relative;
  cursor: pointer;
}
.p-voice_list_button.active::before {
  transform: translate(-50%, 30%) rotate(-135deg);
}
.p-voice_list_button.active::after {
  content: "とじる";
}
.p-voice_list_button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%) rotate(45deg);
  aspect-ratio: 1/1;
  border-bottom: 1px solid #00a440;
  border-right: 1px solid #00a440;
  width: 1.5rem;
  transition: transform 0.3s ease;
}
.p-voice_list_button::after {
  content: "全文を読む";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #00a440;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.095em;
  font-feature-settings: "palt";
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-voice_list_button {
    display: none;
  }
}

.p-requirements {
  position: relative;
  z-index: 2;
  margin-top: 10.625rem;
}
@media screen and (max-width: 768px) {
  .p-requirements {
    margin-top: 3.625rem;
  }
}
.p-requirements::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 53.75rem;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: #ededed;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-requirements::before {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .p-requirements .p-recruit_section_title h2 {
    font-size: 1.3125rem;
    margin-top: 1.25rem;
  }
}

.p-requirements_text {
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.055em;
  line-height: 2.0714285714;
  font-weight: 500;
  font-feature-settings: "palt";
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-requirements_text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}

.p-requirements_table {
  width: 100%;
  border-collapse: collapse;
}
.p-requirements_table tr th, .p-requirements_table tr td {
  font-size: 0.875rem;
  font-feature-settings: "palt";
  letter-spacing: 0.055em;
  vertical-align: middle;
  border: 1px solid #868687;
  padding: 1.2em 0.5em;
}
@media screen and (max-width: 768px) {
  .p-requirements_table tr th, .p-requirements_table tr td {
    padding: 1.25em 0.5em;
  }
}
.p-requirements_table tr th {
  background-color: #c7c7c7;
  line-height: 1.3571428571;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-requirements_table tr th {
    font-size: 0.8125rem;
    letter-spacing: 0.115em;
    padding-left: 0.3125rem;
    padding-right: 0.3125rem;
  }
}
.p-requirements_table tr th.level1, .p-requirements_table tr th.level2, .p-requirements_table tr th.level3 {
  color: #fff;
}
.p-requirements_table tr th.level1 {
  background-color: #66b731;
}
.p-requirements_table tr th.level2 {
  background-color: #00943d;
}
.p-requirements_table tr th.level3 {
  background-color: #00563b;
}
.p-requirements_table tr td {
  line-height: 2;
  letter-spacing: 0.115em;
  font-weight: 500;
  background-color: #fff;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-requirements_table tr td {
    line-height: 1.6428571429;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.p-requirements_details {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-requirements_details {
    margin-top: 1.25rem;
  }
}
.p-requirements_details th {
  width: 8.625rem;
}
@media screen and (max-width: 768px) {
  .p-requirements_details th {
    width: 4.375rem;
  }
}

.p-requirements_benefits {
  margin-top: 3.125rem;
  padding-bottom: 8.125rem;
}
@media screen and (max-width: 768px) {
  .p-requirements_benefits {
    margin-top: 1.25rem;
    padding-bottom: 2.5rem;
  }
}
.p-requirements_benefits .p-requirements_table {
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-requirements_benefits .p-requirements_table td {
    font-size: 0.8125rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}
@media screen and (max-width: 768px) {
  .p-requirements_benefits th {
    letter-spacing: 0.055em;
  }
}
.p-requirements_benefits th:first-child {
  width: 9.125rem;
}
@media screen and (max-width: 768px) {
  .p-requirements_benefits th:first-child {
    width: 4.0625rem;
  }
}
.p-requirements_benefits th:nth-child(2) {
  width: 13.75rem;
}
@media screen and (max-width: 768px) {
  .p-requirements_benefits th:nth-child(2) {
    width: 6rem;
  }
}

.p-requirements_benefits_levels {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.25rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-requirements_benefits_levels {
    color: #fff;
    row-gap: 0.375rem;
  }
}

.p-requirements_benefits_level {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 2.0714285714;
  padding-left: 2.14em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-requirements_benefits_level {
    font-size: 0.8125rem;
    line-height: 1.6153846154;
  }
}
.p-requirements_benefits_level:first-child {
  width: 100%;
}
.p-requirements_benefits_level::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.29em;
  aspect-ratio: 1/1;
  transform: translateY(0.3em);
}
.p-requirements_benefits_level.-level1::before {
  background-color: #66b731;
}
.p-requirements_benefits_level.-level2::before {
  background-color: #00943d;
}
.p-requirements_benefits_level.-level3::before {
  background-color: #00563b;
}

@media screen and (min-width: 769px) {
  .p-recruit_contact {
    background-color: #ededed;
    padding-bottom: 18.75rem;
  }
}
.p-recruit_contact .f_contact_button {
  max-width: 54.125rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .p-recruit_contact .f_contact_button {
    min-height: 9.125rem;
  }
}

/*======================================
    entry form
======================================*/
@media screen and (min-width: 769px) {
  .p_entry .p_title p {
    font-size: 1.75rem;
  }
}

.form_step_wrap {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .form_step_wrap {
    margin-top: 1.25rem;
  }
}

.form_steps {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5.375rem;
}
@media screen and (max-width: 768px) {
  .form_steps {
    column-gap: 1rem;
  }
}

.form_step {
  position: relative;
}
.form_step:nth-child(n+2)::before {
  content: "";
  position: absolute;
  bottom: 4.375rem;
  left: -2.6875rem;
  transform: translate(-50%, 50%);
  width: 3.75rem;
  height: 1.5rem;
  background-color: rgba(255, 255, 255, 0);
  background-image: radial-gradient(circle, #00a440 0.25rem, rgba(255, 255, 255, 0) 0.25rem);
  background-position: -0.4375rem 0;
  background-size: 1.5rem 1.5rem;
}
@media screen and (max-width: 768px) {
  .form_step:nth-child(n+2)::before {
    bottom: 2.625rem;
    left: -0.5rem;
    width: 0.75rem;
    height: 0.25rem;
    background-position: 0rem 0;
    background-image: radial-gradient(circle, #00a440 0.0625rem, rgba(255, 255, 255, 0) 0.0625rem);
    background-size: 0.25rem 0.25rem;
  }
}
.form_step.active .form_step_text {
  background-color: #00a440;
  color: #fff;
}

.form_step_num {
  text-align: center;
  color: #00a440;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "DIN Condensed", sans-serif;
  letter-spacing: 0.09em;
  font-feature-settings: "palt";
}
.form_step_num .num {
  display: inline-block;
  font-size: 1.5rem;
}

.form_step_text_wrap {
  margin-top: 0.25rem;
  padding: 1px;
  width: 8.625rem;
  aspect-ratio: 1/1;
  clip-path: polygon(2.5rem 0%, calc(100% - 2.5rem) 0%, 100% 2.5rem, 100% calc(100% - 2.5rem), calc(100% - 2.5rem) 100%, 2.5rem 100%, 0% calc(100% - 2.5rem), 0% 2.5rem);
  background-color: #00a440;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form_step_text_wrap {
    width: 5.25rem;
    clip-path: polygon(1.5rem 0%, calc(100% - 1.5rem) 0%, 100% 1.5rem, 100% calc(100% - 1.5rem), calc(100% - 1.5rem) 100%, 1.5rem 100%, 0% calc(100% - 1.5rem), 0% 1.5rem);
  }
}

.form_step_text {
  aspect-ratio: 1/1;
  color: #00a440;
  background-color: #fff;
  clip-path: polygon(2.5rem 0%, calc(100% - 2.5rem) 0%, 100% 2.5rem, 100% calc(100% - 2.5rem), calc(100% - 2.5rem) 100%, 2.5rem 100%, 0% calc(100% - 2.5rem), 0% 2.5rem);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.135em;
  font-feature-settings: "palt";
  line-height: 1.5555555556;
}
@media screen and (max-width: 768px) {
  .form_step_text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    letter-spacing: 0.015em;
    clip-path: polygon(1.5rem 0%, calc(100% - 1.5rem) 0%, 100% 1.5rem, 100% calc(100% - 1.5rem), calc(100% - 1.5rem) 100%, 1.5rem 100%, 0% calc(100% - 1.5rem), 0% 1.5rem);
  }
}

.form_wrap {
  padding: 1.25rem 0 6.25rem;
}

.form_head_text {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.095em;
  font-feature-settings: "palt";
  line-height: 2.2857142857;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .form_head_text {
    text-align: left;
    text-align: justify;
  }
}

.form_entry {
  padding-top: 3.375rem;
}
@media screen and (max-width: 768px) {
  .form_entry {
    padding-bottom: 0rem;
  }
}
.form_entry .form_input {
  background-color: #ebebec;
}

.form_required {
  text-align: right;
  max-width: 42.1875rem;
  margin-left: auto;
  margin-right: auto;
  color: #e60012;
  margin-bottom: 1.125rem;
}
.form_required span {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  font-feature-settings: "palt";
  line-height: 1.4615384615;
  position: relative;
  padding-left: 1em;
}
.form_required span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #e60012;
  transform: translateY(-50%);
}

.form_list:nth-child(n+2) {
  margin-top: 2.75rem;
}
@media screen and (max-width: 768px) {
  .form_list:nth-child(n+2) {
    margin-top: 1.25rem;
  }
}

.form_list_dl {
  display: grid;
  grid-template-columns: 1fr 42.1875rem 1fr;
  column-gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .form_list_dl {
    display: block;
  }
}
.form_list_dl dt {
  line-height: 2;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.105em;
  line-height: 1.75;
  font-feature-settings: "palt";
}
@media screen and (min-width: 769px) {
  .form_list_dl dt {
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .form_list_dl dt {
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
  }
}
.form_list_dl dt.required {
  display: inline-block;
  position: relative;
}
.form_list_dl dt.required::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #e60012;
  transform: translateY(-100%);
}
@media screen and (max-width: 768px) {
  .form_list_dl dt.required::before {
    transform: translate(150%);
  }
}
.form_list_dl dt span.sm {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.175em;
}
@media screen and (max-width: 768px) {
  .form_list_dl dt span.sm {
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateX(calc(100% + 2em));
  }
}
.form_list_dl dd {
  display: flex;
}
@media screen and (max-width: 768px) {
  .form_list_dl dd {
    flex-wrap: wrap;
  }
}

.form_input {
  border-radius: 0.375rem;
  background-color: #fff;
  flex: 1;
  min-width: fit-content;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 4.0625rem;
  padding: 0.375rem 1.25rem;
  width: 100%;
}
.form_input .wpcf7-form-control-wrap {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
  min-width: fit-content;
}
.form_input input,
.form_input select,
.form_input textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: none;
  border: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.175em;
  font-feature-settings: "palt";
  color: #000;
  line-height: 1.5;
}
.form_input input::placeholder,
.form_input select::placeholder,
.form_input textarea::placeholder {
  text-align: center;
  color: #9a9a9b;
}
.form_input input:focus,
.form_input select:focus,
.form_input textarea:focus {
  outline: none;
}
.form_input textarea {
  height: 22.875rem;
  resize: vertical;
}
@media screen and (max-width: 768px) {
  .form_input textarea {
    height: 10.875rem;
  }
}
.form_input select {
  text-align: center;
  background-image: url(../img/common/icon_select.svg);
  background-size: 1.125rem 0.5625rem;
  background-repeat: no-repeat;
  background-position: center right 0.25rem;
}
@media screen and (max-width: 768px) {
  .form_input select {
    background-position: center right;
  }
}

.form_check_item .wpcf7-list-item {
  margin-left: 0 !important;
}
.form_check_item .wpcf7-form-control-wrap,
.form_check_item .wpcf7-checkbox,
.form_check_item .wpcf7-radio {
  display: contents;
}
.form_check_item input {
  display: none;
}
.form_check_item input:checked + span.wpcf7-list-item-label::after {
  transform: translateY(-20%) rotate(-45deg);
  opacity: 1;
  visibility: visible;
}
.form_check_item span.wpcf7-list-item-label {
  display: inline-block;
  font-size: 1.0625rem;
  letter-spacing: 0.105em;
  font-feature-settings: "palt";
  font-weight: 500;
  position: relative;
  padding-left: 1.625rem;
}
@media screen and (max-width: 768px) {
  .form_check_item span.wpcf7-list-item-label {
    font-size: 0.875rem;
  }
}
.form_check_item span.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.9375rem;
  aspect-ratio: 1/1;
  border: 1px solid #000;
  background-color: #fff;
}
.form_check_item span.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.9375rem;
  aspect-ratio: 5/3;
  border-bottom: 2px solid #00a440;
  border-left: 2px solid #00a440;
  transform: translateY(-20%) rotate(-30deg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.form_checks {
  column-gap: 1.875rem;
  row-gap: 1.875rem;
  min-height: unset;
}
@media screen and (max-width: 768px) {
  .form_checks {
    row-gap: 1.25rem;
  }
}

.form_radios {
  column-gap: 3.75rem;
  min-height: unset;
}

.form_input_sm {
  max-width: 21.25rem;
}
.form_input_sm .year {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.125em;
  align-self: flex-end;
  display: inline-block;
  padding-bottom: 1rem;
  margin-left: 0.625rem;
}

.form_note {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.125em;
  font-feature-settings: "palt";
  align-self: flex-end;
  margin-left: 0.75rem;
}
@media screen and (max-width: 768px) {
  .form_note {
    width: 100%;
    text-align: right;
    margin-top: 0.625rem;
  }
}

.form_address_items {
  flex-direction: column;
}

.form_address_item:nth-child(2) {
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .form_address_item:nth-child(2) {
    margin-top: 0.625rem;
  }
}
.form_address_item:nth-child(3) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .form_address_item:nth-child(3) {
    margin-top: 0.75rem;
  }
}

.form_address_text {
  font-size: 0.8125rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.175em;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.form_address_postcode {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.375rem;
}
.form_address_postcode .form_input:nth-child(n+2) {
  position: relative;
}
.form_address_postcode .form_input:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.1875rem;
  transform: translate(-50%, -50%);
  width: 0.875rem;
  height: 0.125rem;
  background-color: #000;
}

.form_button {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .form_button {
    margin-top: 1.25rem;
  }
}
.form_button button,
.form_button input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #00964d;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  max-width: 27.6875rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 4.625rem;
  background-image: url(../img/common/icon_arrow_submit.svg);
  background-size: 2.25rem 1.0625rem;
  background-position: center right 25%;
  background-repeat: no-repeat;
  transition: filter 0.3s ease;
  cursor: pointer;
}
.form_button button:disabled,
.form_button input:disabled {
  background-color: gray;
  cursor: default;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .form_button button,
  .form_button input {
    background-position: center right 20%;
  }
}
.form_button button:hover,
.form_button input:hover {
  filter: brightness(1.1);
}

.form_privacy_wrap {
  max-width: 42.1875rem;
  margin: 3.125rem auto;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 0.375rem;
  padding: 1.875rem 2.5rem 1rem;
}
@media screen and (max-width: 768px) {
  .form_privacy_wrap {
    margin: 2.5rem auto 1.25rem;
  }
}
.form_privacy_wrap dt {
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.195em;
  font-feature-settings: "palt";
  line-height: 1.8823529412;
  margin-bottom: 0.625rem;
}

.form_privacy_text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.135em;
  line-height: 2.2857142857;
  font-feature-settings: "palt";
  text-align: justify;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .form_privacy_text {
    letter-spacing: 0.057em;
  }
}
.form_privacy_text.-right {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .form_privacy_text.-right {
    text-align: center;
  }
}
.form_privacy_text a {
  display: inline-block;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.form_privacy_text a:hover {
  opacity: 0.7;
}

.form_acceptance {
  text-align: center;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .form_acceptance {
    margin-top: 1.25rem;
  }
}

.form_back_button {
  display: block;
  text-align: center;
  max-width: 18.75rem;
  margin: 2.5rem auto 0;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .form_inputs,
  .form_confirm {
    grid-column: 2/3;
  }
}

.form_confirm {
  display: none;
}

.error_message {
  color: red;
  font-size: 0.625rem;
  margin-top: 4px;
}

input.error, textarea.error, select.error {
  border-color: red;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

/*======================================
    contact
======================================*/
.p-contact_container {
  margin-bottom: 21.25rem;
}
@media screen and (max-width: 768px) {
  .p-contact_container {
    margin-bottom: 6.25rem;
  }
}

.p_contact_bg {
  background-color: #ebebec;
  border-radius: 0.375rem;
  max-width: 76.625rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
  padding: 3.125rem 0 3.75rem;
}
@media screen and (max-width: 768px) {
  .p_contact_bg {
    padding: 1.5rem 0;
  }
}
@media screen and (max-width: 768px) {
  .p_contact_bg .c_contact_sp {
    margin-top: 0.625rem;
  }
}
.p_contact_bg .pc_contact_button {
  max-width: 32.625rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #00964d;
  margin-top: 1.875rem;
}
.p_contact_bg .pc_contact_button:hover {
  background-color: #fff;
  color: #00964d;
}
@media screen and (max-width: 768px) {
  .p_contact_bg .pc_contact_button {
    max-width: 17rem;
  }
}
.p_contact_bg .form_input {
  background-color: #fff;
}
.p_contact_bg .form_input.form_checks, .p_contact_bg .form_input.form_radios {
  background-color: unset;
}
@media screen and (max-width: 768px) {
  .p_contact_bg .form_input.form_checks, .p_contact_bg .form_input.form_radios {
    padding-left: 0;
    padding-right: 0;
  }
}
.p_contact_bg .form_privacy_wrap {
  max-width: 55.4375rem;
  border: none;
  background-color: #fff;
}

.p_contact_section_title {
  font-size: 1.625rem;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p_contact_section_title {
    font-size: 1.1875rem;
  }
}
.p_contact_section_title span {
  display: inline-block;
  font-weight: inherit;
  border-bottom: 0.25rem solid #00964d;
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p_contact_section_title span {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.form_input_confirm {
  display: block;
}

.wpcf7-not-valid-tip {
  font-size: 0.625rem;
}

/*======================================
    works
======================================*/
.p-works {
  overflow: hidden;
}
.p-works .p_title h1 {
  font-size: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .p-works .p_title h1 {
    font-size: 0.8125rem;
    margin-top: 0;
  }
}
.p-works .p_title p {
  font-size: 2.375rem;
}
@media screen and (max-width: 768px) {
  .p-works .p_title p {
    font-size: 1.375rem;
  }
}
.p-works .t-contact_buttons .pc_contact_button {
  background-color: #fff;
  color: #00a440;
}
.p-works .t-contact_buttons .pc_contact_button .tel::before {
  background-image: url(../img/common/icon_tel_main.svg);
}
.p-works.-orange .p-works_bg {
  background-color: #f89500;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 768px) {
  .p-works.-orange .p-works_bg {
    padding-bottom: 6.25rem;
  }
}
.p-works.-orange .p-works_bg::before {
  background-image: url(../img/page/bg_orange.png);
}
@media screen and (max-width: 768px) {
  .p-works.-orange .p-works_bg::before {
    background-image: url(../img/page/bg_orange_sp.png);
  }
}
.p-works.-orange .t-contact_buttons .pc_contact_button {
  color: #d77500;
}
.p-works.-orange .t-contact_buttons .pc_contact_button .tel::before {
  background-image: url(../img/common/icon_tel_orange.svg);
}
.p-works.-orange .swiper-pagination .swiper-pagination-bullet {
  color: #d77500;
}
@media screen and (max-width: 768px) {
  .p-works.-orange .p-works_swiper_wrap .swiper-button-next::after,
  .p-works.-orange .p-works_swiper_wrap .swiper-button-prev::after {
    background-color: #f89500;
  }
}
.p-works.-blue .p-works_bg {
  background-color: #418eec;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 768px) {
  .p-works.-blue .p-works_bg {
    padding-bottom: 6.25rem;
  }
}
.p-works.-blue .p-works_bg::before {
  background-image: url(../img/page/bg_blue.png);
}
@media screen and (max-width: 768px) {
  .p-works.-blue .p-works_bg::before {
    background-image: url(../img/page/bg_blue_sp.png);
  }
}
.p-works.-blue .t-contact_buttons .pc_contact_button {
  color: #0077d4;
}
.p-works.-blue .t-contact_buttons .pc_contact_button .tel::before {
  background-image: url(../img/common/icon_tel_blue.svg);
}
.p-works.-blue .swiper-pagination .swiper-pagination-bullet {
  color: #0069d4;
}
@media screen and (max-width: 768px) {
  .p-works.-blue .p-works_swiper_wrap .swiper-button-next::after,
  .p-works.-blue .p-works_swiper_wrap .swiper-button-prev::after {
    background-color: #418eec;
  }
}
@media screen and (max-width: 768px) {
  .p-works .pc_contact_buttons {
    margin: 3.75rem auto;
  }
  .p-works .pc_contact_buttons .c_contact_sp_lead,
  .p-works .pc_contact_buttons .c_contact_sp_text {
    color: #fff;
  }
}

.p-works_bg {
  background-color: #00a440;
  position: relative;
  z-index: 1;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-works_bg {
    padding-bottom: 1.25rem;
  }
}
.p-works_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24.25rem;
  background-image: url(../img/page/bg_green_work.png);
  background-repeat: repeat-x;
  background-size: 124.375rem 31.25rem;
  background-position: 40.5% top;
  background-color: #fff;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-works_bg::before {
    background-image: url(../img/page/bg_green_work_sp.png);
    background-size: 48rem 31.25rem;
    background-position: 50% top;
  }
}

.p-works_head {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-works_head {
    margin-top: 0.625rem;
  }
}
.p-works_head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(208%, 0%);
  aspect-ratio: 184/66;
  background: url(../img/page/works_birds_gray.svg) no-repeat center/contain;
  width: 11.5rem;
}
@media screen and (max-width: 768px) {
  .p-works_head::before {
    background-image: url(../img/page/works_birds_gray_sp.svg);
    width: 4rem;
    aspect-ratio: 64/20;
    transform: translate(-267%, -40%);
  }
}

.p-works_head_illust {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  flex-direction: column;
}

.p-works_head_mountain {
  max-width: 33.25rem;
  width: 100%;
  margin-top: auto;
  margin-bottom: 9rem;
  transform: translateX(-58%);
}
@media screen and (max-width: 768px) {
  .p-works_head_mountain {
    max-width: 11rem;
    margin-bottom: 7.5rem;
    transform: translateX(-30%);
  }
}

.p-works_head_birds {
  width: 100%;
  max-width: 13.75rem;
  transform: translate(4%, -6%);
  justify-self: flex-end;
}
@media screen and (max-width: 768px) {
  .p-works_head_birds {
    max-width: 4.25rem;
    margin-left: auto;
    transform: translate(-16%, -44%);
  }
}

.p-works_head_img {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 51.6666666667%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-works_head_img {
    max-width: 17.25rem;
    width: 100%;
    position: relative;
    z-index: 2;
  }
}

.p-works_head_texts {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 2;
  max-width: 19.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  margin-left: auto;
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 768px) {
  .p-works_head_texts {
    display: contents;
  }
}

.p-works_head_num {
  font-size: 3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-works_head_num {
    grid-column: 1/2;
    grid-row: 1/1;
    align-self: flex-end;
    text-align: right;
    padding-bottom: 6.25rem;
    padding-right: 1.25rem;
  }
}
.p-works_head_num img {
  width: auto;
  height: 1em;
}

.p-works_head_text {
  font-size: 0.9375rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.055em;
  line-height: 2.2666666667;
  text-align: justify;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-works_head_text {
    grid-row: 2/3;
    grid-column: 1/2;
    margin-top: 1.25rem;
    width: 98%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-works_section {
  margin-top: 7.75rem;
}
@media screen and (max-width: 768px) {
  .p-works_section {
    margin-top: 3.375rem;
  }
}

.p-examples {
  padding-bottom: 2.125rem;
}
@media screen and (max-width: 768px) {
  .p-examples .pc_contact_buttons {
    margin-bottom: 0;
  }
}

.p-works_section_ttl {
  text-align: center;
}
.p-works_section_ttl p {
  font-size: 1.8125rem;
}
@media screen and (max-width: 768px) {
  .p-works_section_ttl p {
    font-size: 1.125rem;
  }
}
.p-works_section_ttl p img {
  height: 1em;
  width: auto;
  object-fit: contain;
}
.p-works_section_ttl h2 {
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.235em;
  font-feature-settings: "palt";
  line-height: 1.5263157895;
  margin-top: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-works_section_ttl h2 {
    font-size: 0.8125rem;
    margin-top: 0.5rem;
  }
}

.p-construction_lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.25rem;
  row-gap: 2.5rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-construction_lists {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.5rem;
    row-gap: 1rem;
    margin-top: 0.875rem;
  }
}

.p-construction_list_text {
  font-weight: 700;
  text-align: center;
  line-height: 2.375;
  font-feature-settings: "palt";
  letter-spacing: 0.123em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-construction_list_text {
    font-size: 0.8125rem;
    line-height: 1.4615384615;
    letter-spacing: 0.043em;
  }
}

.p-works_swiper_wrap {
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-works_swiper_wrap {
    margin: 0.625rem calc(50% - 50vw) 0;
    display: grid;
    grid-template-columns: 3.375rem auto 3.375rem;
    row-gap: 0.75rem;
    column-gap: 0.3125rem;
  }
}
.p-works_swiper_wrap .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 0.3125rem;
  position: static;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-works_swiper_wrap .swiper-pagination {
    grid-row: 2/3;
    grid-column: 2/3;
    margin-top: 0;
  }
}
.p-works_swiper_wrap .swiper-pagination .swiper-pagination-bullet {
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.055em;
  font-feature-settings: "palt";
  font-weight: 700;
  background-color: #fff;
  color: #00943d;
  border-radius: 0.125rem;
  width: 2.25rem;
  height: 1.875rem;
  margin: 0;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .p-works_swiper_wrap .swiper-pagination .swiper-pagination-bullet {
    width: 1.6875rem;
    height: 1.6875rem;
    font-size: 0.75rem;
    border-radius: 0;
  }
}
.p-works_swiper_wrap .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000;
  color: #fff !important;
}
.p-works_swiper_wrap .swiper-button-next,
.p-works_swiper_wrap .swiper-button-prev {
  width: 2.125rem;
  aspect-ratio: 1/1;
  margin: 0 !important;
  height: auto;
}
.p-works_swiper_wrap .swiper-button-next::after,
.p-works_swiper_wrap .swiper-button-prev::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-works_swiper_wrap .swiper-button-next,
  .p-works_swiper_wrap .swiper-button-prev {
    position: static;
    width: 1.6875rem;
    position: relative;
    position: 2;
    top: 0 !important;
  }
  .p-works_swiper_wrap .swiper-button-next::before, .p-works_swiper_wrap .swiper-button-next::after,
  .p-works_swiper_wrap .swiper-button-prev::before,
  .p-works_swiper_wrap .swiper-button-prev::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .p-works_swiper_wrap .swiper-button-next::before,
  .p-works_swiper_wrap .swiper-button-prev::before {
    background-color: #bfbfbf;
    mix-blend-mode: multiply;
    z-index: 1;
  }
  .p-works_swiper_wrap .swiper-button-next::after,
  .p-works_swiper_wrap .swiper-button-prev::after {
    background-color: #00a440;
    z-index: -1;
    display: block;
  }
}
.p-works_swiper_wrap .swiper-button-next {
  background: url(../img/page/icon_next.svg) no-repeat center/contain;
  right: 0 !important;
  transform: translate(50%, -150%);
}
@media screen and (max-width: 768px) {
  .p-works_swiper_wrap .swiper-button-next {
    grid-column: 3/4;
    grid-row: 2/3;
    transform: translate(0);
    background: unset;
    margin-left: auto;
  }
  .p-works_swiper_wrap .swiper-button-next::after {
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/page/icon_next_arrow.svg);
    background-size: 0.375rem 0.625rem;
  }
}
.p-works_swiper_wrap .swiper-button-prev {
  background: url(../img/page/icon_prev.svg) no-repeat center/contain;
  left: 0 !important;
  transform: translate(-50%, -150%);
}
@media screen and (max-width: 768px) {
  .p-works_swiper_wrap .swiper-button-prev {
    grid-column: 1/2;
    grid-row: 2/3;
    transform: translate(0);
    background: unset;
    margin-left: auto !important;
  }
  .p-works_swiper_wrap .swiper-button-prev::after {
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/page/icon_prev_arrow.svg);
    background-size: 0.375rem 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-works_swiper {
    grid-column: 1/4;
    grid-row: 1/2;
    min-width: 0;
    width: 100%;
  }
}

.p-works_swiper_slide {
  display: grid;
  grid-template-columns: 1fr;
}

.p-works_swiper_slide_img {
  grid-column: 1/2;
  grid-row: 1/3;
  aspect-ratio: 1080/526;
  background-color: gray;
}
@media screen and (max-width: 768px) {
  .p-works_swiper_slide_img {
    aspect-ratio: 375/302;
  }
}
.p-works_swiper_slide_img img {
  height: 100%;
  object-fit: cover;
}

.p-works_swiper_slide_texts {
  grid-column: 1/2;
  grid-row: 2/3;
  background-color: #231815;
  color: #fff;
  padding: 0.625rem 1.25rem;
}

.p-works_swiper_slide_text {
  line-height: 2.0714285714;
  font-size: 0.875rem;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: 0.175em;
}
@media screen and (max-width: 768px) {
  .p-works_swiper_slide_text {
    font-size: 0.9375rem;
    letter-spacing: 0.115em;
    line-height: 1.5333333333;
  }
}
.p-works_swiper_slide_text span {
  font-weight: 700;
  display: inline-block;
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .p-works_swiper_slide_text span {
    display: block;
    margin-right: 0;
  }
}

@media screen and (min-width: 769px) {
  .p-household {
    padding-top: 21rem;
    padding-bottom: 3.125rem;
  }
}

.p-household_ttl {
  font-size: 1.625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-household_ttl {
    font-size: 1.4375rem;
  }
}
.p-household_ttl img {
  width: auto;
  height: 1em;
}

.p-household_lead {
  font-size: 1.625rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.5769230769;
  text-align: center;
  color: #fff;
  margin-top: 1.875rem;
  letter-spacing: 0.135em;
}
@media screen and (max-width: 768px) {
  .p-household_lead {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    margin-top: 1.25rem;
  }
}

.p-household_eye {
  max-width: 56.25rem;
  margin: 2.5rem auto 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-household_eye {
    margin: 1.25rem calc(50% - 50vw) 1.25rem;
  }
}

.p-household_text {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  font-feature-settings: "palt";
  text-align: justify;
  letter-spacing: 0.055em;
  line-height: 2.2857142857;
  max-width: 56.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-household_text {
    line-height: 2.1428571429;
  }
}

.p-household_graph {
  max-width: 45rem;
  margin: 3.125rem auto 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-household_graph {
    background-color: #fff;
    padding: 0.0625rem;
    margin-top: 2.375rem;
    margin-bottom: 0;
    clip-path: polygon(2.5rem 0%, calc(100% - 2.5rem) 0%, 100% 2.5rem, 100% calc(100% - 2.5rem), calc(100% - 2.5rem) 100%, 2.5rem 100%, 0% calc(100% - 2.5rem), 0% 2.5rem);
  }
}

@media screen and (max-width: 768px) {
  .p-household_graph_wrap {
    background-color: #000;
    padding: 2.5rem 1.25rem 3.125rem;
    clip-path: polygon(2.5rem 0%, calc(100% - 2.5rem) 0%, 100% 2.5rem, 100% calc(100% - 2.5rem), calc(100% - 2.5rem) 100%, 2.5rem 100%, 0% calc(100% - 2.5rem), 0% 2.5rem);
  }
  .p-household_graph_wrap img {
    display: block;
    max-width: 14.625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-household_graph_plus {
  max-width: 2.625rem;
  margin: 1rem auto;
}
@media screen and (min-width: 769px) {
  .p-household_graph_plus {
    display: none;
  }
}

.p-household_solar {
  background-color: #00a440;
  clip-path: polygon(2.5rem 0%, calc(100% - 2.5rem) 0%, 100% 2.5rem, 100% calc(100% - 2.5rem), calc(100% - 2.5rem) 100%, 2.5rem 100%, 0% calc(100% - 2.5rem), 0% 2.5rem);
  overflow: hidden;
  display: grid;
  grid-template-columns: 22.5rem auto;
  position: relative;
  transition: filter 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-household_solar {
    grid-template-columns: 1fr;
  }
}
.p-household_solar:hover {
  filter: brightness(1.1);
}
@media screen and (min-width: 769px) {
  .p-household_solar:hover::before {
    transform: translate(25%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .p-household_solar:hover::before {
    background-color: #fff;
    color: #00a440;
  }
}
.p-household_solar::before {
  content: "";
  position: absolute;
}
@media screen and (min-width: 769px) {
  .p-household_solar::before {
    top: 50%;
    right: 1.625rem;
    transform: translateY(-50%);
    aspect-ratio: 16/30;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background-color: #000;
    width: 1rem;
    transition: transform 0.3s ease;
  }
}
@media screen and (max-width: 768px) {
  .p-household_solar::before {
    content: "MORE";
    bottom: 1.875rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 10rem;
    height: 2.25rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: "DIN Condensed", sans-serif;
    border: 1px solid #fff;
    font-size: 1.375rem;
    letter-spacing: 0.19em;
    font-feature-settings: "palt";
    text-align: center;
    padding-top: 0.25rem;
    line-height: 1;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
}

.p-household_solar_img {
  overflow: hidden;
  background: url(../img/page/works1_household_solar.jpg) no-repeat 32% 68%/137.2% 138.5%;
  min-height: 12.5rem;
}
@media screen and (max-width: 768px) {
  .p-household_solar_img {
    height: 14.125rem;
    background-size: cover;
    background-position: center;
  }
}

.p-household_solar_contents {
  padding: 1.25rem 5.375rem 1.25rem 2.25rem;
  display: flex;
  align-items: center;
  column-gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-household_solar_contents {
    display: grid;
    grid-template-columns: 6.875rem auto;
    column-gap: 0.875rem;
    padding: 0 1.5rem 5.625rem;
  }
}

.p-household_solar_head {
  width: 7.25rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #000;
  font-size: 1.3125rem;
  line-height: 1.380952381;
  font-weight: 900;
  letter-spacing: 0.135em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .p-household_solar_head {
    grid-column: 1/2;
    grid-row: 1/2;
    transform: translateY(-10%);
    width: 6.25rem;
    font-size: 1.0625rem;
    line-height: 1.4705882353;
    margin-left: auto;
  }
}

.p-household_solar_texts {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-household_solar_texts {
    display: contents;
  }
}

.p-household_solar_title {
  font-size: 1.4375rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.135em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-household_solar_title {
    grid-column: 2/3;
    grid-row: 1/2;
    font-size: 1.3125rem;
    line-height: 1.5714285714;
  }
}

.p-household_solar_text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9333333333;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  text-align: justify;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-household_solar_text {
    grid-column: 1/3;
    grid-row: 2/3;
    letter-spacing: 0.055em;
    margin-top: 0rem;
  }
}

.p-household_sell {
  display: grid;
  grid-template-columns: 17.25rem auto;
  column-gap: 3.375rem;
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-household_sell {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
    margin-top: 3.75rem;
  }
}

@media screen and (max-width: 768px) {
  .p-household_sell_img {
    max-width: 17.125rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-household_sell_texts {
  color: #fff;
}

.p-household_sell_lead {
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.5;
  font-feature-settings: "palt";
  letter-spacing: 0.135em;
}
@media screen and (max-width: 768px) {
  .p-household_sell_lead {
    font-size: 1.125rem;
    text-align: center;
    line-height: 1.7222222222;
  }
}

.p-household_sell_text {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.055em;
  font-feature-settings: "palt";
  line-height: 2.2666666667;
  text-align: justify;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-household_sell_text {
    font-size: 0.875rem;
    line-height: 1.7857142857;
    width: 100%;
    margin-top: 1.25rem;
    letter-spacing: 0.135em;
  }
}

@media screen and (max-width: 768px) {
  .c_contact_sp .pc_contact_button {
    margin: 0.625rem auto;
  }
  .c_contact_sp .pc_contact_button .tel {
    padding-left: 3.75rem;
    line-height: 1.5;
  }
  .c_contact_sp .pc_contact_button .tel::before {
    width: 3.125rem;
  }
  .c_contact_sp .pc_contact_button .num {
    font-size: 1.9375rem;
  }
}

.c_contact_sp_lead {
  font-size: 0.9375rem;
  text-align: center;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  line-height: 1.7333333333;
  font-weight: 700;
}

.c_contact_sp_text {
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.12em;
  font-feature-settings: "palt";
}

/*======================================
    solar
======================================*/
.p-solar_eye {
  height: 33.75rem;
}
@media screen and (max-width: 768px) {
  .p-solar_eye {
    height: 12.875rem;
  }
}

.p-solar {
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-solar {
    padding-top: 1.875rem;
  }
}
.p-solar .p_title p {
  font-size: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-solar .p_title p {
    font-size: 1.125rem;
  }
}
.p-solar .p_title h1 {
  font-size: 1.3125rem;
}
@media screen and (max-width: 768px) {
  .p-solar .p_title h1 {
    font-size: 0.8125rem;
    margin-top: 0.625rem;
  }
}

.p-solar_overview {
  max-width: 48.75rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: -1rem;
}
@media screen and (max-width: 768px) {
  .p-solar_overview {
    margin-top: 0.5rem;
  }
}
.p-solar_overview img {
  transform: translateX(-3%);
}
@media screen and (max-width: 768px) {
  .p-solar_overview img {
    width: 105.625%;
    transform: translate(-1.5%);
  }
}

.p-solar_overview_text {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 2.2666666667;
  max-width: 45rem;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-solar_overview_text {
    margin-top: 1.25rem;
    font-feature-settings: "palt";
    text-align: justify;
  }
}

.p-merit {
  margin-top: 6.875rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 768px) {
  .p-merit {
    margin-top: 3.75rem;
    padding-top: 6.25rem;
    padding-bottom: 7.5rem;
  }
}
@media screen and (min-width: 769px) {
  .p-merit .p_title h2 {
    font-size: 1.1875rem;
  }
}

.p-merit_lists {
  padding: 5rem 1.25rem 7.5rem;
  background-color: #fff;
  margin-top: 2.25rem;
  clip-path: polygon(3.75rem 0%, 100% 0, 100% 3.75rem, 100% calc(100% - 3.75rem), calc(100% - 3.75rem) 100%, 3.75rem 100%, 0 100%, 0% 3.75rem);
}
@media screen and (max-width: 768px) {
  .p-merit_lists {
    clip-path: polygon(1.25rem 0%, 100% 0, 100% 1.25rem, 100% calc(100% - 1.25rem), calc(100% - 1.25rem) 100%, 1.25rem 100%, 0 100%, 0% 1.25rem);
    padding: 1.25rem 1.25rem 1.875rem;
  }
}

.p-merit_list {
  max-width: 55.625rem;
  margin-left: auto;
  margin-right: auto;
}
.p-merit_list:nth-child(n+2) {
  margin-top: 3.75rem;
  padding-top: 3.75rem;
  border-top: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .p-merit_list:nth-child(n+2) {
    margin-top: 1.25rem;
    padding-top: 2.5rem;
  }
}

.p-merit_list_title {
  text-align: center;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.115em;
  font-feature-settings: "palt";
  line-height: 1.56;
}
@media screen and (max-width: 768px) {
  .p-merit_list_title {
    font-size: 1rem;
    line-height: 1.8125;
    letter-spacing: 0.095em;
  }
}

@media screen and (max-width: 768px) {
  .p-merit_list_slide {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-feature-settings: "palt";
    display: inline-block;
    padding-left: 1em;
    color: #49a24d;
    margin-top: 1.625rem;
  }
  .p-merit_list_slide span.arrow {
    display: inline-block;
    margin-left: 0.5em;
    width: 2.3125rem;
  }
}

.p-merit_list_img {
  padding-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-merit_list_img {
    padding-left: 0;
    overflow: auto;
    padding-bottom: 0.625rem;
    margin-top: 0.875rem;
  }
  .p-merit_list_img img {
    width: 100%;
    min-width: 47.875rem;
  }
}

.p-merit_list_texts {
  max-width: 44.625rem;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-merit_list_texts {
    margin-top: 1.5rem;
    width: 94.28%;
  }
}

.p-merit_list_text {
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: justify;
  letter-spacing: 0.055em;
  font-feature-settings: "palt";
  line-height: 2.1333333333;
}
@media screen and (max-width: 768px) {
  .p-merit_list_text {
    letter-spacing: 0.05em;
    line-height: 1.9333333333;
  }
}

.p-merit_list_houses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5rem;
  grid-template-rows: 1fr auto;
  grid-auto-flow: column;
  row-gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-merit_list_houses {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
    margin-top: 1.25rem;
  }
}

@media screen and (min-width: 769px) {
  .p-merit_list_house {
    display: contents;
  }
}

@media screen and (max-width: 768px) {
  .p-merit_list_house_img {
    max-width: 15rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-merit_list_house_text {
  font-size: 0.875rem;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.8571428571;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-merit_list_house_text {
    width: 92.86%;
    line-height: 1.7142857143;
    margin-top: 0.625rem;
  }
}

/*======================================
    thanks
======================================*/
.p-thanks {
  padding: 12.5rem 0 21.875rem;
}
@media screen and (max-width: 768px) {
  .p-thanks {
    padding: 6.25rem 0 12.5rem;
  }
}

@media screen and (max-width: 768px) {
  .p-thanks_title {
    line-height: 1.5;
  }
}

.p-thanks_img {
  max-width: 19.875rem;
  margin: 2.5rem auto 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-thanks_img {
    max-width: 15rem;
  }
}

.p-thanks_text {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  font-feature-settings: "palt";
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .p-thanks_text {
    font-size: 0.875rem;
  }
}

.p-thanks_button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  background-color: #00964d;
  color: #fff;
  max-width: 27.75rem;
  height: 4.625rem;
  width: 100%;
  margin: 3.75rem auto 0;
  transition: filter 0.3s ease;
}
.p-thanks_button:hover {
  filter: brightness(1.1);
}
@media screen and (max-width: 768px) {
  .p-thanks_button {
    font-size: 0.875rem;
    height: 3.75rem;
    margin-top: 2.5rem;
  }
}

/*======================================
    TOP
======================================*/
.fv {
  display: grid;
  grid-template-columns: 1fr;
}

.fv_swiper {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 100%;
  min-width: 0;
}

.fv_swiper_slide {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  max-height: 67.5rem;
}
@media screen and (max-width: 768px) {
  .fv_swiper_slide {
    max-height: 42.5rem;
  }
}
.fv_swiper_slide img {
  height: 100%;
  object-fit: cover;
}

.fv_contents {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fv_logo {
  width: 24.1875rem;
  position: relative;
  transform: translateY(-3%);
}
@media screen and (max-width: 768px) {
  .fv_logo {
    width: 11.75rem;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    row-gap: 2.5rem;
  }
}

.fv_lead {
  width: 9.5rem;
}
@media screen and (min-width: 769px) {
  .fv_lead {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(183%, 13%);
  }
}
@media screen and (max-width: 768px) {
  .fv_lead {
    width: 6.25rem;
  }
}

.fv_swiper_pagination {
  bottom: 7.5rem !important;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .fv_swiper_pagination {
    bottom: 4.75rem !important;
  }
}

.swiper_common_pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid #fff;
  opacity: 1;
  background-color: unset;
}
@media screen and (max-width: 768px) {
  .swiper_common_pagination .swiper-pagination-bullet {
    margin: 0 0.375rem !important;
  }
}
.swiper_common_pagination .swiper-pagination-bullet-active {
  background-color: #00a440;
  border-color: #00a440;
}

.t-about {
  margin-top: 6.875rem;
}
@media screen and (max-width: 768px) {
  .t-about {
    margin-top: 3.125rem;
  }
}
@media screen and (min-width: 769px) {
  .t-about .section_ttl p {
    font-size: 2.125rem;
  }
}

.t-about_wrap {
  max-width: 51.25rem;
  margin: 1.875rem auto 0;
  display: grid;
  grid-template-columns: auto 17.25rem;
  column-gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .t-about_wrap {
    grid-template-columns: 1fr;
    margin-top: 1.25rem;
  }
  .t-about_wrap .button_more {
    margin-left: auto;
    margin-right: auto;
  }
}

.t-about_lead {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
  line-height: 1.4615384615;
  white-space: nowrap;
  margin-top: -0.3692307692em;
}
@media screen and (max-width: 768px) {
  .t-about_lead {
    font-size: 1.3125rem;
    text-align: center;
    margin-top: 0.625rem;
  }
}

.t-about_text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  font-feature-settings: "palt";
  line-height: 2.1428571429;
  margin-top: 0.625rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .t-about_text {
    letter-spacing: 0.02em;
    line-height: 1.8571428571;
  }
}

.t-works {
  margin-top: 0.625rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .t-works {
    padding-bottom: 3.375rem;
  }
}
.t-works .section_ttl {
  margin-top: 0.625rem;
}

.t-works_lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 8.125rem;
  row-gap: 4.375rem;
  margin-top: -1.875rem;
}
@media screen and (max-width: 768px) {
  .t-works_lists {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
    margin-top: 0.625rem;
  }
}

@media screen and (min-width: 769px) {
  .t-works_list:nth-child(even) {
    transform: translateY(4.375rem);
  }
  .t-works_list:nth-child(3) {
    transform: translate(1.75rem, -6.75rem);
  }
}
@media screen and (max-width: 768px) {
  .t-works_list:nth-child(3) .t-works_list_img {
    margin-left: auto;
  }
  .t-works_list:nth-child(3) .t-works_list_img .img {
    clip-path: polygon(2.75rem 0%, calc(100% - 3.125rem) 0%, 100% 0, 100% calc(100% - 3.125rem), calc(100% - 3.125rem) 100%, 2.75rem 100%, 0 100%, 0% 2.75rem);
  }
  .t-works_list:nth-child(3) .t-works_list_en {
    right: unset;
    left: 0;
    transform: translateX(calc(-100% - 0.25em));
  }
}
.t-works_list:nth-child(2) .t-works_head {
  color: #00ca00;
}
.t-works_list:nth-child(3) .t-works_head {
  color: #ea9500;
}
.t-works_list:nth-child(3) .t-works_head .t-works_head_more {
  border-color: #ea9500;
}
.t-works_list:nth-child(4) .t-works_head {
  color: #00add5;
}
.t-works_list:nth-child(4) .t-works_head .t-works_head_more {
  border-color: #00add5;
}

.t-works_texts {
  clip-path: polygon(0 0, calc(100% - 4.6875rem) 0%, 100% 5.3125rem, 100% calc(100% - 5.3125rem), 100% 100%, 4.6875rem 100%, 0% calc(100% - 5.3125rem), 0% 5.3125rem);
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .t-works_texts {
    clip-path: polygon(0 0, calc(100% - 2.75rem) 0%, 100% 3.125rem, 100% calc(100% - 3.125rem), 100% 100%, 2.75rem 100%, 0% calc(100% - 3.125rem), 0% 3.125rem);
  }
}
@media screen and (min-width: 769px) {
  .t-works_texts {
    aspect-ratio: 472/421;
    padding-bottom: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .t-works_texts {
    padding: 1.5rem 2rem 2.5rem;
  }
}

.t-works_lead {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.4615384615;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .t-works_lead {
    font-size: 1.0625rem;
    line-height: 1.5;
    letter-spacing: normal;
  }
}

.t-works_text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.135em;
  font-feature-settings: "palt";
  text-align: justify;
  line-height: 2.2857142857;
  max-width: 20.625rem;
  margin: 1.25rem auto 0;
}
@media screen and (max-width: 768px) {
  .t-works_text {
    letter-spacing: 0.125em;
    line-height: 1.6428571429;
    width: 94.5%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.625rem;
  }
}

.t-works_link {
  display: block;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 4.375rem auto;
}
@media screen and (max-width: 768px) {
  .t-works_link {
    grid-template-rows: 3rem auto;
  }
}
.t-works_link:hover .t-works_list_img .img img {
  transform: scale(1.05);
}

.t-works_head {
  grid-column: 1/2;
  grid-row: 1/2;
  aspect-ratio: 1/1;
  width: 10.25rem;
  background-color: #000;
  position: relative;
  z-index: 2;
  clip-path: polygon(3rem 0%, calc(100% - 3rem) 0%, 100% 3rem, 100% calc(100% - 3rem), calc(100% - 3rem) 100%, 3rem 100%, 0% calc(100% - 3rem), 0% 3rem);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .t-works_head {
    width: 7.875rem;
    clip-path: polygon(2.25rem 0%, calc(100% - 2.25rem) 0%, 100% 2.25rem, 100% calc(100% - 2.25rem), calc(100% - 2.25rem) 100%, 2.25rem 100%, 0% calc(100% - 2.25rem), 0% 2.25rem);
  }
}

.t-works_head_title {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.135em;
  font-feature-settings: "palt";
  line-height: 1.5333333333;
}
@media screen and (max-width: 768px) {
  .t-works_head_title {
    font-size: 0.8125rem;
    line-height: 1.3076923077;
  }
}
.t-works_head_title .num {
  display: block;
  font-size: 1.3125rem;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 768px) {
  .t-works_head_title .num {
    font-size: 0.875rem;
  }
}
.t-works_head_title .num img {
  width: auto;
  height: 1em;
}

.t-works_head_more {
  display: inline-block;
  font-feature-settings: "palt";
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "DIN Condensed", sans-serif;
  letter-spacing: 0.13em;
  margin-top: 0.625rem;
  padding-bottom: 0.25em;
  border-bottom: 1px solid #00ca00;
}
@media screen and (max-width: 768px) {
  .t-works_head_more {
    font-size: 0.8125rem;
  }
}

.t-works_list_img {
  grid-column: 1/2;
  grid-row: 2/3;
  position: relative;
}
@media screen and (max-width: 768px) {
  .t-works_list_img {
    width: 93.75%;
  }
}
.t-works_list_img .img {
  clip-path: polygon(0 0, calc(100% - 4.6875rem) 0%, 100% 5.3125rem, 100% calc(100% - 5.3125rem), 100% 100%, 4.6875rem 100%, 0% calc(100% - 5.3125rem), 0% 5.3125rem);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .t-works_list_img .img {
    clip-path: polygon(0 0, calc(100% - 2.75rem) 0%, 100% 3.125rem, 100% calc(100% - 3.125rem), 100% 100%, 2.75rem 100%, 0% calc(100% - 3.125rem), 0% 3.125rem);
  }
}
.t-works_list_img .img img {
  transition: transform 0.3s ease;
}

.t-works_list_en {
  color: #fff;
  font-weight: 700;
  font-family: "DIN Condensed", sans-serif;
  font-size: 1.625rem;
  letter-spacing: 0.13em;
  font-feature-settings: "palt";
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
}
@media screen and (min-width: 769px) {
  .t-works_list_en {
    top: 0;
    left: 0;
    transform: translateX(calc(-100% - 0.25em));
  }
}
@media screen and (max-width: 768px) {
  .t-works_list_en {
    top: 3.125rem;
    right: 0;
    transform: translateX(calc(100% + 0.25em));
    font-size: 1.0625rem;
  }
}

.t-works_solar {
  display: grid;
  grid-template-columns: auto 29.875rem;
  column-gap: 2.5rem;
  align-items: flex-end;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .t-works_solar {
    grid-template-columns: 1fr;
    grid-template-rows: 3.125rem 7.375rem auto;
    column-gap: 0;
    grid-auto-flow: column;
    padding: 0 2.5rem 6.875rem;
    margin-top: 11.2vw;
    position: relative;
  }
  .t-works_solar::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 3.125rem);
    background-color: #000;
    clip-path: polygon(1rem 0%, calc(100% - 1.25rem) 0%, 100% 1rem, 100% calc(100% - 1.25rem), calc(100% - 1.25rem) 100%, 1rem 100%, 0% calc(100% - 1.25rem), 0% 1rem);
    z-index: -1;
  }
  .t-works_solar::after {
    content: "MORE";
    font-size: 1.375rem;
    font-weight: 700;
    font-family: "DIN Condensed", sans-serif;
    letter-spacing: 0.19em;
    font-feature-settings: "palt";
    max-width: 10rem;
    width: calc(100% - 5rem);
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.25rem;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
}
@media screen and (max-width: 768px) {
  .t-works_solar:hover::after {
    background-color: #fff;
    color: #000;
  }
}
.t-works_solar:hover .t-works_solar_img .img img {
  transform: scale(1.05);
}
.t-works_solar:hover .t-works_solar_wrap::before {
  transform: translate(20%, -50%) rotate(-45deg);
}

.t-works_solar_img {
  position: relative;
  grid-column: 1/2;
  grid-row: 1/2;
  max-width: 28.75rem;
  margin-left: auto;
  z-index: 2;
  padding-bottom: 3.625rem;
}
@media screen and (max-width: 768px) {
  .t-works_solar_img {
    grid-row: 1/3;
    min-width: 0;
    margin-right: auto;
    width: 84.2%;
    padding-bottom: 0;
    max-width: 16.25rem;
  }
}
.t-works_solar_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 72/62;
  width: 4.5rem;
  background: url(../img/top/works_lightning.svg) no-repeat center/contain;
  transform: translate(-150%, -17%);
}
@media screen and (max-width: 768px) {
  .t-works_solar_img::before {
    width: 2.6875rem;
    transform: translate(-110%, -17%);
  }
}
.t-works_solar_img .img {
  width: 100%;
  clip-path: polygon(6.125rem 0%, calc(100% - 6.125rem) 0%, 100% 6.125rem, 100% calc(100% - 6.125rem), calc(100% - 6.125rem) 100%, 6.125rem 100%, 0% calc(100% - 6.125rem), 0% 6.125rem);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .t-works_solar_img .img {
    clip-path: polygon(2.625rem 0%, calc(100% - 2.625rem) 0%, 100% 2.625rem, 100% calc(100% - 2.625rem), calc(100% - 2.625rem) 100%, 2.625rem 100%, 0% calc(100% - 2.625rem), 0% 2.625rem);
  }
}
.t-works_solar_img .img img {
  transition: transform 0.3s ease;
}

.t-works_solar_wrap {
  grid-column: 1/3;
  grid-row: 1/2;
  position: relative;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .t-works_solar_wrap {
    clip-path: polygon(3.625rem 0%, calc(100% - 3.625rem) 0%, 100% 4rem, 100% calc(100% - 4rem), calc(100% - 3.625rem) 100%, 3.625rem 100%, 0% calc(100% - 4rem), 0% 4rem);
    padding: 3.4375rem 6.875rem 3.625rem;
    background-color: #000;
  }
  .t-works_solar_wrap::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.375rem;
    transform: translateY(-50%) rotate(-45deg);
    aspect-ratio: 1/1;
    width: 1.5rem;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transition: transform 0.3s ease;
  }
}
@media screen and (max-width: 768px) {
  .t-works_solar_wrap {
    grid-row: 3/4;
  }
}

.t-works_solar_contents {
  max-width: 22.375rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .t-works_solar_contents {
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .t-works_solar_title {
    text-align: center;
    margin-top: 1.75rem;
  }
}
.t-works_solar_title h3 {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.195em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .t-works_solar_title h3 {
    font-size: 1.125rem;
  }
}
.t-works_solar_title p {
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: "DIN Condensed", sans-serif;
  letter-spacing: 0.13em;
  font-feature-settings: "palt";
  line-height: 1.8;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .t-works_solar_title p {
    font-size: 0.8125rem;
    margin-top: 0.5em;
  }
}

.t-works_solar_text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.135em;
  font-feature-settings: "palt";
  text-align: justify;
  line-height: 2.2857142857;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .t-works_solar_text {
    line-height: 1.8571428571;
    letter-spacing: 0.02em;
  }
}

@media screen and (max-width: 768px) {
  .t_news_wrap {
    display: flex;
    flex-direction: column;
  }
}

.t_news_head {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 1.25rem;
  align-items: flex-end;
  margin-bottom: 0.375rem;
}
@media screen and (max-width: 768px) {
  .t_news_head {
    display: contents;
  }
}
.t_news_head .section_ttl {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 768px) {
  .t_news_head .section_ttl {
    order: 1;
  }
}

.t_news_archive {
  grid-column: 3/4;
  grid-row: 1/2;
  color: #fff;
  font-size: 0.6875rem;
  letter-spacing: 0.195em;
  font-feature-settings: "palt";
  width: fit-content;
  text-decoration: underline;
  margin-left: auto;
  margin-bottom: 1.25rem;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .t_news_archive {
    order: 3;
    margin: 1.25rem auto 0;
    font-size: 0.8125rem;
  }
}
.t_news_archive:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .t_news_lists {
    order: 2;
    margin-top: 0.625rem;
  }
}

.news_list:nth-child(n+2) {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.news_list_link {
  display: grid;
  grid-template-columns: 8.5rem auto;
  min-height: 4rem;
  padding: 0.75rem 1.875rem 0.75rem 0;
  background-color: #fff;
  align-items: center;
  column-gap: 3.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news_list_link {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 0.625rem 2.5rem;
    min-height: 5.25rem;
  }
}
.news_list_link:hover .news_list_title {
  opacity: 0.7;
}
.news_list_link:hover::before {
  transform: translate(20%, -50%) rotate(-45deg);
}
.news_list_link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.875rem;
  transform: translateY(-50%) rotate(-45deg);
  aspect-ratio: 1/1;
  width: 0.625rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  border-right: 1px solid rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news_list_link::before {
    display: none;
  }
}

.news_list_text {
  font-size: 0.875rem;
  font-feature-settings: "palt";
}

.news_list_date {
  letter-spacing: 0.055em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .news_list_date {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(0, 0, 0, 0.5);
  }
}
@media screen and (max-width: 768px) {
  .news_list_date {
    line-height: 1;
  }
}

.news_list_title {
  font-weight: 500;
  letter-spacing: 0.115em;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news_list_title {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .t-contact_buttons .f_contact_text {
    color: #fff;
  }
}

.pc_contact_buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.125rem;
  margin: 6.625rem 0;
}
@media screen and (max-width: 768px) {
  .pc_contact_buttons.sp_show {
    grid-template-columns: 1fr;
    display: grid;
    row-gap: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .pc_contact_buttons {
    display: none;
  }
}

.pc_contact_button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 9.125rem;
  background-color: #ff7900;
  color: #fff;
  clip-path: polygon(1.125rem 0%, 100% 0, 100% 1.125rem, 100% calc(100% - 1.125rem), calc(100% - 1.125rem) 100%, 1.125rem 100%, 0 100%, 0% 1.125rem);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.7142857143;
  font-feature-settings: "palt";
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .pc_contact_button {
    height: 6.25rem;
    font-size: 0.8125rem;
  }
}
.pc_contact_button:hover {
  background-color: #fff;
  color: #ff7900;
}
.pc_contact_button .en {
  font-size: 2.625rem;
  letter-spacing: 0.13em;
  font-family: "DIN Condensed", sans-serif;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .pc_contact_button .en {
    font-size: 1.875rem;
    line-height: 1;
  }
}
.pc_contact_button .tel {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  display: block;
  padding-left: 4.625rem;
  position: relative;
  transform: translateX(-3%);
}
.pc_contact_button .tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  aspect-ratio: 1/1;
  width: 3.625rem;
  background: url(../img/common/icon_tel.svg) no-repeat center/contain;
}
.pc_contact_button .num {
  display: block;
  font-family: "DIN Condensed", sans-serif;
  font-size: 2.75rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
  .t-office {
    margin-top: 3.75rem;
  }
}

.t-office_lists {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .t-office_lists {
    margin-top: 1.25rem;
  }
}

.t-office_list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.t-office_list:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.t-office_list_dl {
  color: #fff;
  display: grid;
  grid-template-columns: 8.125rem auto;
  column-gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .t-office_list_dl {
    grid-template-columns: 6.25rem auto;
  }
}
.t-office_list_dl dt, .t-office_list_dl dd {
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  .t-office_list_dl dt, .t-office_list_dl dd {
    padding: 1rem 0 1.875rem;
  }
}
.t-office_list_dl dt {
  letter-spacing: 0.12em;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .t-office_list_dl dt {
    background-color: #696969;
  }
}
@media screen and (max-width: 768px) {
  .t-office_list_dl dt {
    text-align: center;
    line-height: 1.3333333333;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
}
.t-office_list_dl dd {
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .t-office_list_dl dd {
    display: grid;
    grid-template-columns: auto 11.25rem;
  }
}
.t-office_list_dl dd .tel {
  display: block;
  font-weight: inherit;
}
@media screen and (max-width: 768px) {
  .t-office_list_dl dd .tel {
    margin-top: 0.625rem;
  }
}
.t-office_list_dl dd .tel a {
  font-weight: inherit;
}

.t-office_link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  background-color: #ff7900;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #fff;
  margin-top: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-feature-settings: "palt";
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .t-office_link {
    min-height: 3.625rem;
    margin-top: 1.5rem;
  }
}
.t-office_link:hover {
  background-color: #fff;
  color: #ff7900;
}

.t-recruit {
  margin-top: 6.25rem;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 768px) {
  .t-recruit {
    margin-top: 5rem;
    padding-bottom: 1.875rem;
  }
}

.t-recruit_link {
  display: grid;
  grid-template-columns: auto 20.125rem;
}
.t-recruit_link:hover .t-recruit_img img {
  transform: scale(1.05);
}
@media screen and (min-width: 769px) {
  .t-recruit_link:hover .t-recruit_more {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .t-recruit_link {
    grid-template-columns: 1fr;
  }
  .t-recruit_link:hover .t-recruit_more {
    background-color: #fff;
    color: #00a440;
  }
}

.t-recruit_texts {
  background-color: #00a440;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 10.25rem;
  padding-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .t-recruit_texts {
    padding-left: 0;
  }
}

.t-recruit_title {
  font-size: 2.375rem;
  font-family: "DIN Condensed", sans-serif;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .t-recruit_title {
    font-size: 1.875rem;
  }
}

.t-recruit_text {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  line-height: 1.7142857143;
  font-feature-settings: "palt";
  margin-top: 0.375rem;
}

.t-recruit_more {
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: "DIN Condensed", sans-serif;
  letter-spacing: 0.13em;
  display: inline-block;
  padding-bottom: 0.2em;
  border-bottom: 1px solid #fff;
  margin-top: 0.75rem;
  transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .t-recruit_more {
    padding: 0;
    border: 1px solid #fff;
    font-size: 1.375rem;
    letter-spacing: 0.19em;
    display: flex;
    width: 10rem;
    height: 2.375rem;
    justify-content: center;
    align-items: center;
    padding-top: 0.2em;
  }
}

.t-recruit_img {
  overflow: hidden;
}
.t-recruit_img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.t-parallax {
  height: 33.5rem;
}
@media screen and (max-width: 768px) {
  .t-parallax {
    height: 16.875rem;
  }
}

.js-parallax {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.js-parallax_img {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 150%;
  z-index: -1;
}
.js-parallax_img img {
  height: 100%;
  object-fit: cover;
  display: block;
}

/*# sourceMappingURL=style.css.map */
