@charset "UTF-8";
/* 機能とパーツごとに分けたscssファイルをcssファイルにコンパイル */
/* function
------------------------------------------------ */
/* setting
------------------------------------------------ */
/* スマホ：~519px
　 タブレット：520px~959px
　 パソコン：960px~ */
html {
  /* ルートのフォントサイズを10pxに設定 */
  font-size: 62.5%;
}

body {
  /* bodyの基本サイズを16pxに設定（解像度基準1200） */
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000;
  text-align: justify;
  line-height: 1.875;
  letter-spacing: 0;
  text-wrap: pretty;
}
@media screen and (max-width: 959px) {
  body {
    /* bodyの基本サイズを15pxに設定（解像度基準768） */
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 519px) {
  body {
    /* bodyの基本サイズを14pxに設定（解像度基準375） */
    font-size: 1.4rem;
  }
}

.f-han {
  font-family: YakuHanJP;
}

/* foundation
------------------------------------------------ */
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

body {
  overflow-x: hidden;
}

.drawer--open {
  overflow: hidden;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

button:hover {
  opacity: 0.8;
}

img {
  font-size: 0;
  vertical-align: bottom;
  max-width: 100%;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

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

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

.nonbr-tab {
  display: block;
}
@media screen and (max-width: 959px) {
  .nonbr-tab {
    display: none;
  }
}

.nonbr-sp {
  display: block;
}
@media screen and (max-width: 519px) {
  .nonbr-sp {
    display: none;
  }
}

.link-disable {
  pointer-events: none;
  background-color: #aaa !important;
}

@media screen and (max-width: 519px) {
  .sptop {
    overflow: hidden;
  }
}

.space-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .space-sp {
    display: inline-block;
  }
}

.anchor {
  margin-top: -10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 519px) {
  .anchor {
    margin-top: -2rem;
    padding-top: 2rem;
  }
}

/* layout
------------------------------------------------ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

/*　上に上がる動き　*/
.l-header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
/*　下に下がる動き　*/
.l-header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-inner {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 124rem; /* コンテンツ幅1300px */
  width: 100%;
  height: auto;
}
@media screen and (max-width: 519px) {
  .l-inner {
    padding: 0 1.5rem;
  }
}

.l-inner--1030 {
  max-width: 1070px;
}

.l-inner--narrow {
  max-width: 98rem;
}

@media screen and (max-width: 959px) {
  .l-inner--tab0 {
    padding: 0;
  }
}

.l-main {
  margin-top: 6.338rem;
}
@media screen and (max-width: 1150px) {
  .l-main {
    margin-top: 6vw;
  }
}
@media screen and (max-width: 959px) {
  .l-main {
    margin-top: 7.3vw;
  }
}
@media screen and (max-width: 519px) {
  .l-main {
    margin-top: 13.5vw;
  }
}

.l-main--beige {
  background-color: #f7f4f0;
}

.l-footer {
  margin-top: 5rem;
}
@media screen and (max-width: 959px) {
  .l-footer {
    margin-top: 0;
  }
}
@media screen and (max-width: 519px) {
  .l-footer {
    margin-top: 3rem;
  }
}

/* component
------------------------------------------------ */
.c-header {
  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;
  padding: 1rem 0.5rem;
  background-color: #fff;
}
.c-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 1150px) {
  .c-header__logo {
    gap: 0.5rem;
  }
}
.c-header__logo img {
  width: 14rem;
  height: auto;
}
@media screen and (max-width: 1150px) {
  .c-header__logo img {
    width: 13vw;
  }
}
@media screen and (max-width: 519px) {
  .c-header__logo img {
    width: 18vw;
  }
}

.c-header__type {
  color: #777;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.1;
}
@media screen and (max-width: 1150px) {
  .c-header__type {
    font-size: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header__type {
    font-size: 4.5vw;
  }
}
.c-header__type small {
  display: block;
  font-size: 0.63em;
  font-weight: 400;
}

.c-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  color: #777;
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (max-width: 1150px) {
  .c-header__nav {
    gap: 1vw;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 959px) {
  .c-header__nav {
    display: none;
  }
}

.c-header__menu {
  cursor: pointer;
}
.c-header__menu:hover {
  opacity: 0.8;
}

details.c-header__pull {
  position: relative;
}
details.c-header__pull summary {
  position: relative;
  padding-right: 1.8rem;
  list-style-type: none;
}
details.c-header__pull summary::-webkit-details-marker {
  display: none;
}
details.c-header__pull summary::before, details.c-header__pull summary::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 1.3rem;
  height: 0.1rem;
  background-color: #777;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
details.c-header__pull summary::after {
  -webkit-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
}
details.c-header__pull::details-content {
  opacity: 0;
  -webkit-transition: opacity 0.5s, content-visibility 0.5s allow-discrete;
  transition: opacity 0.5s, content-visibility 0.5s allow-discrete;
}
details.c-header__pull[open] summary::before {
  -webkit-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
  opacity: 0;
}
details.c-header__pull[open] summary::after {
  -webkit-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}
details.c-header__pull[open]::details-content {
  opacity: 1;
}

.c-header__pull-detail {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: 16rem;
  padding: 1rem 0;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 0.6rem;
}
.c-header__pull-detail a {
  display: block;
  padding: 0.9rem 2rem;
  color: #000;
  font-size: 0.9em;
  white-space: nowrap;
}

.c-header__translate .gt_selector {
  padding: 0 2.5rem 0 1.5rem;
  color: #777;
  border: solid 1px #777;
  border-radius: 0.5rem;
  background-image: url(../images/arrow_bottom.png);
  background-size: 1.7rem;
  background-position: calc(100% - 0.5rem) 63%;
}
.c-header__translate .gt_selector:focus {
  outline: none;
}
.c-header__translate .gt_selector:hover {
  cursor: pointer;
}

.c-header__translate--drawer {
  margin-top: 1.5rem;
}
.c-header__translate--drawer .gt_selector {
  color: black;
  border-radius: 0;
}

.c-header__hamburger {
  display: none;
  position: fixed;
  top: min(3.1rem, 2.7vw);
  right: min(2.2rem, 1.9vw);
  z-index: 100;
  width: 3.5rem;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}
@media screen and (max-width: 959px) {
  .c-header__hamburger {
    display: block;
  }
}
@media screen and (max-width: 519px) {
  .c-header__hamburger {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 3.5rem;
    height: auto;
    border: none;
    -webkit-filter: none;
            filter: none;
  }
}

.c-header__hamburger-close {
  position: absolute;
  top: 94%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  color: #777;
  font-weight: 600;
  font-size: 1.15rem;
  opacity: 0;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}

.c-header__hamburger-border {
  position: relative;
  width: 100%;
  height: 0.2rem;
  background-color: #777;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}
@media screen and (max-width: 519px) {
  .c-header__hamburger-border {
    width: 100%;
    height: 2px;
  }
}

.c-header__hamburger-border--top {
  top: 0;
}

.c-header__hamburger-border--middle {
  margin: 0.8rem 0;
}
@media screen and (max-width: 519px) {
  .c-header__hamburger-border--middle {
    margin: 5px 0;
  }
}

.c-header__hamburger-border--bottom {
  bottom: 0;
}

.c-header__hamburger--open .c-header__hamburger-border--top {
  top: 10px;
  -webkit-transform: translate(0%, 0) rotate(-215deg);
          transform: translate(0%, 0) rotate(-215deg);
}
@media screen and (max-width: 519px) {
  .c-header__hamburger--open .c-header__hamburger-border--top {
    top: 7px;
  }
}
.c-header__hamburger--open .c-header__hamburger-border--middle {
  opacity: 0;
}
.c-header__hamburger--open .c-header__hamburger-border--bottom {
  bottom: 10px;
  -webkit-transform: translate(0%, 0) rotate(215deg);
          transform: translate(0%, 0) rotate(215deg);
}
@media screen and (max-width: 519px) {
  .c-header__hamburger--open .c-header__hamburger-border--bottom {
    bottom: 7px;
  }
}
.c-header__hamburger--open .c-header__hamburger-close {
  opacity: 1;
}

.c-header__drawer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.7s ease 0;
  transition: all 0.7s ease 0;
}

.c-header__drawer-modal--open {
  opacity: 1;
  visibility: visible;
}

.c-header__drawer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  padding: 12vw 12vw 5rem;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  background-color: #fff;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  overflow: hidden scroll;
}
@media screen and (max-width: 519px) {
  .c-header__drawer {
    padding: 18vw 3.4rem 2rem;
  }
}
.c-header__drawer::-webkit-scrollbar {
  width: 0.5rem;
  width: min(0.5rem, 1.25vw);
}
.c-header__drawer::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.c-header__drawer::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}

.c-header__drawer--open {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.c-header__drawer-menus {
  font-size: 1.357em;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .c-header__drawer-menus {
    font-size: 1.28em;
  }
}

.c-header__drawer-menu {
  display: block;
  margin-top: min(1.2rem, 1vw);
}
@media screen and (max-width: 959px) {
  .c-header__drawer-menu {
    margin-top: 0;
    padding: 1.3rem 0;
    border-bottom: 1px solid #ededed;
  }
}
.c-header__drawer-menu:first-child {
  margin-top: 0;
}

@media screen and (max-width: 959px) {
  .c-header__drawer-menu--top {
    display: none;
  }
}

@media screen and (max-width: 959px) {
  .c-header__drawer-menu--anchor {
    display: none;
  }
}

.c-header__accordion {
  display: none;
  padding: 1.3rem 0;
  border-bottom: 1px solid #ededed;
}
@media screen and (max-width: 959px) {
  .c-header__accordion {
    display: block;
  }
}

.c-header__accordion-head {
  position: relative;
}
.c-header__accordion-head span {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  aspect-ratio: 1;
  width: 2.5rem;
  height: auto;
  background-color: #fc8708;
  border-radius: 50%;
}
.c-header__accordion-head span::before, .c-header__accordion-head span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.c-header__accordion-head span::after {
  width: 1px;
  height: 40%;
}

.c-header__accordion-head--blue span {
  background-color: #3a7cef;
}

.c-header__accordion-head--open span::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.c-header__accordion-head--open span::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.c-header__accordion-detail {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.c-header__accordion-detail ul {
  font-size: 0.88em;
  list-style: none;
  overflow: hidden;
}
.c-header__accordion-detail ul li {
  margin-top: 1.7rem;
}
.c-header__accordion-detail ul li::before {
  content: "—　";
  display: inline-block;
}

.c-header__accordion-detail--open {
  grid-template-rows: 1fr;
}

.c-btn {
  display: inline-block;
  padding: 1rem;
  aspect-ratio: 350/78;
  width: 35rem;
  max-width: 100%;
  height: auto;
  max-height: 7.8rem;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  font-weight: 500;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #fc8708;
  border-radius: 0.5rem;
}
.c-btn::after {
  content: "";
  display: inline-block;
  margin-left: 0.6rem;
  aspect-ratio: 26.7/8;
  width: 2.67rem;
  height: auto;
  vertical-align: super;
  -webkit-transform: translateY(0.2rem);
          transform: translateY(0.2rem);
  background-image: url(../images/arrow_01.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .c-btn::after {
    width: 2.3rem;
  }
}
.c-btn:hover {
  opacity: 1;
  color: #fc8708;
  background-color: #fff;
  border: 1px solid #fc8708;
}
.c-btn:hover::after {
  background-image: url(../images/arrow_04.png);
}
@media screen and (max-width: 959px) {
  .c-btn {
    height: 5.5rem;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .c-btn {
    padding: 0.5rem 1rem;
    width: 100%;
    height: 4.5rem;
    font-size: 1.6rem;
  }
}

.c-btn--blue {
  color: white;
  background-color: #3a7cef;
}
.c-btn--blue:hover {
  color: #3a7cef;
  background-color: white;
  border: 1px solid #3a7cef;
}
.c-btn--blue:hover::after {
  background-image: url(../images/arrow_05.png);
}

.c-btn--center {
  display: block;
  margin: 2rem auto 0;
  width: 30rem;
  font-size: 1em;
}
@media screen and (max-width: 519px) {
  .c-btn--center {
    width: 100%;
  }
}

.c-page-header {
  position: relative;
}
.c-page-header::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.24);
}

.c-page-header__title {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  color: white;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .c-page-header__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 519px) {
  .c-page-header__title {
    font-size: 2rem;
  }
}

.c-page-header__image img {
  display: block;
  width: 100%;
  height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 959px) {
  .c-page-header__image img {
    height: 20rem;
  }
}
@media screen and (max-width: 519px) {
  .c-page-header__image img {
    height: 14rem;
  }
}

.c-breadcrumb {
  padding: 1.2rem 0;
  font-size: 1.7rem;
}
@media screen and (max-width: 959px) {
  .c-breadcrumb {
    font-size: 1em;
  }
}
.c-breadcrumb a:hover {
  text-decoration: underline;
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 519px) {
  .c-breadcrumb__list {
    gap: 1rem;
  }
}

.c-outline {
  position: relative;
  padding: 19rem 0 30rem;
  background: #ffffff;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0)), to(rgb(255, 241, 221)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgb(255, 241, 221) 100%);
}
@media screen and (max-width: 959px) {
  .c-outline {
    padding: 12rem 0 18rem;
  }
}
@media screen and (max-width: 519px) {
  .c-outline {
    padding: 9rem 0 13rem;
  }
}

.c-outline--blue {
  padding-bottom: 17rem;
  background: #22C1C3;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(34, 193, 195, 0)), color-stop(20%, rgba(171, 227, 238, 0)), to(rgb(226, 241, 255)));
  background: linear-gradient(0deg, rgba(34, 193, 195, 0) 0%, rgba(171, 227, 238, 0) 20%, rgb(226, 241, 255) 100%);
}
@media screen and (max-width: 959px) {
  .c-outline--blue {
    padding-bottom: 12rem;
  }
}
@media screen and (max-width: 959px) {
  .c-outline--blue {
    padding-bottom: 8rem;
  }
}

.c-outline__head {
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #fc8708;
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.025em;
  line-height: 1.35;
}
@media screen and (max-width: 959px) {
  .c-outline__head {
    font-size: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-outline__head {
    font-size: 2.4rem;
  }
}
.c-outline__head span {
  display: block;
  font-size: 2.5em;
  font-weight: 100;
}
@media screen and (max-width: 519px) {
  .c-outline__head {
    margin-bottom: 3rem;
  }
  .c-outline__head span {
    font-size: clamp(3rem, 11vw, 5.5rem);
  }
}

.c-outline__head--blue {
  color: #3a7cef;
}

.c-outline__image {
  position: relative;
  aspect-ratio: 120/49;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .c-outline__image {
    aspect-ratio: 1.8;
  }
}
@media screen and (max-width: 519px) {
  .c-outline__image {
    aspect-ratio: 0.9;
  }
}
.c-outline__image::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 53, 50, 0.3);
}
.c-outline__image img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 519px) {
  .c-outline__image img {
    -o-object-position: 37% 0%;
       object-position: 37% 0%;
  }
}

.c-outline__image--employers::before {
  background: #00003C;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 60, 0.3)), color-stop(80%, rgba(237, 221, 83, 0)));
  background: linear-gradient(90deg, rgba(0, 0, 60, 0.3) 0%, rgba(237, 221, 83, 0) 80%);
}
@media screen and (max-width: 959px) {
  .c-outline__image--employers::before {
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 60, 0.3)), to(rgba(0, 0, 60, 0.1)));
    background: linear-gradient(90deg, rgba(0, 0, 60, 0.3) 0%, rgba(0, 0, 60, 0.1) 100%);
  }
}
@media screen and (max-width: 519px) {
  .c-outline__image--employers::before {
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 60, 0.3)), to(rgba(0, 0, 60, 0.3)));
    background: linear-gradient(90deg, rgba(0, 0, 60, 0.3) 0%, rgba(0, 0, 60, 0.3) 100%);
  }
}
@media screen and (max-width: 519px) {
  .c-outline__image--employers img {
    -o-object-position: 77% center;
       object-position: 77% center;
  }
}

