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

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #231815;
  text-align: justify;
  letter-spacing: 0.03em;
  line-height: 1.9375;
}
@media screen and (max-width: 959px) {
  body {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 519px) {
  body {
    font-size: 1.4rem;
  }
}

.f-po {
  font-family: "Poppins", sans-serif;
}

.f-yakuhan {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}

/* 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 {
  background-size: contain;
  background-size: 100% auto;
  background-repeat: repeat;
  background-position: center 29vw;
  /* 印刷禁止 */
}
@media screen and (max-width: 959px) {
  body {
    background-repeat: repeat;
  }
}
@media screen and (max-width: 519px) {
  body {
    background-size: contain;
    background-repeat: repeat;
  }
}

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%;
  /* PCの右クリック禁止 */
  /* SPの長押し禁止 */
}

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;
  max-width: 120rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1240px) {
  .l-inner {
    padding: 0 2rem;
  }
}

.l-inner--1069 {
  max-width: 1069px;
}

.l-inner--916 {
  max-width: 916px;
}

.l-inner--912 {
  max-width: 912px;
}

.l-inner--895 {
  max-width: 895px;
}

.l-inner--877 {
  max-width: 877px;
}

.l-inner--772 {
  max-width: 772px;
}

.l-inner--770 {
  max-width: 770px;
}

.l-main {
  margin-top: 12rem;
}
@media screen and (max-width: 1156px) {
  .l-main {
    margin-top: 20vw;
  }
}
@media screen and (max-width: 700px) {
  .l-main {
    margin-top: 22vw;
  }
}
@media screen and (max-width: 519px) {
  .l-main {
    margin-top: 1rem;
  }
}

.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-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: solid 2rem white;
}
@media screen and (max-width: 959px) {
  .c-header {
    border-top-width: 1.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header {
    border-top-width: 1rem;
  }
}

.c-header__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.8rem;
  padding: 1.4rem 2rem 1.4rem 3.7vw;
  background-color: #fff;
  border-bottom-right-radius: 1.3rem;
}
@media screen and (max-width: 959px) {
  .c-header__head {
    gap: 0;
    padding: 0.5rem 1.5rem 0.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header__head {
    padding: 0.7rem 1rem 0.3rem 0;
  }
}

.c-header__logo {
  width: 100%;
  max-width: 29rem;
}
@media screen and (max-width: 519px) {
  .c-header__logo {
    width: 60vw;
  }
}

.c-header__insta {
  width: 3.5rem;
}
@media screen and (max-width: 519px) {
  .c-header__insta {
    width: 7vw;
  }
}
.c-header__insta img {
  vertical-align: baseline;
}

.c-header__grobal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0 4rem 0 auto;
  width: 861.05px;
  letter-spacing: 0.05em;
  background-color: #fff;
  border-radius: 4rem;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 1340px) {
  .c-header__grobal {
    position: relative;
    width: 8.5rem;
    overflow: hidden;
    -webkit-transition: all ease-out 0.15s;
    transition: all ease-out 0.15s;
  }
}
@media screen and (max-width: 959px) {
  .c-header__grobal {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header__grobal {
    margin-right: 1.5rem;
    width: 7rem;
  }
}

.c-header__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  margin: 0 3.4rem 0 5.6rem;
  font-weight: bold;
}
@media screen and (max-width: 1340px) {
  .c-header__menus {
    display: none;
  }
}

.c-header__menu--rec {
  position: relative;
  cursor: pointer;
}

.c-header__recruit {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 1.8rem);
          transform: translate(-50%, 1.8rem);
  padding: 2rem 2.4rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.1;
  background-color: rgba(0, 0, 0, 0.7294117647);
  border-radius: 0.8rem;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  opacity: 0;
  visibility: hidden;
}
.c-header__recruit::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-bottom: 17px solid rgba(0, 0, 0, 0.7294117647);
  border-top: 0;
}
.c-header__recruit a {
  display: block;
}

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

.c-header__btn {
  padding: 1.2rem 3.65rem;
  color: white;
  font-size: 1.8rem;
  background-color: #1b65a9;
  border-radius: 4rem;
}
@media screen and (max-width: 1340px) {
  .c-header__btn {
    padding: 0;
    width: 8.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header__btn {
    width: 7rem;
  }
}

.c-header__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 1340px) {
  .c-header__tel {
    display: none;
  }
}
.c-header__tel img {
  width: 1.65rem;
}

.c-header__hamburger {
  display: none;
  width: 100%;
  height: 4.8rem;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media screen and (max-width: 1340px) {
  .c-header__hamburger {
    display: block;
  }
}
@media screen and (max-width: 519px) {
  .c-header__hamburger {
    height: 4.3rem;
  }
}

.c-header__hamburger-border {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-header__hamburger-border--top {
  top: calc(50% - 4px);
}

.c-header__hamburger-border--bottom {
  top: calc(50% + 4px);
}

.c-header__hamburger--open .c-header__hamburger-border--top {
  top: calc(50% + 0.5px);
  -webkit-transform: translate(-50%, -50%) rotate(-225deg);
          transform: translate(-50%, -50%) rotate(-225deg);
}
.c-header__hamburger--open .c-header__hamburger-border--middle {
  opacity: 0;
}
.c-header__hamburger--open .c-header__hamburger-border--bottom {
  top: calc(50% - 0.5px);
  -webkit-transform: translate(-50%, -50%) rotate(225deg);
          transform: translate(-50%, -50%) rotate(225deg);
}

.c-header__drawer {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
  padding: 14rem 3rem 3rem;
  width: 100%;
  background-color: #1fa1a0;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 519px) {
  .c-header__drawer {
    padding-top: 10rem;
  }
}
.c-header__drawer::-webkit-scrollbar {
  width: 0.5rem;
}
.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%);
  opacity: 1;
  visibility: visible;
  -webkit-box-shadow: 0 0 17px #6f6f6f;
          box-shadow: 0 0 17px #6f6f6f;
}

.c-header__drawer-menus {
  color: white;
}

.c-header__drawer-menu {
  display: block;
  position: relative;
  padding: 1rem 0;
  font-size: 1.2em;
  font-weight: 500;
  border-bottom: solid 1px #c9caca;
}
.c-header__drawer-menu::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  aspect-ratio: 1;
  width: 2rem;
  height: auto;
  background-image: url(../images/common/btn_white_right.png);
  background-size: contain;
}

.c-header__drawer-btn {
  display: block;
  position: relative;
  margin-top: 3rem;
  padding: 1.2rem;
  font-size: 1.2em;
  color: #1b65a9;
  font-weight: 500;
  background-color: #fff;
  text-align: center;
  border-radius: 3rem;
}

.c-header__drawer-btn--blue {
  margin-top: 1rem;
  background-color: #1b65a9;
  color: white;
}

.c-mv {
  position: relative;
  width: 100%;
}

.c-mv__title {
  position: absolute;
  bottom: 2.9rem;
  left: 9.7vw;
  width: 9.5vw;
  max-width: 13rem;
}
@media screen and (max-width: 959px) {
  .c-mv__title {
    bottom: 1rem;
    width: 12vw;
  }
}
@media screen and (max-width: 519px) {
  .c-mv__title {
    width: 20vw;
  }
}

