@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&Noto+Serif+JP:wght@500;700&display=swap");
:root {
  /* custom color */
  --black: #000;
  --white: #fff;
  --kous-black: #333;
  --gray: #ddd;
  --blue: blue;
  --green-base: #4FAD44;
  --green-light: #A9C302;
  --red-base: #D6006C;
  --reset: #898989;
  --check-line: #CECECE;
  --line: #707070;
  --border:#BEBEBE;
  --bg: #F9F7F5;
  /* table */
  --table-th-border: var(--green-base);
  --table-td-border: #D4D8DB;
  /* template color */
  --main-color: var(--kous-black);
  --main-bg-color: var(--white);
  --main-border-color: #e1e1e1;
  /* footer */
  --footer-menu-border: var(--gray);
  --copyright-bg: var(--gray);
  --copyright-color: var(--kous-black);
  /* hamburger menu */
  --hamburger-trigger-bg: var(--green-base);
  --hamburger-trigger-bar: var(--white);
  --hamburger-bg: var(--kous-black);
  --hamburger-border: var(--white);
  --hamburger-color: var(--white);
  /* pagenavi */
  --pagenavi-navi-bg: var(--blue);
  --pagenavi-navi-border: var(--white);
  /* contact page Navi*/
  --form-page-tab: var(--bg);
  --form-tab-border: transparent;
  --form-tab-line: var(--green-light);
  --form-page-active: var(--green-light);
  --form-active-color: var(--white);
  /* policy */
  --policy-dt-color: var(--blue);
  --policy-link-color: var(--blue);
  /* 404 */
  --404-h1_color: #BEBEBE;
  --404-menu-border: var(--kous-black);
}

/* form */
.mw_wp_form {
  --form-bg-color: #f8f8f8;
  --form-white: var(--white);
  --form-red: #c50000;
  --form-gray: #999999;
  --form-border: #cccccc;
  --form-policy-linkcolor: #0969b2;
  --form-go-bg: #0969b2;
  --form-go-color: var(--white);
  --form-back-bg: #0969b2;
}

:root {
  font-size: 16px;
}

.mincho {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 500;
}