.c-outline__info {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 43.9%;
  color: white;
  line-height: 2.25;
}
.c-outline__info h3 {
  font-size: 1.625em;
  font-weight: bold;
  line-height: 1.8076923077;
}
.c-outline__info p {
  margin-top: 3rem;
}
@media screen and (max-width: 959px) {
  .c-outline__info {
    left: 45%;
    width: 53%;
    font-size: 1.4rem;
  }
  .c-outline__info h3 {
    font-size: 1.4em;
  }
  .c-outline__info p {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-outline__info {
    left: 40%;
    width: 56%;
  }
  .c-outline__info h3 {
    font-size: 1.2em;
    line-height: 1.4;
  }
}
@media screen and (max-width: 519px) and (max-width: 345px) {
  .c-outline__info h3 {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 519px) {
  .c-outline__info p {
    margin-top: 1rem;
    font-size: 1.25rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 519px) and (max-width: 345px) {
  .c-outline__info p {
    font-size: 1rem;
  }
}

.c-outline__info--left {
  left: 5%;
  width: 90%;
}
@media screen and (max-width: 519px) {
  .c-outline__info--left {
    -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
            filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
  }
}
.c-outline__info--left h3 {
  font-size: 2.1875em;
}
@media screen and (max-width: 959px) {
  .c-outline__info--left h3 {
    font-size: 1.9em;
  }
}
@media screen and (max-width: 519px) {
  .c-outline__info--left h3 {
    font-size: 1.4em;
  }
}
.c-outline__info--left p {
  max-width: 56rem;
  line-height: 1.875;
}
.c-outline__promise {
  margin-top: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .c-outline__promise {
    text-align: justify;
  }
}

.c-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.3rem;
  margin: 3rem 0 0;
}
@media screen and (max-width: 959px) {
  .c-feature {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-feature--blue {
  margin-top: 7.5rem;
}
@media screen and (max-width: 959px) {
  .c-feature--blue {
    margin-top: 5rem;
  }
}

.c-feature__item {
  padding: 4rem 1.5rem;
  width: calc(33.333% - 2.2rem);
  text-align: center;
  background-color: #fff3e1;
  border: solid 1px #ddcbb1;
  border-radius: 0.5rem;
}
@media screen and (max-width: 959px) {
  .c-feature__item {
    padding: 2.5rem 1rem;
    width: calc(33.333% - 1rem);
  }
}
@media screen and (max-width: 519px) {
  .c-feature__item {
    width: 100%;
  }
}

.c-feature__item--blue {
  color: white;
  background-color: #769dd6;
  border: none;
}

.c-feature__title {
  font-size: 2rem;
  font-weight: bold;
  color: #fc8708;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .c-feature__title {
    min-height: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .c-feature__title {
    min-height: auto;
  }
}

.c-feature__title--blue {
  font-size: 2.4rem;
  color: white;
}
@media screen and (max-width: 959px) {
  .c-feature__title--blue {
    font-size: 2rem;
  }
}

.c-feature__icon {
  margin-top: 1.8rem;
  width: 47.6%;
}
@media screen and (max-width: 519px) {
  .c-feature__icon {
    width: 35%;
  }
}

.c-feature__text {
  margin-top: 1.8rem;
  padding: 0 1.5rem;
  font-weight: 500;
  text-align: justify;
  line-height: 1.75;
}
@media screen and (max-width: 959px) {
  .c-feature__text {
    padding: 0 0.5rem;
  }
}

.c-jobs {
  padding: 5rem 0 0;
}

@media screen and (max-width: 959px) {
  .c-jobs--list {
    padding-top: 3rem;
  }
}

.c-jobs__head {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fc8708;
  text-align: center;
}
@media screen and (max-width: 519px) {
  .c-jobs__head {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 1340px) {
  .c-jobs__container {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 519px) {
  .c-jobs__container {
    padding: 0 4rem;
  }
}
.c-jobs__container .splide__track {
  margin-left: -1rem;
  padding: 1rem !important;
  width: calc(100% + 2rem);
}
.c-jobs__container .splide__list {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.c-jobs__container .splide__slide {
  height: auto;
}
.c-jobs__container .splide__arrow {
  left: calc(100% + 2rem);
  right: auto;
  aspect-ratio: 50/12;
  width: 5rem;
  height: auto;
  background-color: transparent;
  background-image: url(../images/arrow_02.png);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  border-radius: 0;
}
@media screen and (max-width: 1340px) {
  .c-jobs__container .splide__arrow {
    width: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .c-jobs__container .splide__arrow {
    left: calc(100% + 1.5rem);
    width: 3rem;
  }
}
.c-jobs__container .splide__arrow svg {
  display: none;
}
.c-jobs__container .splide__arrow--prev {
  left: auto;
  right: calc(100% + 2rem);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (max-width: 519px) {
  .c-jobs__container .splide__arrow--prev {
    right: calc(100% + 1.5rem);
  }
}

.c-jobs__container--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1340px) {
  .c-jobs__container--list {
    padding: 0;
  }
}
@media screen and (max-width: 959px) {
  .c-jobs__container--list {
    gap: 3rem 2rem;
  }
}

.c-jobs__card {
  padding: 1.8rem;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 8.2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8.2px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 519px) {
  .c-jobs__card {
    padding: 1.3rem;
  }
}

.c-jobs__card--list {
  width: calc(33.333% - 2rem);
}
@media screen and (max-width: 959px) {
  .c-jobs__card--list {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 519px) {
  .c-jobs__card--list {
    width: 100%;
  }
}

.c-jobs__image {
  position: relative;
  aspect-ratio: 342/187;
  width: 100%;
  height: auto;
}
.c-jobs__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-jobs__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  font-family: YakuHanJP, YuGothic, "Yu Gothic", "Noto Sans JP", sans-serif;
  font-weight: bold;
  line-height: 1;
}
.c-jobs__area span {
  display: inline-block;
  aspect-ratio: 79/31;
  width: 7.9rem;
  height: auto;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: white;
  border-radius: 0.5rem;
}
@media screen and (max-width: 959px) {
  .c-jobs__area span {
    width: 7rem;
  }
}
@media screen and (max-width: 519px) {
  .c-jobs__area span {
    padding: 0.5rem;
    aspect-ratio: auto;
    width: auto;
  }
}

.c-jobs__cat {
  display: inline-block;
  margin-top: 1.8rem;
  padding: 0.5rem 1.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: white;
  font-size: 1.5rem;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  line-height: 1;
  background-color: #fc8708;
  border-radius: 0.5rem;
}
@media screen and (max-width: 959px) {
  .c-jobs__cat {
    font-size: 1em;
  }
}
@media screen and (max-width: 519px) {
  .c-jobs__cat {
    margin-top: 1.3rem;
  }
}

.c-jobs__name {
  margin-top: 0.3rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .c-jobs__name {
    font-size: 1.2em;
  }
}

.c-jobs__in {
  font-weight: 400;
  line-height: 1.5;
}

.c-jobs__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem 0.8rem;
  margin-top: 0.7rem;
}
.c-jobs__tags a, .c-jobs__tags span {
  padding: 0.2rem 1.5rem;
  font-size: 1.3rem;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  border: solid 1px black;
  border-radius: 3rem;
}
@media screen and (max-width: 959px) {
  .c-jobs__tags a, .c-jobs__tags span {
    font-size: 0.85em;
  }
}

.c-jobs__more {
  display: block;
  margin: 1.5rem 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
}
@media screen and (max-width: 519px) {
  .c-jobs__more {
    margin-top: 1.3rem;
  }
}

.c-job__container {
  margin-top: 1.5rem;
  padding: 4.3rem 5rem 7.7rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 1.1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1.1rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 959px) {
  .c-job__container {
    padding: 4rem 3rem 6rem;
  }
}
@media screen and (max-width: 519px) {
  .c-job__container {
    padding: 3rem 1.5rem 5rem;
  }
}

.c-job__card {
  width: 100%;
}

.c-job__card-image .splide__track {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  overflow: hidden;
}
.c-job__card-image .splide__slide img {
  aspect-ratio: 1100/600;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-job__card-image .splide__arrow {
  left: calc(100% + 1rem);
  right: auto;
  aspect-ratio: 28/12;
  width: 2.8rem;
  height: auto;
  background-color: transparent;
  background-image: url(../images/arrow_03.png);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  border-radius: 0;
}
@media screen and (max-width: 519px) {
  .c-job__card-image .splide__arrow {
    left: calc(100% + 0.5rem);
    width: 2.3rem;
  }
}
.c-job__card-image .splide__arrow svg {
  display: none;
}
.c-job__card-image .splide__arrow--prev {
  left: auto;
  right: calc(100% + 1rem);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (max-width: 519px) {
  .c-job__card-image .splide__arrow--prev {
    right: calc(100% + 0.5rem);
  }
}

.c-job__card-body {
  position: relative;
  padding: 3.2rem 21rem 2.5rem 2.5rem;
  width: 100%;
  background-color: #f2f2f2;
}
@media screen and (max-width: 959px) {
  .c-job__card-body {
    padding: 3.2rem 2.5rem 2.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-job__card-body {
    padding: 2.5rem 1.5rem 2.5rem;
  }
}

.c-job__area {
  position: absolute;
  top: 0;
  left: 2.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2rem;
}
@media screen and (max-width: 959px) {
  .c-job__area {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .c-job__area {
    left: 1.5rem;
    font-size: 1.6rem;
  }
}
.c-job__area span {
  display: inline-block;
  padding: 0 1rem;
  width: 15.4rem;
  height: 4.9rem;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: white;
  border: 1px solid black;
  border-radius: 0.5rem;
}
@media screen and (max-width: 959px) {
  .c-job__area span {
    padding: 0.3rem 2rem;
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 519px) {
  .c-job__area span {
    padding: 0.1rem 1.5rem;
  }
}

.c-job__cat {
  display: inline-block;
  padding: 0 1rem;
  width: 17.4rem;
  height: 4.9rem;
  color: #fc8708;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.075em;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: white;
  border: 1px solid #fc8708;
  border-radius: 0.5rem;
}
@media screen and (max-width: 959px) {
  .c-job__cat {
    padding: 0.3rem 2rem;
    width: auto;
    height: auto;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .c-job__cat {
    padding: 0.1rem 1.5rem;
    font-size: 1.6rem;
  }
}

.c-job__name {
  margin-top: 0.5rem;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 959px) {
  .c-job__name {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 519px) {
  .c-job__name {
    font-size: 2.2rem;
  }
}

.c-job__in {
  font-size: 2.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 959px) {
  .c-job__in {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 519px) {
  .c-job__in {
    font-size: 2rem;
  }
}

.c-job__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}
@media screen and (max-width: 959px) {
  .c-job__tags {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-job__tags {
    margin-top: 1rem;
  }
}
.c-job__tags span {
  padding: 0 2.2rem;
  width: auto;
  height: 4.2rem;
  font-size: 1.8rem;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  line-height: 1;
  background-color: #fff;
  border-radius: 3rem;
}
@media screen and (max-width: 959px) {
  .c-job__tags span {
    padding: 1rem 2rem;
    height: auto;
    font-size: 1em;
  }
}
@media screen and (max-width: 519px) {
  .c-job__tags span {
    padding: 0.7rem 1.5rem;
  }
}

.c-job__entry {
  position: absolute;
  top: 3rem;
  right: 3.4rem;
  margin-top: 1.4rem;
  aspect-ratio: 149/136;
  width: 14.9rem;
  height: auto;
  color: white;
  font-size: 2.2rem;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  line-height: 1.4;
  background-color: #fc8708;
  border-radius: 0.7rem;
}
@media screen and (max-width: 959px) {
  .c-job__entry {
    display: block;
    position: initial;
    margin-top: 2.5rem;
    aspect-ratio: auto;
    width: auto;
    height: 5rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-job__entry {
    width: 100%;
    height: 4.5rem;
    font-size: 1.8rem;
  }
}
.c-job__entry:hover {
  color: #fc8708;
  background-color: #fff;
  border: 1px solid #fc8708;
  opacity: 1;
}

.c-job__point {
  position: relative;
  margin-top: 11.1rem;
}
@media screen and (max-width: 959px) {
  .c-job__point {
    margin-top: 9rem;
  }
}
.c-job__point-fukidashi {
  position: absolute;
  top: 0;
  left: 2rem;
  -webkit-transform: translateY(-79%);
          transform: translateY(-79%);
  aspect-ratio: 99/103;
  width: 9.8rem;
  height: auto;
  color: white;
  font-size: 1.9rem;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  line-height: 1.2;
  background-image: url(../images/fukidashi.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 959px) {
  .c-job__point-fukidashi {
    width: 8.5rem;
    font-size: 1em;
  }
}
@media screen and (max-width: 519px) {
  .c-job__point-fukidashi {
    left: 0;
    width: 8rem;
  }
}

.c-job__point-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 959px) {
  .c-job__point-cards {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
}
@media screen and (max-width: 519px) {
  .c-job__point-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-job__point-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2.5rem 3rem;
  border: 1px solid #ccc;
  border-left: none;
}
.c-job__point-card:nth-child(1) {
  border-left: 1px solid #ccc;
}
@media screen and (max-width: 959px) {
  .c-job__point-card {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding: 2.5rem 1.5rem;
    width: 50%;
  }
  .c-job__point-card:nth-child(3n) {
    border-top: none;
    border-left: 1px solid #ccc;
  }
  .c-job__point-card:nth-child(4) {
    border-top: none;
  }
  .c-job__point-card:nth-child(5) {
    border-top: none;
  }
}
@media screen and (max-width: 519px) {
  .c-job__point-card {
    padding: 2rem 1.5rem;
    width: 100%;
    border: 1px solid #ccc !important;
    border-bottom: none !important;
  }
  .c-job__point-card:last-child {
    border-bottom: 1px solid #ccc !important;
  }
}
.c-job__point-card span {
  display: block;
  color: #828282;
  text-align: center;
  line-height: 1.5;
}
.c-job__point-card h3 {
  margin-top: 0.6rem;
  color: #3a7cef;
  font-size: 2.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 959px) {
  .c-job__point-card h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-job__point-card h3 {
    font-size: 1.8rem;
  }
}
.c-job__point-card p {
  margin-top: 0.7rem;
  line-height: 1.7;
}

.c-job__content {
  margin-top: 4.5rem;
}
@media screen and (max-width: 519px) {
  .c-job__content {
    margin-top: 4rem;
  }
}
.c-job__content table {
  width: 100%;
  border-collapse: collapse;
}
.c-job__content th,
.c-job__content td {
  padding: 1.2rem 1rem;
  vertical-align: top;
  font-weight: 500;
  border-top: 1px solid #ccc;
  line-height: 1.7;
}
@media screen and (max-width: 519px) {
  .c-job__content th,
  .c-job__content td {
    padding: 1rem 0.8rem;
  }
}
.c-job__content th {
  width: 18%;
  white-space: nowrap;
}
@media screen and (max-width: 959px) {
  .c-job__content th {
    width: 22%;
  }
}
@media screen and (max-width: 519px) {
  .c-job__content th {
    width: 28%;
    white-space: normal;
  }
}
.c-job__content tbody tr:last-child th,
.c-job__content tbody tr:last-child td {
  border-bottom: 1px solid #ccc;
}
.c-job__content iframe {
  display: block;
  margin-top: 1rem;
  aspect-ratio: 921/412;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 519px) {
  .c-job__content iframe {
    aspect-ratio: 1.5;
  }
}

.c-job__content__head {
  font-size: 3rem;
  font-weight: 500;
  border-bottom: 3px solid #fc8708;
}
@media screen and (max-width: 959px) {
  .c-job__content__head {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-job__content__head {
    font-size: 2rem;
  }
}

.c-job__content-wrapper {
  margin-top: 1.5rem;
}

.c-job__btn {
  display: block;
  margin: 4.5rem auto 0;
  width: 47.5rem;
  max-width: 100%;
  height: 7rem;
  border-radius: 1rem;
}
@media screen and (max-width: 959px) {
  .c-job__btn {
    height: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .c-job__btn {
    height: 5rem;
  }
}
.c-job__btn::after {
  display: none;
}

.c-flow {
  margin: 7rem 0 0;
}
@media screen and (max-width: 519px) {
  .c-flow {
    margin-top: 5rem;
  }
}

details.c-flow__accordion {
  background-color: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.2);
}
details.c-flow__accordion summary {
  position: relative;
  padding: 2rem 3rem;
  font-size: 2.2rem;
  font-weight: 500;
  cursor: pointer;
  list-style-type: none;
}
@media screen and (max-width: 959px) {
  details.c-flow__accordion summary {
    font-size: 2rem;
  }
}
@media screen and (max-width: 519px) {
  details.c-flow__accordion summary {
    padding: 1rem 2rem;
    font-size: 1.8rem;
  }
}
details.c-flow__accordion summary::-webkit-details-marker {
  display: none;
}
details.c-flow__accordion summary::before, details.c-flow__accordion summary::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 2rem;
  height: 0.1rem;
  background-color: #000;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media screen and (max-width: 519px) {
  details.c-flow__accordion summary::before, details.c-flow__accordion summary::after {
    width: 1.5rem;
  }
}
details.c-flow__accordion summary::after {
  -webkit-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
}
details.c-flow__accordion::details-content {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-property: content-visibility, grid-template;
  transition-property: content-visibility, grid-template;
  transition-property: content-visibility, grid-template, -ms-grid-template;
  transition-behavior: allow-discrete;
}
@media screen and (max-width: 519px) {
  details.c-flow__accordion::details-content {
    -webkit-transition-duration: 0.8s;
            transition-duration: 0.8s;
  }
}
details.c-flow__accordion[open] summary::before {
  -webkit-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
  opacity: 0;
}
details.c-flow__accordion[open] summary::after {
  -webkit-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}
details.c-flow__accordion[open]::details-content {
  grid-template-rows: 1fr;
}

/* height:0→autoへのアニメーションが対応していない場合は、固定値にアニメーションさせる */
.c-flow__accordion-detail {
  overflow: hidden;
}

.c-flow__lists {
  padding: 1rem 5rem 6rem;
  list-style: none;
  counter-reset: flow-counter;
}
@media screen and (max-width: 959px) {
  .c-flow__lists {
    padding: 1rem 2rem 5rem;
  }
}
.c-flow__lists li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-top: 3.9rem;
  padding: 1.4rem;
  background-color: #fff3e1;
  border-radius: 0.5rem;
  counter-increment: flow-counter;
}
@media screen and (max-width: 519px) {
  .c-flow__lists li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.c-flow__lists li::before {
  content: counter(flow-counter);
  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;
  aspect-ratio: 1;
  margin-right: 2rem;
  width: 5.7rem;
  height: auto;
  color: #fc8708;
  font-size: 2.2rem;
  font-weight: bold;
  background-color: white;
  border-radius: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 959px) {
  .c-flow__lists li::before {
    margin-right: 1.5rem;
    width: 4rem;
    font-size: 2rem;
  }
}
.c-flow__lists li::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 2rem);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  aspect-ratio: 28/15;
  width: 2.8rem;
  height: auto;
  background-image: url(../images/bottom_01.png);
  background-size: contain;
}
.c-flow__lists li:first-child {
  margin-top: 0;
}
.c-flow__lists li:last-child::after {
  display: none;
}

.c-flow__lists--blue li {
  background-color: #ebf3fc;
}
.c-flow__lists--blue li::before {
  color: #3a7cef;
}
.c-flow__lists--blue li::after {
  background-image: url(../images/bottom_02.png);
}

.c-flow__head {
  width: 23rem;
  color: #fc8708;
  font-size: 2.2rem;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .c-flow__head {
    width: 28%;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .c-flow__head {
    width: calc(100% - 6rem);
  }
}

.c-flow__head--blue {
  color: #3a7cef;
}

.c-flow__content {
  font-weight: 400;
}
@media screen and (max-width: 959px) {
  .c-flow__content {
    width: 62%;
  }
}
@media screen and (max-width: 519px) {
  .c-flow__content {
    margin-top: 1rem;
    width: 100%;
  }
}

.c-job-contact {
  position: relative;
  margin-top: 9.8rem;
  padding: 3rem 2rem 5.5rem;
  text-align: center;
  border: 3px solid #fc8708;
}
@media screen and (max-width: 959px) {
  .c-job-contact {
    padding: 3.5rem 3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-job-contact {
    margin-top: 6rem;
    padding: 3rem 2rem;
  }
}

.c-job-contact--blue {
  border-color: #3a7cef;
}

.c-job-contact__head {
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 3.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 2.4rem;
  font-weight: 400;
  background-color: #fff;
}
@media screen and (max-width: 959px) {
  .c-job-contact__head {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-job-contact__head {
    padding: 0 1rem;
    font-size: 2rem;
  }
}

.c-job-contact__content {
  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: 2.6rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2.5rem;
}
@media screen and (max-width: 519px) {
  .c-job-contact__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.c-job-contact__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.7rem;
}

@media screen and (max-width: 519px) {
  .c-job-contact__tel--footer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-job-contact__tel-icon {
  display: block;
  width: 5.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 959px) {
  .c-job-contact__tel-icon {
    width: 4.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-job-contact__tel-icon {
    width: 4rem;
  }
}
.c-job-contact__tel-icon img {
  width: 100%;
  height: auto;
}

.c-job-contact__tel-info {
  font-size: 3rem;
  line-height: 1.3;
  text-align: left;
}
@media screen and (max-width: 959px) {
  .c-job-contact__tel-info {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 519px) {
  .c-job-contact__tel-info {
    font-size: 2.4rem;
  }
}
.c-job-contact__tel-info small {
  display: block;
  font-size: 0.46em;
}

.c-job-contact__mail {
  padding: 1.1rem 2.25rem;
  color: white;
  font-size: 1.8rem;
  background-color: #fc8708;
  border-radius: 0.5rem;
  border: 1px solid #fc8708;
}
@media screen and (max-width: 959px) {
  .c-job-contact__mail {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .c-job-contact__mail {
    padding: 1.1rem;
    font-size: 1.5rem;
  }
}
.c-job-contact__mail:hover {
  color: #fc8708;
  background-color: #fff;
}

.c-job-contact__mail--blue {
  background-color: #3a7cef;
  border-color: #3a7cef;
}
.c-job-contact__mail--blue:hover {
  color: #3a7cef;
}

.c-head01 {
  color: #fc8708;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 959px) {
  .c-head01 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 519px) {
  .c-head01 {
    font-size: 2.2rem;
  }
}

.c-news {
  padding: 7.6rem 0;
  background-color: #f7f4f0;
}
@media screen and (max-width: 959px) {
  .c-news {
    padding: 8rem 0;
  }
}
@media screen and (max-width: 519px) {
  .c-news {
    padding: 6rem 0;
  }
}

.c-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 6.4rem;
  margin-top: 1.3rem;
  padding: 2.3rem 10rem;
  background-color: white;
}
@media screen and (max-width: 959px) {
  .c-news__item {
    gap: 3rem;
    padding: 2.3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-news__item {
    gap: 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 2rem;
  }
}

.c-news__date {
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .c-news__date {
    width: 100%;
  }
}

.c-news__title {
  width: 85%;
  font-size: 1em;
  font-weight: 500;
}
@media screen and (max-width: 519px) {
  .c-news__title {
    width: 100%;
  }
}
.c-news__title a {
  display: block;
  /* オーバーした要素を非表示にする*/
  overflow: hidden;
  /* 改行を半角スペースに変換することで、1行にする */
  white-space: nowrap;
  /* 幅を指定しないとテキストの長さによって要素の幅が変わるため指定 */
  width: 100%;
  /* オーバーしたテキストを３点リーダーにする */
  text-overflow: ellipsis;
}

.c-news__btn {
  margin: 4rem auto 0;
}

.c-news-detail__title {
  margin-top: 3rem;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 959px) {
  .c-news-detail__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 519px) {
  .c-news-detail__title {
    margin-top: 2rem;
    font-size: 2.2rem;
  }
}

.c-news-detail__date {
  display: block;
  margin-top: 3rem;
  text-align: right;
}
@media screen and (max-width: 519px) {
  .c-news-detail__date {
    margin-top: 2rem;
  }
}

.c-news-detail__eyecatch {
  margin-top: 2rem;
}

.c-news-detail__content {
  margin-top: 2rem;
}
.c-news-detail__content h2, .c-news-detail__content h3, .c-news-detail__content h4, .c-news-detail__content h5, .c-news-detail__content p, .c-news-detail__content ul, .c-news-detail__content ol, .c-news-detail__content figure, .c-news-detail__content table {
  margin-top: 2rem;
}
@media screen and (max-width: 519px) {
  .c-news-detail__content h2, .c-news-detail__content h3, .c-news-detail__content h4, .c-news-detail__content h5, .c-news-detail__content p, .c-news-detail__content ul, .c-news-detail__content ol, .c-news-detail__content figure, .c-news-detail__content table {
    margin-top: 1.5rem;
  }
}
.c-news-detail__content ul, .c-news-detail__content ol {
  padding-left: 2rem;
}
@media screen and (max-width: 519px) {
  .c-news-detail__content ul, .c-news-detail__content ol {
    padding-left: 1.5rem;
  }
}

.c-pagetop {
  position: sticky;
  bottom: 4rem;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  margin-top: 11rem;
  min-height: 0.1px;
  text-align: right;
}
@media screen and (max-width: 959px) {
  .c-pagetop {
    margin-top: 8rem;
  }
}
.c-pagetop__btn {
  display: none;
  width: 5rem;
}
@media screen and (max-width: 959px) {
  .c-pagetop__btn {
    width: 4rem;
  }
}
.c-pagetop__btn img {
  width: 100%;
}

.c-pager {
  margin-top: 7.5rem;
}
@media screen and (max-width: 519px) {
  .c-pager {
    margin-top: 5rem;
  }
}

.c-pager__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6.65rem;
}
@media screen and (max-width: 959px) {
  .c-pager__btns {
    gap: 2rem;
  }
}
@media screen and (max-width: 720px) {
  .c-pager__btns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-pager__prev,
.c-pager__next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  padding: 1.9rem 3.7rem;
  width: calc(50% - 3.325rem);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 1rem;
}
@media screen and (max-width: 959px) {
  .c-pager__prev,
  .c-pager__next {
    gap: 1rem;
    padding: 1.5rem;
    width: calc(50% - 1rem);
    font-size: 1em;
  }
}
@media screen and (max-width: 720px) {
  .c-pager__prev,
  .c-pager__next {
    width: 100%;
  }
}
.c-pager__prev span,
.c-pager__next span {
  display: block;
  font-size: 1.22em;
  font-weight: 500;
}

.c-pager__prev::before {
  content: "";
  display: inline-block;
  aspect-ratio: 28/12;
  width: 3rem;
  height: auto;
  background-color: transparent;
  background-image: url(../images/arrow_03.png);
  background-size: contain;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (max-width: 959px) {
  .c-pager__prev::before {
    width: 2rem;
  }
}

.c-pager__next {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}
.c-pager__next::after {
  content: "";
  display: inline-block;
  aspect-ratio: 28/12;
  width: 3rem;
  height: auto;
  background-color: transparent;
  background-image: url(../images/arrow_03.png);
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .c-pager__next::after {
    width: 2rem;
  }
}

.c-pager__back {
  display: block;
  margin: 5rem auto 0;
  padding: 1.8rem 1rem;
  width: 28.2rem;
  max-width: 100%;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 0.8rem;
}
@media screen and (max-width: 959px) {
  .c-pager__back {
    font-size: 1em;
  }
}
@media screen and (max-width: 519px) {
  .c-pager__back {
    margin-top: 4rem;
    padding: 1.5rem 1rem;
  }
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 2.5rem;
  margin: 8rem auto auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 959px) {
  .c-pagination {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .c-pagination {
    gap: 2rem;
    margin-top: 5rem;
  }
}
.c-pagination .page-numbers {
  display: inline-block;
  aspect-ratio: 1;
  width: 4rem;
  height: auto;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  border: 1px solid #777;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .c-pagination .page-numbers {
    width: 3.5rem;
  }
}
.c-pagination .page-numbers:hover {
  color: white;
  background-color: #fc8708;
  border-color: #fc8708;
  opacity: 1;
}
.c-pagination .next, .c-pagination .prev {
  position: absolute;
  left: calc(100% + min(1.6rem, 4vw));
  font-weight: bold;
}
.c-pagination .next:hover, .c-pagination .prev:hover {
  color: white;
  background-color: #fc8708;
}
.c-pagination .prev {
  left: auto;
  right: calc(100% + min(1.6rem, 4vw));
}
.c-pagination .current {
  color: white;
  background-color: #fc8708;
  border-color: #fc8708;
}
.c-pagination .dots {
  pointer-events: none;
  border: none;
}

.c-footer {
  padding-bottom: 2rem;
  background-color: #f7f4f0;
}

.c-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 11rem 0 0;
}
@media screen and (max-width: 1135px) {
  .c-footer__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2%;
  }
}
@media screen and (max-width: 959px) {
  .c-footer__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5rem 3rem;
    padding-top: 8rem;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__container {
    gap: 3.5rem 2rem;
  }
}

.c-footer__info {
  margin-right: 6.5%;
}
@media screen and (max-width: 1135px) {
  .c-footer__info {
    margin-right: 0;
  }
}
@media screen and (max-width: 959px) {
  .c-footer__info {
    width: 100%;
    text-align: center;
  }
}

.c-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 519px) {
  .c-footer__logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.8rem;
  }
}
.c-footer__logo img {
  width: 12rem;
  height: auto;
}
@media screen and (max-width: 519px) {
  .c-footer__logo img {
    width: 24vw;
  }
}

.c-footer__type {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 519px) {
  .c-footer__type {
    font-size: 4.5vw;
  }
}
.c-footer__type small {
  display: block;
  font-size: 0.68em;
  font-weight: 400;
}

.c-footer__num {
  margin-top: 0.7rem;
  font-weight: 400;
}

.c-footer__address {
  margin-top: 0.4rem;
  padding-bottom: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
}

.c-footer__nav {
  margin-right: 3.5%;
  width: 17%;
}
@media screen and (max-width: 1135px) {
  .c-footer__nav {
    margin-right: 0;
  }
}
@media screen and (max-width: 959px) {
  .c-footer__nav {
    width: calc(33.333% - 2rem);
  }
}
@media screen and (max-width: 519px) {
  .c-footer__nav {
    width: calc(50% - 1rem);
  }
}

.c-footer__nav--min {
  margin-right: 0;
  width: 18%;
}
@media screen and (max-width: 959px) {
  .c-footer__nav--min {
    width: calc(33.333% - 2rem);
  }
}
@media screen and (max-width: 519px) {
  .c-footer__nav--min {
    width: 100%;
  }
}

.c-footer__head {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.6;
  border-bottom: 1px solid black;
}
@media screen and (max-width: 959px) {
  .c-footer__head {
    font-size: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__head {
    font-size: 1.8rem;
  }
}

.c-footer__nav-list {
  margin-top: 1.5rem;
  padding-left: 0.7rem;
  list-style: none;
}
.c-footer__nav-list li {
  margin-top: 0.7rem;
}
.c-footer__nav-list li::before {
  content: "●";
  margin-bottom: 0.2rem;
  margin-right: 0.3rem;
  font-size: 1.2rem;
  color: #fc8708;
  vertical-align: text-bottom;
}
@media screen and (max-width: 959px) {
  .c-footer__nav-list li::before {
    font-size: 0.7em;
  }
}

.c-footer__nav-list--blue li::before {
  color: #3a7cef;
}

.c-footer__nav-list--black {
  margin-top: 0;
}
.c-footer__nav-list--black li::before {
  color: black;
}

.c-footer__copyright {
  margin-top: 8rem;
  font-family: YuGothic, "Yu Gothic", "Noto Sans JP", sans-serif;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .c-footer__copyright {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__copyright {
    margin-top: 6rem;
    font-size: 1rem;
  }
}

.c-form {
  margin-top: 5rem;
}
@media screen and (max-width: 959px) {
  .c-form {
    margin-top: 3rem;
  }
}

.snow-monkey-form {
  margin-top: 6rem;
}
@media screen and (max-width: 519px) {
  .snow-monkey-form {
    margin-top: 5rem;
  }
}
.snow-monkey-form .require .smf-item__label__text::after {
  content: "[必須]";
  color: red;
  font-size: 0.8em;
  margin-left: 3px;
}
.snow-monkey-form .ascept {
  text-align: center;
}
.snow-monkey-form .ascept .smf-control-legend {
  display: block;
}
.snow-monkey-form .ascept .smf-control-legend a {
  text-decoration: underline;
}
.snow-monkey-form .smf-progress-tracker {
  margin-bottom: 5rem;
}
@media screen and (max-width: 519px) {
  .snow-monkey-form .smf-progress-tracker {
    margin-bottom: 4rem;
  }
}
.snow-monkey-form .smf-form--simple-table .smf-item {
  padding: 3rem 2rem;
  border-top: 1px solid #ccc;
}
.snow-monkey-form .smf-form--simple-table .smf-item:last-of-type {
  border-bottom: 1px solid #ccc;
}
.snow-monkey-form .smf-form--simple-table .smf-item__col--label {
  padding-right: 3rem;
}
@media screen and (max-width: 519px) {
  .snow-monkey-form .smf-form--simple-table .smf-item__col--label {
    font-size: 1.15em;
  }
}
.snow-monkey-form .smf-item__controls .smf-placeholder {
  margin-top: 2rem;
}
.snow-monkey-form .smf-item__controls .smf-placeholder:first-child {
  margin-top: 0;
}
.snow-monkey-form .smf-form .smf-checkbox-control {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.snow-monkey-form .smf-form .smf-checkbox-control input {
  margin: 0;
}
.snow-monkey-form .smf-control-description {
  font-size: 0.8em;
}
.snow-monkey-form .smf-action .smf-button-control__control {
  display: block;
  margin: 5.3rem auto 0;
  padding: 1.8rem;
  width: 100%;
  max-width: 50rem;
  font-weight: 500;
  color: white;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #fc8708;
  background-image: none;
  border-radius: 0.5rem;
  border: none;
}
@media screen and (max-width: 519px) {
  .snow-monkey-form .smf-action .smf-button-control__control {
    max-width: 100%;
  }
}
.snow-monkey-form .smf-action .smf-button-control__control[data-action=back] {
  background-color: #777;
}
.snow-monkey-form .smf-action .smf-button-control__control[data-action=complete] {
  margin-top: 0;
}
.snow-monkey-form .snow-monkey-forms-turnstile {
  margin: 3rem auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.c-form__kiyaku {
  color: #0066cc;
  text-decoration: underline;
  cursor: pointer;
}

.c-page {
  margin-top: 3rem;
}
@media screen and (max-width: 519px) {
  .c-page {
    margin-top: 2rem;
  }
}
.c-page h2, .c-page h3, .c-page h4, .c-page h5, .c-page p, .c-page ul, .c-page ol, .c-page figure, .c-page table {
  margin-top: 2rem;
}
@media screen and (max-width: 519px) {
  .c-page h2, .c-page h3, .c-page h4, .c-page h5, .c-page p, .c-page ul, .c-page ol, .c-page figure, .c-page table {
    margin-top: 1.5rem;
  }
}
.c-page ul, .c-page ol {
  padding-left: 2rem;
}
@media screen and (max-width: 519px) {
  .c-page ul, .c-page ol {
    padding-left: 1.5rem;
  }
}

.c-anchor {
  margin-top: -13rem;
  padding-top: 13rem;
}
@media screen and (max-width: 519px) {
  .c-anchor {
    margin-top: -10rem;
    padding-top: 10rem;
  }
}

.c-job-tag__group {
  margin-top: 2rem;
}

.c-job-tag__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.5rem;
  list-style: none;
}

.c-job-tag__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid #d0d0d0;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
  -webkit-transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.c-job-tag__link:hover {
  border-color: #999;
  background: #f5f5f5;
}

.c-job-tag__count {
  font-size: 11px;
  color: #999;
}

/* 選択中 */
.c-job-tag__link.is-active {
  background: #fc8708;
  border-color: #fc8708;
  color: #fff;
}

.c-job-tag__link.is-active .c-job-tag__count {
  color: rgba(255, 255, 255, 0.8);
}

.c-job-tag__reset a {
  display: block;
  margin: 4rem auto 0 0;
  padding: 5px 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  color: white;
  background-color: #7c7c7c;
  border-radius: 10rem;
}
@media screen and (max-width: 959px) {
  .c-job-tag__reset a {
    margin-top: 3rem;
  }
}

/* project
------------------------------------------------ */
.p-top-mv {
  position: relative;
}

.p-top-mv__slide .splide__slide img {
  aspect-ratio: 1439/657;
  width: 100%;
  height: auto;
  max-height: 72rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 959px) {
  .p-top-mv__slide .splide__slide img {
    height: 55vw;
  }
}
@media screen and (max-width: 519px) {
  .p-top-mv__slide .splide__slide img {
    height: 110vw;
  }
}
.p-top-mv__slide .splide__pagination {
  gap: 2.7rem;
  bottom: 2rem;
}
@media screen and (max-width: 519px) {
  .p-top-mv__slide .splide__pagination {
    gap: 1rem;
    left: 1.5rem;
    bottom: 0.8rem;
    padding: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-top-mv__slide .splide__pagination li {
  aspect-ratio: 1;
  width: 1.3rem;
  height: auto;
}
@media screen and (max-width: 519px) {
  .p-top-mv__slide .splide__pagination li {
    width: 1.2rem;
  }
}
.p-top-mv__slide .splide__pagination li button {
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #0b4489;
  border-radius: 50%;
  opacity: 1;
}
.p-top-mv__slide .splide__pagination li button.is-active {
  -webkit-transform: scale(1);
          transform: scale(1);
  background-color: #fff;
}

.p-top-mv__catch {
  position: absolute;
  z-index: 15;
  top: 45%;
  left: 5%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 90%;
  max-width: 90rem;
  font-family: YakuHanJP, YuGothic, "Yu Gothic", "Noto Sans JP", sans-serif;
  color: white;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 2.6785714286;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}
@media screen and (max-width: 959px) {
  .p-top-mv__catch {
    top: 36%;
    font-size: 1.7em;
  }
}
@media screen and (max-width: 519px) {
  .p-top-mv__catch {
    top: 32%;
    width: 94%;
    font-size: 1.4em;
    line-height: 1.6;
  }
}

.p-top-mv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9.3rem;
  position: absolute;
  z-index: 15;
  top: 70%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 95%;
}
@media screen and (max-width: 959px) {
  .p-top-mv__btns {
    top: 66%;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-mv__btns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
    top: 58%;
    width: 90%;
  }
}

.p-top-mv__number {
  position: absolute;
  z-index: 15;
  bottom: 1.5rem;
  right: 1rem;
  color: white;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 959px) {
  .p-top-mv__number {
    font-size: 1em;
  }
}
@media screen and (max-width: 519px) {
  .p-top-mv__number {
    font-size: 1rem;
    bottom: 0.5rem;
    right: 0.5rem;
  }
}

.p-top-service {
  padding: 6rem 0 19.3rem;
  background-color: #fff;
}
@media screen and (max-width: 959px) {
  .p-top-service {
    padding: 6rem 0 15rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-service {
    padding: 6rem 0 13rem;
  }
}

.p-top-service__head01 {
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .p-top-service__head01 {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-service__head01 {
    font-size: 2.4rem;
  }
}

.p-top-service__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
  margin-top: 6rem;
}
@media screen and (max-width: 959px) {
  .p-top-service__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-service__container {
    gap: 3rem;
    margin-top: 3rem;
  }
}

.p-top-service__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-service__content h3 {
  font-size: 2.9rem;
  font-weight: 500;
  line-height: 1.6896551724;
}
@media screen and (max-width: 959px) {
  .p-top-service__content h3 {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-service__content h3 {
    font-size: 2rem;
    text-align: center;
  }
}
.p-top-service__content p {
  margin-top: 3rem;
  line-height: 2.25;
}

.p-top-service__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 48%;
}
@media screen and (max-width: 959px) {
  .p-top-service__image {
    max-width: 80%;
  }
}
.p-top-service__image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 519px) {
  .p-top-service__image {
    max-width: 100%;
    width: 100%;
  }
}

.p-top-about {
  padding: 10rem 0 0;
}
@media screen and (max-width: 959px) {
  .p-top-about {
    padding: 8rem 0 0;
  }
}
@media screen and (max-width: 519px) {
  .p-top-about {
    padding: 6rem 0 0;
  }
}

.p-top-about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3.4rem 2.8rem;
  margin-top: 3rem;
}
@media screen and (max-width: 959px) {
  .p-top-about__container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-about__container {
    margin-top: 3rem;
    gap: 2.5rem;
  }
}

.p-top-about__info {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  border-collapse: collapse;
}
.p-top-about__info th,
.p-top-about__info td {
  padding: 1rem 0;
  line-height: 1.5;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
@media screen and (max-width: 959px) {
  .p-top-about__info th,
  .p-top-about__info td {
    padding: 1.5rem 0;
  }
}
.p-top-about__info th {
  width: 35%;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 519px) {
  .p-top-about__info th {
    padding: 1.5rem 1rem;
    vertical-align: top;
  }
}
@media screen and (max-width: 959px) {
  .p-top-about__info {
    grid-column: 1;
    grid-row: 1;
  }
}

.p-top-about__image {
  grid-column: 2;
  grid-row: 1;
}
@media screen and (max-width: 959px) {
  .p-top-about__image {
    grid-column: 1;
    grid-row: 2;
  }
}
.p-top-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  display: block;
}
@media screen and (max-width: 959px) {
  .p-top-about__image img {
    aspect-ratio: 2;
    height: auto;
  }
}
@media screen and (max-width: 519px) {
  .p-top-about__image img {
    aspect-ratio: 1.5;
  }
}

.p-top-about__map {
  grid-column: 1/-1;
  grid-row: 2;
}
.p-top-about__map iframe {
  display: block;
  width: 100%;
  height: 40rem;
  border: none;
}
@media screen and (max-width: 519px) {
  .p-top-about__map iframe {
    aspect-ratio: 1.5;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  .p-top-about__map {
    grid-row: 3;
  }
}

.p-top-network {
  margin-top: 8rem;
}
@media screen and (max-width: 519px) {
  .p-top-network {
    margin-top: 5rem;
  }
}

.p-top-network__head {
  color: #fc8708;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 519px) {
  .p-top-network__head {
    font-size: 2.2rem;
  }
}

.p-top-network__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.3rem;
  margin-top: 2rem;
}
@media screen and (max-width: 959px) {
  .p-top-network__items {
    gap: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-network__items {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.p-top-network__item {
  text-align: center;
  border-radius: 0.5rem;
}
.p-top-network__item img {
  display: block;
  aspect-ratio: 378/225;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-network__name {
  margin-top: 0.7rem;
  font-size: 1.8rem;
  font-weight: 400;
  text-decoration: underline;
}
@media screen and (max-width: 959px) {
  .p-top-network__name {
    font-size: 1.6rem;
  }
}

/* utility
------------------------------------------------ */
/* external
------------------------------------------------ *//*# sourceMappingURL=style.css.map */