.c-mv__pageTitle {
  position: absolute;
  left: calc(50vw - 60rem + 1rem);
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media screen and (max-width: 1240px) {
  .c-mv__pageTitle {
    left: 2rem;
  }
}
.c-mv__pageTitle span {
  position: absolute;
  bottom: -2.1rem;
  left: 5.7rem;
  font-size: 0.216em;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 519px) {
  .c-mv__pageTitle span {
    left: 10.7vw;
    font-size: 0.3em;
  }
}

.c-mv__img {
  width: 100%;
  min-height: 35rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 519px) {
  .c-mv__img {
    height: 80vw;
    min-height: auto;
  }
}

@media screen and (max-width: 519px) {
  .c-mv__img--recruit {
    -o-object-position: 27%;
       object-position: 27%;
  }
}

@media screen and (max-width: 519px) {
  .c-mv__img--top {
    -o-object-position: 15% 50%;
       object-position: 15% 50%;
  }
}

.c-obi {
  position: relative;
}
.c-obi::before {
  position: absolute;
  content: "";
  display: block;
  right: 0;
  width: calc(50vw + 60rem);
  max-width: 100%;
  height: 100%;
  background-color: #fff;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
@media screen and (max-width: 1240px) {
  .c-obi::before {
    width: calc(100% - 2rem);
  }
}

.c-obi--right::before {
  left: 0;
  right: auto;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.c-obi--br6::before {
  border-top-left-radius: 6rem;
  border-bottom-left-radius: 6rem;
}

.c-obi--1246::before {
  max-width: 124.6rem;
}

.c-obi2 {
  position: relative;
  width: calc(50vw + 60rem);
  max-width: 100%;
  height: 100%;
  background-color: #fff;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
@media screen and (max-width: 1240px) {
  .c-obi2 {
    width: calc(100% - 2rem);
  }
}

.c-obi2--right {
  margin-right: 0;
  margin-left: auto;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.c-obi2__inner {
  position: relative;
  left: 50vw;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 100rem;
}
@media screen and (max-width: 1080px) {
  .c-obi2__inner {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 1040px) {
  .c-obi2__inner {
    position: initial;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    padding: 0 2rem 0 4rem;
  }
}

.c-obi2__inner--right {
  left: calc(50vw - (50vw - 60rem));
}
@media screen and (max-width: 1240px) {
  .c-obi2__inner--right {
    left: 50vw;
  }
}
@media screen and (max-width: 1040px) {
  .c-obi2__inner--right {
    padding: 0 4rem 0 2rem;
  }
}

.c-enHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-family: "Poppins", sans-serif;
  color: white;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 519px) {
  .c-enHead {
    gap: 0.5rem;
  }
}
.c-enHead::before {
  content: "";
  display: inline-block;
  aspect-ratio: 39.6/36;
  width: 4.6rem;
  height: auto;
  background-image: url(../images/common/arrow_white_right.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .c-enHead::before {
    width: 9vw;
  }
}

.c-enHead--grad {
  background: linear-gradient(95deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-enHead--grad::before {
  background-image: url(../images/common/arrow_blue_right.png);
}

.c-enHead--sa {
  gap: 0.6rem;
}
.c-enHead--sa::before {
  width: 2.4rem;
}

.c-btn {
  position: relative;
  width: 100%;
  max-width: 28.4rem;
  height: 4.5rem;
  -ms-flex-line-pack: center;
      align-content: center;
  color: white;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(95deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
  border-radius: 4rem;
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  aspect-ratio: 1;
  width: 2rem;
  height: auto;
  background-image: url(../images/common/btn_white_right.png);
  background-size: contain;
}

.c-btn--white {
  color: #231815;
  background: none;
  background-color: #fff;
}
.c-btn--white::after {
  background-image: url(../images/common/btn_bl_right.png);
}

.c-btn--yellow {
  color: #1b65a9;
  background: none;
  background-color: #ffe100;
}
.c-btn--yellow::after {
  background-image: url(../images/common/btn_blue_right.png);
}

.c-recruit-bn {
  margin-top: 8rem;
  width: 100%;
  background-image: url(../images/bn/bn_recruit_01.png);
  background-size: cover;
}
@media screen and (max-width: 959px) {
  .c-recruit-bn {
    background-position: 77% 50%;
  }
}
@media screen and (max-width: 519px) {
  .c-recruit-bn {
    margin-top: 10rem;
    background-position: 87% 50%;
  }
}

.c-recruit-bn--page {
  margin-top: 0;
  margin-bottom: 4.1rem;
}

.c-recruit-bn__container {
  padding: 3.5rem 0 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
}
@media screen and (max-width: 959px) {
  .c-recruit-bn__container {
    gap: 2rem;
  }
}

.c-recruit-bn__enHead {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  line-height: 1;
}
.c-recruit-bn__enHead::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-recruit-bn__content {
  color: white;
}

.c-recruit-bn__title {
  display: inline-block;
  margin-top: 5.8rem;
  padding: 0 2rem 0.4rem 1.7rem;
  letter-spacing: 0.2em;
  line-height: 1.55;
  border-right: solid 1px white;
  border-bottom: solid 1px white;
}
@media screen and (max-width: 519px) {
  .c-recruit-bn__title {
    margin-top: 2rem;
  }
}

.c-recruit-bn__wait {
  margin-top: 3.5rem;
  font-weight: bold;
  line-height: 1.48;
}
@media screen and (max-width: 519px) {
  .c-recruit-bn__wait {
    margin-top: 2.5rem;
  }
}

.c-recruit-bn__message {
  margin-top: 1rem;
  max-width: 41rem;
  letter-spacing: 0;
}

.c-recruit-bn__btn {
  margin-top: 4.5rem;
  max-width: 40.6rem;
  height: 6.5rem;
  font-size: 2.29rem;
}
@media screen and (max-width: 959px) {
  .c-recruit-bn__btn {
    margin-top: 4rem;
    width: 44vw;
    height: 6rem;
    font-size: 2.6vw;
  }
}
@media screen and (max-width: 519px) {
  .c-recruit-bn__btn {
    width: 100%;
    height: 5rem;
    font-size: 4.3vw;
  }
}
.c-recruit-bn__btn::after {
  right: 1.2rem;
  width: 2.8rem;
}
@media screen and (max-width: 959px) {
  .c-recruit-bn__btn::after {
    width: 2.5rem;
  }
}

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

.c-bn__bn {
  position: relative;
  aspect-ratio: 455/325;
  width: 33.333%;
  height: auto;
  background-image: url(../images/bn/bn_about.png);
  background-size: cover;
}
@media screen and (max-width: 519px) {
  .c-bn__bn {
    width: 100%;
  }
}
.c-bn__bn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: hsla(209, 72%, 38%, 0.8);
  mix-blend-mode: multiply;
}

.c-bn__bn--works {
  background-image: url(../images/bn/bn_works.png);
}

.c-bn__bn--recruit {
  background-image: url(../images/bn/bn_recruit_02.png);
}

.c-bn__bn--service {
  background-image: url(../images/bn/bn_service.jpg);
}

.c-bn__bn--benefit {
  background-image: url(../images/bn/bn_benefit.jpg);
}

.c-bn__head {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  line-height: 1.2;
}

.c-bn__title {
  font-weight: bold;
}
.c-bn__title::after {
  content: "";
  display: inline-block;
  margin-left: 0.5rem;
  aspect-ratio: 1;
  width: 1.9rem;
  height: auto;
  vertical-align: bottom;
  background-image: url(../images/common/btn_white_right.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .c-bn__title::after {
    width: 4.7vw;
  }
}

.c-footer {
  background-color: #eaeef1;
}

.c-footer__credit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7.5rem;
  padding: 5rem 0;
}
@media screen and (max-width: 959px) {
  .c-footer__credit {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    gap: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__credit {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.4rem;
}

.c-footer__logo {
  width: 35.6rem;
}
@media screen and (max-width: 959px) {
  .c-footer__logo {
    width: 40vw;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__logo {
    width: 65vw;
  }
}

.c-footer__insta {
  margin-top: 1rem;
  width: 4.3rem;
}
@media screen and (max-width: 959px) {
  .c-footer__insta {
    width: 5vw;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__insta {
    margin-top: 1vw;
    width: 10vw;
  }
}

.c-footer__address {
  padding-left: 1rem;
  font-weight: 500;
}

.c-footer__right {
  font-weight: 500;
}
@media screen and (max-width: 519px) {
  .c-footer__right {
    text-align: center;
  }
}
.c-footer__right span {
  font-weight: 600;
}

.c-footer__tel {
  display: block;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 0.2rem 0 0.5rem;
  font-size: 3.2rem;
  font-weight: bold;
  color: #1b65a9;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .c-footer__tel {
    font-size: 4vw;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__tel {
    font-size: 9vw;
  }
}
.c-footer__tel img {
  margin-right: 0.8rem;
  width: 2.9rem;
}
@media screen and (max-width: 959px) {
  .c-footer__tel img {
    margin-right: 0.5rem;
    width: 3.5vw;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__tel img {
    width: 7.5vw;
  }
}

.c-footer__menus {
  padding: 2.45rem 2rem;
  color: white;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1;
  background: linear-gradient(95deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
}
@media screen and (max-width: 959px) {
  .c-footer__menus {
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem 0;
  }
}

.c-footer__menu {
  padding: 0 0.8rem 0 1.3rem;
  border-left: solid 1px white;
}
@media screen and (max-width: 519px) {
  .c-footer__menu {
    width: 50%;
  }
}
.c-footer__menu:first-child {
  border-left: none;
}
@media screen and (max-width: 519px) {
  .c-footer__menu:first-child {
    border-left: solid 1px white;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__menu:nth-child(2n) {
    border-right: solid 1px white;
  }
}

.c-footer__privacy {
  margin-left: 5.5rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 959px) {
  .c-footer__privacy {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__privacy {
    margin: 1rem auto 0;
    font-size: 0.9em;
  }
}

.c-page {
  position: relative;
  z-index: 0;
  padding: 10rem 0;
  width: 100%;
  background-color: #eaeef1;
}
.c-page::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 33rem;
  background: linear-gradient(95deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
}

.c-page--485::before {
  height: 48.5rem;
}
@media screen and (max-width: 519px) {
  .c-page--485::before {
    height: 33rem;
  }
}

.c-head2 {
  display: inline-block;
  color: #1b65a9;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 959px) {
  .c-head2 {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 519px) {
  .c-head2 {
    font-size: 6vw;
  }
}
.c-head2 span {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  background: linear-gradient(95deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 959px) {
  .c-head2 span {
    font-size: 3.1vw;
  }
}
@media screen and (max-width: 519px) {
  .c-head2 span {
    font-size: 5.6vw;
  }
}
.c-head2 span::before {
  content: "";
  display: inline-block;
  margin-right: 0.2rem;
  aspect-ratio: 16/20;
  width: 16px;
  height: auto;
  background-image: url(../images/common/slash.png);
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .c-head2 span::before {
    width: 1.8vw;
  }
}
@media screen and (max-width: 519px) {
  .c-head2 span::before {
    width: 3.7vw;
  }
}

.c-list__container {
  padding: 3rem 0 6.6rem;
}

.c-list__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.4rem;
  padding: 2.5rem 0;
  border-top: solid 1px #c9caca;
}
@media screen and (max-width: 959px) {
  .c-list__card {
    gap: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-list__card {
    gap: 1.5rem;
  }
}
.c-list__card:first-child {
  border-top: none;
}

.c-list__image {
  aspect-ratio: 225/175;
  width: 22.5rem;
  height: auto;
}
@media screen and (max-width: 959px) {
  .c-list__image {
    width: 30%;
  }
}
@media screen and (max-width: 519px) {
  .c-list__image {
    width: 30%;
  }
}
.c-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-list__body {
  width: calc(100% - 22.5rem - 3.4rem);
}
@media screen and (max-width: 959px) {
  .c-list__body {
    width: calc(70% - 3rem);
  }
}
@media screen and (max-width: 519px) {
  .c-list__body {
    width: calc(70% - 1.5rem);
  }
}
.c-list__body time {
  color: #727171;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 519px) {
  .c-list__body time {
    font-size: 0.9em;
  }
}
.c-list__body h2 {
  position: relative;
  margin-top: 0.3rem;
  padding-right: 4rem;
  font-weight: 500;
  font-size: 1.4375em;
  letter-spacing: 0;
}
@media screen and (max-width: 519px) {
  .c-list__body h2 {
    padding-right: 2.7rem;
    font-size: 1.15em;
    line-height: 1.5;
  }
}
.c-list__body h2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  aspect-ratio: 1;
  width: 3rem;
  height: auto;
  background-image: url(../images/common/btn_blue_right.png);
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .c-list__body h2::after {
    width: 2.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-list__body h2::after {
    top: 7%;
    right: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    width: 2rem;
  }
}

.c-pagination {
  margin: 9.4rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 959px) {
  .c-pagination {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 519px) {
  .c-pagination {
    gap: 0.7rem;
    margin-top: 5rem;
  }
}
.c-pagination .page-numbers {
  aspect-ratio: 1;
  width: 3.8rem;
  height: auto;
  color: #1b65a9;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  line-height: 1;
  background-color: #f5f3f2;
  border: solid 1.7px #1b65a9;
  border-radius: 50%;
}
@media screen and (max-width: 959px) {
  .c-pagination .page-numbers {
    width: 3.3rem;
  }
}
.c-pagination .page-numbers:hover {
  color: white;
  background-color: #1b65a9;
  opacity: 1;
}
.c-pagination .page-numbers.current {
  color: white;
  background-color: #1b65a9;
  pointer-events: none;
}
.c-pagination .page-numbers.dots {
  aspect-ratio: auto;
  width: auto;
  color: #747374;
  background-color: transparent;
  border: none;
  border-radius: 0;
}

.c-kiji__container {
  padding: 5rem 0 6.6rem;
}
@media screen and (max-width: 519px) {
  .c-kiji__container {
    padding: 4rem 0;
  }
}

.c-kiji__date {
  display: block;
  color: #727171;
}

.c-kiji__title {
  margin-top: 0.5rem;
  letter-spacing: 0;
}
@media screen and (max-width: 519px) {
  .c-kiji__title {
    line-height: 1.5;
  }
}

.c-kiji__thumb {
  margin-top: 3rem;
}
.c-kiji__thumb img {
  height: auto;
  border-radius: 1.5rem;
}
@media screen and (max-width: 519px) {
  .c-kiji__thumb img {
    border-radius: 1rem;
  }
}

.c-kiji__content {
  margin-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 519px) {
  .c-kiji__content {
    margin-top: 3rem;
  }
}
.c-kiji__content p, .c-kiji__content figure, .c-kiji__content iframe {
  margin-bottom: 2rem;
  max-width: 100%;
}

.c-kiji__back {
  display: block;
  margin: 4rem auto 0;
}

.c-contact__obi {
  padding: 5rem 0 6.6rem;
}
@media screen and (max-width: 519px) {
  .c-contact__obi {
    padding: 4rem 0;
  }
}

.c-contact__form {
  margin: 7.5rem auto 0;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .c-contact__form {
    margin-top: 5rem;
    font-size: 1.4rem;
  }
}
.c-contact__input {
  display: block;
}

.c-contact__confirm {
  display: none;
}

.c-contact__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-contact__message span {
  margin: 0 0 0 auto;
}

.c-contact__table {
  width: 100%;
  border-collapse: collapse;
}
.c-contact__table th, .c-contact__table td {
  font-weight: 500;
  border-top: solid 0.25px #c9caca;
  border-bottom: solid 0.25px #c9caca;
}
@media screen and (max-width: 519px) {
  .c-contact__table th, .c-contact__table td {
    display: block;
  }
}
.c-contact__table th {
  padding: 0.5rem 2rem;
  width: 26%;
  max-width: 100%;
  min-width: 16rem;
  background-color: #f7f7f7;
}
@media screen and (max-width: 519px) {
  .c-contact__table th {
    width: 100%;
    min-width: auto;
    border-bottom: none;
  }
}
.c-contact__table td {
  padding: 1rem 1.5rem;
  max-width: 100%;
}
@media screen and (max-width: 519px) {
  .c-contact__table td {
    width: 100%;
    border-top: none;
  }
}
.c-contact__table input[type=text],
.c-contact__table input[type=email],
.c-contact__table input[type=tel],
.c-contact__table textarea,
.c-contact__table select {
  padding: 0.3rem 1rem;
  max-width: 100%;
  max-height: 9.5rem;
  background-color: #fff;
  border: solid 0.5px #c9caca;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 519px) {
  .c-contact__table input[type=text],
  .c-contact__table input[type=email],
  .c-contact__table input[type=tel],
  .c-contact__table textarea,
  .c-contact__table select {
    width: 100%;
  }
}
.c-contact__table input[type=text]:focus,
.c-contact__table input[type=email]:focus,
.c-contact__table input[type=tel]:focus,
.c-contact__table textarea:focus,
.c-contact__table select:focus {
  border-width: 2px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.c-contact__table select {
  background-image: url(../images/common/icon_selectbox.png);
  background-size: 15px 6px;
  background-position: 97% 50%;
}
@media screen and (max-width: 519px) {
  .c-contact__table select {
    background-size: 13px 5px;
  }
}
.c-contact__table .wpcf7-list-item {
  display: block;
}
.c-contact__table .wpcf7-list-item input[type=checkbox] {
  display: none;
}
.c-contact__table .wpcf7-list-item input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding: 0 0 0 2rem;
  cursor: pointer;
}
.c-contact__table .wpcf7-list-item input[type=checkbox] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: #fff;
  border: 1px solid #c9caca;
  border-radius: 2px;
}
.c-contact__table .wpcf7-list-item input[type=checkbox] + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 2px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 1em;
  height: 0.6em;
  border-bottom: 3px solid #1b65a9;
  border-left: 3px solid #1b65a9;
  margin-top: -0.2em;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.c-contact__table .wpcf7-list-item input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.c-contact__table .wpcf7-not-valid-tip {
  display: block;
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
}

.wpcf7-acceptance {
  display: block;
  position: relative;
  margin: 6rem auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 519px) {
  .wpcf7-acceptance {
    margin-top: 5rem;
  }
}
.wpcf7-acceptance .wpcf7-list-item label input {
  display: none; /* デフォルトのinputは非表示にする */
}
.wpcf7-acceptance .wpcf7-list-item label span {
  display: block;
  padding: 1rem;
  width: 25rem;
  max-width: 100%;
  text-align: center;
  color: white;
  background: linear-gradient(95deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
  border-radius: 4rem;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item label span:hover {
  opacity: 0.8;
}
.wpcf7-acceptance .wpcf7-list-item label span::before, .wpcf7-acceptance .wpcf7-list-item label span::after {
  display: none;
}
.c-contact__confirm-btn,
input[type=submit] {
  display: block;
  margin: 4rem auto 0;
  padding: 1rem;
  width: 25rem;
  max-width: 100%;
  text-align: center;
  color: white;
  background: linear-gradient(95deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
  border-radius: 4rem;
}
.c-contact__confirm-btn:hover,
input[type=submit]:hover {
  opacity: 0.8;
}

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

.c-contact__address-wrap {
  padding-bottom: 1.5rem;
}
.c-contact__address-wrap label {
  display: block;
}

.c-contact__value {
  padding: 1rem 0;
}
@media screen and (max-width: 519px) {
  .c-contact__value {
    padding: 0.5rem 0;
  }
}

.c-contact__back {
  margin: 0 auto;
  display: block;
  width: 12rem;
  padding: 1rem;
  text-align: center;
  font-size: 0.9em;
  color: white;
  background-color: #7e7e7e;
  border-radius: 4rem;
}
.c-contact__back:hover {
  opacity: 0.8;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-spinner {
  margin: 1rem auto 0;
}

.wpcf7-response-output {
  display: none;
}

.wpcf7-form-control-wrap.recaptcha {
  display: block;
  margin-top: 4rem;
}

.c-contact__thanks {
  margin: 6rem auto 20rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 959px) {
  .c-contact__thanks {
    padding: 5rem auto 14rem;
  }
}
@media screen and (max-width: 519px) {
  .c-contact__thanks {
    margin: 4rem auto 11rem;
    letter-spacing: 0;
  }
}

.c-contact-info__obi {
  position: relative;
  margin-top: 7.8rem;
  margin-bottom: 14.6rem;
  background: linear-gradient(95deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
  border-top-left-radius: 3rem;
  border-bottom-left-radius: 3rem;
}
@media screen and (max-width: 519px) {
  .c-contact-info__obi {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
.c-contact-info__obi::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 5rem;
  z-index: 0;
  aspect-ratio: 209/189;
  width: 20.9rem;
  height: auto;
  background-image: url(../images/common/logo_trans.png);
  background-size: contain;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 519px) {
  .c-contact-info__obi::before {
    left: 0;
    width: 50%;
  }
}

.c-contact-info__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11rem;
  padding: 11rem 2rem;
}
@media screen and (max-width: 959px) {
  .c-contact-info__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4rem;
    padding: 7rem 0rem;
  }
}
@media screen and (max-width: 519px) {
  .c-contact-info__container {
    gap: 3rem;
    padding: 5rem 0;
  }
}

.c-contact-info__left {
  color: white;
  letter-spacing: 0.01em;
}

.c-contact-info__enhead {
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
}

.c-contact-info__head {
  padding-bottom: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.c-contact-info__right {
  max-width: 40rem;
}

.c-contact-info__btn {
  width: 100%;
  height: 10rem;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #fff;
  border-radius: 1rem;
}
.c-contact-info__btn img {
  width: 72%;
}
@media screen and (max-width: 519px) {
  .c-contact-info__btn img {
    width: 85%;
  }
}

.c-contact-info__btn--mail {
  margin-top: 2.5rem;
}
.c-contact-info__btn--mail img {
  width: 44.5%;
}
@media screen and (max-width: 519px) {
  .c-contact-info__btn--mail img {
    width: 55%;
  }
}

.c-career {
  position: relative;
  margin-top: 6.5rem;
  padding: 3rem 0 6rem;
  border-bottom: solid 2px #1b65a9;
}
@media screen and (max-width: 519px) {
  .c-career {
    margin-top: 5rem;
    padding: 0 0 5rem;
  }
}
.c-career:nth-of-type(2) {
  padding-bottom: 10rem;
  border: none;
}
@media screen and (max-width: 519px) {
  .c-career:nth-of-type(2) {
    padding-bottom: 8rem;
  }
}

.c-career__title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 519px) {
  .c-career__title {
    position: relative;
    margin-left: 9.5vw;
  }
}
.c-career__title h4 {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  width: 16rem;
  height: auto;
  color: white;
  font-size: 3.1rem;
  font-weight: bold;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  line-height: 1.3;
  border-radius: 50%;
  background: linear-gradient(95deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
}
@media screen and (max-width: 959px) {
  .c-career__title h4 {
    width: 15vw;
    font-size: 3.1vw;
  }
}
@media screen and (max-width: 519px) {
  .c-career__title h4 {
    width: 25vw;
    font-size: 5vw;
  }
}
.c-career__title img {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(8rem);
          transform: translateX(8rem);
  width: auto;
  max-width: none;
  height: 100%;
}
@media screen and (max-width: 959px) {
  .c-career__title img {
    -webkit-transform: translateX(7.5vw);
            transform: translateX(7.5vw);
  }
}
@media screen and (max-width: 519px) {
  .c-career__title img {
    -webkit-transform: translateX(12.5vw);
            transform: translateX(12.5vw);
  }
}

.c-career__subtitle {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: right;
  letter-spacing: 0;
}
@media screen and (max-width: 959px) {
  .c-career__subtitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-career__subtitle {
    margin-top: 2rem;
    font-size: 1.7rem;
    text-align: center;
  }
}

.c-career__scroll {
  display: none;
  font-size: 1.2rem;
  text-align: right;
}
@media screen and (max-width: 519px) {
  .c-career__scroll {
    display: block;
  }
}

.c-career__container {
  position: relative;
  margin-top: 7rem;
}
@media screen and (max-width: 519px) {
  .c-career__container {
    margin-top: 3rem;
    overflow: scroll;
  }
}

.c-career__steps {
  position: relative;
}
@media screen and (max-width: 519px) {
  .c-career__steps {
    width: 75rem;
  }
}

.c-career__steps-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40rem;
  background: linear-gradient(95deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
}

.c-career__step {
  position: relative;
  padding-bottom: 3rem;
  width: 12.5%;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
  -ms-flex-line-pack: end;
      align-content: end;
  line-height: 1.5;
  border-right: solid 3px white;
  background: #ffffff;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(22%, transparent), color-stop(22%, white), to(white));
  background: linear-gradient(0deg, transparent 0%, transparent 22%, white 22%, white 100%);
}
@media screen and (max-width: 959px) {
  .c-career__step {
    font-size: 2.35vw;
    border-right: solid 2px white;
  }
}
@media screen and (max-width: 519px) {
  .c-career__step {
    font-size: 4vw;
  }
}
.c-career__step span {
  position: absolute;
  bottom: 23%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
  text-align: center;
  color: #231815;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}
.c-career__step small {
  display: inline-block;
  font-size: 0.6em;
}
@media screen and (max-width: 519px) {
  .c-career__step small {
    font-size: 0.7em;
  }
}
.c-career__step em {
  display: block;
  padding-bottom: 1rem;
  font-style: normal;
}
.c-career__step:nth-child(2) {
  padding-bottom: 4rem;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33.14%, transparent), color-stop(33.14%, white), to(white));
  background: linear-gradient(0deg, transparent 0%, transparent 33.14%, white 33.14%, white 100%);
}
.c-career__step:nth-child(3) {
  padding-bottom: 8rem;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(44.28%, transparent), color-stop(44.28%, white), to(white));
  background: linear-gradient(0deg, transparent 0%, transparent 44.28%, white 44.28%, white 100%);
}
.c-career__step:nth-child(3) span {
  bottom: 45.5%;
}
.c-career__step:nth-child(4) {
  padding-bottom: 7rem;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(55.42%, transparent), color-stop(55.42%, white), to(white));
  background: linear-gradient(0deg, transparent 0%, transparent 55.42%, white 55.42%, white 100%);
}
.c-career__step:nth-child(4) span {
  bottom: 56.5%;
}
.c-career__step:nth-child(5) {
  padding-bottom: 4.5rem;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(66.56%, transparent), color-stop(66.56%, white), to(white));
  background: linear-gradient(0deg, transparent 0%, transparent 66.56%, white 66.56%, white 100%);
}
.c-career__step:nth-child(5) span {
  bottom: 67.5%;
}
.c-career__step:nth-child(6) {
  padding-bottom: 13rem;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(77.7%, transparent), color-stop(77.7%, white), to(white));
  background: linear-gradient(0deg, transparent 0%, transparent 77.7%, white 77.7%, white 100%);
}
.c-career__step:nth-child(7) {
  padding-bottom: 12rem;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(88.84%, transparent), color-stop(88.84%, white), to(white));
  background: linear-gradient(0deg, transparent 0%, transparent 88.84%, white 88.84%, white 100%);
}
.c-career__step:nth-child(7) span {
  bottom: 90%;
}
.c-career__step:last-child {
  padding-bottom: 13rem;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(100%, transparent), color-stop(100%, white), to(white));
  background: linear-gradient(0deg, transparent 0%, transparent 100%, white 100%, white 100%);
  border-right: none;
}
.c-career__step:last-child span {
  bottom: 101%;
}

.c-career__step--genba1 {
  padding-bottom: 10rem !important;
}

.c-career__step--genba2 {
  padding-bottom: 2rem !important;
}

.c-career__step--genba3 {
  padding-bottom: 10rem !important;
}

.c-career__step--genba4 {
  padding-bottom: 10rem !important;
}

.c-career__step--genba5 {
  padding-bottom: 11rem !important;
}

.c-career__sup {
  margin-top: 1rem;
  padding: 0 1.5rem;
  text-align: justify;
}
@media screen and (max-width: 959px) {
  .c-career__sup {
    padding: 0 0.5rem;
  }
}
.c-career__up {
  position: absolute;
  top: 33%;
  left: 14%;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  color: #1b65a9;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.7;
}
@media screen and (max-width: 959px) {
  .c-career__up {
    top: 28%;
  }
}
@media screen and (max-width: 519px) {
  .c-career__up {
    font-size: 2rem;
  }
}
.c-career__up::before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: -2.7rem;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  width: 2px;
  height: 80%;
  background-color: #1b65a9;
}
.c-career__up::after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: -2.7rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  width: 2px;
  height: 80%;
  background-color: #1b65a9;
}

.c-career__btn {
  display: block;
  margin: 6.4rem auto 0;
  font-size: 2rem;
  max-width: 31.5rem;
  height: 6rem;
}
@media screen and (max-width: 959px) {
  .c-career__btn {
    margin: 5rem auto 0;
    font-size: 1.8rem;
    height: 5.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-career__btn {
    margin-top: 4rem;
    font-size: 1.6rem;
    height: 5rem;
  }
}
.c-career__btn::after {
  display: none;
}

/* project
------------------------------------------------ */
.p-top-about {
  padding: 4.7rem 0 7.4rem;
  background: linear-gradient(95deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
}

.p-top-about__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6.7rem 0;
}
@media screen and (max-width: 1240px) {
  .p-top-about__container {
    gap: 2rem;
    padding: 5rem 0 5rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-about__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-top-about__left {
  line-height: 1.54;
}
.p-top-about__left h2 {
  margin-top: 3rem;
}
@media screen and (max-width: 519px) {
  .p-top-about__left h2 {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 1240px) {
  .p-top-about__right {
    width: calc(50% - 2rem);
  }
}
@media screen and (max-width: 519px) {
  .p-top-about__right {
    width: 100%;
  }
}
.p-top-about__right p {
  margin-top: 0.5rem;
  font-weight: 500;
}
@media screen and (max-width: 519px) {
  .p-top-about__right p {
    margin-top: 2rem;
    letter-spacing: 0;
  }
}
.p-top-about__right a {
  margin-top: 3.5rem;
}

.p-top-service {
  position: relative;
  padding: 8.5rem 0 11rem;
  background-color: #eaeef1;
}

.p-top-service__enHead {
  position: absolute;
  top: 0;
  left: calc(50% + 13.4rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1170px) {
  .p-top-service__enHead {
    left: auto;
    right: 2rem;
  }
}

.p-top-service__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 959px) {
  .p-top-service__top {
    gap: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-service__top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-top-service__image {
  width: 59%;
}
@media screen and (max-width: 519px) {
  .p-top-service__image {
    width: 100%;
  }
}

.p-top-service__info {
  width: calc(41% - 4rem);
  max-width: 30rem;
}
@media screen and (max-width: 519px) {
  .p-top-service__info {
    width: 100%;
    max-width: none;
  }
}
.p-top-service__info p {
  margin-top: 0.5rem;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .p-top-service__info p {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-service__info p {
    font-size: 1.6rem;
  }
}
.p-top-service__info a {
  margin-top: 6rem;
}
@media screen and (max-width: 959px) {
  .p-top-service__info a {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-service__info a {
    margin-top: 3rem;
  }
}

.p-top-service__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.1rem;
  margin-top: 5.9rem;
}
@media screen and (max-width: 519px) {
  .p-top-service__bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 5rem;
  }
}

.p-top-service__card {
  position: relative;
  padding: 2rem 2.6rem 3rem 5.5rem;
  width: calc(33.333% - 1.4rem);
  background-color: #fff;
}
@media screen and (max-width: 959px) {
  .p-top-service__card {
    padding: 1rem 1.5rem 2rem 3.5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-service__card {
    padding: 1rem 2rem 2rem 4.5rem;
    width: 100%;
    min-height: 13rem;
  }
}
.p-top-service__card dt {
  font-weight: bold;
}
.p-top-service__card dd {
  font-size: 1.7rem;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .p-top-service__card dd {
    font-size: 1em;
  }
}

.p-top-service__label {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.7rem;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 100%;
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  line-height: 1.65;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(27, 101, 169)), to(rgb(31, 161, 160)));
  background: linear-gradient(180deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
}
@media screen and (max-width: 959px) {
  .p-top-service__label {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 519px) {
  .p-top-service__label {
    padding-top: 1rem;
    line-height: 1.7;
  }
}

.p-top-st {
  position: relative;
  padding: 5rem 0 5.7rem;
}

.p-top-st__enHead {
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-top-st__title {
  padding-bottom: 2rem;
  font-size: 2.8rem;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .p-top-st__title {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 519px) {
  .p-top-st__title {
    padding-bottom: 0;
    font-size: 6vw;
  }
}

.p-top-st__obi::before {
  background-color: #eaeef1;
}

.p-top-st__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4rem;
  padding: 6.8rem 0;
}
@media screen and (max-width: 959px) {
  .p-top-st__container {
    gap: 2rem;
    padding: 5rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-st__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.5rem;
  }
}

.p-top-st__container--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-top-st__img {
  width: 59%;
}
@media screen and (max-width: 959px) {
  .p-top-st__img {
    width: calc(50% - 2rem);
  }
}
@media screen and (max-width: 519px) {
  .p-top-st__img {
    width: 100%;
  }
}

.p-top-st__content {
  width: calc(41% - 4rem);
}
@media screen and (max-width: 959px) {
  .p-top-st__content {
    width: 50%;
  }
}
@media screen and (max-width: 519px) {
  .p-top-st__content {
    width: 100%;
  }
}
.p-top-st__content span {
  line-height: 1;
}
@media screen and (max-width: 519px) {
  .p-top-st__content span {
    font-weight: bold;
  }
}
.p-top-st__content h3 {
  margin-top: 1rem;
  font-size: 2.7rem;
  line-height: 1.48;
  letter-spacing: 0;
}
@media screen and (max-width: 959px) {
  .p-top-st__content h3 {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 519px) {
  .p-top-st__content h3 {
    font-size: 5.7vw;
  }
}
.p-top-st__content p {
  margin-top: 2rem;
  letter-spacing: 0;
}

.p-top-work__enHead {
  margin: 0 auto;
}

.p-top-work__title {
  margin-top: 0.5rem;
  font-size: 2.8rem;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .p-top-work__title {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 519px) {
  .p-top-work__title {
    font-size: 6vw;
  }
}

.p-top-work__slide {
  margin-top: 2.5rem;
}

.p-top-work__btn {
  display: block;
  margin: 3.7rem auto 0;
}

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

.p-top-news__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5.5rem;
}
@media screen and (max-width: 959px) {
  .p-top-news__container {
    gap: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-news__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-top-news__enHead::before {
  display: none;
}

.p-top-news__title {
  line-height: 1.5;
}

.p-top-news__btn {
  margin-top: 3.5rem;
  font-weight: 500;
}

.p-top-news__right {
  width: 100%;
}

.p-top-news__article {
  width: 100%;
  border-bottom: solid 1px #c9caca;
}
@media screen and (max-width: 519px) {
  .p-top-news__article {
    letter-spacing: 0.01em;
  }
}
.p-top-news__article:last-child {
  border-bottom: none;
}
.p-top-news__article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.1rem 0;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 519px) {
  .p-top-news__article a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-top-news__article a time {
  padding-right: 1rem;
  color: #727171;
  border-right: solid 1px #c9caca;
}
.p-top-news__article a h3 {
  padding-left: 1.5rem;
  font-size: 1em;
  font-weight: inherit;
  color: #1b65a9;
}
@media screen and (max-width: 519px) {
  .p-top-news__article a h3 {
    padding-left: 1rem;
  }
}

.p-about-greet__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  position: relative;
  padding: 6.5rem 0;
}
@media screen and (max-width: 959px) {
  .p-about-greet__container {
    gap: 3rem;
    padding: 5rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-about-greet__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 5rem 2rem;
  }
}

.p-about-greet__image {
  width: 24rem;
}
@media screen and (max-width: 959px) {
  .p-about-greet__image {
    width: 25%;
  }
}
@media screen and (max-width: 519px) {
  .p-about-greet__image {
    margin: 0 auto;
    width: 55%;
  }
}

.p-about-greet__content {
  width: calc(100% - 24rem - 4rem);
}
@media screen and (max-width: 959px) {
  .p-about-greet__content {
    width: calc(75% - 3rem);
  }
}
@media screen and (max-width: 519px) {
  .p-about-greet__content {
    width: 100%;
  }
}

.p-about-greet__message {
  font-size: 1.7rem;
  letter-spacing: -1px;
}
@media screen and (max-width: 959px) {
  .p-about-greet__message {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .p-about-greet__message {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}

.p-about-greet__name {
  margin-top: 3rem;
  font-size: 1.78rem;
  font-weight: 500;
  text-align: right;
}
@media screen and (max-width: 959px) {
  .p-about-greet__name {
    margin-top: 2rem;
    font-size: 1.65rem;
  }
}
@media screen and (max-width: 519px) {
  .p-about-greet__name {
    font-size: 1.6rem;
  }
}

.p-about-profile {
  margin-top: 6rem;
}

.p-about-profile__table {
  margin-top: 1.5rem;
  width: 100%;
  border-collapse: collapse;
}
.p-about-profile__table th, .p-about-profile__table td {
  padding: 1.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: solid 1px #c9caca;
}
@media screen and (max-width: 959px) {
  .p-about-profile__table th, .p-about-profile__table td {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 519px) {
  .p-about-profile__table th, .p-about-profile__table td {
    padding: 1.5rem 0rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 519px) {
  .p-about-profile__table th {
    width: 10rem;
  }
}
.p-about-profile__table td {
  font-size: 1.78rem;
  font-weight: 400;
}
@media screen and (max-width: 959px) {
  .p-about-profile__table td {
    font-size: 1.65rem;
  }
}
@media screen and (max-width: 519px) {
  .p-about-profile__table td {
    font-size: 1.4rem;
  }
}
.p-about-profile__table tr:last-child th, .p-about-profile__table tr:last-child td {
  border-bottom: none;
}

.p-about-profile__map {
  margin-top: 6rem;
}
@media screen and (max-width: 519px) {
  .p-about-profile__map {
    margin-top: 4rem;
  }
}
.p-about-profile__map iframe {
  aspect-ratio: 77/35;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
@media screen and (max-width: 519px) {
  .p-about-profile__map iframe {
    aspect-ratio: 1;
  }
}

.p-about-profile__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.7rem;
  margin-top: 5rem;
}
@media screen and (max-width: 519px) {
  .p-about-profile__images {
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-about-profile__images img {
  width: calc(50% - 1.35rem);
}
@media screen and (max-width: 519px) {
  .p-about-profile__images img {
    width: 100%;
  }
}

.p-service__intro {
  padding: 0 4rem;
  color: white;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .p-service__intro {
    padding: 0;
  }
}

.p-service__obi {
  margin-top: 4.5rem;
}

.p-service__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 6.2rem;
  position: relative;
  padding: 8.5rem 0 0;
  max-width: 111rem;
}
@media screen and (max-width: 1170px) {
  .p-service__container {
    padding: 8.5rem 2rem 0;
  }
}
@media screen and (max-width: 959px) {
  .p-service__container {
    gap: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .p-service__container {
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 6rem 2rem 0;
  }
}
.p-service__container:last-child {
  padding-bottom: 8.5rem;
}
@media screen and (max-width: 519px) {
  .p-service__container:last-child {
    padding-bottom: 6rem;
  }
}

.p-service__container--reverse {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 519px) {
  .p-service__container--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-service__content {
  width: 100%;
  max-width: 286px;
}
@media screen and (max-width: 959px) {
  .p-service__content {
    max-width: calc(40% - 3rem);
  }
}
@media screen and (max-width: 519px) {
  .p-service__content {
    max-width: none;
  }
}

.p-service__info {
  margin-top: 1rem;
  letter-spacing: 0;
}

.p-service__image {
  width: 60rem;
}
@media screen and (max-width: 959px) {
  .p-service__image {
    width: 60%;
  }
}
@media screen and (max-width: 519px) {
  .p-service__image {
    width: 100%;
  }
}

.p-work {
  margin-top: -7rem;
  padding-top: 7rem;
  width: 100%;
}
@media screen and (max-width: 519px) {
  .p-work {
    margin-top: -5rem;
    padding-top: 5rem;
  }
}

.p-work__obi {
  padding: 7rem 0 9rem;
}
@media screen and (max-width: 519px) {
  .p-work__obi {
    padding: 5rem 0;
  }
}

.p-work__cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #efefef;
  border: solid 1px #c9caca;
  border-radius: 3rem;
  overflow: hidden;
}

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

.p-work__cat-btn {
  width: 25%;
  height: 6rem;
  color: #727171;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
  border-radius: 3rem;
}
@media screen and (max-width: 959px) {
  .p-work__cat-btn {
    height: 5rem;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .p-work__cat-btn {
    height: 4.5rem;
    font-size: 1em;
  }
}
.p-work__cat-btn:hover {
  color: white;
  background: linear-gradient(95deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
}

.p-work__cat-btn--current {
  color: white;
  background: linear-gradient(95deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
}

.p-work__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem 5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 9.6rem;
}
@media screen and (max-width: 959px) {
  .p-work__cards {
    margin-top: 8rem;
    gap: 5rem 3rem;
  }
}
@media screen and (max-width: 519px) {
  .p-work__cards {
    margin-top: 5rem;
    gap: 5rem;
  }
}

.p-work__card {
  width: calc(33.333% - 3.3333333333rem);
}
@media screen and (max-width: 959px) {
  .p-work__card {
    width: calc(50% - 1.5rem);
  }
}
@media screen and (max-width: 519px) {
  .p-work__card {
    width: 100%;
  }
}

.p-work__images .slick-dots {
  bottom: -3rem;
}
.p-work__images .slick-dots li {
  margin: 0 0.4rem;
  width: auto;
  height: auto;
}
.p-work__images .slick-dots li button {
  padding: 0;
  aspect-ratio: 1;
  width: 1.5rem;
  height: auto;
  background: #dcdddd;
  border-radius: 50%;
}
@media screen and (max-width: 959px) {
  .p-work__images .slick-dots li button {
    width: 1.3rem;
  }
}
.p-work__images .slick-dots li button::before {
  display: none;
}
.p-work__images .slick-dots li.slick-active button {
  background: linear-gradient(95deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
}

.p-work__image {
  position: relative;
}
.p-work__image img {
  aspect-ratio: 1283/722;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-work__after,
.p-work__before {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 245/62;
  width: 12.2rem;
  height: auto;
  padding-right: 1.2rem;
  color: white;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.16em;
  text-align: center;
  background-image: url(../images/works/work_label_after.png);
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .p-work__after,
  .p-work__before {
    padding-right: 0.8rem;
    width: 10rem;
    font-size: 1.5rem;
  }
}

.p-work__before {
  background-image: url(../images/works/work_label_before.png);
}

.p-work__body {
  margin-top: 7rem;
}
@media screen and (max-width: 959px) {
  .p-work__body {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .p-work__body {
    margin-top: 5rem;
  }
}
.p-work__body table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.5;
  letter-spacing: 0;
}
.p-work__body table th, .p-work__body table td {
  padding: 0.6rem 0;
  border-bottom: solid 1px #c9caca;
}
.p-work__body table th {
  min-width: 8.6rem;
  font-weight: 400;
  text-align: center;
  vertical-align: top;
  background-color: #eaeef1;
}
@media screen and (max-width: 519px) {
  .p-work__body table th {
    min-width: 7.6rem;
  }
}
.p-work__body table td {
  width: 100%;
  padding-left: 1.5rem;
  font-weight: 500;
}
.p-work__body table tr:last-child th, .p-work__body table tr:last-child td {
  border-bottom: none;
}

.p-privacy__content {
  padding: 5rem 0 6.6rem;
}
@media screen and (max-width: 519px) {
  .p-privacy__content {
    padding: 4rem 0;
  }
}
.p-privacy__content h2 {
  margin-top: 2rem;
}
.p-privacy__content ul, .p-privacy__content ol {
  padding-left: 2.3rem;
}
.p-privacy__content dt {
  display: inline-block;
}
.p-privacy__content dt::after {
  content: "：";
}
.p-privacy__content dd {
  display: inline-block;
}

.p-rec-message__content {
  position: relative;
  padding: 6rem 0 10.8rem;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .p-rec-message__content {
    padding-left: 13.5vw;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-message__content {
    padding: 4rem 0 7rem;
  }
}

.p-rec-message__head {
  display: block;
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.3;
  letter-spacing: 0;
}
.p-rec-message__head::before {
  display: none;
}

.p-rec-message__copy {
  position: absolute;
  top: 4rem;
  left: -5rem;
  font-size: 6.4rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: left;
  line-height: 1.5;
}
@media screen and (max-width: 1240px) {
  .p-rec-message__copy {
    left: -2rem;
  }
}
@media screen and (max-width: 959px) {
  .p-rec-message__copy {
    font-size: 7vw;
    line-height: 1.2;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-message__copy {
    position: initial;
    margin-top: 2rem;
    width: 100%;
    font-size: 8vw;
    text-align: center;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
  }
}

.p-rec-message__message {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 959px) {
  .p-rec-message__message {
    font-size: 1em;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-message__message {
    text-align: justify;
  }
}
.p-rec-message__message p {
  margin-top: 3.4rem;
}

.p-rec-message__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.4rem;
  margin-top: 10rem;
}
@media screen and (max-width: 959px) {
  .p-rec-message__btns {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 760px) {
  .p-rec-message__btns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-message__btns {
    gap: 2rem;
    margin-top: 6rem;
  }
}
.p-rec-message__btns a {
  max-width: 34.5rem;
  height: 5.3rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 959px) {
  .p-rec-message__btns a {
    font-size: 1em;
  }
}
.p-rec-message__btns a::after {
  right: 0.9rem;
  width: 2.3rem;
}
@media screen and (max-width: 340px) {
  .p-rec-message__btns a::after {
    display: none;
  }
}

.p-rec-work__head {
  margin: 8rem auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.p-rec-work__head span {
  margin: 0 auto;
}

.p-rec-work__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
  position: relative;
  margin-top: 8rem;
  padding-left: 3rem;
  line-height: 0.8;
}
@media screen and (max-width: 959px) {
  .p-rec-work__title {
    gap: 2rem;
    margin-top: 6rem;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-work__title {
    gap: 1.5rem;
  }
}
.p-rec-work__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.79rem;
  height: 100%;
  background: linear-gradient(95deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
}
@media screen and (max-width: 519px) {
  .p-rec-work__title::before {
    width: 0.6rem;
  }
}
.p-rec-work__title span:last-child {
  line-height: 1;
}

.p-rec-work__info {
  margin-top: 3.8rem;
  letter-spacing: 0.01em;
}

.p-rec-work__staff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
  margin-top: 3rem;
  width: calc(100% + 8rem);
}
@media screen and (max-width: 1030px) {
  .p-rec-work__staff {
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .p-rec-work__staff {
    gap: 0rem;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-work__staff {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2rem;
  }
}

.p-rec-work__staff--ym {
  gap: 0;
  max-width: 100%;
}
@media screen and (max-width: 519px) {
  .p-rec-work__staff--ym {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.p-rec-work__profile {
  padding: 4rem 9rem;
  aspect-ratio: 1;
  width: 55%;
  max-width: 49rem;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 959px) {
  .p-rec-work__profile {
    padding: 8vw;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-work__profile {
    padding: 2rem 3rem;
    width: 100%;
    border-radius: 10%;
  }
}
.p-rec-work__profile h4 {
  font-size: 2rem;
  line-height: 1.3;
}
@media screen and (max-width: 959px) {
  .p-rec-work__profile h4 {
    font-size: 1.7rem;
  }
}
.p-rec-work__profile h4 span {
  font-size: 1.8em;
}
.p-rec-work__profile div {
  font-size: 1.7rem;
}
@media screen and (max-width: 959px) {
  .p-rec-work__profile div {
    font-size: 1em;
  }
}
.p-rec-work__profile p {
  margin-top: 0.5rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 959px) {
  .p-rec-work__profile p {
    font-size: 0.9em;
  }
}

.p-rec-work__port {
  width: 45%;
  max-width: 44rem;
}
@media screen and (max-width: 519px) {
  .p-rec-work__port {
    width: 90%;
    -webkit-transform: translateX(12%);
            transform: translateX(12%);
  }
}

@media screen and (max-width: 519px) {
  .p-rec-work__port--ym {
    -webkit-transform: translateX(2%);
            transform: translateX(2%);
  }
}

.p-rec-work__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 959px) {
  .p-rec-work__images {
    gap: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-work__images {
    gap: 0.5rem;
  }
}
.p-rec-work__images img {
  width: calc(33.333% - 2.6666666667rem);
}
@media screen and (max-width: 959px) {
  .p-rec-work__images img {
    width: calc(33.333% - 1.3333333333rem);
  }
}
@media screen and (max-width: 519px) {
  .p-rec-work__images img {
    width: calc(33.333% - 0.3333333333rem);
  }
}

.p-rec-work__terms {
  font-size: 1.8rem;
}
@media screen and (max-width: 959px) {
  .p-rec-work__terms {
    font-size: 1em;
  }
}
.p-rec-work__terms dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4.5rem;
}
@media screen and (max-width: 959px) {
  .p-rec-work__terms dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 3rem;
  }
}
.p-rec-work__terms dl:first-child {
  margin-top: 3rem;
}
.p-rec-work__terms dl dt {
  color: #1b65a9;
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .p-rec-work__terms dl dd {
    width: 100%;
  }
}
.p-rec-work__terms dl dd ul {
  list-style: none;
}
@media screen and (max-width: 519px) {
  .p-rec-work__terms dl dd ul {
    padding-left: 1rem;
  }
}
.p-rec-work__terms dl dd ul li {
  position: relative;
  padding-left: 2rem;
}
@media screen and (max-width: 519px) {
  .p-rec-work__terms dl dd ul li {
    padding-left: 1.5rem;
  }
}
.p-rec-work__terms dl dd ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.p-rec-work__btn {
  display: block;
  margin: 4.5rem auto 0;
  max-width: 32rem;
  height: 6rem;
}
@media screen and (max-width: 519px) {
  .p-rec-work__btn {
    max-width: 34.5rem;
  }
}
.p-rec-work__btn::after {
  display: none;
}

.p-rec-work__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.4rem;
  margin-top: 5.7rem;
}
@media screen and (max-width: 959px) {
  .p-rec-work__btns {
    gap: 1.5rem;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 620px) {
  .p-rec-work__btns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-work__btns {
    gap: 2rem;
    margin-top: 3rem;
  }
}
.p-rec-work__btns a {
  max-width: 34.5rem;
  height: 5.3rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 959px) {
  .p-rec-work__btns a {
    font-size: 1em;
  }
}
.p-rec-work__btns a::after {
  right: 0.9rem;
  width: 2.3rem;
}
@media screen and (max-width: 300px) {
  .p-rec-work__btns a::after {
    display: none;
  }
}

.p-rec-yoko__header {
  margin: 5.5rem auto 0;
  padding: 2.3rem 2rem 2rem;
  width: 100%;
  max-width: 68.3rem;
  text-align: center;
  background-color: #d6dee2;
  border-radius: 10rem;
}
@media screen and (max-width: 519px) {
  .p-rec-yoko__header {
    padding: 2rem 1rem;
    border-radius: 3rem;
  }
}

.p-rec-yoko__title {
  font-size: 2.3rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 959px) {
  .p-rec-yoko__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-yoko__title {
    font-size: 1.9rem;
  }
}
.p-rec-yoko__title span {
  display: block;
  color: #231815;
  font-size: 0.78em;
  font-weight: 500;
}

.p-rec-yoko__btn {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0;
}
@media screen and (max-width: 959px) {
  .p-rec-yoko__btn {
    font-size: 1em;
  }
}
.p-rec-yoko__btn span {
  display: block;
  position: relative;
  margin: 1.5rem auto 0;
  aspect-ratio: 1;
  width: 4rem;
  height: auto;
  background-color: #1b65a9;
  border-radius: 50%;
}
.p-rec-yoko__btn span::before, .p-rec-yoko__btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2rem;
  height: 0.3rem;
  background-color: #fff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.p-rec-yoko__btn span::after {
  width: 0.3rem;
  height: 2rem;
}

.p-rec-yoko__btn--open span::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.p-rec-yoko__btn--open span::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.p-rec-yoko__content {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 2rem;
  -webkit-transition: all ease 1.5s;
  transition: all ease 1.5s;
}

.p-rec-yoko__content--open {
  grid-template-rows: 1fr;
}

.p-rec-yoko__content-wrap {
  overflow: hidden;
}
.p-rec-yoko__content-wrap table {
  width: 100%;
  border-collapse: collapse;
  letter-spacing: 0;
}
.p-rec-yoko__content-wrap table th, .p-rec-yoko__content-wrap table td {
  border-top: solid 1px #9fa0a0;
}
@media screen and (max-width: 519px) {
  .p-rec-yoko__content-wrap table th, .p-rec-yoko__content-wrap table td {
    display: block;
  }
}
.p-rec-yoko__content-wrap table tr:last-child th, .p-rec-yoko__content-wrap table tr:last-child td {
  border-bottom: solid 1px #9fa0a0;
}
@media screen and (max-width: 519px) {
  .p-rec-yoko__content-wrap table tr:last-child th {
    border-bottom: none;
  }
}
.p-rec-yoko__content-wrap table th {
  padding: 1.2rem 1rem;
  width: 16.3rem;
  text-align: center;
  vertical-align: top;
  background-color: #f5f3f2;
}
@media screen and (max-width: 959px) {
  .p-rec-yoko__content-wrap table th {
    width: 14rem;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-yoko__content-wrap table th {
    width: 100%;
  }
}
.p-rec-yoko__content-wrap table td {
  padding: 1.2rem 3rem;
  background-color: #fff;
}
@media screen and (max-width: 959px) {
  .p-rec-yoko__content-wrap table td {
    padding: 1.2rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-yoko__content-wrap table td {
    padding: 1.2rem 1rem;
    border: none;
  }
}
.p-rec-yoko__content-wrap table td em {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 2.5rem;
  font-style: normal;
  font-weight: bold;
  background-color: #f5f3f2;
  border-radius: 2rem;
}

.p-rec-yoko__border {
  margin: 2rem 0;
  width: 85%;
  height: 0.1rem;
  background-color: #c9caca;
}

.p-bene-fe__obi-inner {
  max-width: 110rem;
}

.p-bene-fe__content {
  padding: 5rem 0;
}
@media screen and (max-width: 519px) {
  .p-bene-fe__content {
    padding: 3rem 0;
  }
}

.p-bene-fe__head {
  margin: 0 auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}
.p-bene-fe__head span {
  margin: 0.7rem auto 0;
}

.p-bene-fe__info {
  margin: 2rem auto 0;
  max-width: 92rem;
  font-weight: 500;
}

.p-bene-fe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1.5fr 1fr 1fr 0.5fr 0.5fr 1fr 1fr;
  gap: 0.8rem;
  margin-top: 4rem;
}
@media screen and (max-width: 959px) {
  .p-bene-fe__grid {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-bene-fe__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.3rem;
    margin-top: 3rem;
  }
}

.p-bene-fe__grid-item {
  position: relative;
  padding: 1rem 0.4rem 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.4;
  background-color: #eaeef1;
}
@media screen and (max-width: 519px) {
  .p-bene-fe__grid-item {
    min-height: 15rem;
  }
}
.p-bene-fe__grid-item h3 {
  padding-bottom: 1.3rem;
  font-size: 2.6rem;
  color: #1b65a9;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .p-bene-fe__grid-item h3 {
    padding-bottom: 0.5rem;
    font-size: 2.7vw;
  }
}
@media screen and (max-width: 519px) {
  .p-bene-fe__grid-item h3 {
    font-size: 5vw;
  }
}
.p-bene-fe__grid-item h3 em {
  font-style: normal;
  font-size: 1.55em;
}
.p-bene-fe__grid-item small {
  display: block;
  margin-top: 1rem;
  font-size: 1em;
}
@media screen and (max-width: 959px) {
  .p-bene-fe__grid-item small {
    font-size: 0.9em;
  }
}
.p-bene-fe__grid-item:nth-child(1) {
  padding-top: 3.5rem;
}
@media screen and (max-width: 959px) {
  .p-bene-fe__grid-item:nth-child(1) {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-bene-fe__grid-item:nth-child(1) {
    padding-top: 1rem;
  }
}
.p-bene-fe__grid-item:nth-child(1) img {
  margin-top: -7rem;
  padding: 0 3.5rem 1.5rem;
}
@media screen and (max-width: 959px) {
  .p-bene-fe__grid-item:nth-child(1) img {
    margin-top: -5.6vw;
  }
}
@media screen and (max-width: 519px) {
  .p-bene-fe__grid-item:nth-child(1) img {
    padding: 0 1rem;
    margin-top: -5vw;
  }
}
.p-bene-fe__grid-item:nth-child(2) {
  padding-top: 3.5rem;
}
@media screen and (max-width: 959px) {
  .p-bene-fe__grid-item:nth-child(2) {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-bene-fe__grid-item:nth-child(2) {
    padding-top: 1rem;
  }
}
.p-bene-fe__grid-item:nth-child(2) img {
  margin: 0.5rem auto 1rem;
  width: auto;
  height: 12rem;
  -webkit-transform: translateX(20%);
          transform: translateX(20%);
}
@media screen and (max-width: 959px) {
  .p-bene-fe__grid-item:nth-child(2) img {
    width: 60%;
    height: auto;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (max-width: 519px) {
  .p-bene-fe__grid-item:nth-child(2) img {
    margin: 0.5rem auto 0;
    width: 40%;
  }
}
.p-bene-fe__grid-item:nth-child(3) {
  -ms-flex-line-pack: center;
      align-content: center;
}
.p-bene-fe__grid-item:nth-child(4) img {
  margin-top: 0.5rem;
  width: 23%;
}
@media screen and (max-width: 959px) {
  .p-bene-fe__grid-item:nth-child(4) img {
    margin-top: 1rem;
  }
}
.p-bene-fe__grid-item:nth-child(5) img {
  margin-top: 0.3rem;
  width: 26%;
}
@media screen and (max-width: 959px) {
  .p-bene-fe__grid-item:nth-child(5) img {
    width: 20%;
  }
}
.p-bene-fe__grid-item:nth-child(5) small {
  font-size: 0.88em;
}
.p-bene-fe__grid-item:nth-child(6) img {
  width: 50%;
  -webkit-transform: translateX(15%);
          transform: translateX(15%);
}
@media screen and (max-width: 959px) {
  .p-bene-fe__grid-item:nth-child(6) img {
    margin-top: 1rem;
  }
}
.p-bene-fe__grid-item:nth-child(7) {
  padding-top: 2rem;
}
@media screen and (max-width: 519px) {
  .p-bene-fe__grid-item:nth-child(7) {
    padding-top: 1rem;
  }
}
.p-bene-fe__grid-item:nth-child(7) img {
  width: 63%;
  -webkit-transform: translateX(-12%);
          transform: translateX(-12%);
}
@media screen and (max-width: 519px) {
  .p-bene-fe__grid-item:nth-child(7) img {
    margin-top: 0.5rem;
    width: 75%;
  }
}
.p-bene-fe__grid-item:nth-child(7) small {
  margin-top: 2rem;
}
@media screen and (max-width: 519px) {
  .p-bene-fe__grid-item:nth-child(7) small {
    margin-top: 1rem;
  }
}
.p-bene-fe__grid-item:nth-child(8) img {
  width: 43%;
}
@media screen and (max-width: 959px) {
  .p-bene-fe__grid-item:nth-child(8) img {
    margin-top: 0.5rem;
  }
}
.p-bene-fe__grid-item:nth-child(9) {
  padding-top: 2.5rem;
}
@media screen and (max-width: 959px) {
  .p-bene-fe__grid-item:nth-child(9) {
    padding-top: 5vw;
  }
}
@media screen and (max-width: 519px) {
  .p-bene-fe__grid-item:nth-child(9) {
    padding-top: 1rem;
  }
}
.p-bene-fe__grid-item:nth-child(9) img {
  margin-top: 0.5rem;
  width: 60%;
  -webkit-transform: translateX(-3%);
          transform: translateX(-3%);
}
@media screen and (max-width: 519px) {
  .p-bene-fe__grid-item:nth-child(9) img {
    width: 80%;
  }
}
.p-bene-fe__grid-item:nth-child(10) img {
  width: 66%;
  -webkit-transform: translateX(5%);
          transform: translateX(5%);
}
.p-bene-fe__grid-item:nth-child(11) img {
  margin-top: 1rem;
  width: 25%;
}
@media screen and (max-width: 959px) {
  .p-bene-fe__grid-item:nth-child(11) img {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-bene-fe__grid-item:nth-child(11) img {
    margin-top: 1rem;
  }
}
.p-bene-fe__grid-item:nth-child(12) h3 {
  padding-bottom: 0.2rem;
}
.p-bene-fe__grid-item:nth-child(12) img {
  width: 41%;
}
@media screen and (max-width: 959px) {
  .p-bene-fe__grid-item:nth-child(12) img {
    width: 38%;
  }
}
.p-bene-fe__grid-item:nth-child(12) small {
  margin-top: 0.5rem;
}
.p-bene-fe__grid-item:nth-child(13) img {
  width: 87%;
}

.p-bene-fe__grid-item--big1,
.p-bene-fe__grid-item--big2,
.p-bene-fe__grid-item--big3 {
  grid-column: span 2;
}
@media screen and (max-width: 519px) {
  .p-bene-fe__grid-item--big1,
  .p-bene-fe__grid-item--big2,
  .p-bene-fe__grid-item--big3 {
    grid-column: initial;
  }
}

.p-bene-fe__grid-item--big2,
.p-bene-fe__grid-item--big3 {
  grid-row: span 2;
}
@media screen and (max-width: 519px) {
  .p-bene-fe__grid-item--big2,
  .p-bene-fe__grid-item--big3 {
    grid-column: initial;
  }
}

.p-bene-fe_grid-item--75 {
  grid-row: span 2;
}
@media screen and (max-width: 519px) {
  .p-bene-fe_grid-item--75 {
    grid-column: initial;
  }
}

.p-bene-fe__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5rem;
}
@media screen and (max-width: 519px) {
  .p-bene-fe__card {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
  }
}
.p-bene-fe__card:nth-of-type(2) {
  margin-top: 6rem;
}

.p-bene-fe__card--reverse {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.p-bene-fe__body {
  padding: 0 3rem;
  width: 56%;
  max-width: 59rem;
}
@media screen and (max-width: 959px) {
  .p-bene-fe__body {
    max-width: none;
  }
}
@media screen and (max-width: 519px) {
  .p-bene-fe__body {
    width: 100%;
  }
}
.p-bene-fe__body h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.4;
}
@media screen and (max-width: 959px) {
  .p-bene-fe__body h3 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 519px) {
  .p-bene-fe__body h3 {
    font-size: 6vw;
  }
}
.p-bene-fe__body p {
  margin-top: 1.8rem;
  letter-spacing: 0.01em;
}

.p-bene-fe__image {
  width: 44%;
}
@media screen and (max-width: 519px) {
  .p-bene-fe__image {
    width: 100%;
  }
}

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

.p-bene-qual__content {
  padding-top: 5rem;
}

.p-bene-qual__head {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.p-bene-qual__subtitle {
  margin: 5rem auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 959px) {
  .p-bene-qual__subtitle {
    font-size: 3.2vw !important;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 519px) {
  .p-bene-qual__subtitle {
    margin: 4rem auto 0;
    font-size: 5.2vw !important;
  }
}

.p-bene-qual__qualifications {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem 2.3rem;
  margin-top: 4rem;
  list-style: none;
}
@media screen and (max-width: 959px) {
  .p-bene-qual__qualifications {
    gap: 1rem;
  }
}
@media screen and (max-width: 519px) {
  .p-bene-qual__qualifications {
    gap: 0.5rem;
    margin-top: 3rem;
  }
}
.p-bene-qual__qualifications li {
  padding: 1.1rem;
  width: calc(33.333% - 1.5333333333rem);
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #1b65a9;
  background-color: #eaeef1;
}
@media screen and (max-width: 959px) {
  .p-bene-qual__qualifications li {
    padding: 1rem 0.5rem;
    width: calc(33.333% - 0.6666666667rem);
    font-size: 2.2vw;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 519px) {
  .p-bene-qual__qualifications li {
    width: calc(50% - 0.25rem);
    font-size: 4vw;
  }
}
.p-bene-qual__qualifications li.p-bene-qul__caution {
  padding: 0;
  font-size: 1em;
  font-weight: 400;
  text-align: left;
  -ms-flex-line-pack: end;
      align-content: end;
  color: #231815;
  line-height: 1;
  background-color: transparent;
}
@media screen and (max-width: 959px) {
  .p-bene-qual__qualifications li.p-bene-qul__caution {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 519px) {
  .p-bene-qual__qualifications li.p-bene-qul__caution {
    width: 100%;
    font-size: 1em;
  }
}

/* utility
------------------------------------------------ */
.u-fs122 {
  font-size: 12.2rem;
}
@media screen and (max-width: 959px) {
  .u-fs122 {
    font-size: 14vw;
  }
}
@media screen and (max-width: 519px) {
  .u-fs122 {
    font-size: 21vw;
  }
}

.u-fs88 {
  font-size: 8.8rem;
}
@media screen and (max-width: 959px) {
  .u-fs88 {
    font-size: 9.5vw;
  }
}
@media screen and (max-width: 519px) {
  .u-fs88 {
    font-size: 15vw;
  }
}

.u-fs64 {
  font-size: 6.4rem;
}
@media screen and (max-width: 959px) {
  .u-fs64 {
    font-size: 7.5vw;
  }
}
@media screen and (max-width: 519px) {
  .u-fs64 {
    font-size: 12vw;
  }
}

.u-fs60 {
  font-size: 6rem;
}

.u-fs52 {
  font-size: 5.2rem;
}
@media screen and (max-width: 959px) {
  .u-fs52 {
    font-size: 5.6vw;
  }
}
@media screen and (max-width: 519px) {
  .u-fs52 {
    font-size: 10.35vw;
  }
}

.u-fs40 {
  font-size: 4rem;
}
@media screen and (max-width: 959px) {
  .u-fs40 {
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 519px) {
  .u-fs40 {
    font-size: 8.7vw;
  }
}

.u-fs38 {
  font-size: 3.8rem;
}
@media screen and (max-width: 959px) {
  .u-fs38 {
    font-size: 4.6vw;
  }
}
@media screen and (max-width: 519px) {
  .u-fs38 {
    font-size: 8.5vw;
  }
}

.u-fs35 {
  font-size: 3.5rem;
}
@media screen and (max-width: 959px) {
  .u-fs35 {
    font-size: 4.3vw;
  }
}
@media screen and (max-width: 519px) {
  .u-fs35 {
    font-size: 8vw;
  }
}

.u-fs33 {
  font-size: 3.3rem;
}
@media screen and (max-width: 959px) {
  .u-fs33 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 519px) {
  .u-fs33 {
    font-size: 7.2vw;
  }
}

.u-fs28 {
  font-size: 2.8rem;
}
@media screen and (max-width: 959px) {
  .u-fs28 {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 519px) {
  .u-fs28 {
    font-size: 6vw;
  }
}

.u-fs27 {
  font-size: 2.7rem;
}
@media screen and (max-width: 959px) {
  .u-fs27 {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 519px) {
  .u-fs27 {
    font-size: 5.7vw;
  }
}

.u-fs26 {
  font-size: 2.6rem;
}
@media screen and (max-width: 959px) {
  .u-fs26 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 519px) {
  .u-fs26 {
    font-size: 5.5vw;
  }
}

.u-fs21 {
  font-size: 2.1rem;
}
@media screen and (max-width: 959px) {
  .u-fs21 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 519px) {
  .u-fs21 {
    font-size: 4.5vw;
  }
}

.u-fs20 {
  font-size: 2rem;
}
@media screen and (max-width: 959px) {
  .u-fs20 {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 519px) {
  .u-fs20 {
    font-size: 4.4vw;
  }
}

.u-grad {
  background: linear-gradient(95deg, rgb(27, 101, 169) 0%, rgb(31, 161, 160) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.u-cBlue {
  color: #1b65a9;
}

.u-cWhite {
  color: white;
}

.u-ls50 {
  letter-spacing: 0.05em;
}

.u-ls0 {
  letter-spacing: 0;
}

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

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