@font-face {
  font-family: LINESeedJP;
  font-display: swap;
  src: local("LINE Seed JP TTF"), url("../fonts/LINESeedJP_OTF_Eb.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: LINESeedJP;
  font-display: swap;
  src: local("LINE Seed JP TTF"), url("../fonts/LINESeedJP_OTF_Bd.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: LINESeedJP;
  font-display: swap;
  src: local("LINE Seed JP TTF"), url("../fonts/LINESeedJP_OTF_Rg.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
.disp__only {
  display: none;
}
@media screen and (max-width: 900px) {
  .disp__only.--mobile {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .disp__only.--sp {
    display: block;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex._fdr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .flex._fdr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

* {
  margin: 0;
  padding: 0;
}
*:focus {
  outline: none !important;
}

body {
  color: var(--main-color);
  background: var(--white);
  font-weight: 500;
  font-family: LINESeedJP, sans-serif;
  padding-top: clamp(64px, 9.375vw, 120px);
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}
@media screen and (max-width: 1280px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media screen and (max-width: 900px) {
  body #swipebox-close {
    right: auto;
    left: 0;
  }
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

p,
th,
td,
li,
dt,
dd,
address {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 400;
  line-height: 2;
  font-style: normal;
}

div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}
@media screen and (max-width: 900px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br {
    display: none;
  }
  h1 br._block,
  h2 br._block,
  h3 br._block,
  h4 br._block,
  h5 br._block {
    display: block;
  }
}

img,
picture,
figure {
  margin: 0;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a.link {
  text-decoration: underline;
  display: inline;
}
a:hover {
  opacity: 0.6;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
  cursor: default;
}
a[href^=tel]:hover {
  opacity: 1;
}
@media screen and (min-width: 901px) {
  a[href^=tel] {
    pointer-events: none;
  }
}

.wp-caption {
  margin: 10px;
  padding-top: 4px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #f3f3f3;
  text-align: center;
}
.wp-caption img {
  margin: 0;
  padding: 0;
  border: none;
}
.wp-caption p.wp-caption-text {
  margin: 0;
  padding: 0 4px 5px;
  font-size: 11px;
  line-height: 17px;
}

.text-center {
  text-align: center;
}
@media screen and (max-width: 900px) {
  .text-center {
    text-align: left;
  }
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

pre {
  padding: 30px 40px;
  background: #c71585;
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  position: relative;
  z-index: 0;
}

.cm-style {
  overflow: clip;
}

.image {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.image--inline {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  height: auto !important;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  table-layout: fixed;
}

tbody,
tr {
  width: 100%;
  height: auto !important;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

th,
td {
  padding: 24px;
  border: 3px solid var(--white);
  background: var(--gray);
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  text-align: left;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-break: break-all;
}

th {
  width: 240px;
  background: var(--gray);
}

.container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding-right: 40px;
  padding-left: 40px;
  overflow: clip;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.container._of {
  overflow: visible;
}
@media screen and (max-width: 500px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.over--left {
  width: auto;
  max-width: none;
  margin-left: calc((100vw - 1600px) / 2);
  padding: 0;
}
@media screen and (max-width: 1280px) {
  .over--left .image {
    margin-right: -40px;
  }
}
@media screen and (max-width: 500px) {
  .over--left .image {
    margin-right: -20px;
  }
}

.over--right {
  width: auto;
  max-width: none;
  margin-right: calc((100vw - 1600px) / 2);
  padding: 0;
}
@media screen and (max-width: 1280px) {
  .over--right .image {
    margin-left: -40px;
  }
}
@media screen and (max-width: 500px) {
  .over--right .image {
    margin-left: -20px;
  }
}

@media screen and (max-width: 1280px) {
  .over--left,
  .over--right {
    width: 100%;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 500px) {
  .over--left,
  .over--right {
    width: 100%;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.flickWrap {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .flickWrap {
    padding: 5px 0;
    overflow: auto;
    white-space: nowrap;
  }
  .flickWrap::before {
    margin-bottom: 20px;
    color: #f55;
    font-size: clamp(0.75rem, 1.5555555556vw, 0.875rem);
    content: "※表が見切れる場合は横スクロールでご覧ください。";
  }
  .flickWrap::-webkit-scrollbar {
    height: 5px;
  }
  .flickWrap::-webkit-scrollbar-track, .flickWrap::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
}

@media screen and (max-width: 900px) {
  .activeNav {
    height: 100%;
    overflow: hidden;
  }
}
.lazy {
  opacity: 0;
  position: relative;
  -webkit-transform: translate(0%, 50px);
          transform: translate(0%, 50px);
}
.lazy.--show {
  opacity: 1;
}

.lazy-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 901px) {
  .swap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.cm-wrapper {
  margin-top: 80px;
}

.cm-headline {
  margin-bottom: 32px;
}
.cm-headline h2 {
  font-size: clamp(1.25rem, 2.6666666667vw, 1.5rem);
}
.cm-headline small {
  font-size: clamp(0.875rem, 1.7777777778vw, 1rem);
}

.cm-caption {
  font-size: clamp(1.25rem, 2.6666666667vw, 1.5rem);
  margin-bottom: 20px;
}

.cm-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 72px;
}

@media screen and (min-width: 901px) {
  .cm-column_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.cm-column_pic {
  width: 33.3333333333%;
}

.cm-column_wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cm-grid_column {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  grid-gap: 32px;
}

.cm-grid_column > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.cm-grid_column > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.cm-grid_column > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

/* .cm-grid_area{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 16px;
}
.cm-grid-content{
    &:nth-child(6n + 1){
        grid-row: 1 / 3;
        grid-column: 1;
    }
    &:nth-child(6n + 2){
        grid-row: 1;
        grid-column: 2;
    }
    &:nth-child(6n + 3){
        grid-row: 2;
        grid-column: 2;
    }
    &:nth-child(6n + 4){
        grid-row: 3 / 5;
        grid-column: 2;
    }
    &:nth-child(6n + 5){
        grid-row: 3;
        grid-column: 1;
    }
    &:nth-child(6n + 6){
        grid-row: 4;
        grid-column: 1;
    }
} */
.cm-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: clamp(64px, 5vw, 80px);
  text-align: center;
}
.cm-list a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: clamp(0.8125rem, 1.6666666667vw, 0.9375rem);
  font-weight: 700;
  color: var(--kous-black);
}
.cm-list .pages {
  display: none;
}
.cm-list_prev, .cm-list_next {
  min-width: 55px;
}
.cm-list_prev a, .cm-list_next a {
  text-decoration: underline;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cm-list_prev a path, .cm-list_next a path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cm-list_prev a:hover, .cm-list_next a:hover {
  opacity: 1;
}
.cm-list_prev a:hover path, .cm-list_next a:hover path {
  fill: var(--green-light);
}

.cm-list_archive {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cm-list_archive .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.cm-list_archive a,
.cm-list_archive span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: unset !important;
  margin: unset !important;
  border: none !important;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  font-size: clamp(0.9375rem, 2.2222222222vw, 1.25rem);
  font-weight: 700;
}
@media screen and (min-width: 829px) {
  .cm-list_archive a,
  .cm-list_archive span {
    width: 36px;
  }
}
@media screen and (max-width: 828px) {
  .cm-list_archive a,
  .cm-list_archive span {
    width: 24px;
  }
}
.cm-list_archive a:hover,
.cm-list_archive span:hover {
  opacity: 1;
  color: var(--white);
  background-color: var(--green-light);
  border-color: var(--kous-black);
}
.cm-list_archive a.previouspostslink,
.cm-list_archive span.previouspostslink {
  width: 9px;
  height: 16px;
  color: transparent;
  position: relative;
  border: none;
  border-radius: 0;
}
.cm-list_archive a.previouspostslink::before,
.cm-list_archive span.previouspostslink::before {
  content: "";
  background: url("../images/icon/arr_prev-gray.png") no-repeat;
  background-size: contain;
  width: 9px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-filter: brightness(0) saturate(100%) invert(90%) sepia(5%) saturate(195%) hue-rotate(169deg) brightness(96%) contrast(86%);
          filter: brightness(0) saturate(100%) invert(90%) sepia(5%) saturate(195%) hue-rotate(169deg) brightness(96%) contrast(86%);
}
.cm-list_archive a.previouspostslink:hover,
.cm-list_archive span.previouspostslink:hover {
  background: transparent;
}
.cm-list_archive a.previouspostslink:hover::before,
.cm-list_archive span.previouspostslink:hover::before {
  -webkit-filter: brightness(0) saturate(100%) invert(40%) sepia(43%) saturate(1579%) hue-rotate(179deg) brightness(92%) contrast(92%);
          filter: brightness(0) saturate(100%) invert(40%) sepia(43%) saturate(1579%) hue-rotate(179deg) brightness(92%) contrast(92%);
}
.cm-list_archive a.nextpostslink,
.cm-list_archive span.nextpostslink {
  width: 9px;
  height: 16px;
  color: transparent;
  position: relative;
  border: none;
  border-radius: 0;
}
.cm-list_archive a.nextpostslink::after,
.cm-list_archive span.nextpostslink::after {
  content: "";
  background: url("../images/icon/arr_next-gray.png") no-repeat;
  background-size: contain;
  width: 9px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-filter: brightness(0) saturate(100%) invert(90%) sepia(5%) saturate(195%) hue-rotate(169deg) brightness(96%) contrast(86%);
          filter: brightness(0) saturate(100%) invert(90%) sepia(5%) saturate(195%) hue-rotate(169deg) brightness(96%) contrast(86%);
}
.cm-list_archive a.nextpostslink:hover,
.cm-list_archive span.nextpostslink:hover {
  background: transparent;
}
.cm-list_archive a.nextpostslink:hover::after,
.cm-list_archive span.nextpostslink:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(73%) sepia(97%) saturate(1194%) hue-rotate(18deg) brightness(89%) contrast(98%);
          filter: brightness(0) saturate(100%) invert(73%) sepia(97%) saturate(1194%) hue-rotate(18deg) brightness(89%) contrast(98%);
}
.cm-list_archive img {
  display: block;
  width: 8px;
}
.cm-list_archive .current {
  color: var(--white);
  background-color: var(--green-light);
  border-color: var(--pagenavi-navi-border);
}
.cm-list_archive .previouspostslink img {
  -webkit-transform: translateX(-1px);
          transform: translateX(-1px);
}
.cm-list_archive .nextpostslink img {
  -webkit-transform: translateX(1px);
          transform: translateX(1px);
}

.cm-list_single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: clamp(56px, 5vw, 80px);
  padding-top: clamp(20px, 1.5vw, 24px);
  border-top: 1px solid #BEBEBE;
}
.cm-list_single a {
  text-decoration: underline;
}
@media (hover: hover) {
  .cm-list_single a:hover {
    opacity: 1;
    color: var(--green-light);
  }
}
@media (hover: none) {
  .cm-list_single a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .cm-list_single a:active {
    opacity: 1;
    color: var(--green-light);
  }
}
.cm-list_single [class*=cm-list] {
  min-width: 55px;
  font-weight: 700;
}

.cm-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: 64px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  margin-top: 56px;
}
.cm-btn:hover {
  opacity: 1;
}

.cm-btn_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 240px;
  height: auto;
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  line-height: 56px;
  font-weight: 700;
  color: var(--kous-black);
  background-color: var(--gray);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.only_pc {
  display: none;
}
@media screen and (max-width: 1280px) {
  .only_pc {
    display: block !important;
  }
}

.only_mobile {
  display: none;
}
@media screen and (max-width: 900px) {
  .only_mobile {
    display: block !important;
  }
}

.only_sp {
  display: none;
}
@media screen and (max-width: 500px) {
  .only_sp {
    display: block !important;
  }
}

.swipe {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .swipe._w::before {
    background-image: url(../images/svg_swipe-w.svg) !important;
  }
}
@media screen and (max-width: 900px) {
  .swipe {
    position: relative;
    padding: 5px 0;
    overflow: hidden;
    z-index: 1;
  }
  .swipe img {
    min-width: 1200px;
  }
  .swipe::before {
    position: absolute;
    content: "";
    z-index: 2;
    max-width: 180px;
    width: 100%;
    max-height: 56px;
    height: 100%;
    top: 60px;
    left: 20px;
    background-image: url(../images/svg_swipe.svg);
    background-position: center left;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-animation: 2s ease-in-out alternate infinite please__swipe;
            animation: 2s ease-in-out alternate infinite please__swipe;
  }
  .swipe::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gray);
    opacity: 0.6;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .swipe__on {
    overflow: auto;
    white-space: nowrap;
  }
  .swipe__on::after, .swipe__on::before {
    opacity: 0;
    z-index: -1;
    -webkit-animation: none;
            animation: none;
  }
  .swipe__on::-webkit-scrollbar {
    height: 5px;
  }
  .swipe__on::-webkit-scrollbar-track, .swipe__on::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
  .swipe th,
  .swipe td {
    white-space: nowrap;
  }
}

@-webkit-keyframes please__swipe {
  0% {
    left: 10px;
  }
  100% {
    left: 50px;
  }
}

@keyframes please__swipe {
  0% {
    left: 10px;
  }
  100% {
    left: 50px;
  }
}
/* Objects */
.p-archive h2 {
  font-size: clamp(1.125rem, 2.2222222222vw, 1.25rem);
  margin-bottom: 10px;
}

.p-about-us_sec--business .c-bg_inner {
  padding-bottom: clamp(64px, 9.375vw, 120px);
  border-bottom-left-radius: clamp(50px, 6.25vw, 100px);
}
.p-about-us_sec--strength {
  counter-reset: num;
}
.p-about-us_sec--strength .c-bg_inner {
  padding-top: clamp(64px, 9.375vw, 120px);
  padding-bottom: clamp(64px, 9.375vw, 120px);
  border-top-right-radius: clamp(50px, 6.25vw, 100px);
  border-bottom-left-radius: clamp(50px, 6.25vw, 100px);
}
.p-about-us_sec--flow .c-bg_inner {
  padding-top: clamp(64px, 9.375vw, 120px);
  border-top-right-radius: clamp(50px, 6.25vw, 100px);
}
.p-about-us_flex {
  gap: clamp(32px, 4.5vw, 72px);
}
.p-about-us_flex + .p-about-us_flex {
  margin-top: clamp(56px, 8.8888888889vw, 80px);
}
@media screen and (min-width: 901px) {
  .p-about-us_flex > figure,
  .p-about-us_flex .-wrap {
    -ms-flex-preferred-size: 63.33%;
        flex-basis: 63.33%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 901px) and (max-width: 1280px) {
  .p-about-us_flex > figure,
  .p-about-us_flex .-wrap {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
  }
  .p-about-us_flex > figure b br,
  .p-about-us_flex .-wrap b br {
    display: none;
  }
}
@media screen and (min-width: 901px) {
  .p-about-us_flex .-inner {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (min-width: 901px) and (max-width: 1280px) {
  .p-about-us_flex .-inner b br {
    display: none;
  }
}
.p-about-us_flex .-wrap {
  background-color: var(--white);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr;
  grid-template-columns: repeat(6, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 24px 8px;
  padding-top: clamp(20px, 2.25vw, 36px);
  padding-bottom: clamp(16px, 1.25vw, 20px);
  padding-left: clamp(20px, 2.5vw, 40px);
  padding-right: clamp(20px, 2.5vw, 40px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-about-us_flex .-wrap > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-about-us_flex .-wrap > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-about-us_flex .-wrap > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.p-about-us_flex .-wrap > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
.p-about-us_flex .-wrap > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
}
.p-about-us_flex .-wrap > *:nth-child(6) {
  -ms-grid-row: 1;
  -ms-grid-column: 11;
}
@media screen and (max-width: 500px) {
  .p-about-us_flex .-wrap {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-about-us_flex .-wrap figcaption {
  font-size: clamp(0.75rem, 0.9375vw, 0.9375rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin-top: clamp(12px, 1.6666666667vw, 15px);
}
.p-about-us_flex.-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: clamp(56px, 6.25vw, 80px) 40px;
}
.p-about-us_flex.-grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-about-us_flex.-grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
@media screen and (max-width: 900px) {
  .p-about-us_flex.-grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-about-us_flex.-grid .-inner > figure {
  margin-bottom: clamp(24px, 3.5555555556vw, 32px);
}
.p-about-us_flex.-grid .-inner .c-button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-about-us_item {
  gap: clamp(24px, 4vw, 64px);
  position: relative;
  padding-top: clamp(48px, 3.5vw, 56px);
  padding-bottom: clamp(48px, 3.5vw, 56px);
  padding-left: clamp(20px, 5vw, 80px);
  padding-right: clamp(20px, 5vw, 80px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: var(--bg);
  border-radius: clamp(40px, 18.75vw, 300px);
}
@media screen and (max-width: 900px) {
  .p-about-us_item {
    border-radius: clamp(40px, 7.5vw, 120px);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-about-us_item + .p-about-us_item {
  margin-top: 80px;
}
.p-about-us_item + .p-about-us_item::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 30px solid var(--green-light);
  border-bottom: 0;
}
.p-about-us_item > figure {
  aspect-ratio: 1/1;
  -ms-flex-preferred-size: clamp(120px, 11.8333333333vw, 142px);
      flex-basis: clamp(120px, 11.8333333333vw, 142px);
}
.p-about-us_item > dl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 900px) {
  .p-about-us_item > dl {
    width: 100%;
  }
}
.p-about-us_item dt {
  font-size: clamp(1.125rem, 2.6666666667vw, 1.5rem);
  font-weight: 700;
  line-height: 1.6;
}
.p-about-us_item dt + dd {
  margin-top: clamp(20px, 2.6666666667vw, 24px);
  line-height: 2;
}
.p-about-us_item dt + dd::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
.p-about-us_item dt + dd::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.p-about-us_item dd a {
  color: var(--green-base);
  text-decoration: underline;
}
.p-about-us .c-title_lower {
  margin-bottom: clamp(32px, 4.4444444444vw, 40px);
}
.p-about-us .c-title_sub + p {
  margin-top: clamp(32px, 4.4444444444vw, 40px);
  line-height: 2;
}
.p-about-us .c-title_sub + p::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
.p-about-us .c-title_sub + p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.p-about-us .c-button {
  margin-top: clamp(40px, 5.3333333333vw, 48px);
}

.p-works._l .p-works_section {
  margin-top: clamp(64px, 6vw, 96px);
}
.p-works._l .p-works_card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(20px, 3vw, 48px) 1fr clamp(20px, 3vw, 48px) 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: clamp(64px, 5vw, 80px) clamp(20px, 3vw, 48px);
}
.p-works._l .p-works_card > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-works._l .p-works_card > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-works._l .p-works_card > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
@media screen and (max-width: 900px) {
  .p-works._l .p-works_card {
    -ms-grid-columns: 1fr 18px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
  }
}
.p-works._l .-pic {
  aspect-ratio: 368/276;
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: clamp(12px, 1.7777777778vw, 16px);
}
.p-works._l .-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10px;
}
.p-works._l .-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.p-works._l .-info .-cat {
  padding: 2px 4px;
  border: 1px solid var(--line);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: clamp(0.75rem, 1.6666666667vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.6;
  border-radius: 2px;
  overflow: hidden;
}
.p-works._l .-lead {
  display: block;
  margin-top: clamp(12px, 1.7777777778vw, 16px);
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
}
@media (hover: hover) {
  .p-works._l .p-works_link:hover {
    opacity: 1;
  }
  .p-works._l .p-works_link:hover img {
    scale: 1.05;
  }
}
@media (hover: none) {
  .p-works._l .p-works_link {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .p-works._l .p-works_link:active {
    opacity: 1;
  }
  .p-works._l .p-works_link:active img {
    scale: 1.05;
  }
}
.p-works._l .p-works_back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(40px, 8.8888888889vw, 80px);
}
.p-works._l .p-works_back b {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  text-decoration: underline;
}
.p-works._s h2 {
  margin-bottom: clamp(40px, 5vw, 80px);
  font-size: clamp(1.375rem, 3.5555555556vw, 2rem);
  font-weight: 700;
  line-height: 1.625;
}
.p-works._s .p-works_slider {
  max-width: 912px;
  margin-left: auto;
  margin-right: auto;
}
.p-works._s .p-works_slider .p-works_media {
  margin: 0 -4px clamp(12px, 1.25vw, 16px);
}
.p-works._s .p-works_slider .p-works_media .-pic {
  margin: 0 4px;
  aspect-ratio: 912/683;
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
.p-works._s .p-works_slider .p-works_media .-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-works._s .p-works_slider .p-works_tmb {
  margin: 0 -4px;
}
.p-works._s .p-works_slider .p-works_tmb .-pic {
  margin: 0 4px;
  aspect-ratio: 176/132;
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
.p-works._s .p-works_slider .p-works_tmb .-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10px;
}
.p-works._s .p-works_youtube {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(40px, 5vw, 80px);
}
.p-works._s .p-works_youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 560/315;
}
.p-works._s .p-works_inner {
  background-color: var(--bg);
  margin-top: clamp(64px, 5vw, 80px);
  padding: clamp(40px, 3.5vw, 56px) clamp(20px, 3.5vw, 56px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
}
.p-works._s .p-works_inner dl.-side {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(20px, 5vw, 80px) 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 0 clamp(20px, 5vw, 80px);
}
.p-works._s .p-works_inner dl.-side > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-works._s .p-works_inner dl.-side > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
@media screen and (max-width: 900px) {
  .p-works._s .p-works_inner dl.-side {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .p-works._s .p-works_inner dl.-side dd + dt {
    margin-top: clamp(20px, 4.4444444444vw, 40px);
  }
}
@media screen and (min-width: 901px) {
  .p-works._s .p-works_inner dl.-side dt:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
  .p-works._s .p-works_inner dl.-side dt:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
  }
  .p-works._s .p-works_inner dl.-side dd:nth-of-type(1) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
  .p-works._s .p-works_inner dl.-side dd:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/3/3;
  }
}
.p-works._s .p-works_inner dl + dl {
  margin-top: clamp(32px, 4vw, 64px);
  padding-top: clamp(32px, 4vw, 64px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid var(--line);
}
.p-works._s .p-works_inner dt {
  color: var(--green-base);
  font-size: clamp(1.125rem, 2.6666666667vw, 1.5rem);
  font-weight: 700;
  line-height: 1.625;
}
.p-works._s .p-works_inner dt + dd {
  margin-top: clamp(16px, 2.6666666667vw, 24px);
}
.p-works._s .p-works_inner .-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: clamp(24px, 3.5555555556vw, 32px);
}
@media screen and (max-width: 500px) {
  .p-works._s .p-works_inner .-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-faq_block + .p-faq_block {
  margin-top: clamp(80px, 7.5vw, 120px);
}
.p-faq .c-title_lower {
  display: none;
}
@media screen and (max-width: 900px) {
  .p-faq .c-title_lower {
    display: block;
    max-width: 260px;
    margin-bottom: 32px;
  }
}
.p-faq_item {
  position: relative;
  background-color: var(--bg);
  padding-top: clamp(24px, 2vw, 32px);
  padding-bottom: clamp(28px, 2.25vw, 36px);
  padding-left: clamp(80px, 6vw, 96px);
  padding-right: clamp(20px, 2.5vw, 40px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
}
.p-faq_item + .p-faq_item {
  margin-top: 20px;
}
@media screen and (max-width: 500px) {
  .p-faq_item {
    padding-left: 20px;
  }
}
.p-faq .-icon {
  position: absolute;
  top: clamp(16px, 1.5625vw, 20px);
  left: 0;
  aspect-ratio: 72/59;
  width: clamp(56px, 8vw, 72px);
  height: auto;
  background-color: var(--red-base);
  border-top-right-radius: clamp(20px, 7.8125vw, 100px);
  border-bottom-right-radius: clamp(20px, 7.8125vw, 100px);
}
@media screen and (max-width: 500px) {
  .p-faq .-icon {
    position: relative;
    top: 0;
    margin-left: -20px;
    margin-bottom: 16px;
  }
}
.p-faq .-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  aspect-ratio: 5/30;
  width: auto;
  height: 50%;
  border-radius: 10px;
  background: var(--white);
  display: block;
}
.p-faq .-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  aspect-ratio: 5/30;
  width: auto;
  height: 50%;
  border-radius: 10px;
  background: var(--white);
  display: block;
  -webkit-transition: 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transition: 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.p-faq .-icon.-open::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-faq dt {
  position: relative;
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 700;
  padding-left: 2.4em;
}
@media screen and (max-width: 500px) {
  .p-faq dt {
    padding-left: 2em;
  }
}
.p-faq dt::before {
  content: "Q.";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: clamp(1.125rem, 2.6666666667vw, 1.5rem);
}
@media screen and (max-width: 500px) {
  .p-faq dt::before {
    top: -2px;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
  }
}
.p-faq dd {
  margin-top: clamp(16px, 2.6666666667vw, 24px);
}

.p-recruit .c-title_lower {
  margin-bottom: clamp(32px, 4.4444444444vw, 40px);
}
.p-recruit_sec.c-bg-white .c-bg_inner {
  padding-bottom: clamp(40px, 4.5vw, 72px);
  border-radius: 0 0 0 clamp(50px, 6.25vw, 100px);
}
.p-recruit_sec.c-bg-beige .c-bg_inner {
  padding-top: clamp(80px, 6.5vw, 104px);
  padding-bottom: clamp(80px, 7.5vw, 120px);
  border-radius: 0 clamp(50px, 6.25vw, 100px) 0 clamp(50px, 6.25vw, 100px);
}
.p-recruit_ch {
  margin-bottom: 32px;
}
@media screen and (min-width: 901px) {
  .p-recruit_ch {
    text-align: center;
  }
}
.p-recruit_ch h2 {
  font-size: clamp(1.5rem, 3.5555555556vw, 2rem);
  font-weight: 700;
  line-height: 1.75;
}
.p-recruit_ch h2 br {
  display: block;
}
.p-recruit_ch p {
  margin-top: clamp(32px, 4.4444444444vw, 40px);
  line-height: 2;
}
.p-recruit_ch p::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
.p-recruit_ch p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.p-recruit_slider {
  overflow: hidden;
  white-space: nowrap;
}
.p-recruit_slider_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scroll-left 30s linear infinite;
          animation: scroll-left 30s linear infinite;
}
.p-recruit_slider_track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-recruit_slider_track .-item {
  display: inline-block;
  margin-right: 2rem;
}
.p-recruit_slider_track > span {
  font-size: clamp(3rem, 11.40625vw, 9.125rem);
  font-weight: 700;
  color: var(--bg);
}
.p-recruit_slider_track > figure {
  aspect-ratio: 125/152;
  width: auto;
  height: clamp(56px, 11.875vw, 152px);
}
.p-recruit_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 40px;
  counter-reset: num;
  margin-bottom: clamp(64px, 7.5vw, 120px);
}
.p-recruit_grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-recruit_grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
@media screen and (max-width: 900px) {
  .p-recruit_grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 56px;
  }
}
.p-recruit_grid .-inner h3 {
  margin-top: clamp(24px, 3.5555555556vw, 32px);
}
.p-recruit_grid .-inner p {
  margin-top: clamp(20px, 2.6666666667vw, 24px);
}
.p-recruit_item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(24px, 4vw, 64px);
  position: relative;
  padding-top: clamp(48px, 3.5vw, 56px);
  padding-bottom: clamp(48px, 3.5vw, 56px);
  padding-left: clamp(20px, 5vw, 80px);
  padding-right: clamp(20px, 5vw, 80px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: var(--white);
  border-radius: clamp(40px, 18.75vw, 300px);
}
@media screen and (max-width: 900px) {
  .p-recruit_item {
    border-radius: clamp(20px, 2.5vw, 40px);
  }
}
.p-recruit_item + .p-recruit_item {
  margin-top: 24px;
}
.p-recruit_item > figure {
  aspect-ratio: 1/1;
  -ms-flex-preferred-size: clamp(120px, 11.8333333333vw, 142px);
      flex-basis: clamp(120px, 11.8333333333vw, 142px);
}
.p-recruit_item > dl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 900px) {
  .p-recruit_item > dl {
    width: 100%;
  }
}
.p-recruit_item dt {
  font-size: clamp(1.125rem, 2.6666666667vw, 1.5rem);
  font-weight: 700;
  line-height: 1.6;
}
.p-recruit_item dt + dd {
  margin-top: clamp(20px, 2.6666666667vw, 24px);
  line-height: 2;
}
.p-recruit_item dt + dd::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
.p-recruit_item dt + dd::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.p-recruit_item dd a {
  color: var(--green-base);
  text-decoration: underline;
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-requirements .c-link {
  margin-top: clamp(80px, 7.5vw, 120px);
}
.p-requirements._l .c-title_lower {
  margin-bottom: clamp(32px, 2.5vw, 40px);
}
.p-requirements._l .p-requirements_list .-tab + .-tab {
  margin-top: 16px;
}
.p-requirements._l .p-requirements_list a {
  display: block;
  border-radius: 0 clamp(40px, 18.75vw, 300px) clamp(40px, 18.75vw, 300px) 0;
  background-color: var(--bg);
  padding: clamp(20px, 1.5vw, 24px) clamp(20px, 3vw, 48px);
}
@media screen and (max-width: 900px) {
  .p-requirements._l .p-requirements_list a {
    border-radius: 0 40px 40px 0;
  }
}
.p-requirements._l .p-requirements_list a b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
}
.p-requirements._l .p-requirements_list a b::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--green-light);
  border-right: 0;
}
.p-requirements._s .p-requirements_inner {
  max-width: 816px;
  margin-left: auto;
  margin-right: auto;
}
.p-requirements._s .p-requirements_inner .-lead {
  display: block;
  border-radius: 0 clamp(40px, 18.75vw, 300px) clamp(40px, 18.75vw, 300px) 0;
  background-color: var(--bg);
  padding: clamp(20px, 1.5vw, 24px) clamp(20px, 3vw, 48px);
  margin-bottom: clamp(40px, 3.5vw, 56px);
}
@media screen and (max-width: 900px) {
  .p-requirements._s .p-requirements_inner .-lead {
    border-radius: 0 clamp(20px, 2.5vw, 40px);
  }
}
.p-requirements._s .p-requirements_inner .-lead b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
}
.p-requirements._s .p-requirements_inner .-lead b::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--green-light);
  border-right: 0;
}
.p-requirements._s .p-requirements_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(64px, 8.8888888889vw, 80px);
}
.p-requirements._s .p-requirements_btn--back {
  text-decoration: underline;
  margin-top: clamp(24px, 3.5555555556vw, 32px);
}

.p-company_sec + .p-company_sec {
  margin-top: clamp(80px, 13.3333333333vw, 120px);
}
.p-company .c-title_lower {
  display: none;
}
@media screen and (max-width: 900px) {
  .p-company .c-title_lower {
    display: block;
    max-width: 260px;
    margin-bottom: 32px;
  }
}
.p-company_outline .c-title_sub {
  margin-bottom: clamp(32px, 3vw, 48px);
}
.p-company_outline_table .-wrap + .-wrap {
  margin-top: clamp(56px, 6.5vw, 104px);
}
.p-company_message_flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(32px, 4.5vw, 72px);
}
.p-company_message_flex + p {
  margin-top: clamp(32px, 4vw, 64px);
}
@media screen and (min-width: 901px) {
  .p-company_message_flex > figure {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 900px) {
  .p-company_message_flex > figure {
    width: clamp(300px, 40.8888888889vw, 368px);
  }
}
@media screen and (min-width: 901px) {
  .p-company_message_flex .-inner {
    -ms-flex-preferred-size: 47.06%;
        flex-basis: 47.06%;
  }
}
.p-company_message_flex .-inner hgroup span {
  display: block;
  margin-bottom: clamp(8px, 1.7777777778vw, 16px);
  color: var(--red-base);
}
.p-company_message_flex .-inner hgroup b {
  line-height: 2;
}
.p-company_message_flex .-inner hgroup b::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
.p-company_message_flex .-inner hgroup b::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
@media screen and (min-width: 901px) and (max-width: 1280px) {
  .p-company_message_flex .-inner hgroup b br {
    display: none;
  }
}
.p-company_message_flex .-inner .-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
  margin-top: clamp(40px, 3.5vw, 56px);
}
.p-company_message_flex .-inner .-name small {
  display: block;
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
}
.p-company_message_flex .-inner .-name b {
  display: block;
  font-size: clamp(1.125rem, 2.2222222222vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
}
.p-company_access iframe {
  width: 100%;
  height: clamp(240px, 40vw, 360px);
}
.p-company_access address {
  margin-top: clamp(24px, 3.5555555556vw, 32px);
}

.p-technology._l .c-title_lower {
  margin-bottom: clamp(32px, 4.4444444444vw, 40px);
}
.p-technology._l .p-technology_sec + .p-technology_sec {
  margin-top: clamp(64px, 7.5vw, 120px);
}
.p-technology._l .p-technology_ch {
  margin-bottom: clamp(64px, 7.5vw, 120px);
}
.p-technology._l .p-technology_ch p {
  font-size: clamp(1.125rem, 2.4444444444vw, 1.375rem);
  font-weight: 700;
}
@media screen and (min-width: 901px) {
  .p-technology._l .p-technology_ch p {
    text-align: center;
  }
}
.p-technology._l .p-technology_wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 24px;
}
.p-technology._l .p-technology_wrap > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-technology._l .p-technology_wrap > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-technology._l .p-technology_wrap > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.p-technology._l .p-technology_wrap > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
@media screen and (min-width: 501px) and (max-width: 900px) {
  .p-technology._l .p-technology_wrap {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .p-technology._l .p-technology_wrap {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-technology._l .p-technology_post .p-technology_pic {
  aspect-ratio: 282/214;
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
.p-technology._l .p-technology_post .p-technology_pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-technology._l .p-technology_post .p-technology_catch {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 700;
  margin-top: clamp(12px, 1.7777777778vw, 16px);
}
.p-technology._l .p-technology_post a {
  display: block;
}
@media (hover: hover) {
  .p-technology._l .p-technology_post a:hover {
    opacity: 1;
  }
  .p-technology._l .p-technology_post a:hover img {
    scale: 1.05;
  }
}
@media (hover: none) {
  .p-technology._l .p-technology_post a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .p-technology._l .p-technology_post a:active {
    opacity: 1;
  }
  .p-technology._l .p-technology_post a:active img {
    scale: 1.05;
  }
}
.p-technology._s .p-technology_side {
  gap: clamp(40px, 5vw, 80px);
}
.p-technology._s .-inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-technology._s .-media {
  width: 100%;
}
@media screen and (min-width: 901px) {
  .p-technology._s .-media {
    width: clamp(520px, 38.25vw, 612px);
  }
}
.p-technology._s .c-title_lower {
  margin-bottom: clamp(32px, 2.5vw, 40px);
}
.p-technology._s h3 {
  font-size: clamp(1.5rem, 3.5555555556vw, 2rem);
  font-weight: 700;
}
.p-technology._s .p-technology_inner {
  margin-top: clamp(32px, 2.5vw, 40px);
}
.p-technology._s .p-technology_wrap {
  margin-top: clamp(32px, 4vw, 64px);
  padding-top: clamp(32px, 4vw, 64px);
  border-top: 1px solid var(--line);
}
.p-technology._s .p-technology_wrap h4 {
  font-size: clamp(1.25rem, 2.6666666667vw, 1.5rem);
  font-weight: 700;
  line-height: 2;
  margin-bottom: clamp(16px, 2.6666666667vw, 24px);
}
.p-technology._s .p-technology_wrap h4::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
.p-technology._s .p-technology_wrap h4::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.p-technology._s .p-technology_wrap dt {
  font-weight: 700;
}
.p-technology._s .p-technology_wrap dd {
  font-weight: 400;
}
.p-technology._s .p-technology_wrap li {
  position: relative;
  padding-left: calc(1em + 12px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 400;
  line-height: 2;
}
.p-technology._s .p-technology_wrap li::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green-light);
}
.p-technology._s .p-technology_slider {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.p-technology._s .p-technology_slider .p-technology_media {
  margin: 0 -4px clamp(12px, 1.25vw, 16px);
}
.p-technology._s .p-technology_slider .p-technology_media .-pic {
  margin: 0 4px;
  aspect-ratio: 912/683;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.p-technology._s .p-technology_slider .p-technology_media .-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-technology._s .p-technology_slider .p-technology_tmb {
  margin: 0 -4px;
}
.p-technology._s .p-technology_slider .p-technology_tmb .-pic {
  margin: 0 4px;
  aspect-ratio: 176/132;
  width: 100%;
  height: auto;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-technology._s .p-technology_slider .p-technology_tmb .-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (hover: hover) {
  .p-technology._s .p-technology_slider .p-technology_tmb .-pic:hover {
    opacity: 0.5;
  }
}
@media (hover: none) {
  .p-technology._s .p-technology_slider .p-technology_tmb .-pic {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .p-technology._s .p-technology_slider .p-technology_tmb .-pic:active {
    opacity: 0.5;
  }
}
.p-technology._s .p-technology_youtube {
  width: 100%;
  margin-top: 40px;
}
.p-technology._s .p-technology_youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 560/315;
}
.p-technology._s .p-technology_works {
  margin-top: 40px;
}
.p-technology._s .p-technology_works .c-title_lower {
  margin-bottom: 24px;
}
.p-technology._s .p-technology_works ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 16px;
}
.p-technology._s .p-technology_works ul > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-technology._s .p-technology_works ul > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-technology._s .p-technology_works ul > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
@media screen and (max-width: 600px) {
  .p-technology._s .p-technology_works ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}
.p-technology._s .p-technology_works figure {
  aspect-ratio: 194/146;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.p-technology._s .p-technology_works figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-technology._s .p-technology_works b {
  display: block;
  margin-top: clamp(8px, 1.7777777778vw, 16px);
  font-size: clamp(0.875rem, 1.6666666667vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.2;
}
@media (hover: hover) {
  .p-technology._s .p-technology_works a:hover {
    opacity: 1;
  }
  .p-technology._s .p-technology_works a:hover img {
    scale: 1.05;
  }
}
@media (hover: none) {
  .p-technology._s .p-technology_works a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .p-technology._s .p-technology_works a:active {
    opacity: 1;
  }
  .p-technology._s .p-technology_works a:active img {
    scale: 1.05;
  }
}

.p-contact .c-title_lower {
  margin-bottom: clamp(32px, 2.5vw, 40px);
}
.p-contact_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 829px) {
  .p-contact_list {
    margin-top: 64px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 828px) {
  .p-contact_list {
    margin-top: 32px;
    margin-bottom: 50px;
  }
}
.p-contact_tab {
  position: relative;
  width: 296px;
  color: var(--main-color);
  background: var(--form-page-tab);
  text-align: center;
  border: 1px solid var(--form-tab-border);
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 700;
  border-radius: 10px;
}
.p-contact_tab.active {
  color: var(--form-active-color);
  background: var(--form-page-active);
}
@media screen and (min-width: 829px) {
  .p-contact_tab {
    line-height: 54px;
  }
}
@media screen and (max-width: 828px) {
  .p-contact_tab {
    line-height: 34px;
  }
}
.p-contact_count {
  margin-right: 8px;
}
.p-contact_line {
  display: block;
  height: 1px;
  background: var(--form-tab-line);
}
@media screen and (min-width: 829px) {
  .p-contact_line {
    width: 72px;
    -ms-flex-preferred-size: 72px;
        flex-basis: 72px;
  }
}
@media screen and (max-width: 828px) {
  .p-contact_line {
    width: 20px;
    -ms-flex-preferred-size: 20px;
        flex-basis: 20px;
  }
}
.p-contact_file_list li {
  position: relative;
  padding-left: calc(1em + 10px);
}
@media screen and (max-width: 900px) {
  .p-contact_file_list li {
    padding-left: calc(1em + 5px);
  }
}
.p-contact_file_list li::before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.p-contact_calendar {
  margin-bottom: clamp(48px, 3.5vw, 56px);
}
.p-contact_calendar .-wrap {
  max-width: 664px;
  margin-left: auto;
  margin-right: auto;
}
.p-contact_calendar .xo-months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 500px) {
  .p-contact_calendar .xo-months {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-contact_calendar .xo-event-calendar {
  font-family: LINESeedJP, sans-serif;
}
.p-contact_calendar .xo-event-calendar table {
  height: 1.5em !important;
}
.p-contact_calendar .xo-event-calendar table.xo-month > thead th {
  width: auto;
}
.p-policy dd {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
}
.p-policy dd a.link {
  text-decoration: underline;
}
.p-policy dd + dt {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--green-base);
  font-weight: bold;
  line-height: 2;
  margin-top: clamp(25px, 5.5555555556vw, 50px);
  margin-bottom: clamp(8px, 1.7777777778vw, 16px);
}
.p-policy dd + dt::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
.p-policy dd + dt::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.p-policy li {
  position: relative;
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  padding-left: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-policy li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.p-notfound_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  margin-top: clamp(48px, 4.5vw, 72px);
}
.p-notfound_head p {
  color: var(--404-h1_color);
  font-size: clamp(2.5rem, 7.6666666667vw, 4.3125rem);
  font-weight: 600;
  line-height: 1.6;
}
.p-notfound_head h1 {
  font-size: clamp(1.25rem, 2.6666666667vw, 1.5rem);
  line-height: 1.625;
}
.p-notfound_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px 0;
  max-width: 732px;
  margin: auto;
}
.p-notfound_menu li {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 700;
  padding: 0 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
}
.p-notfound_menu li + li {
  border-left: 1px solid var(--404-menu-border);
}
.p-notfound_menu a {
  display: block;
  font-size: inherit;
  text-align: center;
}
.p-notfound_txt {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  line-height: 2;
}
.p-news_l {
  position: relative;
  z-index: 1;
}
.p-news_l .p-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px 24px;
  position: relative;
  padding-bottom: clamp(28px, 3.5555555556vw, 32px);
  max-width: 816px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 900px) {
  .p-news_l .p-news {
    gap: 16px;
  }
}
.p-news_l .p-news + .p-news {
  margin-top: clamp(28px, 3.5555555556vw, 32px);
}
.p-news_l .p-news::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
  width: 100%;
  height: 2px;
  background-color: var(--border);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-news_l .p-news::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
  width: 0;
  height: 2px;
  background-color: var(--green-base);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .p-news_l .p-news:hover {
    opacity: 1;
  }
  .p-news_l .p-news:hover::after {
    width: 100%;
  }
  .p-news_l .p-news:hover img {
    scale: 1.1;
  }
}
@media (hover: none) {
  .p-news_l .p-news {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .p-news_l .p-news:active {
    opacity: 1;
  }
  .p-news_l .p-news:active::after {
    width: 100%;
  }
  .p-news_l .p-news:active img {
    scale: 1.1;
  }
}
.p-news_l .p-news_pic {
  aspect-ratio: 168/126;
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  width: clamp(113px, 13.125vw, 168px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-news_l .p-news_pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .p-news_l .p-news_pic:hover {
    opacity: 1;
  }
  .p-news_l .p-news_pic:hover img {
    scale: 1.1;
  }
}
@media (hover: none) {
  .p-news_l .p-news_pic {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .p-news_l .p-news_pic:active {
    opacity: 1;
  }
  .p-news_l .p-news_pic:active img {
    scale: 1.1;
  }
}
.p-news_l .p-news_inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-news_l .p-news_inner time {
  display: block;
  color: var(--green-base);
  margin-bottom: clamp(8px, 1.7777777778vw, 16px);
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
}
.p-news_l .p-news_inner h2 {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 400;
}
@media screen and (min-width: 901px) {
  .p-news_l .p-news_inner h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: 1;
  }
}
@media screen and (max-width: 900px) {
  .p-news_l .p-news_inner h2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.p-news_l .p-news_inner h2 a {
  display: block;
}
.p-news_s {
  position: relative;
  z-index: 1;
  max-width: 816px;
  margin-left: auto;
  margin-right: auto;
}
.p-news_s time {
  display: block;
  color: var(--green-base);
  margin-bottom: clamp(8px, 1.7777777778vw, 16px);
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
}
.p-news_s h2 {
  font-size: clamp(1.25rem, 2.6666666667vw, 1.5rem);
  font-weight: bold;
  margin-bottom: clamp(20px, 2.6666666667vw, 24px);
}
.p-news_s .p-news_inner {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 400;
}
.p-news_s .p-news_inner a {
  color: var(--kous-black);
  text-decoration: underline;
}
.p-news_s .p-news_pic {
  margin-bottom: clamp(40px, 5.3333333333vw, 48px);
}
.p-news_s .p-news_pic figure {
  aspect-ratio: 816/612;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}
.p-news_s .p-news_pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}