@charset "UTF-8";
:root {
  --themeColor:#00a0e9;
  --themeColor-lt:#fcf1ed;
  --pointColor:#ac8839;
  --linkColor:#87eaf9;
  --bgColor:#f7f7f7;
  --fontColor: #000;
  --w:1100px;
  --side: calc((100% - (var(--w))) / 2);
  --widthXL:1160px;
  --widthLG:980px;
  --widthTab:768px;
  --font-go-base: "Hiragino Kaku Gothic Pro" ,"游ゴシック体", "Yu Gothic Medium" , "Yu Gothic", Meiryo ,sans-serif;
  --font-mi-base: "Hiragino Mincho ProN", "Yu Mincho","YuMincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  --font-jost: "Jost", var(--font-go-base);
  --font-oswald: "Oswald", var(--font-go-base);
}

html {
  color: #000;
  background: #FFF;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, select, main, address, span {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 140%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
  box-sizing: border-box;
}

a, span, details, summary {
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

strong {
  font-style: normal;
}

ul li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-bottom;
}

sub {
  vertical-align: text-top;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, textarea, select {
  font-size: 100%;
}

legend {
  color: #000;
}

figure {
  margin: 0;
}

img {
  backface-visibility: hidden;
}

body {
  font-size: 0.875rem;
  color: var(--fontColor);
  font-family: var(--font-go-base);
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "halt";
}

@media (max-width: 767px) {
  .for-pc {
    display: none !important;
  }
}

@media (min-width: 980px) {
  .for-tab {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .for-tab {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .for-sp {
    display: none !important;
  }
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  transition: all 0.3s;
  color: var(--fontColor);
}
a img {
  opacity: 1;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  a:hover img {
    opacity: 0.8;
  }
}
@media (max-width: 767px) {
  a:active img {
    opacity: 0.8;
  }
}

p {
  line-height: 190%;
}
p + p {
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  p a:hover {
    color: var(--linkColor);
  }
}
@media (max-width: 767px) {
  p a:active {
    color: var(--linkColor);
  }
}

ol {
  padding-left: 1.25rem;
}

ruby rt {
  font-size: 40%;
}

em {
  color: #e13838;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  appearance: none;
  padding: 8px 10px;
  border: 1px solid #b7b7b7;
}
@media (max-width: 767px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea {
    font-size: 1rem;
  }
}

select {
  height: 40px;
  padding: 8px 10px;
  border: 1px solid #b7b7b7;
  background: #fff;
  border-radius: 4px;
  color: var(--fontColor);
}
@media (max-width: 767px) {
  select {
    font-size: 1rem;
  }
}

textarea {
  width: 100%;
  height: 200px;
}

.btn-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  font-size: 0.875rem;
}
.btn-arrow::after {
  content: "";
  display: inline-block;
  width: 68px;
  height: 42px;
  margin-left: 15px;
  background: url(../img/common/icon-arrow@2x.png) center center/contain no-repeat;
  transition: transform 0.3s ease;
}
.btn-arrow-en {
  display: block;
  font-size: 0.8125rem;
  font-family: var(--font-jost);
  font-weight: normal;
  margin-left: 40px;
}
.btn-arrow.is-white {
  color: #fff;
}
.btn-arrow.is-white::after {
  background-image: url(../img/common/icon-arrow-white@2x.png);
}
@media (hover: hover) {
  .btn-arrow:hover:after {
    transform: translateX(5px);
  }
}
.btn-arrow:active:after {
  transform: translateX(5px);
}

.btn-big {
  appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  width: 530px;
  height: 87px;
  border-radius: 10px;
  max-width: 100%;
  background: #ffe200;
  border: 1px solid var(--themeColor);
  font-size: 1rem;
  transition: all 0.3s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .btn-big {
    height: 60px;
    padding-right: 30px;
    font-size: 0.875rem;
  }
}
.btn-big::after {
  content: "";
  display: inline-block;
  width: 68px;
  height: 42px;
  position: absolute;
  right: 15px;
  margin-left: 15px;
  background: url(../img/common/icon-arrow@2x.png) center center/contain no-repeat;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .btn-big::after {
    width: 40px;
    height: 24px;
  }
}
.btn-big-en {
  display: block;
  font-size: 0.8125rem;
  font-family: var(--font-jost);
  font-weight: normal;
  margin-left: 40px;
}
@media (max-width: 767px) {
  .btn-big-en {
    margin-left: 20px;
  }
}
.btn-big.is-white {
  color: #fff;
}
.btn-big.is-white::after {
  background-image: url(../img/common/icon-arrow-white@2x.png);
}
@media (hover: hover) {
  .btn-big:hover {
    background: #fff200;
  }
  .btn-big:hover:after {
    transform: translateX(5px);
  }
}
.btn-big:active:after {
  transform: translateX(5px);
}

.col {
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 767px) {
  .col {
    display: block;
  }
}
@media (max-width: 767px) {
  .col.is-sp-flex {
    display: flex;
  }
}
.col.is-oneline {
  flex-wrap: nowrap;
  justify-content: space-between;
}
.col-contents {
  width: 100%;
}
@media (max-width: 767px) {
  .col-contents {
    max-width: 100%;
  }
  .col:not(.is-sp-flex) .col-contents + .col:not(.is-sp-flex) .col-contents {
    margin-top: 10px;
  }
}
.is-oneline .col-contents {
  margin-bottom: 0;
}
.is-oneline .col-contents + .col-contents {
  margin-left: 2%;
}
@media (max-width: 767px) {
  .is-oneline:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-oneline:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
}
.is-2 .col-contents {
  max-width: 48%;
}
.is-2 .col-contents:nth-child(even) {
  margin-left: calc(4% - 1px);
}
.is-2 .col-contents:nth-child(n+3) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .is-2 .col-contents:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .is-2:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-2:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
}
.is-3 .col-contents {
  max-width: 32%;
}
.is-3 .col-contents:not(:nth-child(3n+1)) {
  margin-left: calc(2% - 1px);
}
.is-3 .col-contents:nth-child(n+4) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .is-3 .col-contents:nth-child(n+4) {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .is-3:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-3:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
}
.is-4 .col-contents {
  max-width: 23%;
}
.is-4 .col-contents:not(:nth-child(4n+1)) {
  margin-left: calc(2.6% - 1px);
}
.is-4 .col-contents:nth-child(n+5) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .is-4 .col-contents:nth-child(n+5) {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .is-4:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-4:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
}
.col-contents-title {
  margin-bottom: 5px;
}
.col-contents-text {
  margin-top: 5px;
}

.flImgContents-img {
  max-width: 37%;
  width: 100%;
}
@media (max-width: 767px) {
  .flImgContents-img {
    max-width: 100%;
  }
}
.flImgContents-img.is-s {
  max-width: 200px;
}
@media (max-width: 767px) {
  .flImgContents-img.is-s {
    max-width: 100%;
  }
}
.flImgContents-img.is-ss {
  max-width: 100px;
}
@media (max-width: 767px) {
  .flImgContents-img.is-ss {
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
}
.flImgContents-img.is-l {
  max-width: 47%;
}
@media (max-width: 767px) {
  .flImgContents-img.is-l {
    max-width: 100%;
  }
}
.flImgContents-img.is-fr {
  float: right;
  margin: 0 0 20px 40px;
}
@media (max-width: 767px) {
  .flImgContents-img.is-fr {
    margin: 0 auto 20px;
  }
  .flImgContents-img.is-fr:not(.is-sp-float) {
    float: none;
  }
  .flImgContents-img.is-fr.is-sp-float {
    width: 35%;
    margin: 0 0 10px 10px;
  }
}
.flImgContents-img.is-fl {
  float: left;
  margin: 0 40px 20px 0;
}
@media (max-width: 767px) {
  .flImgContents-img.is-fl {
    margin: 0 auto 20px;
  }
  .flImgContents-img.is-fl:not(.is-sp-float) {
    float: none;
  }
  .flImgContents-img.is-fl.is-sp-float {
    width: 35%;
    margin: 0 10px 10px 0;
  }
}

.text-s {
  font-size: 85%;
}

.text-l {
  font-size: 120%;
}

.cl-red {
  color: #ff0000;
}

.list-normal > li {
  margin: 0 0 10px;
  text-indent: -1.6rem;
  padding-left: 1.6rem;
}
.list-normal > li::before {
  content: "●";
  margin-right: 5px;
  font-size: 10px;
  font-family: sans-serif;
  color: var(--themeColor);
}

.list-number {
  padding: 0 0 0 25px;
}
.list-number > li {
  list-style: decimal;
  margin: 0 0 10px;
}

.list-numbold {
  counter-reset: li;
  list-style: none;
  padding-left: 2.5rem;
}
.list-numbold > li::before {
  margin: 0 5px 0 -2rem;
  width: 2.5rem;
  content: counter(li) ". ";
  counter-increment: li;
  font-weight: bold;
}

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

.al-c {
  text-align: center;
}

.full {
  width: 100%;
}

.size-30 {
  width: 30%;
}
@media (max-width: 767px) {
  .size-30 {
    width: 70%;
  }
}

.size-60 {
  width: 60%;
}
@media (max-width: 767px) {
  .size-60 {
    width: 100%;
  }
}

.indent {
  width: 97%;
  margin: 0 0 0 auto;
}

.section-small {
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-1 {
  margin-top: 30px;
  margin-bottom: 40px;
}
.section-1:first-child {
  margin-top: 0;
}

.section-2 {
  margin-top: 40px;
  margin-bottom: 70px;
}
.section-2:first-child {
  margin-top: 0;
}

.section-3 {
  margin-top: 40px;
  margin-bottom: 100px;
}
.section-3:first-child {
  margin-top: 0;
}

.section-center {
  max-width: var(--w);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width: 1159px) {
  .section-center {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .section-center-sp {
    width: 90% !important;
    margin-left: auto;
    margin-right: auto;
  }
}

.nowrap {
  white-space: nowrap;
}

.table-1 {
  border-collapse: collapse;
  border-top: 1px solid rgba(0, 159, 233, 0.4705882353);
  border-bottom: 1px solid rgba(0, 159, 233, 0.4705882353);
}
.table-1 tr {
  border-bottom: 1px dotted #ccc;
}
.table-1 th, .table-1 td {
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .table-1 th, .table-1 td {
    line-height: 1.8;
  }
}
@media (max-width: 767px) {
  .table-1 th, .table-1 td {
    padding: 10px;
    font-size: 0.8125rem;
  }
}
.table-1 th {
  color: var(--themeColor);
  font-weight: bold;
}
.table-1 a {
  color: var(--linkColor);
}
@media (max-width: 767px) {
  .table-1.is-sideTitle tr {
    padding-block: 20px;
  }
  .table-1.is-sideTitle th {
    margin-bottom: 10px;
  }
}

.table-2 {
  border-collapse: collapse;
}
.table-2 tr:nth-child(odd) {
  background: #e3eff6;
}
.table-2 th, .table-2 td {
  padding: 12px 12px;
  line-height: 1.8;
  font-family: var(--font-jost);
  font-size: 0.8125rem;
}
.table-2 th {
  color: var(--themeColor);
  font-weight: bold;
}
@media (max-width: 767px) {
  .table-2.is-sideTitle tr {
    padding: 10px;
  }
  .table-2.is-sideTitle th, .table-2.is-sideTitle td {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .is-sideTitle tr {
    display: block;
  }
  .is-sideTitle th, .is-sideTitle td {
    display: block;
    width: 100%;
    padding: 0;
  }
  .is-sideTitle th {
    margin-bottom: 5px;
    font-weight: bold;
  }
}

.wfix {
  table-layout: fixed;
}

@media (max-width: 767px) {
  .tableScrollWrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    margin-right: -5vw;
    padding-right: 5vw;
  }
}

.title-bold {
  margin-bottom: 30px;
  font-size: 1.25rem;
  font-weight: bold;
}

.title-l {
  margin-bottom: 60px;
  text-align: center;
}
.title-l-main {
  display: block;
  margin-bottom: 5px;
  font-size: 1.75rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .title-l-main {
    font-size: 1.375rem;
  }
}
.title-l-sub {
  display: block;
  font-size: 1.125rem;
  font-family: var(--font-oswald);
  color: var(--themeColor);
}
@media (max-width: 767px) {
  .title-l-sub {
    font-size: 1rem;
  }
}

.title-left-sub {
  font-size: 1.875rem;
  font-family: var(--font-oswald);
}
@media (max-width: 767px) {
  .title-left-sub {
    font-size: 1.5rem;
  }
}
.title-left-main {
  display: block;
  font-size: 2.5rem;
  font-family: var(--font-oswald);
}
@media (max-width: 767px) {
  .title-left-main {
    font-size: 1.75rem;
  }
}

.title-m {
  margin-bottom: 35px;
  font-size: 1.5rem;
  padding-left: 12px;
  border-left: 3px solid var(--themeColor);
}
@media (max-width: 767px) {
  .title-m {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

.title-left2 {
  margin-bottom: 60px;
}
.title-left2-main {
  font-size: 2rem;
  font-family: var(--font-oswald);
  font-weight: bold;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .title-left2-main {
    font-size: 1.5rem;
    margin-right: 0;
  }
}
.title-left2-sub {
  font-size: 1.5rem;
  font-family: var(--font-oswald);
}
@media (max-width: 767px) {
  .title-left2-sub {
    font-size: 1.125rem;
  }
}

.title-cl {
  color: var(--themeColor);
  font-size: 1.5rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .title-cl {
    font-size: 1.125rem;
  }
}

@media (min-width: 980px) {
  body:not(.topPage) main {
    margin-top: 90px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  body:not(.topPage) main {
    margin-top: 70px;
  }
}

.pageTitle {
  position: relative;
  height: 240px;
}
@media (max-width: 767px) {
  .pageTitle {
    height: 180px;
  }
}
.pageTitle-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.pageTitle-text {
  position: absolute;
  right: 3%;
  top: calc(50% - 0.7em);
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 5.3125rem;
  font-family: var(--font-jost);
  z-index: 1;
}
@media (max-width: 767px) {
  .pageTitle-text {
    right: 5%;
    top: 50%;
    font-size: 3.125rem;
  }
}

.contents {
  padding-top: 70px;
}

.pageLead {
  margin-bottom: 40px;
  text-align: center;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .pageLead {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    font-size: 0.875rem;
    text-align: left;
  }
}
.pageLead p {
  line-height: 2.6;
}
@media (max-width: 767px) {
  .pageLead p {
    line-height: 2;
  }
}

.recruitNaviWrap {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .recruitNaviWrap {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .recruitNaviWrap {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .recruitNaviWrap {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}

.btnWrapCenter {
  margin-bottom: 120px;
  text-align: center;
}
@media (max-width: 767px) {
  .btnWrapCenter {
    padding-inline: 5%;
  }
}

.footerContact {
  background: url(../img/common/bg-contact.webp) center center/cover no-repeat;
  color: #fff;
  margin-top: 60px;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .footerContact {
    margin-top: 0;
    padding: 40px 5%;
  }
}
.footerContact-lead {
  margin-bottom: 60px;
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
}

.footerContactCard {
  display: flex;
  justify-content: space-evenly;
}
@media (min-width: 768px) {
  .footerContactCard {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .footerContactCard {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .footerContactCard {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
.footerContactCard-item {
  width: min(360px, 35%);
}
@media (max-width: 767px) {
  .footerContactCard-item {
    width: 100%;
  }
}

.telCard {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  gap: 10px;
}
.telCard-num {
  font-size: 2.375rem;
  line-height: 1;
  font-family: var(--font-oswald);
  font-weight: 500;
}
.telCard-num a {
  color: #fff;
}

.contactCard {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  height: 95px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.contactCard-en {
  font-size: 2.1875rem;
  font-family: var(--font-oswald);
  font-weight: normal;
  line-height: 1;
}
@media (hover: hover) {
  .contactCard:hover {
    opacity: 0.8;
  }
}

.footer {
  padding: 80px 0 40px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .footer {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .footer {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .footer {
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .footerInfo {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .footerInfo {
    width: 100%;
    margin-bottom: 40px;
  }
}
.footerInfo-logo {
  width: 251px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .footerInfo-logo {
    width: 60%;
    margin-bottom: 20px;
  }
}
.footerInfo-logo svg {
  width: 100%;
  height: auto;
}
.footerInfo-address-name {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.footerInfo-jusho {
  line-height: 1.8;
}

@media (min-width: 768px) and (max-width: 979px) {
  .footerNavi {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .footerNavi {
    width: 100%;
  }
}
.footerNavi-ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .footerNavi-ul {
    justify-content: flex-start;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .footerNavi-ul-li {
    width: 45%;
  }
}
.footerNavi-ul-li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3px;
  padding: 0 30px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .footerNavi-ul-li a {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .footerNavi-ul-li a {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    padding: 0;
    font-size: 0.6875rem;
  }
}
.footerNavi-ul-li-ja {
  font-weight: bold;
}
.footerNavi-ul-li-en {
  font-family: var(--font-jost);
  font-weight: normal;
}

.footerCopy {
  display: block;
  text-align: right;
  margin-top: 100px;
  font-family: var(--font-jost);
}
@media (min-width: 768px) and (max-width: 979px) {
  .footerCopy {
    margin-top: 30px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 3%;
  z-index: 5;
  transition: all 0.1s;
}
@media (min-width: 768px) and (max-width: 979px) {
  .header {
    background: #fff;
    height: 70px;
  }
}
@media (max-width: 767px) {
  .header {
    background: #fff;
    height: 50px;
  }
}
@media (min-width: 980px) {
  .is-scroll .header {
    background: rgba(0, 0, 0, 0.4);
  }
}
.header-logo {
  margin-top: 15px;
  width: 255px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .header-logo {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .header-logo {
    width: 180px;
    margin-top: 5px;
  }
}
.header-logo a {
  display: block;
}
.header-logo a svg {
  width: 100%;
  height: auto;
}
.header-logo a svg path {
  transition: all 0.2s;
}
@media (min-width: 980px) {
  .topPage .header-logo a svg path {
    fill: #fff;
  }
}
@media (min-width: 980px) {
  .is-scroll .header-logo a svg path {
    fill: #fff;
  }
}
.header-navi {
  display: flex;
  align-items: center;
}
@media (max-width: 979px) {
  .header-navi {
    flex-direction: column;
  }
}

@media (min-width: 980px) {
  .gNavi {
    display: flex;
    height: 90px;
  }
}
@media (max-width: 979px) {
  .gNavi {
    position: fixed;
    top: 50px;
    left: 0;
    width: 300px;
    height: calc(100% - 50px);
    padding: 5% 5% 80px;
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(-100%);
    z-index: 7;
    transition: all 0.5s;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .gNavi {
    top: 70px;
    height: 100vh;
  }
}
.dwMenu-active .gNavi {
  transform: translateX(0);
  opacity: 1;
}
.gNavi-ul {
  width: auto;
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
@media (max-width: 979px) {
  .gNavi-ul {
    margin-bottom: 30px;
    flex-direction: column;
  }
}
.gNavi-ul-li {
  font-weight: bold;
  line-height: 1.2;
  font-size: 0.8125rem;
}
@media (min-width: 980px) {
  .topPage .gNavi-ul-li {
    color: #fff;
  }
}
@media (max-width: 979px) {
  .gNavi-ul-li {
    transform: translate3d(-20px, 0, 0);
    border-bottom: 1px solid #ccc;
    opacity: 0;
    transition: all 0.1s;
  }
}
.dwMenu-active .gNavi-ul-li:nth-child(0) {
  transition: all 1s 0s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dwMenu-active .gNavi-ul-li:nth-child(1) {
  transition: all 1s 0.1s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dwMenu-active .gNavi-ul-li:nth-child(2) {
  transition: all 1s 0.2s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dwMenu-active .gNavi-ul-li:nth-child(3) {
  transition: all 1s 0.3s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dwMenu-active .gNavi-ul-li:nth-child(4) {
  transition: all 1s 0.4s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dwMenu-active .gNavi-ul-li:nth-child(5) {
  transition: all 1s 0.5s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dwMenu-active .gNavi-ul-li:nth-child(6) {
  transition: all 1s 0.6s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dwMenu-active .gNavi-ul-li:nth-child(7) {
  transition: all 1s 0.7s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dwMenu-active .gNavi-ul-li:nth-child(8) {
  transition: all 1s 0.8s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dwMenu-active .gNavi-ul-li:nth-child(9) {
  transition: all 1s 0.9s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dwMenu-active .gNavi-ul-li:nth-child(10) {
  transition: all 1s 1s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dwMenu-active .gNavi-ul-li:nth-child(11) {
  transition: all 1s 1.1s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dwMenu-active .gNavi-ul-li:nth-child(12) {
  transition: all 1s 1.2s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dwMenu-active .gNavi-ul-li:nth-child(13) {
  transition: all 1s 1.3s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dwMenu-active .gNavi-ul-li:nth-child(14) {
  transition: all 1s 1.4s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dwMenu-active .gNavi-ul-li:nth-child(15) {
  transition: all 1s 1.5s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
@media (min-width: 980px) {
  .is-scroll .gNavi-ul-li {
    color: #fff;
  }
}
.gNavi-ul-li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 1px 30px;
}
@media (min-width: 980px) {
  .topPage .gNavi-ul-li a {
    color: #fff;
  }
}
@media (min-width: 980px) and (max-width: 1159px) {
  .gNavi-ul-li a {
    padding-inline: 12px;
  }
}
@media (max-width: 979px) {
  .gNavi-ul-li a {
    flex-direction: row;
    gap: 20px;
    justify-content: flex-start;
    padding: 10px 5%;
  }
}
@media (hover: hover) {
  .gNavi-ul-li a:hover {
    opacity: 0.7;
  }
}
@media (min-width: 980px) {
  .is-scroll .gNavi-ul-li a {
    color: #fff;
  }
}
.gNavi-ul-li-main {
  display: block;
}
.gNavi-ul-li-sub {
  font-family: var(--font-jost);
  font-weight: normal;
}
.gNavi-contact {
  display: flex;
  width: 190px;
  height: 100%;
}
@media (max-width: 979px) {
  .gNavi-contact {
    width: 100%;
    height: auto;
  }
}
.gNavi-contact a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: linear-gradient(0deg, #0194d7 50%, rgb(0, 160, 233) 50%, rgb(0, 160, 233));
  width: 100%;
  height: 100%;
  padding-left: 10px;
  color: #fff;
  font-weight: bold;
}
@media (min-width: 980px) {
  .gNavi-contact a {
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@media (max-width: 979px) {
  .gNavi-contact a {
    padding: 10px 20px;
  }
}
@media (hover: hover) {
  .gNavi-contact a:hover {
    opacity: 0.7;
  }
}
.gNavi-contact-sub {
  font-family: var(--font-jost);
  font-weight: normal;
}

.filter {
  position: fixed;
  width: 100%;
  height: 120%;
  bottom: 0;
  left: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 4;
}
.dwMenu-active .filter {
  background: rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}

.dwMenu {
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  z-index: 8;
  appearance: none;
  border: none;
  border-radius: 2px;
}
@media (min-width: 980px) {
  .dwMenu {
    display: none;
  }
}
@media (max-width: 767px) {
  .dwMenu {
    top: 0;
    right: 0;
  }
}
.dwMenu-hamburger {
  position: relative;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.dwMenu-hamburger span {
  position: absolute;
  left: 7.5px;
  display: inline-block;
  width: 35px;
  height: 1px;
  background: #fff;
  transition: all 0.4s;
}
@media (max-width: 979px) {
  .dwMenu-hamburger span {
    background: #000;
  }
}
.dwMenu-hamburger span:nth-of-type(1) {
  top: 12px;
  animation: menu-bar01 0.75s forwards;
}
.dwMenu-hamburger span:nth-of-type(2) {
  top: 24px;
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.dwMenu-hamburger span:nth-of-type(3) {
  top: 36px;
  animation: menu-bar02 0.75s forwards;
}
.dwMenu-active .dwMenu-hamburger span:nth-of-type(1) {
  animation: active-menu-bar01 0.75s forwards;
}
.dwMenu-active .dwMenu-hamburger span:nth-of-type(2) {
  opacity: 0;
}
.dwMenu-active .dwMenu-hamburger span:nth-of-type(3) {
  animation: active-menu-bar03 0.75s forwards;
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(12px) rotate(45deg);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-12px) rotate(-45deg);
  }
  50% {
    transform: translateY(-12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(12px) rotate(45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-12px) rotate(0);
  }
  100% {
    transform: translateY(-12px) rotate(-45deg);
  }
}
.mv {
  position: relative;
  height: 100vh;
  background: url(../img/top/mv@2x.webp) center center/cover no-repeat;
}
@media (min-width: 768px) and (max-width: 979px) {
  .mv {
    height: 50vh;
  }
}
@media (max-width: 767px) {
  .mv {
    height: 60vh;
  }
}
.mv-inner {
  position: absolute;
  bottom: 50px;
  left: 3%;
  color: #fff;
}
.mv-title-sub {
  display: block;
  margin-bottom: 20px;
  font-size: 1.0625rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .mv-title-sub {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }
}
.mv-title-main {
  display: block;
  line-height: 1.1;
  font-size: 4.0625rem;
  font-weight: bold;
  font-family: var(--font-jost);
  font-weight: 500;
}
@media (max-width: 767px) {
  .mv-title-main {
    font-size: 2.5rem;
  }
}

.topFeatures {
  position: relative;
  padding: 80px 0;
}
.topFeatures::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 230px;
  left: 0;
  width: 100%;
  height: 770px;
  background: linear-gradient(200deg, #1d85ca 40%, #0e2f9f 100%);
  transform: skewY(-5deg);
}
@media (min-width: 768px) and (max-width: 1159px) {
  .topFeatures::before {
    right: 0;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .topFeatures::before {
    top: 250px;
    height: calc(100% + 9.5vw);
  }
}
.topFeatures-inner {
  position: relative;
  margin-left: var(--side);
}
@media (min-width: 768px) and (max-width: 1159px) {
  .topFeatures-inner {
    padding-left: 5%;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .topFeatures-inner {
    margin-left: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.topFeatures-title {
  margin-bottom: 70px;
  font-size: 3.125rem;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 979px) {
  .topFeatures-title {
    font-size: 1.875rem;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .topFeatures-title {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
}
.topFeatures-title .text-l {
  font-size: 3.5625rem;
}
@media (min-width: 768px) and (max-width: 979px) {
  .topFeatures-title .text-l {
    font-size: 2.8125rem;
  }
}
@media (max-width: 767px) {
  .topFeatures-title .text-l {
    font-size: 1.875rem;
  }
}
.topFeatures-title .text-l em {
  font-family: var(--font-jost);
  font-size: 150%;
  color: var(--fontColor);
}
.topFeatures-enTitle {
  position: absolute;
  top: -40px;
  right: var(--side);
  color: #0f2b87;
  font-size: 6.25rem;
  font-family: var(--font-oswald);
  opacity: 0.1;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1159px) {
  .topFeatures-enTitle {
    right: 0;
  }
}
@media (max-width: 767px) {
  .topFeatures-enTitle {
    top: -80px;
    right: 0;
    font-size: 3.125rem;
  }
}
.topFeatures-img {
  position: absolute;
  top: 20px;
  right: 0;
  width: min(694px, 52%);
}
@media (min-width: 768px) and (max-width: 1159px) {
  .topFeatures-img {
    top: 4vw;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .topFeatures-img {
    position: static;
    margin-top: -30px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .topFeatures-img {
    position: static;
    width: 100%;
    margin-bottom: 40px;
  }
}
.topFeatures-img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.topFeatures-text {
  max-width: min(410px, 45%);
  color: #fff;
  margin-bottom: 60px;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 979px) {
  .topFeatures-text {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .topFeatures-text {
    max-width: 100%;
  }
}
.topFeatures-text p {
  line-height: 2.4;
}

.topBusiness {
  position: relative;
  display: flex;
  gap: 40px;
}
@media (min-width: 768px) {
  .topBusiness {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .topBusiness {
    max-width: 96%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .topBusiness {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .topBusiness {
    flex-direction: column;
    gap: 0;
    margin-top: 60px;
  }
}
.topBusiness-enTitle {
  position: absolute;
  top: -90px;
  right: var(--side);
  color: #fff;
  font-size: 6.25rem;
  font-family: var(--font-oswald);
  opacity: 0.1;
}
@media (min-width: 768px) and (max-width: 1159px) {
  .topBusiness-enTitle {
    right: 0;
    top: -140px;
  }
}
@media (max-width: 767px) {
  .topBusiness-enTitle {
    right: 0;
    font-size: 3.125rem;
  }
}
.topBusiness-img {
  width: min(697px, 52%);
}
@media (min-width: 768px) and (max-width: 979px) {
  .topBusiness-img {
    width: 50%;
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .topBusiness-img {
    width: 100%;
    margin-inline: auto;
    margin-bottom: 40px;
  }
}
.topBusiness-img img {
  display: block;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .topBusiness-img img {
    border-radius: 20px;
    width: 80%;
    margin-inline: auto;
  }
}
.topBusiness-desc {
  flex: 1;
  padding-top: 60px;
  margin-right: var(--side);
}
@media (min-width: 768px) and (max-width: 1159px) {
  .topBusiness-desc {
    margin-inline: auto;
    width: 80%;
  }
}
@media (max-width: 767px) {
  .topBusiness-desc {
    margin-right: auto;
    padding-top: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.topBusiness-desc-text {
  margin-bottom: 80px;
  color: #fff;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 979px) {
  .topBusiness-desc-text {
    color: #000;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .topBusiness-desc-text {
    color: #000;
    margin-bottom: 20px;
  }
}
.topBusiness-desc-text p {
  line-height: 2.2;
}
.topBusiness-desc-title {
  margin-bottom: 30px;
  font-weight: bold;
  text-align: right;
  line-height: 1.8;
}
@media (min-width: 980px) {
  .topBusiness-desc-title {
    font-size: min(2.4vw, 30px);
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .topBusiness-desc-title {
    font-size: 1.875rem;
  }
}
@media (max-width: 767px) {
  .topBusiness-desc-title {
    font-size: 1.25rem;
  }
}
.topBusiness-desc-btn {
  text-align: right;
}

.topRecruit {
  position: relative;
  margin-top: 80px;
  padding: 20px 0 80px;
}
.topRecruit::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: calc(100% - 40px);
  background: #ffe200;
  clip-path: polygon(0 12%, 100% 0%, 100% 100%, 0% 100%);
}
@media (max-width: 767px) {
  .topRecruit::before {
    clip-path: polygon(0 100px, 100% 0%, 100% 100%, 0% 100%);
  }
}
.topRecruit-inner {
  position: relative;
}
.topRecruit-titleArea {
  display: flex;
  align-items: flex-end;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .topRecruit-titleArea {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .topRecruit-titleArea {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .topRecruit-titleArea {
    flex-direction: column;
    align-items: center;
  }
}
.topRecruit-titleArea-title {
  margin-right: -65px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 979px) {
  .topRecruit-titleArea-title {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .topRecruit-titleArea-title {
    margin-left: 0;
    width: 60%;
  }
}
@media (max-width: 767px) {
  .topRecruit-titleArea-img {
    width: 90%;
    margin-inline: auto 0;
  }
}
.topRecruit-desc {
  display: flex;
  gap: 0 3%;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .topRecruit-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .topRecruit-desc {
    max-width: 96%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .topRecruit-desc {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .topRecruit-desc {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.topRecruit-desc-lead {
  font-size: 1.25rem;
  font-weight: bold;
}
.topRecruit-desc-lead .text-l {
  margin-top: 10px;
  display: block;
  font-size: 140%;
}
.topRecruit-desc-lead-btn {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .topRecruit-desc-lead-btn {
    margin-bottom: 20px;
  }
}
.topRecruit-desc-text {
  flex: 1;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 979px) {
  .topRecruit-desc-text {
    margin-top: 40px;
  }
}
@media (min-width: 980px) {
  .topRecruit-desc-text p {
    line-height: 2.8;
  }
}
.topRecruit-subimgs {
  display: flex;
  gap: 2px;
}
@media (min-width: 768px) {
  .topRecruit-subimgs {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .topRecruit-subimgs {
    max-width: 96%;
  }
}
.topRecruit-subimgs-item {
  width: 100%;
}
.topRecruit-subimgs-item img {
  border-radius: 5px;
  width: 100%;
}

.featureImgs {
  gap: 15px;
  display: flex;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .featureImgs {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .featureImgs {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .featureImgs {
    flex-direction: column;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    margin-bottom: 30px;
  }
}
.featureImgs-item {
  border-radius: 10px;
  overflow: hidden;
}

.featureLead {
  margin-bottom: 80px;
  text-align: center;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .featureLead {
    font-size: 0.875rem;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
@media (min-width: 980px) {
  .featureLead p {
    line-height: 2.6;
  }
}

.featureMain-img {
  margin-bottom: -100px;
  padding-bottom: 1px;
}
@media (max-width: 767px) {
  .featureMain-img {
    margin-bottom: -20px;
  }
}
.featureMain-img img {
  border-radius: 70px 70px 0 0;
  width: 100%;
}
@media (max-width: 767px) {
  .featureMain-img img {
    border-radius: 20px 20px 0 0;
  }
}

.featureSection {
  position: relative;
  border-radius: 10px;
  padding: 60px 40px;
  background: #fff;
  z-index: 1;
}
@media (min-width: 768px) {
  .featureSection {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .featureSection {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .featureSection {
    padding: 30px 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.featureSection.is-1 {
  display: flex;
}
@media (max-width: 767px) {
  .featureSection.is-1 {
    flex-direction: column;
  }
}
.featureSection.is-2 {
  display: grid;
  grid-template: "title img" auto "text img" 1fr/48% 1fr;
  gap: 5%;
}
@media (max-width: 767px) {
  .featureSection.is-2 {
    grid-template: "title" auto "text" auto "img" 1fr/100% 100%;
    gap: 0;
  }
}
.featureSection-title {
  grid-area: title;
}
.is-1 .featureSection-title {
  width: 48%;
}
@media (max-width: 767px) {
  .is-1 .featureSection-title {
    width: 100%;
  }
}
.featureSection-title-sub {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 4px 10px;
  font-weight: bold;
  font-size: 1.25rem;
}
@media (min-width: 768px) and (max-width: 979px) {
  .featureSection-title-sub {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .featureSection-title-sub {
    font-size: 0.875rem;
  }
}
.featureSection-title-main {
  display: block;
  margin-top: 20px;
  font-size: 3.125rem;
  line-height: 1.5;
}
@media (min-width: 768px) and (max-width: 979px) {
  .featureSection-title-main {
    font-size: 1.875rem;
  }
}
@media (max-width: 767px) {
  .featureSection-title-main {
    margin-bottom: 10px;
    font-size: 1.25rem;
  }
}
@media (min-width: 980px) {
  .is-s .featureSection-title-main {
    font-size: 2.75rem;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .is-s .featureSection-title-main {
    font-size: 1.75rem;
  }
}
.featureSection-text {
  grid-area: text;
  flex: 1;
}
.featureSection-text p {
  line-height: 2.6;
}
@media (min-width: 768px) and (max-width: 979px) {
  .featureSection-text p {
    line-height: 2.2;
  }
}
@media (max-width: 767px) {
  .featureSection-text p {
    line-height: 2;
  }
}
.featureSection-img {
  grid-area: img;
}
.is-2 .featureSection-img {
  height: fit-content;
  border-radius: 50px 0 0 50px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .is-2 .featureSection-img {
    border-radius: 0;
    margin-top: 30px;
  }
}

.recruitInfo {
  display: flex;
  background: #ffe200;
  margin-top: 80px;
  padding: 5px;
  min-height: 264px;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .recruitInfo {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .recruitInfo {
    max-width: 96%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .recruitInfo {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .recruitInfo {
    margin-top: 20px;
    flex-direction: column;
    border-radius: 12px 12px 0 0;
  }
}
.recruitInfo-img {
  position: relative;
  width: 55%;
}
@media (min-width: 768px) and (max-width: 979px) {
  .recruitInfo-img {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .recruitInfo-img {
    width: 100%;
  }
}
@media (min-width: 980px) {
  .recruitInfo-img img {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media (max-width: 767px) {
  .recruitInfo-img img {
    margin-top: -6vw;
  }
}
.recruitInfo-desc {
  flex: 1;
  padding: 10px 30px;
  text-align: right;
}
@media (min-width: 768px) and (max-width: 979px) {
  .recruitInfo-desc {
    padding-inline: 0 20px;
  }
}
.recruitInfo-desc-title {
  display: inline-flex;
  align-items: baseline;
  color: #fff;
  margin-bottom: 40px;
  background: #000;
  margin-top: 10px;
  margin-right: -35px;
  padding-left: 40px;
  font-family: var(--font-jost);
  clip-path: polygon(10px 0%, 100% 0, 100% 100%, 0% 100%);
}
@media (min-width: 768px) and (max-width: 979px) {
  .recruitInfo-desc-title {
    margin-bottom: 10px;
    margin-right: -25px;
  }
}
@media (max-width: 767px) {
  .recruitInfo-desc-title {
    margin-bottom: 10px;
    margin-right: -15px;
    padding-left: 20px;
  }
}
.recruitInfo-desc-title-main {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 2px 0;
  margin-right: 10px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .recruitInfo-desc-title-main {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .recruitInfo-desc-title-main {
    font-size: 0.875rem;
  }
}
.recruitInfo-desc-title-sub {
  font-size: 1.25rem;
  font-weight: 400;
  padding: 2px 10px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .recruitInfo-desc-title-sub {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .recruitInfo-desc-title-sub {
    font-size: 0.875rem;
  }
}
.recruitInfo-desc-text {
  margin-bottom: 10px;
  font-size: 1.125rem;
  line-height: 2.2;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 979px) {
  .recruitInfo-desc-text {
    font-size: 0.75rem;
  }
}
@media (max-width: 767px) {
  .recruitInfo-desc-text {
    font-size: 0.75rem;
    line-height: 2;
  }
}
.recruitInfo-desc-text .text-l {
  font-size: 140%;
}
@media (min-width: 768px) and (max-width: 979px) {
  .recruitInfo .btn-arrow {
    font-size: 0.6875rem;
  }
}
@media (max-width: 767px) {
  .recruitInfo .btn-arrow {
    font-size: 0.625rem;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .recruitInfo .btn-arrow .btn-arrow-en {
    margin-left: 4px;
  }
}

.shearing {
  margin-top: 120px;
  margin-bottom: 180px;
}
@media (min-width: 768px) {
  .shearing {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .shearing {
    max-width: 96%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .shearing {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .shearing {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.shearingTitleArea {
  display: grid;
  grid-template: "title img" auto "text img" 1fr/1fr 48%;
  gap: 0 5%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .shearingTitleArea {
    grid-template: "title" auto "text" auto "img" 1fr/100% 100%;
    gap: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.shearingTitleArea .title-left {
  grid-area: title;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .shearingTitleArea .title-left {
    margin-bottom: 20px;
  }
}
.shearingTitleArea-img {
  grid-area: img;
  align-self: flex-end;
}
.shearingTitleArea-text {
  grid-area: text;
}

@media (max-width: 767px) {
  .machineSection {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.machineSection + .machineSection {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .machineSection + .machineSection {
    margin-top: 40px;
  }
}

.machineImgs {
  display: flex;
  gap: 5px;
}
.machineImgs + .machineImgs {
  margin-top: 5px;
}

@media (min-width: 768px) {
  .manufacturing {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .manufacturing {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .manufacturing {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}

.flowItem {
  position: relative;
  display: flex;
  gap: 3%;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .flowItem {
    flex-direction: column;
    gap: 0;
    padding-bottom: 30px;
  }
}
.flowItem::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 100%;
  background: var(--themeColor);
  position: absolute;
  left: 35px;
  top: 0;
}
@media (max-width: 767px) {
  .flowItem::after {
    left: 24px;
    width: 3px;
  }
}
.flowItem:last-child::after {
  display: none;
}
.flowItem-desc {
  flex: 1;
  padding-top: 25px;
  padding-left: 100px;
}
@media (max-width: 767px) {
  .flowItem-desc {
    padding-left: 70px;
  }
}
.flowItem-desc-num {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(-45deg, #0194d7 50%, rgb(0, 160, 233) 50%, rgb(0, 160, 233));
  width: 72px;
  height: 72px;
  font-family: var(--font-oswald);
  color: #fff;
  z-index: 1;
}
@media (max-width: 767px) {
  .flowItem-desc-num {
    width: 50px;
    height: 50px;
    font-size: 0.75rem;
  }
}
.flowItem-desc-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .flowItem-desc-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .flowItem-desc-title {
    margin-bottom: 20px;
  }
}
@media (min-width: 980px) {
  .flowItem-desc-text p {
    line-height: 2.2;
  }
}
.flowItem-img {
  width: 45%;
}
@media (max-width: 767px) {
  .flowItem-img {
    width: calc(100% - 70px);
    margin-top: 20px;
    margin-inline: auto 0;
  }
}

.flowItemTel {
  margin-top: 20px;
  padding: 8px 5%;
  border-top: 1px solid var(--themeColor);
  border-bottom: 1px solid var(--themeColor);
}
.flowItemTel-num {
  font-size: 1.875rem;
  line-height: 1;
  font-family: var(--font-oswald);
  color: var(--themeColor);
}
.flowItemTel-num a {
  color: var(--themeColor);
}
.flowItemTel-time {
  font-size: 0.8125rem;
  line-height: 1;
  margin-left: 10px;
  font-family: var(--font-oswald);
}

.bgYellow {
  position: relative;
}
.bgYellow::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 40px;
  left: 0;
  width: 91%;
  height: calc(100% - 110px);
  background: #ffe200;
  border-radius: 0 40px 40px 0;
}
@media (max-width: 767px) {
  .bgYellow::before {
    top: 60px;
    width: 85%;
  }
}
.bgYellow-inner {
  position: relative;
}

.recruitMv {
  position: relative;
  padding-top: 55px;
}
@media (max-width: 767px) {
  .recruitMv {
    padding-top: 80px;
  }
}
.recruitMv-img {
  position: relative;
  max-width: 100%;
  margin-left: calc(var(--side) + 110px);
  margin-top: -10px;
  z-index: 0;
}
@media (min-width: 768px) and (max-width: 1159px) {
  .recruitMv-img {
    margin-left: 8em;
  }
}
@media (max-width: 767px) {
  .recruitMv-img {
    margin-left: 0;
  }
}
.recruitMv-img img {
  width: 100%;
}

.recruitPageTitle {
  position: absolute;
  bottom: 20px;
  left: calc(var(--side) - 100px);
  width: 300px;
  padding: 10px 30px;
  font-weight: bold;
  background: #000;
  color: #fff;
  font-size: 1.3125rem;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1159px) {
  .recruitPageTitle {
    left: 0;
    width: auto;
  }
}

.verticalPageTitle {
  position: absolute;
  top: 0px;
  left: calc(var(--side));
  color: #fff;
  font-family: var(--font-jost);
  font-size: 3.5625rem;
  transform-origin: left;
  transform: rotate(90deg) translateY(-50px);
  line-height: 0.9;
  font-weight: 500;
}
@media (min-width: 768px) and (max-width: 1159px) {
  .verticalPageTitle {
    left: 0;
    top: 10px;
    font-size: 5vw;
  }
}

.recruitTopNaviWrap {
  margin-inline: auto;
}
@media (min-width: 1160px) {
  .recruitTopNaviWrap {
    width: 1000px;
    max-width: 100%;
    padding-left: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .recruitTopNaviWrap {
    padding-right: 1%;
    padding-left: 8em;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .recruitTopNaviWrap {
    padding-left: 0;
    max-width: 98%;
    width: 98%;
  }
}

.recruitNavi-ul {
  display: flex;
  border: 1px solid var(--themeColor);
  border-radius: 40px;
  overflow: hidden;
}
.recruitNavi-ul-li {
  width: 100%;
  height: 63px;
  font-size: 0.8125rem;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 979px) {
  .recruitNavi-ul-li {
    height: 50px;
  }
}
@media (max-width: 767px) {
  .recruitNavi-ul-li {
    font-size: min(3.3vw, 13px);
  }
}
.recruitNavi-ul-li + .recruitNavi-ul-li {
  border-left: 1px solid var(--themeColor);
}
.recruitNavi-ul-li a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
}
@media (max-width: 767px) {
  .recruitNavi-ul-li a {
    text-align: center;
    padding-bottom: 5px;
    line-height: 1.2;
  }
}
.recruitNavi-ul-li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% + 1.3em);
  left: calc(50% - 4px);
  width: 8px;
  height: 6px;
  background: var(--themeColor);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media (max-width: 767px) {
  .recruitNavi-ul-li a::after {
    top: calc(50% + 1.5em);
  }
}
@media (hover: hover) {
  .recruitNavi-ul-li a:hover {
    background: #f2f2f2;
  }
}
.recruitNavi-ul-li.is-current a {
  background: linear-gradient(0deg, #0194d7 50%, rgb(0, 160, 233) 50%, rgb(0, 160, 233));
  color: #ffe200;
}
.recruitNavi-ul-li.is-current a::after {
  background: #ffe200;
}

.recruitSummary {
  position: relative;
}
.recruitSummary-tw {
  width: fit-content;
  margin: 0 auto 30px;
  border: 1px solid #000;
  margin-top: -1.5em;
  padding: 10px 50px;
  background: #fff;
  font-size: 1.25rem;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 979px) {
  .recruitSummary-tw {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .recruitSummary-tw {
    padding: 5px;
    width: fit-content;
    font-size: 1rem;
  }
}
.recruitSummary-title {
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
  font-size: 1.75rem;
}
@media (max-width: 767px) {
  .recruitSummary-title {
    font-size: 1rem;
  }
}
.recruitSummary-title .text-l {
  font-size: 140%;
}

.preMsg {
  position: relative;
  margin-bottom: 40px;
  padding-top: 40px;
}
@media (min-width: 768px) {
  .preMsg {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .preMsg {
    max-width: 96%;
  }
}
.preMsg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: min(308px, 30%);
}
@media (max-width: 767px) {
  .preMsg-img {
    position: static;
    width: 40%;
    margin-inline: auto;
  }
}
.preMsg-img-caption {
  position: absolute;
  top: 350px;
  left: 20%;
  background: #fff;
  padding: 2px 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 979px) {
  .preMsg-img-caption {
    top: 35vw;
    font-size: 1rem;
    left: 10%;
  }
}
@media (max-width: 767px) {
  .preMsg-img-caption {
    top: 50vw;
    left: 20%;
    text-align: center;
    font-size: 0.75rem;
  }
}
.preMsg-img-caption .text-s {
  font-size: 70%;
  margin-left: 10px;
}
.preMsg-lines {
  position: relative;
  width: 850px;
  max-width: 100%;
  background: #fff;
  margin-bottom: 40px;
  padding: 15px;
  border-radius: 20px;
  line-height: 1.8;
  font-weight: bold;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) and (max-width: 1159px) {
  .preMsg-lines {
    width: calc(100% - 270px);
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .preMsg-lines {
    font-size: 0.875rem;
    letter-spacing: normal;
  }
}
@media (max-width: 767px) {
  .preMsg-lines {
    width: 76%;
    margin: -30vw auto 0 5%;
    font-size: 0.75rem;
  }
}
.preMsg-lines::after {
  content: "";
  display: inline-block;
  width: 23px;
  height: 19px;
  position: absolute;
  background: url(../img/recruit/lines.svg) center center/contain no-repeat;
}
@media (min-width: 768px) {
  .preMsg-lines::after {
    left: calc(100% - 1px);
    top: 50%;
  }
}
@media (max-width: 767px) {
  .preMsg-lines::after {
    right: 20%;
    bottom: calc(100% - 1px);
    transform: rotate(-90deg);
  }
}
@media (max-width: 767px) {
  .preMsg-text {
    margin-top: 20px;
    font-weight: bold;
  }
}
.preMsg-text p {
  margin-bottom: 20px;
}
@media (min-width: 980px) {
  .preMsg-text p {
    line-height: 2.5;
    font-size: 0.9375rem;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .preMsg-text p {
    line-height: 2;
    max-width: 70%;
    font-size: 1.5vw;
  }
}
@media (max-width: 767px) {
  .preMsg-text p {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}

.recruitImgs {
  position: relative;
  display: flex;
  gap: 10px;
}
@media (min-width: 768px) {
  .recruitImgs {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .recruitImgs {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .recruitImgs {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.recruitImgs-item {
  border-radius: 10px;
  overflow: hidden;
}

a.messageMsg-wrap {
  display: block;
}
@media (hover: hover) {
  a.messageMsg-wrap:hover {
    opacity: 0.8;
  }
}

.messageMsg {
  margin-left: var(--side);
  margin-block: 80px 100px;
  background: url(../img/recruit/img-message@2x.webp) right center/auto 100% no-repeat;
  padding-top: 100px;
  min-height: 400px;
}
@media (min-width: 980px) and (max-width: 1159px) {
  .messageMsg {
    margin-left: 2%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .messageMsg {
    margin: 60px 0;
    padding-top: 40vw;
    background-size: 100% auto;
    background-position: center top;
  }
}
@media (max-width: 767px) {
  .messageMsg {
    margin-left: 0;
    min-height: auto;
    background-size: 100% auto;
    background-position: center top;
  }
}
.messageMsg-title {
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .messageMsg-title {
    margin-top: 80px;
  }
}
@media (min-width: 768px) and (max-width: 979px) and (min-width: 768px) {
  .messageMsg-title {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 979px) and (min-width: 768px) and (max-width: 1159px) {
  .messageMsg-title {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .messageMsg-title {
    margin-top: 24vw;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.messageMsg-title-sub {
  font-size: 1rem;
  font-weight: bold;
  margin-left: 10px;
}
.messageMsg-title-main {
  display: block;
  font-size: 8.75rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: var(--font-jost);
  font-weight: 500;
  color: #ffe200;
  line-height: 0.5;
}
@media (min-width: 768px) and (max-width: 979px) {
  .messageMsg-title-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .messageMsg-title-main {
    font-size: 12vw;
  }
}
.messageMsg-lead {
  width: 320px;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 979px) and (min-width: 768px) {
  .messageMsg-lead {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 979px) and (min-width: 768px) and (max-width: 1159px) {
  .messageMsg-lead {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .messageMsg-lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.messageMsg-btn {
  margin-left: 140px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .messageMsg-btn {
    text-align: center;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .messageMsg-btn {
    margin-left: 0;
    text-align: center;
  }
}

.fromNumber {
  margin-bottom: 80px;
  padding: 30px 60px;
  background: #0597d9;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .fromNumber {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .fromNumber {
    max-width: 96%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .fromNumber {
    padding: 20px 10px;
  }
}
@media (max-width: 767px) {
  .fromNumber {
    padding: 20px 10px;
    margin-bottom: 40px;
  }
}
.fromNumber-title {
  margin-bottom: 20px;
  text-align: right;
  font-size: 2.1875rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #fff;
}
@media (max-width: 767px) {
  .fromNumber-title {
    font-size: 1.25rem;
    text-align: center;
  }
}
.fromNumber-title em {
  font-size: 3.1875rem;
  color: #ffe200;
  font-weight: bold;
}
@media (max-width: 767px) {
  .fromNumber-title em {
    font-size: 1.875rem;
  }
}

.fromNumberItem-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .fromNumberItem-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.fromNumberItem {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  font-family: var(--font-jost);
}
.fromNumberItem-cap {
  margin-bottom: 5px;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .fromNumberItem-cap {
    font-size: 0.875rem;
  }
}
.fromNumberItem-cap .text-s {
  font-size: 70%;
}
.fromNumberItem-img {
  text-align: center;
}
.fromNumberItem-text {
  text-align: center;
  color: #4ca2eb;
  font-size: 1.9375rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .fromNumberItem-text {
    font-size: 1.5rem;
  }
}
.fromNumberItem-text .text-s {
  font-weight: bold;
  font-size: 1.125rem;
}
.fromNumberItem-note {
  width: fit-content;
  margin-inline: auto;
  font-size: 0.75rem;
}

.gender {
  display: flex;
  justify-content: center;
  gap: 19%;
}
.gender-item {
  margin-top: 10px;
  line-height: 1;
}
@media (min-width: 768px) {
  .gender-item .text-s {
    font-size: 50%;
  }
}

.sougyou {
  display: flex;
  justify-content: center;
  gap: 19%;
}
@media (max-width: 767px) {
  .sougyou {
    flex-direction: column;
  }
}
.sougyou-item {
  margin-top: 10px;
  line-height: 1;
}
@media (min-width: 768px) {
  .sougyou-item .text-s {
    font-size: 50%;
  }
}
.sougyou-item-note {
  display: block;
  color: var(--fontColor);
  font-size: 0.75rem;
}

.nenreisou {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 25px;
  font-size: 1.125rem;
  color: var(--fontColor);
}
@media (min-width: 768px) and (max-width: 979px) {
  .nenreisou {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .nenreisou {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 10px;
    font-size: 0.875rem;
  }
}
.nenreisou-item-num {
  font-size: 190%;
  color: var(--themeColor);
}
@media (max-width: 767px) {
  .nenreisou-item-num {
    font-size: 160%;
  }
}

.backupArea {
  position: relative;
  margin-left: var(--side);
  margin-bottom: 80px;
}
@media (min-width: 768px) and (max-width: 1159px) {
  .backupArea {
    margin-left: 2%;
  }
}
@media (max-width: 767px) {
  .backupArea {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    margin-bottom: 30px;
  }
}
.backupArea .title-cl {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .backupArea .title-cl {
    margin-bottom: 20px;
    text-align: center;
  }
}
.backupArea-img {
  position: absolute;
  top: -60px;
  right: 0;
  width: calc(50% - 140px);
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1159px) {
  .backupArea-img {
    width: 40%;
    top: -20px;
  }
}
@media (max-width: 767px) {
  .backupArea-img {
    width: 80%;
    position: static;
    margin: 0 auto 30px;
  }
}
.backupArea-img img {
  display: block;
  width: 100%;
  margin-left: 60px;
}
@media (max-width: 767px) {
  .backupArea-img img {
    margin: 0;
  }
}
.backupArea-text {
  width: 62%;
}
@media (max-width: 767px) {
  .backupArea-text {
    width: 100%;
  }
}

.entryCard {
  display: flex;
  margin-bottom: 40px;
  background: #ffe200;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .entryCard {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .entryCard {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .entryCard {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}

.entryCardSummary {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px 40px 60px;
  border-right: 2px dotted #fff;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .entryCardSummary {
    padding: 20px 20px 40px;
  }
}
@media (max-width: 767px) {
  .entryCardSummary {
    border-right: 0;
    border-bottom: 2px dotted #fff;
    padding: 10px 20px 20px;
  }
}
.entryCardSummary::before, .entryCardSummary::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}
@media (min-width: 768px) {
  .entryCardSummary::before {
    right: -10px;
    top: -10px;
  }
}
@media (max-width: 767px) {
  .entryCardSummary::before {
    right: -10px;
    bottom: -10px;
  }
}
@media (min-width: 768px) {
  .entryCardSummary::after {
    right: -10px;
    bottom: -10px;
  }
}
@media (max-width: 767px) {
  .entryCardSummary::after {
    left: -10px;
    bottom: -10px;
  }
}
.entryCardSummary-desc-title {
  display: block;
  font-family: var(--font-jost);
  font-size: 5rem;
  font-weight: 500;
}
@media (min-width: 768px) and (max-width: 979px) {
  .entryCardSummary-desc-title {
    font-size: 3.125rem;
  }
}
@media (max-width: 767px) {
  .entryCardSummary-desc-title {
    font-size: 3.75rem;
    text-align: center;
  }
}
.entryCardSummary-desc-text {
  width: fit-content;
  margin-left: -40px;
  background: #000;
  padding: 5px 30px 5px 20px;
  width: 240px;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0% 100%);
}
@media (min-width: 768px) and (max-width: 979px) {
  .entryCardSummary-desc-text {
    width: 160px;
    margin-left: -30px;
    padding: 5px 20px 5px 10px;
    font-size: 0.8125rem;
  }
}
@media (max-width: 767px) {
  .entryCardSummary-desc-text {
    margin-left: -20px;
    padding: 5px 20px 5px 10px;
    font-size: 0.75rem;
  }
}
.entryCardSummary-illust {
  width: 101px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .entryCardSummary-illust {
    width: 80px;
  }
}

.entryCardDesc {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  background: #ffe200;
  padding: 30px 40px 20px;
  width: 100%;
  border-radius: 0 10px 10px 0;
}
@media (max-width: 767px) {
  .entryCardDesc {
    border-radius: 0 0 10px 10px;
  }
}
.entryCardDesc-text {
  text-align: right;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .entryCardDesc-text {
    text-align: left;
  }
}
.entryCardDesc-text p {
  line-height: 2.5;
}
@media (min-width: 768px) and (max-width: 979px) {
  .entryCardDesc-text p {
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .entryCardDesc-text p {
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .entryCardDesc-btn .btn-arrow {
    font-size: 0.6875rem;
  }
}
.entryCardDesc-btn .btn-arrow-en {
  margin-left: 15px;
}
.entryCardDesc-bn {
  max-width: 415px;
  margin-top: 20px;
}

.staffMessage {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-block: -30px 120px;
}
@media (min-width: 768px) {
  .staffMessage {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .staffMessage {
    max-width: 96%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .staffMessage {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .staffMessage {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    grid-template-columns: repeat(3, 1fr);
    margin-block: 0 60px;
  }
}
.staffMessage-item {
  position: relative;
  width: 100%;
  padding-bottom: 12px;
}
.staffMessage-item::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  transform: rotate(-135deg);
  position: absolute;
  bottom: 0;
  left: calc(50% - 2.5px);
}
.staffMessage-item-img img {
  width: 100%;
}
.staffMessage-item-text {
  margin-top: 10px;
  text-align: center;
  font-size: 0.75rem;
  font-family: var(--font-jost);
  text-align: center;
}
@media (min-width: 768px) and (max-width: 979px) {
  .staffMessage-item-text {
    font-size: 0.625rem;
  }
}
@media (max-width: 767px) {
  .staffMessage-item-text {
    margin-top: 4px;
    font-size: 0.5rem;
  }
}

.staffMsgContainer {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .staffMsgContainer {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .staffMsgContainer {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .staffMsgContainer {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}

.sfaffDetailSection {
  display: grid;
}
@media (min-width: 980px) {
  .sfaffDetailSection {
    grid-template: "img name" auto "img year" auto "img title" auto "img text" 1fr/50% 1fr;
    gap: 0 60px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .sfaffDetailSection {
    grid-template: "name year" auto "title title" auto "img text" 1fr/45% 1fr;
    gap: 0 40px;
  }
}
@media (max-width: 767px) {
  .sfaffDetailSection {
    grid-template: "name year" auto "title title" auto "img img" auto "text text" 1fr/auto 1fr;
    gap: 0 20px;
  }
}
@media (min-width: 980px) {
  .sfaffDetailSection.is-reverse {
    grid-template: "name img" auto "year img" auto "title img" auto "text img" 1fr/50% 1fr;
    gap: 0 60px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .sfaffDetailSection.is-reverse {
    grid-template: "name year" auto "title title" auto "text img" 1fr/45% 1fr;
    gap: 0 40px;
  }
}
.sfaffDetailSection + .sfaffDetailSection {
  margin-top: 140px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .sfaffDetailSection + .sfaffDetailSection {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .sfaffDetailSection + .sfaffDetailSection {
    margin-top: 80px;
  }
}
.sfaffDetailSection-img {
  grid-area: img;
}
@media (max-width: 767px) {
  .sfaffDetailSection-img {
    margin-bottom: 20px;
  }
}
.sfaffDetailSection-name {
  grid-area: name;
  font-weight: 500;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .sfaffDetailSection-name {
    font-size: 1rem;
  }
}
.sfaffDetailSection-name .text-l {
  font-size: 2.625rem;
  margin-right: 20px;
  letter-spacing: 0.3em;
}
@media (min-width: 768px) and (max-width: 979px) {
  .sfaffDetailSection-name .text-l {
    font-size: 1.875rem;
  }
}
@media (max-width: 767px) {
  .sfaffDetailSection-name .text-l {
    margin-right: 5px;
    font-size: 1.125rem;
  }
}
.sfaffDetailSection-name-role {
  margin-left: 50px;
}
@media (max-width: 767px) {
  .sfaffDetailSection-name-role {
    margin-left: 20px;
  }
}
.sfaffDetailSection-year {
  grid-area: year;
  display: block;
  margin-block: 10px 40px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .sfaffDetailSection-year {
    align-self: flex-end;
    margin-bottom: 10px;
    margin-right: 10px;
    text-align: right;
  }
}
@media (max-width: 767px) {
  .sfaffDetailSection-year {
    font-size: 0.6875rem;
    margin-bottom: 0;
  }
}
.sfaffDetailSection-title {
  grid-area: title;
  margin-bottom: 40px;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .sfaffDetailSection-title {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 1.125rem;
  }
}
.sfaffDetailSection-text {
  grid-area: text;
  font-size: 0.8125rem;
}
.sfaffDetailSection-text p {
  line-height: 2;
}

.docTableWrap {
  margin-block: 90px 60px;
}
@media (min-width: 768px) {
  .docTableWrap {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .docTableWrap {
    max-width: 96%;
  }
}

.docTable {
  width: 100%;
}
.docTable th {
  min-width: 120px;
}
@media (max-width: 767px) {
  .docTable th {
    font-size: 0.8125rem;
  }
}
.docTable .col2 {
  display: flex;
  gap: 0 5%;
}
@media (max-width: 767px) {
  .docTable .col2 {
    flex-direction: column;
  }
}
.docTable .list-normal li {
  text-indent: -1em;
  padding-left: 1em;
}

.greeting {
  margin-block: 100px 120px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .greeting {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .greeting {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .greeting {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    margin-block: 40px 80px;
  }
}
.greeting-img {
  float: left;
  width: 45%;
  margin-right: 60px;
}
@media (max-width: 767px) {
  .greeting-img {
    float: none;
    margin: 0 auto 20px;
  }
}
.greeting-en {
  margin-bottom: 30px;
  font-size: 1.25rem;
  color: var(--themeColor);
  font-family: var(--font-oswald);
  line-height: 1.3;
}
.greeting-title {
  margin-bottom: 40px;
  font-size: 1.625rem;
  font-weight: 500;
  font-family: var(--font-oswald);
  line-height: 1.6;
}
@media (max-width: 767px) {
  .greeting-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}
.greeting-name {
  margin-top: 40px;
  text-align: right;
}
@media (max-width: 767px) {
  .greeting-name {
    font-size: 0.75rem;
  }
}
.greeting-name .text-l {
  font-size: 140%;
}
@media (min-width: 768px) {
  .greeting-text p {
    line-height: 2.6;
  }
}

.companySection {
  margin-bottom: 120px;
}
@media (min-width: 768px) {
  .companySection {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .companySection {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .companySection {
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
@media (min-width: 768px) {
  .companySection table th {
    min-width: 180px;
  }
}
@media (max-width: 767px) {
  .companySection table th {
    min-width: 110px;
  }
}

.historySection {
  margin-bottom: 120px;
}
@media (min-width: 768px) {
  .historySection {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .historySection {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .historySection {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.historySection table {
  width: 100%;
}
.historySection table th {
  width: 160px;
}
@media (max-width: 767px) {
  .historySection table th {
    width: 120px;
  }
}

.contactTable {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .contactTable {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .contactTable {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .contactTable {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.contactTable tr:nth-child(even) {
  background: #f5f8fa;
}
.contactTable th {
  width: 25%;
}
@media (min-width: 768px) and (max-width: 979px) {
  .contactTable th {
    padding: 15px;
    width: 30%;
  }
}
@media (max-width: 767px) {
  .contactTable th {
    width: 100%;
  }
}
.contactTable input, .contactTable textarea {
  border: 1px solid rgba(68, 144, 179, 0.4823529412);
  border-radius: 5px;
}
.contactTable .titleicon {
  float: left;
  display: block;
  margin-right: 10px;
  margin-top: 2px;
  padding: 2px 10px;
  border-radius: 2px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .contactTable .titleicon {
    line-height: 1.2;
  }
}
.contactTable .titleicon.is-hissu {
  background: #c93030;
}
.contactTable .titleicon.is-nini {
  background: #3077c9;
}
.contactTable-jusho-yubinmark {
  margin-right: 5px;
}
.contactTable-jusho-yubincode {
  max-width: 130px;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .contactTable-jusho-input {
    margin-top: 10px;
  }
}
.contactTable input, .contactTable textarea {
  vertical-align: middle;
}
@media (max-width: 767px) {
  .contactTable input, .contactTable textarea {
    font-size: 1rem;
  }
}
.contactTable .checkboxWrap {
  display: flex;
  flex-wrap: wrap;
}
.contactTable .checkboxWrap label {
  width: 25%;
  display: inline-block;
  margin: 5px 0 0;
}
@media (max-width: 767px) {
  .contactTable .checkboxWrap label {
    width: 46%;
    margin: 15px 0 0;
  }
}
.contactTable .checkboxWrap input[type=checkbox], .contactTable .checkboxWrap input[type=radio] {
  margin-right: 5px;
}
.contactTable .radioWrap label {
  display: inline-block;
  margin: 0 30px 0 0;
}
.contactTable .radioWrap input[type=checkbox], .contactTable .radioWrap input[type=radio] {
  margin-right: 5px;
}

.contactBtns {
  display: flex;
  text-align: center;
  justify-content: space-around;
}

.contactPrivacy {
  text-align: center;
  margin-bottom: 40px;
}
.contactPrivacy a {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .contactPrivacy {
    font-size: 0.875rem;
  }
}
.contactPrivacy-note {
  display: block;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .contactPrivacy-note {
    font-size: 0.75rem;
  }
}