@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 */
.f-news {
  overflow-x: clip;
}
.f-news.c-bg-beige .c-bg_inner {
  padding-bottom: clamp(120px, 8.75vw, 140px);
  border-bottom-right-radius: clamp(50px, 6.25vw, 100px);
}
@media screen and (max-width: 900px) {
  .f-news.c-bg-beige .c-bg_inner {
    padding-bottom: 200px;
  }
}
.f-news_container {
  position: relative;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.f-news_parts-1 {
  position: absolute;
  top: 9.5625vw;
  left: -4.125vw;
  max-width: 430px;
  width: 26.875vw;
}
@media screen and (min-width: 1601px) {
  .f-news_parts-1 {
    top: 153px;
    left: -66px;
  }
}
@media screen and (max-width: 900px) {
  .f-news_parts-1 {
    top: 0;
  }
}
.f-news_parts-2 {
  position: absolute;
  top: -7.625vw;
  right: -2.375vw;
  max-width: 421px;
  width: 26.3125vw;
}
@media screen and (min-width: 1601px) {
  .f-news_parts-2 {
    top: -122px;
    right: -38px;
  }
}
@media screen and (max-width: 900px) {
  .f-news_parts-2 {
    top: 0;
  }
}
.f-news_flex {
  gap: clamp(32px, 6.25vw, 80px);
  max-width: 988px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .f-news_flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 901px) {
  .f-news_flex .-head {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (min-width: 901px) {
  .f-news_flex .-inner {
    -ms-flex-preferred-size: 72.06%;
        flex-basis: 72.06%;
  }
}
.f-news_item {
  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;
  position: relative;
  gap: 48px 24px;
  padding-bottom: clamp(28px, 3.5555555556vw, 32px);
}
.f-news_item + .f-news_item {
  margin-top: clamp(28px, 3.5555555556vw, 32px);
}
.f-news_item::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;
}
.f-news_item::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) {
  .f-news_item:hover {
    opacity: 1;
  }
  .f-news_item:hover::after {
    width: 100%;
  }
  .f-news_item:hover img {
    scale: 1.1;
  }
}
@media (hover: none) {
  .f-news_item {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .f-news_item:active {
    opacity: 1;
  }
  .f-news_item:active::after {
    width: 100%;
  }
  .f-news_item:active img {
    scale: 1.1;
  }
}
.f-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;
}
.f-news_pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 901px) {
  .f-news_inner {
    width: 520px;
  }
}
@media screen and (max-width: 900px) {
  .f-news_inner {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.f-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;
}
.f-news_inner h3 {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 400;
}
@media screen and (min-width: 901px) {
  .f-news_inner h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: 1;
  }
}
@media screen and (max-width: 900px) {
  .f-news_inner h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.f-news_inner h3 a {
  display: block;
  max-width: 100%;
}
.f-news_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 32px;
}
@media screen and (max-width: 900px) {
  .f-news_link {
    margin-top: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.f-news_link a {
  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;
  width: 154px;
  height: 56px;
  background-color: var(--green-light);
  color: var(--white);
  border-radius: 10px;
}
.f-news_link a b {
  font-size: 15px;
  font-weight: 700;
}
@media (hover: hover) {
  .f-news_link a:hover {
    opacity: 1;
    background-color: var(--green-base);
  }
}
@media (hover: none) {
  .f-news_link a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .f-news_link a:active {
    opacity: 1;
    background-color: var(--green-base);
  }
}

@media screen and (min-width: 901px) {
  .f-works .c-title_front {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.f-works.c-bg-white .c-bg_inner {
  padding-top: clamp(144px, 13.75vw, 220px);
  padding-bottom: clamp(40px, 7.5vw, 120px);
  border-top-left-radius: clamp(50px, 6.25vw, 100px);
  border-bottom-left-radius: clamp(50px, 6.25vw, 100px);
}
.f-works_catch {
  position: absolute;
  top: -152px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  background-color: var(--white);
  padding-top: 8px;
  padding-left: clamp(8px, 1.3333333333vw, 12px);
  padding-right: clamp(8px, 1.3333333333vw, 12px);
  padding-bottom: clamp(24px, 3.5555555556vw, 32px);
}
.f-works_catch.js-trigger {
  clip-path: inset(0 0 100% 0);
  -webkit-transition: all 1.3s ease;
  transition: all 1.3s ease;
}
.f-works_catch.js-show {
  clip-path: inset(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
@media screen and (min-width: 1601px) {
  .f-works_catch {
    top: -152px;
  }
}
.f-works_catch b {
  display: block;
  font-size: clamp(1.75rem, 3.5555555556vw, 2rem);
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 901px) {
  .f-works_ch {
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  .f-works_ch {
    margin-top: 32px;
  }
}
.f-works_ch h3 {
  font-size: clamp(1.1875rem, 2.6666666667vw, 1.5rem);
  font-weight: 700;
}
.f-works_ch h3 + p {
  margin-top: clamp(16px, 1.875vw, 24px);
  line-height: 2;
}
.f-works_ch h3 + p::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
.f-works_ch h3 + p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.f-works_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 24px 32px;
  margin-top: clamp(32px, 3.75vw, 48px);
}
.f-works_list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.f-works_list > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.f-works_list > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.f-works_list > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
@media screen and (max-width: 900px) {
  .f-works_list {
    -ms-grid-columns: 1fr 18px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
  }
}
.f-works_post a {
  display: block;
}
.f-works_post a figure {
  aspect-ratio: 276/207;
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
.f-works_post a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.f-works_post a b {
  display: block;
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
  margin-top: clamp(8px, 1.7777777778vw, 16px);
}
@media (hover: hover) {
  .f-works_post a:hover {
    opacity: 1;
  }
  .f-works_post a:hover img {
    scale: 1.05;
  }
}
@media (hover: none) {
  .f-works_post a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .f-works_post a:active {
    opacity: 1;
  }
  .f-works_post a:active img {
    scale: 1.05;
  }
}
.f-works_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(32px, 6.25vw, 80px);
}

.f-technology {
  position: relative;
}
.f-technology.c-bg-beige .c-bg_inner {
  padding-top: clamp(64px, 5vw, 80px);
  padding-bottom: clamp(64px, 16.25vw, 260px);
  border-top-right-radius: clamp(50px, 6.25vw, 100px);
  border-bottom-right-radius: clamp(50px, 6.25vw, 100px);
}
.f-technology_ch {
  margin-top: clamp(32px, 4.375vw, 56px);
}
@media screen and (min-width: 901px) {
  .f-technology_ch {
    text-align: center;
  }
}
.f-technology_ch h3 {
  font-size: clamp(1.1875rem, 2.6666666667vw, 1.5rem);
  font-weight: 700;
  line-height: 1.75;
}
.f-technology_ch h3 + p {
  margin-top: clamp(16px, 1.875vw, 24px);
  line-height: 2;
}
.f-technology_ch h3 + p::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
.f-technology_ch h3 + p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
@media screen and (max-width: 500px) {
  .f-technology_ch h3 + p br {
    display: none;
  }
}
.f-technology_box {
  background-color: var(--white);
  border-radius: clamp(10px, 1.5625vw, 20px);
  padding-top: clamp(30px, 5vw, 64px);
  padding-bottom: clamp(30px, 5vw, 64px);
  padding-left: clamp(18px, 3.75vw, 48px);
  padding-right: clamp(18px, 3.75vw, 48px);
  margin-top: clamp(18px, 5.3333333333vw, 48px);
}
.f-technology_box .f-technology_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr 8px 1fr 8px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 8px;
}
.f-technology_box .f-technology_list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.f-technology_box .f-technology_list > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.f-technology_box .f-technology_list > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.f-technology_box .f-technology_list > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
@media screen and (max-width: 900px) {
  .f-technology_box .f-technology_list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .f-technology_box .f-technology_list {
    -ms-grid-columns: 1fr 6px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 6px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.f-technology_box a {
  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;
  min-height: 63px;
  padding: 6px 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: clamp(0.875rem, 1.7777777778vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: var(--white);
  border-radius: 900px;
}
@media screen and (max-width: 500px) {
  .f-technology_box a {
    padding: 4px 12px;
  }
}
@media (hover: hover) {
  .f-technology_box a:hover {
    opacity: 1;
    scale: 0.95;
  }
}
@media (hover: none) {
  .f-technology_box a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .f-technology_box a:active {
    opacity: 1;
    scale: 0.95;
  }
}
.f-technology_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(32px, 3.75vw, 48px);
}
.f-technology_copy {
  position: absolute;
  bottom: -2.75vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 85.125%;
  max-width: 1362px;
}
@media screen and (min-width: 1601px) {
  .f-technology_copy {
    bottom: -44px;
  }
}
.f-technology_copy.js-trigger {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  transform: translate(-50%, 100%);
  -webkit-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
}
.f-technology_copy.js-show {
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
}

.f-about-us {
  overflow-x: hidden;
}
.f-about-us.c-bg-white .c-bg_inner {
  padding-top: clamp(64px, 5vw, 80px);
  padding-bottom: clamp(40px, 7.5vw, 120px);
}
.f-about-us_container {
  position: relative;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.f-about-us_parts-1 {
  position: absolute;
  top: 3vw;
  left: -4.125vw;
  max-width: 458px;
  width: 28.625vw;
}
@media screen and (min-width: 1601px) {
  .f-about-us_parts-1 {
    top: 168px;
    left: -65px;
  }
}
@media screen and (max-width: 900px) {
  .f-about-us_parts-1 {
    display: none;
  }
}
.f-about-us_parts-2 {
  position: absolute;
  top: -3vw;
  right: 8.3125vw;
  max-width: 288px;
  width: 18vw;
}
@media screen and (min-width: 1601px) {
  .f-about-us_parts-2 {
    top: -122px;
    right: -68px;
  }
}
@media screen and (max-width: 900px) {
  .f-about-us_parts-2 {
    display: none;
  }
}
.f-about-us_ch {
  margin-top: clamp(32px, 3.125vw, 40px);
}
@media screen and (min-width: 901px) {
  .f-about-us_ch {
    text-align: center;
  }
}
.f-about-us_ch h3 {
  font-size: clamp(1.1875rem, 2.6666666667vw, 1.5rem);
  font-weight: 700;
  line-height: 1.75;
}
.f-about-us_ch h3 + p {
  margin-top: clamp(16px, 1.875vw, 24px);
  line-height: 2;
}
.f-about-us_ch h3 + p::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
.f-about-us_ch h3 + p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.f-about-us_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(48px, 5vw, 64px);
}

.f-company {
  position: relative;
  background: url("../../../../uploads/2025/05/f-company_pc.jpg") 50% 50% no-repeat;
  background-size: cover;
  padding-top: clamp(72px, 9.375vw, 120px);
  padding-bottom: clamp(80px, 9.375vw, 120px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: clamp(50px, 7.8125vw, 100px);
}
@media screen and (max-width: 500px) {
  .f-company {
    background: url("../../../../uploads/2025/05/f-company_sp.jpg") 50% 50% no-repeat;
    background-size: cover;
    min-height: 750px;
  }
}
.f-company_inner {
  max-width: 638px;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.f-company_ch {
  margin-top: clamp(32px, 3.125vw, 40px);
}
@media screen and (min-width: 901px) {
  .f-company_ch {
    text-align: center;
  }
}
.f-company_ch h3 {
  font-size: clamp(1.1875rem, 2.6666666667vw, 1.5rem);
  font-weight: 700;
  line-height: 1.75;
}
.f-company_ch h3 + p {
  margin-top: clamp(16px, 1.875vw, 24px);
  line-height: 2;
}
.f-company_ch h3 + p::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
.f-company_ch h3 + p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.f-company_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(48px, 5vw, 64px);
}
.f-company.js-trigger {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: all 1.3s ease;
  transition: all 1.3s ease;
}
.f-company.js-show {
  clip-path: inset(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.f-faq {
  margin-top: clamp(62px, 7.5vw, 120px);
}
.f-faq_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 500px) {
  .f-faq_inner > figure:nth-of-type(1) {
    display: none;
  }
}
.f-faq_inner > figure:nth-of-type(2) {
  display: none;
}
@media screen and (max-width: 500px) {
  .f-faq_inner > figure:nth-of-type(2) {
    display: block;
  }
}
.f-faq_inner h2 {
  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: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: rgba(79, 173, 68, 0.7019607843);
  color: var(--white);
  border-radius: 900px;
  width: clamp(158px, 24.21875vw, 310px);
  height: clamp(51px, 7.8125vw, 100px);
  font-size: clamp(1rem, 2.34375vw, 1.875rem);
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.f-faq_inner 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: absolute;
  bottom: 0;
  right: 0;
  width: clamp(32px, 5.9375vw, 76px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--green-light);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.f-faq_inner span svg {
  display: block;
  width: clamp(13px, 2.421875vw, 31px);
}
@media (hover: hover) {
  .f-faq_inner:hover {
    opacity: 1;
  }
  .f-faq_inner:hover h2 {
    background-color: rgba(79, 173, 68, 0.5019607843);
  }
  .f-faq_inner:hover span {
    background-color: var(--green-base);
  }
}
@media (hover: none) {
  .f-faq_inner {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .f-faq_inner:active {
    opacity: 1;
  }
  .f-faq_inner:active h2 {
    background-color: rgba(79, 173, 68, 0.5019607843);
  }
  .f-faq_inner:active span {
    background-color: var(--green-base);
  }
}

.f-recruit {
  margin-top: clamp(64px, 7.5vw, 120px);
}
.f-recruit_flex {
  gap: clamp(32px, 4.375vw, 56px);
}
@media screen and (min-width: 901px) {
  .f-recruit_flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .f-recruit_flex > figure {
    -ms-flex-preferred-size: 63.33%;
        flex-basis: 63.33%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .f-recruit_flex .-inner {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.f-recruit_flex .-inner h3 {
  margin-top: clamp(32px, 3.125vw, 40px);
  font-size: clamp(1.1875rem, 2.6666666667vw, 1.5rem);
  font-weight: 700;
}
@media screen and (min-width: 901px) {
  .f-recruit_flex .-inner h3 {
    text-align: center;
  }
}
@media screen and (min-width: 901px) and (max-width: 1200px) {
  .f-recruit_flex .-inner h3 br:not(._block) {
    display: none;
  }
}
.f-recruit_flex .-inner h3 + p {
  margin-top: clamp(18px, 2.5vw, 32px);
}
.f-recruit_link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 48px 1fr 48px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 8px 48px;
  margin-top: clamp(32px, 5.625vw, 72px);
}
.f-recruit_link > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.f-recruit_link > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.f-recruit_link > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
@media screen and (max-width: 900px) {
  .f-recruit_link {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    max-width: 335px;
    margin-left: auto;
    margin-right: auto;
  }
}
.f-recruit_link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px 32px;
  background-color: var(--bg);
  border-radius: 20px;
  padding: clamp(12px, 2.5vw, 32px) 20px;
}
@media screen and (min-width: 901px) {
  .f-recruit_link a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.f-recruit_link a figure {
  width: clamp(108px, 14.21875vw, 182px);
  overflow: hidden;
  border-radius: 50%;
}
.f-recruit_link a figure img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.f-recruit_link a b {
  font-size: clamp(1.125rem, 2.6666666667vw, 1.5rem);
  font-weight: 700;
}
@media (hover: hover) {
  .f-recruit_link a:hover {
    opacity: 1;
  }
  .f-recruit_link a:hover img {
    scale: 1.05;
  }
  .f-recruit_link a:hover[href*=personality] {
    color: var(--green-light);
  }
  .f-recruit_link a:hover[href*=requirements] {
    color: var(--green-base);
  }
  .f-recruit_link a:hover[href*=entry] {
    color: var(--red-base);
  }
}
@media (hover: none) {
  .f-recruit_link a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .f-recruit_link a:active {
    opacity: 1;
  }
  .f-recruit_link a:active img {
    scale: 1.05;
  }
  .f-recruit_link a:active[href*=personality] {
    color: var(--green-light);
  }
  .f-recruit_link a:active[href*=requirements] {
    color: var(--green-base);
  }
  .f-recruit_link a:active[href*=entry] {
    color: var(--red-base);
  }
}