@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Robogo:wght@400;500&display=swap");
:root {
  --body-color: #fff;
  --font-color: #333;
  --link-color: #0000ff;
  --primary-color: #0000ff;
  --secondary-color: #0000ff;
  --font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3",
      "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --base-fontsize: 1.6rem;
  --base-fontsize--sp: 1.2rem;
  --base-fontweight: 500;
  --container-width: 1180px;
  --container-narrow-width: 980px;
  --header-height: 100px;
  --header-height--sp: 60px;
  --border-color: #cfcfcf;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

img {
  vertical-align: middle;
}

input, select {
  vertical-align: middle;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

img,
iframe {
  vertical-align: bottom;
}

input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  font-family: var(--font-family);
  font-size: var(--base-fontsize);
  margin: 0;
  padding: 0;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: var(--base-fontsize);
  margin: 0;
  padding: 0;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: var(--base-fontsize);
  margin: 0;
  padding: 0;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.pc-block {
  display: block;
}

.pc-inline {
  display: inline;
}

.pc-inline-block {
  display: inline-block;
}

.pc-table {
  display: table;
}

.sp-block {
  display: none;
}

.sp-inline {
  display: none;
}

.sp-inline-block {
  display: none;
}

.sp-table {
  display: none;
}

html {
  color: var(--font-color);
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  background-color: var(--body-color);
  color: var(--font-color);
  font-family: var(--font-family);
  font-feature-settings: "palt";
  font-size: var(--base-fontsize);
  font-weight: var(--base-fontweight);
  line-break: strict;
  line-height: 2;
  overflow-wrap: anywhere;
  padding-top: var(--header-height);
  position: relative;
  width: 100%;
  word-break: normal;
}

a,
button {
  color: var(--link-color);
  transition: opacity 0.2s ease-in-out;
}
iframe {
  vertical-align: bottom;
}

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

/*
ここから header
*/

.header {
  background-color: rgba(204, 204, 204, 0.7);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.header__inner {
  align-items: center;
  background-color: #fff;
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  padding-inline: 50px;
}
.header__title {
  width: 227px;
}
.header__nav-list {
  align-items: center;
  display: flex;
}
.header__nav-list li {
  margin-left: 3.2em;
}
.header__nav-list li:first-child {
  margin-left: 0;
}
.header__nav-list a {
  color: #333;
  text-decoration: none;
}
.header__btn-mail a {
  padding-left: 1.3em;
  position: relative;
}
.header__btn-mail a:before {
  background-image: url(https://frocon.info/wp/wp-content/themes/frocon/assets/img/common/ico-mail.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 25px;
  left: 7px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 25px;
}
.header__btn-tel {
  margin-left: 10px !important;
}
.header__btn-tel a {
  padding-left: 1.3em;
  position: relative;
}
.header__btn-tel a:before {
  background-image: url(https://frocon.info/wp/wp-content/themes/frocon/assets/img/common/ico-tel.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 25px;
  left: 7px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 25px;
}


.burger-btn {
  align-items: center;
  border-left: 0;
  border-right: 0;
  display: none;
  height: 37px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  text-align: right;
  width: 37px;
  z-index: 4000;
}

.menu-trigger,
.menu-trigger span {
  box-sizing: border-box;
  display: inline-block;
  transition: all 0.4s;
}

.menu-trigger {
  display: block;
  height: 13px;
  position: relative;
  width: 22px;
}

.menu-trigger span {
  background-color: #000;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 6px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
  left: 0;
  width: 15px;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(5.5px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  animation: active-menu-bar02 0.8s forwards;
  left: 50%;
  opacity: 0;
}

@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-6.5px) rotate(45deg);
  width: 100%;
}

@media screen and (max-width: 1080px){
  .header__nav {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    height: 100svh;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all 0.2s ease-out;
    visibility: hidden;
    width: 100%;
  }
  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width: 1070px){
  .header__nav-list {
    display: block;
    text-align: center;
  }
  .header__nav-list li {
    font-size: 2rem;
    margin-bottom: 1em;
    margin-left: 0;
  }
  .header__btn-tel {
    margin-left: 0 !important;
  }
  .burger-btn {
    display: flex;
    right: 30px;
    top: 30px;
  }
}


@media screen and (max-width: 576px){

body {
    font-size: var(--base-fontsize--sp);
    padding-top: var(--header-height--sp);
}
html {
    scroll-padding-top: var(--header-height--sp);
}
body {
    font-size: var(--base-fontsize--sp);
    padding-top: var(--header-height--sp);
}
.header__inner {
    height: var(--header-height--sp);
    padding-inline: 17px;
}
.burger-btn {
    right: 15px;
    top: 11px;
}

}

@media (hover: hover){
  /* リンクの場合 */
  a:-moz-any-link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  a:any-link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  /* ボタンの場合 */
  button:enabled:hover {
    opacity: 0.7;
  }
  /* 特定できない場合 */
  .btn:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .btn:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
/*
ここまで header
*/

/*
ここから footer
*/

.page-hero-inner, .footer__inner, .footer-contact, .inner, .page-business-item-inner {
  margin-inline: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: calc(var(--container-width) + 60px);
}

.footer {
  background-color: #114477;
  color: #fff;
  text-align: center;
}
.footer__inner {
  padding-bottom: 70px;
  padding-top: 80px;
}
.footer__inner dl {
  margin-bottom: 60px;
}
.footer__inner dt {
  margin-bottom: 40px;
  margin-inline: auto;
  max-width: 315px;
}
.footer__copyright {
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 576px){
  .page-hero-inner, .footer__inner, .footer-contact, .inner, .page-business-item-inner {
    padding-left: 17px;
    padding-right: 17px;
    width: 100%;
  }
}
/*
ここまで footer
*/

/*
ここから visual_main
*/

@keyframes splide-loading {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s infinite linear;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__play {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.visual_main {
  margin-bottom: 150px;
}
.visual_main .visual_main-slide {
  aspect-ratio: 2800/1800;
}
.visual_main .visual_main-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 576px){

  .visual_main {
    margin-bottom: 75px;
  }
}

/*
ここまで visual_main
*/

/*
ここから list_news
*/

.list_news {
  margin-bottom: 200px;
}
.list_news-grid {
  display: grid;
  gap: 0px 0px;
  grid-template-areas: "heads lists" "btn lists";
  grid-template-columns: 1fr 835px;
  grid-template-rows: 1fr 38px;
}
.list_news-grid .heading-1 {
  grid-area: heads;
  margin-bottom: 7em;
  transform: translate(-2px, -10px);
}
.list_news-grid .list_news-lists {
  grid-area: lists;
}
.list_news-grid .list_news-lists li {
  border-bottom: 1px solid #dadada;
}
.list_news-grid .list_news-lists li:first-child {
  border-top: 1px solid #dadada;
}
.list_news-grid .list_news-lists li dl {
  align-items: center;
  display: flex;
  font-size: 2rem;
  line-height: 1.3;
  padding: 30px 23px;
}
.list_news-grid .list_news-lists li dl dt {
  color: #7ca9c8;
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.list_news-grid .list_news-lists li dl dd {
  margin-left: 2em;
}
.list_news-grid .list_news-lists li dl dd a {
  color: #333;
  font-weight: 700;
  text-decoration: none;
}
.list_news-grid .btn-area {
  grid-area: btn;
}

.heading-1 {
  color: #002159;
  font-size: 1.6rem;
  font-weight: 700;
  font-weight: 400;
}
.heading-1:before {
  color: #002159;
  content: attr(data-subtitle);
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 7rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0.08em;
}

/*
ここまで list_news
*/

/*
ここから img_a_left
*/

.img_a_left {
  color: #fff;
  display: grid;
  gap: 0px 60px;
  grid-template-areas: "heads image" "desc image" "btn image";
  grid-template-columns: calc(50% - (100% - var(--container-width)) / 2 - 60px) 1fr;
  grid-template-rows: auto auto 1fr;
  margin-bottom: 239px;
  min-width: var(--container-width);
  padding-left: calc((100% - var(--container-width)) / 2);
  position: relative;
}
.img_a_left .heading-1 {
  color: #fff;
  margin-bottom: 1.8em;
  transform: translate(-2px, -10px);
}
.img_a_left:before {
  background-color: #114477;
  content: "";
  display: block;
  height: 450px;
  left: 0;
  position: absolute;
  top: 90px;
  width: calc(50% + 307px);
  z-index: 5;
}
.img_a_left .heading-1 {
  grid-area: heads;
  padding-top: 60px;
  position: relative;
  z-index: 10;
}

.heading-1 {
  color: #002159;
  font-size: 1.6rem;
  font-weight: 700;
  font-weight: 400;
}
.heading-1:before {
  color: #002159;
  content: attr(data-subtitle);
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 7rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0.08em;
}
.img_a_left .desc {
  font-size: 2rem;
  grid-area: desc;
  margin-bottom: 2.5em;
  position: relative;
  z-index: 10;
}
.img_a_left .image {
  grid-area: image;
  height: 450px;
  padding-right: 50px;
  position: relative;
  z-index: 10;
}
.img_a_left .image figure {
  height: 100%;
  overflow: hidden;
  width: 100%;
}
.img_a_left .image figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
.img_a_left .btn-area {
  grid-area: btn;
  position: relative;
  z-index: 10;
}
.img_a_left.reverse {
  grid-template-areas: "image heads" "image desc" "image btn";
  grid-template-columns: 1fr calc(50% - (100% - var(--container-width) + 120px) / 2);
  padding-left: 0;
  padding-right: calc((100% - var(--container-width)) / 2);
}
.img_a_left.reverse .image {
  grid-area: image;
  padding-left: 50px;
  padding-right: 0;
}
.img_a_left.reverse:before {
  left: auto;
  right: 0;
}
/*
ここまで img_a_left
*/

/*
ここから img_a_right
*/

.img_a_right {
  color: #fff;
  display: grid;
  gap: 0px 60px;
  grid-template-areas: "heads image" "desc image" "btn image";
  grid-template-columns: calc(50% - (100% - var(--container-width)) / 2 - 60px) 1fr;
  grid-template-rows: auto auto 1fr;
  margin-bottom: 239px;
  min-width: var(--container-width);
  padding-left: calc((100% - var(--container-width)) / 2);
  position: relative;
}
.img_a_right .heading-1 {
  color: #fff;
  margin-bottom: 1.8em;
  transform: translate(-2px, -10px);
}
.img_a_right:before {
  background-color: #114477;
  content: "";
  display: block;
  height: 450px;
  left: 0;
  position: absolute;
  top: 90px;
  width: calc(50% + 307px);
  z-index: 5;
}
.img_a_right .heading-1 {
  grid-area: heads;
  padding-top: 60px;
  position: relative;
  z-index: 10;
}

.heading-1 {
  color: #002159;
  font-size: 1.6rem;
  font-weight: 700;
  font-weight: 400;
}
.heading-1:before {
  color: #002159;
  content: attr(data-subtitle);
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 7rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0.08em;
}
.img_a_right .desc {
  font-size: 2rem;
  grid-area: desc;
  margin-bottom: 2.5em;
  position: relative;
  z-index: 10;
}
.img_a_right .image {
  grid-area: image;
  height: 450px;
  padding-right: 50px;
  position: relative;
  z-index: 10;
}
.img_a_right .image figure {
  height: 100%;
  overflow: hidden;
  width: 100%;
}
.img_a_right .image figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
.img_a_right .btn-area {
  grid-area: btn;
  position: relative;
  z-index: 10;
}
.img_a_right.reverse {
  grid-template-areas: "image heads" "image desc" "image btn";
  grid-template-columns: 1fr calc(50% - (100% - var(--container-width) + 120px) / 2);
  padding-left: 0;
  padding-right: calc((100% - var(--container-width)) / 2);
}
.img_a_right.reverse .image {
  grid-area: image;
  padding-left: 50px;
  padding-right: 0;
}
.img_a_right.reverse:before {
  left: auto;
  right: 0;
}
/*
ここまで img_a_right
*/

/*
ここから img_a_center
*/

.img_a_center {
  background-image: url(https://xs003483.xsrv.jp/wp/wp-content/themes/lifeshop/assets/img/home/bg-recruit.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}
.img_a_center .inner, .img_a_center .page-business-item-inner {
  padding-bottom: 105px;
  padding-top: 95px;
}
.img_a_center .heading-1 {
  color: #fff;
  margin-bottom: 2.5em;
  text-align: center;
}
.img_a_center .heading-1:before {
  color: #fff;
}
.img_a_center .desc {
  font-size: 2rem;
  margin-bottom: 2.5em;
}

@media screen and (max-width: 576px){

  .img_a_center .inner, .img_a_center .page-business-item-inner {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .img_a_center .desc {
    font-size: 1.8rem;
  }
}

/*
ここまで img_a_center
*/

/*
ここから img_b_right
*/

.page-hero-inner, .footer__inner, .footer-contact, .inner, .page-business-item-inner {
  margin-inline: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: calc(var(--container-width) + 60px);
}

.img_b_right {
  align-items: flex-end;
  display: flex;
  margin-bottom: 150px;
  padding-top: 80px;
}
.img_b_right-text {
  flex-shrink: 0;
  width: 50%;
}
.img_b_right-text p {
  font-size: 2rem;
  margin-block: calc((1em - 1lh) / 2);
}
.img_b_right-text p.signature {
  margin-top: 2rem;
  text-align: right;
}
.img_b_right-image {
  padding-left: 100px;
}
.img_b_right-image figure {
  aspect-ratio: 980/1180;
}
.img_b_right-image figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.img_b_right-ttl {
  font-size: 3rem;
  margin-bottom: 0.8em;
}
.img_b_right-ttl:before {
  content: attr(data-subtitle);
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 9rem;
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.8em;
}


@media screen and (max-width: 576px){
  .img_b_right {
    display: block;
    margin-bottom: 100px;
  }
  .img_b_right-text {
    margin-bottom: 60px;
    width: 100%;
  }
  .img_b_right-image {
    padding-left: 0;
  }
  .img_b_right-ttl:before {
    font-size: 6rem;
  }
}
/*
ここまで img_b_right
*/

/*
ここから table_company
*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.page-hero-inner, .footer__inner, .footer-contact, .inner, .page-business-item-inner {
  margin-inline: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: calc(var(--container-width) + 60px);
}
section.page-business {
    display: block;
}

.table_company-ttl {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.7em;
}
.table_company-ttl:before {
  content: attr(data-subtitle);
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 9rem;
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.9em;
}
.table_company-ttl.center {
  text-align: center;
}
.table_company-ttl.white {
  color: #fff;
}

.table_company {
  background-color: #114477;
  border-bottom: 1px solid #fff;
  color: #fff;
}
.table_company:nth-child(even) {
  background-color: #114477;
}
.table_company .inner, .table_company .page-business-item-inner {
  padding-block: 90px 100px;
}
.table_company table {
  font-size: 2rem;
  text-align: left;
  width: 100%;
}
.table_company table tr {
  border: 1px solid #a7a7a7;
  border-inline: 0;
}
.table_company table th {
  font-weight: 400;
  padding-left: 0.8em;
  width: 360px;
}
.table_company table th,
.table_company table td {
  padding-block: 0.9em;
}
.table_company table th a,
.table_company table td a {
  color: #fff;
}

.js-scroll {
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.1, 0.55, 0.7, 0.96);
}
.js-scroll.js-scroll-left {
  transform: translate(30px, 0);
}
.js-scroll.js-scroll-right {
  transform: translate(-30px, 0);
}
.js-scroll.js-scroll-bottom {
  transform: translate(0, 30px);
}
.js-scroll.on {
  opacity: 1;
  transform: translate(0, 0px);
}

@media screen and (max-width: 576px){
  .table_company-ttl {
    font-size: 2rem;
  }
  .table_company-ttl:before {
    font-size: 5rem;
  }
  .table_company table {
    font-size: 1.6rem;
  }
  .table_company table th {
    padding-left: 0em;
    width: 100%;
  }
  .table_company table th,
  .table_company table td {
    display: block;
    padding-block: 0.5em;
  }
  .table_company table tbody th {
    padding-bottom: 0;
  }
  .table_company table tbody td {
    padding-top: 0;
  }
}

/*
ここまで table_company
*/

/*
ここから table_history
*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.page-hero-inner, .footer__inner, .footer-contact, .inner, .page-business-item-inner {
  margin-inline: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: calc(var(--container-width) + 60px);
}
section.page-business {
    display: block;
}

.table_history-ttl {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.7em;
}
.table_history-ttl:before {
  content: attr(data-subtitle);
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 9rem;
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.9em;
}
.table_history-ttl.center {
  text-align: center;
}
.table_history-ttl.white {
  color: #fff;
}

.table_history {
  background-color: #114477;
  border-bottom: 1px solid #fff;
  color: #fff;
}
.table_history:nth-child(even) {
  background-color: #114477;
}
.table_history .inner, .table_history .page-business-item-inner {
  padding-block: 90px 100px;
}
.table_history table {
  font-size: 2rem;
  text-align: left;
  width: 100%;
}
.table_history table tr {
  border: 1px solid #a7a7a7;
  border-inline: 0;
}
.table_history table th {
  font-weight: 400;
  padding-left: 0.8em;
  width: 360px;
}
.table_history table th,
.table_history table td {
  padding-block: 0.9em;
}
.table_history table th a,
.table_history table td a {
  color: #fff;
}

.js-scroll {
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.1, 0.55, 0.7, 0.96);
}
.js-scroll.js-scroll-left {
  transform: translate(30px, 0);
}
.js-scroll.js-scroll-right {
  transform: translate(-30px, 0);
}
.js-scroll.js-scroll-bottom {
  transform: translate(0, 30px);
}
.js-scroll.on {
  opacity: 1;
  transform: translate(0, 0px);
}

@media screen and (max-width: 576px){
  .table_history-ttl {
    font-size: 2rem;
  }
  .table_history-ttl:before {
    font-size: 5rem;
  }
  .table_history table {
    font-size: 1.6rem;
  }
  .table_history table th {
    padding-left: 0em;
    width: 100%;
  }
  .table_history table th,
  .table_history table td {
    display: block;
    padding-block: 0.5em;
  }
  .table_history table tbody th {
    padding-bottom: 0;
  }
  .table_history table tbody td {
    padding-top: 0;
  }
}

/*
ここまで table_table
*/

/*
ここから txt_privacy
*/

.txt_policy {
  padding-top: 130px;
}
.txt_policy_child {
  padding-top: 20px;
}
.page-hero-inner, .footer__inner, .footer-contact, .inner, .page-business-item-inner {
  margin-inline: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: calc(var(--container-width) + 60px);
}
.c-ttl {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.7em;
}
.c-ttl:before {
  content: attr(data-subtitle);
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 9rem;
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.9em;
}
.c-ttl.center {
  text-align: center;
}
.c-ttl.white {
  color: #fff;
}
.txt_policy-scroll {
    width:100%;
    height:350px;
    border:1px solid #cccccc;
    overflow-y:scroll;
    padding:30px;
}

@media screen and (max-width: 576px){
  .c-ttl {
    font-size: 2rem;
  }
  .c-ttl:before {
    font-size: 5rem;
  }
}
/*
ここまで txt_privacy
*/

/*
ここから visual_sub
*/

.visual_sub-inner, .footer__inner, .footer-contact, .inner, .page-business-item-inner {
  margin-inline: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: calc(var(--container-width) + 60px);
}
.visual_sub {
  background-color: #114477;
  margin-bottom: 100px;
}
.visual_sub-inner {
  align-items: center;
  display: flex;
  height: 255px;
  justify-content: center;
  position: relative;
}
.visual_sub-inner:before {
  background-image: url(./assets/img/common/hero-obj.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 459px;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(0, calc(-50% + 20px));
  width: 837px;
}
.visual_sub-ttl {
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
.visual_sub-ttl:before {
  content: attr(data-subtitle);
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 7rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.05em;
}

@media screen and (max-width: 576px){
  .visual_sub-inner, .footer__inner, .footer-contact, .inner, .page-business-item-inner {
    padding-left: 17px;
    padding-right: 17px;
    width: 100%;
  }
  .visual_sub {
    margin-bottom: 50px;
  }
  .visual_sub-inner {
    height: 180px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .visual_sub-ttl:before {
    font-size: 4rem;
  }
}

/*
ここまで visual_sub
*/

/*
ここから menu
*/

.menu ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.menu ul a {
  border: 1px solid #033f88;
  border-radius: 100vw;
  color: #033f88;
  display: block;
  min-width: 175px;
  padding: 0.1em 1.1em;
  text-align: center;
  text-decoration: none;
}

@media screen and (max-width: 576px){
  .menu ul a {
    min-width: calc((100vw - 60px) / 2);
  }
}
/*
ここまで menu
*/

/*
ここから img_column1
*/

.img_column1 {
  margin-block: 80px 150px;
  padding-inline: 50px;
}
.img_column1-inner {
  align-items: center;
  background-image: url(https://frocon.info/wp/wp-content/themes/frocon/assets/img/business/bg-hero.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 635px;
  justify-content: center;
  text-align: center;
}
.img_column1-inner h3 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6666666667;
}



@media screen and (max-width: 576px){

  .img_column1 {
    margin-block: 50px 70px;
    padding-inline: 0;
  }
  .img_column1-inner {
    height: 300px;
    padding-inline: 17px;
  }
  .img_column1-inner h3 {
    font-size: 2rem;
  }
}

/*
ここまで img_column1
*/

/*
ここから レスポンシブ
*/

@media screen and (max-width: 1080px){
  .header__nav {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    height: 100svh;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all 0.2s ease-out;
    visibility: hidden;
    width: 100%;
  }
  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width: 1070px){
  .header__nav-list {
    display: block;
    text-align: center;
  }
  .header__nav-list li {
    font-size: 2rem;
    margin-bottom: 1em;
    margin-left: 0;
  }
  .header__btn-tel {
    margin-left: 0 !important;
  }
  .burger-btn {
    display: flex;
    right: 30px;
    top: 30px;
  }
}

@media screen and (max-width: 576px){
  input,
  textarea {
    font-size: var(--base-fontsize--sp);
  }
  select {
    font-size: var(--base-fontsize--sp);
  }
  button {
    font-size: var(--base-fontsize--sp);
  }
  .pc-block {
    display: none;
  }
  .pc-inline {
    display: none;
  }
  .pc-inline-block {
    display: none;
  }
  .pc-table {
    display: none;
  }
  .sp-block {
    display: block;
  }
  .sp-inline {
    display: inline;
  }
  .sp-inline-block {
    display: inline-block;
  }
  .sp-table {
    display: table;
  }
  html {
    scroll-padding-top: var(--header-height--sp);
  }
  body {
    font-size: var(--base-fontsize--sp);
    padding-top: var(--header-height--sp);
  }
  .header__inner {
    height: var(--header-height--sp);
    padding-inline: 17px;
  }
  .burger-btn {
    right: 15px;
    top: 11px;
  }
  .visual_sub-inner, .footer__inner, .contact, .inner, .img_column2-inner, .img_column3-inner, .img_showcase-inner {
    padding-left: 17px;
    padding-right: 17px;
    width: 100%;
  }
  .narrow-inner {
    padding-left: 17px;
    padding-right: 17px;
    width: 100%;
  }
  .page-recruit .page-recruit-daily-lists {
    padding-left: 17px;
    padding-right: 17px;
    width: 100%;
  }
  .contact {
    gap: 30px;
    grid-template-columns: 1fr;
    padding-top: 100px;
  }
  .contact-box p {
    font-size: 1.8rem;
  }
  .contact-box.tel dt {
    font-size: 4rem;
  }
  .contact-box dt {
    font-size: 3rem;
  }
  .contact-box dd {
    font-size: 1.5rem;
  }
  .footer__inner {
    display: block;
    padding-bottom: 40px;
    padding-top: 40px;
  }
  input[type=text],
  input[type=email],
  input[type=password] {
    height: 45px;
  }
  input[type=file] {
    min-width: 1px;
    width: 100%;
  }
  .form-select {
    max-width: 180px;
  }
  .form-select select {
    border-radius: 3px;
    font-size: 1.2rem;
    padding: 11px 30px 11px 20px;
  }
  .visual_sub {
    margin-bottom: 50px;
  }
  .visual_sub-inner {
    height: 180px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .visual_sub-ttl:before {
    font-size: 4rem;
  }
  .pager {
    margin-top: 40px;
  }
  .pager ul li a,
  .pager ul li span {
    height: 30px;
    width: 30px;
  }
  .heading-1:before {
    font-size: 4rem;
    margin-right: 0.3em;
    transform: translate(0, 2px);
  }
  .heading-1 {
    font-size: 1.3rem;
  }

  .table_history-ttl {
    font-size: 2rem;
  }
  .table_history-ttl:before {
    font-size: 5rem;
  }

  .table_company-ttl {
    font-size: 2rem;
  }
  .table_company-ttl:before {
    font-size: 5rem;
  }

  .title_sub {
    font-size: 2rem;
  }
  .title_sub:before {
    font-size: 5rem;
  }

  .c-ttl {
    font-size: 2rem;
  }
  .c-ttl:before {
    font-size: 5rem;
  }



  .table_history table {
    font-size: 1.6rem;
  }
  .table_history table th {
    padding-left: 0em;
    width: 100%;
  }
  .table_history table th,
  .table_history table td {
    display: block;
    padding-block: 0.5em;
  }
  .table_history table tbody th {
    padding-bottom: 0;
  }
  .table_history table tbody td {
    padding-top: 0;
  }

  .table_company table {
    font-size: 1.6rem;
  }
  .table_company table th {
    padding-left: 0em;
    width: 100%;
  }
  .table_company table th,
  .table_company table td {
    display: block;
    padding-block: 0.5em;
  }
  .table_company table tbody th {
    padding-bottom: 0;
  }
  .table_company table tbody td {
    padding-top: 0;
  }

  .visual_main {
    margin-bottom: 75px;
  }
  .list_news {
    margin-bottom: 50px;
  }
  .list_news-grid {
    display: block;
  }
  .list_news-grid .heading-1 {
    margin-bottom: 1em;
  }
  .list_news-grid .list_news-lists {
    margin-bottom: 3em;
  }
  .list_news-grid .list_news-lists li dl {
    display: block;
    font-size: 1.8rem;
    padding: 20px 0px;
  }
  .list_news-grid .list_news-lists li dl dt {
    margin-bottom: 0.5em;
  }
  .list_news-grid .list_news-lists li dl dd {
    margin-left: 0;
  }
  .list_news-grid .btn-area {
    text-align: center;
  }
  .img_a_right {
    display: block;
    margin-bottom: 100px;
    min-width: 1px;
    padding-left: 17px;
    padding-right: 17px;
  }
  .img_a_right .heading-1 {
    transform: translate(0, 5px);
  }
  .img_a_right:before {
    height: 100%;
    top: 30px;
    width: 100%;
  }
  .img_a_right .heading-1 {
    padding-top: 0;
  }
  .img_a_right .desc {
    font-size: 1.6rem;
  }
  .img_a_right .desc br {
    display: none;
  }
  .img_a_right .image {
    height: auto;
    margin-bottom: 4em;
    padding-right: 0;
  }
  .img_a_right .image figure {
    aspect-ratio: 785/450;
    display: block;
    height: auto;
  }
  .img_a_right .btn-area {
    text-align: center;
  }
  .img_a_right.reverse {
    padding-left: 17px;
    padding-right: 17px;
  }
  .img_a_right.reverse .image {
    padding-inline: 0;
  }

  .img_a_left {
    display: block;
    margin-bottom: 100px;
    min-width: 1px;
    padding-left: 17px;
    padding-right: 17px;
  }
  .img_a_left .heading-1 {
    transform: translate(0, 5px);
  }
  .img_a_left:before {
    height: 100%;
    top: 30px;
    width: 100%;
  }
  .img_a_left .heading-1 {
    padding-top: 0;
  }
  .img_a_left .desc {
    font-size: 1.6rem;
  }
  .img_a_left .desc br {
    display: none;
  }
  .img_a_left .image {
    height: auto;
    margin-bottom: 4em;
    padding-right: 0;
  }
  .img_a_left .image figure {
    aspect-ratio: 785/450;
    display: block;
    height: auto;
  }
  .img_a_left .btn-area {
    text-align: center;
  }
  .img_a_left.reverse {
    padding-left: 17px;
    padding-right: 17px;
  }
  .img_a_left.reverse .image {
    padding-inline: 0;
  }

  .img_a_center .inner, .img_a_center .img_column2-inner, .img_a_center .img_column3-inner, .img_a_center .img_showcase-inner {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .img_a_center .desc {
    font-size: 1.8rem;
  }
  .news-lists li dl {
    display: block;
    font-size: 1.8rem;
    padding: 20px 0px;
  }
  .news-lists li dl dt {
    margin-bottom: 0.5em;
  }
  .news-lists li dl dd {
    margin-left: 0;
  }
  .page-news-title {
    padding-inline: 0;
  }
  .page-news-title p {
    font-size: 1.4rem;
  }
  .page-news-title h3 {
    font-size: 2rem;
  }
  .page-news-body {
    font-size: 1.6rem;
    padding-inline: 0;
  }
  .img_column1 {
    margin-block: 50px 70px;
    padding-inline: 0;
  }
  .img_column1-inner {
    height: 300px;
    padding-inline: 17px;
  }
  .img_column1-inner h3 {
    font-size: 2rem;
  }
  .img_column2-inner {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .img_column2-top {
    display: block;
    margin-bottom: 17px;
  }
  .img_column2-top .img_column2-title-area {
    padding-bottom: 0;
    padding-right: 0;
    padding-top: 0;
  }
  .img_column2-top .img_column2-title-area .subttl {
    font-size: 4rem;
    margin-bottom: 0.5em;
    position: static;
  }
  .img_column2-top .img_column2-title-area .desc {
    font-size: 1.8rem;
    margin-bottom: 2em;
  }
  .img_column2-top .img_column2-figure {
    width: 100%;
  }
  .img_column2-thumbs ul {
    gap: 17px;
    grid-template-columns: 1fr;
  }




  .img_column3-inner {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .img_column3-top {
    display: block;
    margin-bottom: 17px;
  }
  .img_column3-top .img_column3-title-area {
    padding-bottom: 0;
    padding-right: 0;
    padding-top: 0;
  }
  .img_column3-top .img_column3-title-area .subttl {
    font-size: 4rem;
    margin-bottom: 0.5em;
    position: static;
  }
  .img_column3-top .img_column3-title-area .desc {
    font-size: 1.8rem;
    margin-bottom: 2em;
  }
  .img_column3-top .img_column3-figure {
    width: 100%;
  }
  .img_column3-thumbs ul {
    gap: 17px;
    grid-template-columns: 1fr;
  }





  .img_showcase-inner {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .img_showcase-top {
    display: block;
    margin-bottom: 17px;
  }
  .img_showcase-top .img_showcase-title-area {
    padding-bottom: 0;
    padding-right: 0;
    padding-top: 0;
  }
  .img_showcase-top .img_showcase-title-area .subttl {
    font-size: 4rem;
    margin-bottom: 0.5em;
    position: static;
  }
  .img_showcase-top .img_showcase-title-area .desc {
    font-size: 1.8rem;
    margin-bottom: 2em;
  }
  .img_showcase-top .img_showcase-figure {
    width: 100%;
  }
  .img_showcase-thumbs ul {
    gap: 17px;
    grid-template-columns: 1fr;
  }


  .menu ul a {
    min-width: calc((100vw - 60px) / 2);
  }
  .img_b_left {
    display: block;
    margin-bottom: 100px;
  }
  .img_b_left-text {
    margin-bottom: 60px;
    width: 100%;
  }
  .img_b_left-image {
    padding-left: 0;
  }
  .img_b_left-ttl:before {
    font-size: 6rem;
  }

  .img_b_right {
    display: block;
    margin-bottom: 100px;
  }
  .img_b_right-text {
    margin-bottom: 60px;
    width: 100%;
  }
  .img_b_right-image {
    padding-left: 0;
  }
  .img_b_right-ttl:before {
    font-size: 6rem;
  }

  .page-recruit-hero {
    margin-block: 50px 0;
  }
  .page-recruit-hero .inner, .page-recruit-hero .img_column2-inner, .page-recruit-hero .img_column3-inner, .page-recruit-hero .img_showcase-inner {
    height: 300px;
  }
  .page-recruit-hero .inner h3, .page-recruit-hero .img_column2-inner h3, .page-recruit-hero .img_column3-inner h3, .page-recruit-hero .img_showcase-inner h3 {
    font-size: 1.8rem;
  }
  .page-recruit-message {
    margin-bottom: 70px;
    padding-top: 100px;
  }
  .page-recruit-message .inner, .page-recruit-message .img_column2-inner, .page-recruit-message .img_column3-inner, .page-recruit-message .img_showcase-inner {
    display: block;
  }
  .page-recruit-message-image {
    margin-bottom: 4em;
    width: 100%;
  }
  .page-recruit-message-image figure figcaption {
    font-size: 6rem;
  }
  .page-recruit-message-text {
    padding-left: 0;
  }
  .page-recruit-message-text dl dt {
    font-size: 2rem;
  }
  .page-recruit-message-text dl dd {
    font-size: 1.4rem;
  }
  .page-recruit .page-recruit-daily {
    padding-top: 50px;
  }
  .page-recruit .page-recruit-daily .c-ttl {
    margin-bottom: 2em;
  }
  .page-recruit .page-recruit-daily-lists {
    padding-inline: 0;
  }
  .page-recruit .page-recruit-daily-lists dl dt {
    padding: 7px;
    width: 160px;
  }
  .page-recruit .page-recruit-daily-lists dl dd {
    padding-left: 0.5em;
  }
  .page-recruit .page-recruit-career .inner, .page-recruit .page-recruit-career .img_column2-inner, .page-recruit .page-recruit-career .img_column3-inner, .page-recruit .page-recruit-career .img_showcase-inner {
    padding-block: 50px;
  }
  .page-recruit .page-recruit-licence {
    display: block;
  }
  .page-recruit .page-recruit-licence .page-recruit-licence-item {
    margin-bottom: 30px;
  }
  .page-recruit .page-recruit-licence .page-recruit-licence-item figcaption {
    min-width: 1px;
    width: 100%;
  }
  .page-recruit .table_company .indeed {
    max-width: 300px;
  }
  .page-recruit .table_history .indeed {
    max-width: 300px;
  }
  .page-contact table th,
  .page-contact table td {
    display: block;
  }
  .page-contact table th {
    font-size: 1.6rem;
    padding: 10px 17px;
    width: 100%;
  }
  .page-contact table td {
    padding: 15px 17px;
  }
}

@media (hover: hover){
  /* リンクの場合 */
  a:-moz-any-link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  a:any-link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  /* ボタンの場合 */
  button:enabled:hover {
    opacity: 0.7;
  }
  /* 特定できない場合 */
  .btn:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .btn:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}

/*
ここまで レスポンシブ
*/











.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-6.5px) rotate(45deg);
  width: 100%;
}

.main {
  position: relative;
  z-index: 10;
}

.narrow-inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: calc(var(--container-narrow-width) + 60px);
}

.page-recruit .page-recruit-daily-lists {
  margin-left: auto;
  margin-right: auto;
  width: var(--container-narrow-width);
}

.footer-contact {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
  padding-top: 200px;
  text-align: center;
}
.footer-contact-box p {
  align-items: center;
  background-color: #ECEFF1;
  border-block: 1px solid #dadada;
  display: flex;
  font-size: 2.3rem;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  padding: 5px;
}
.footer-contact-box.tel img {
  height: auto;
  width: 22px;
}
.footer-contact-box.tel dt {
  font-family: "Roboto", sans-serif;
  font-size: 5rem;
  font-weight: 500;
}
.footer-contact-box.mail img {
  height: auto;
  width: 24px;
}
.footer-contact-box dl {
  border-bottom: 1px solid #dadada;
  padding-bottom: 25px;
  padding-top: 15px;
}
.footer-contact-box dt {
  align-items: center;
  display: flex;
  font-size: 4rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin-bottom: 10px;
  min-height: 66px;
}
.footer-contact-box dt a {
  color: #212529;
  text-decoration: none;
}
.footer-contact-box dd {
  font-size: 2rem;
  line-height: 1.7;
}

input[type=text],
input[type=email],
input[type=password] {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 2rem;
  height: 65px;
  max-width: 500px;
  outline: none;
  transition: box-shadow 0.3s ease-in-out;
  width: 100%;
}
input[type=text]:focus-visible,
input[type=email]:focus-visible,
input[type=password]:focus-visible {
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
}

textarea {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 2rem;
  height: 250px;
  outline: none;
  transition: box-shadow 0.3s ease-in-out;
  width: 100%;
}
textarea:focus-visible {
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
}

input[type=file] {
  background-color: #f1f1f1;
  border: 1px solid rgb(191, 194, 199);
  border-radius: 5px;
  color: rgb(31, 41, 55);
  cursor: pointer;
  min-width: 320px;
  padding-right: 0.5rem;
}

::-webkit-file-upload-button {
  background-color: #f1f1f1;
  border: none;
  border-right: 0;
  color: rgb(31, 41, 55);
  cursor: pointer;
  margin-right: 1rem;
  padding: 2em;
  padding: 1em;
}

::file-selector-button,
::-webkit-file-upload-button {
  background-color: #f1f1f1;
  border: none;
  border-right: 0;
  color: rgb(31, 41, 55);
  cursor: pointer;
  margin-right: 1rem;
  padding: 2em;
  padding: 1em;
}

.form-select {
  max-width: 190px;
  position: relative;
  width: 100%;
}
.form-select:after {
  border-color: #fff transparent transparent transparent;
  border-style: solid;
  border-width: 6px 3px 0 3px;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  width: 0;
}
.form-select select {
  background-color: blueviolet;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  padding: 11px 30px 11px 20px;
  width: 100%;
}

.form-checkbox {
  align-items: center;
  cursor: pointer;
  display: flex;
  position: relative;
}
.form-checkbox input[type=checkbox] {
  border-width: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.form-checkbox input[type=checkbox]:checked + span.form-checkbox-parts {
  display: grid;
  place-items: center;
}
.form-checkbox input[type=checkbox]:checked + span.form-checkbox-parts:after {
  border-bottom: 2px solid #25af01;
  border-left: 2px solid #25af01;
  content: "";
  display: block;
  height: 5px;
  transform: rotate(-45deg);
  width: 10px;
}
.form-checkbox input[type=checkbox]:focus + span.form-checkbox-parts {
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
}
.form-checkbox-parts {
  border: 1px solid #ccc;
  border-radius: 5px;
  display: block;
  height: 20px;
  position: relative;
  width: 20px;
}
.form-checkbox-label {
  padding-left: 0.5em;
}

.wpcf7-list-item {
  display: block;
  margin: 0;
  margin-bottom: 1em !important;
}
.wpcf7-list-item.last {
  margin-bottom: 0 !important;
}
.wpcf7-list-item label {
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 2rem;
  padding-left: 30px;
  position: relative;
}
.wpcf7-list-item label .wpcf7-list-item-label:before {
  background-color: #fff;
  border: 1px solid #c1c1c1;
  border-radius: 100%;
  content: "";
  display: block;
  height: 25px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 25px;
}
.wpcf7-list-item label .wpcf7-list-item-label:after {
  background-color: #212529;
  border: 1px solid #212529;
  border-radius: 100%;
  content: "";
  display: block;
  height: 15px;
  left: 5px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 15px;
}
.wpcf7-list-item label input[type=radio]:checked + span:after {
  opacity: 1;
}

.form-radio {
  align-items: center;
  cursor: pointer;
  display: flex;
  position: relative;
}
.form-radio input[type=radio] {
  border-width: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.form-radio input[type=radio]:checked + span.form-radio-parts {
  display: grid;
  place-items: center;
}
.form-radio input[type=radio]:checked + span.form-radio-parts:after {
  background-color: #25af01;
  border-radius: 100%;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
}
.form-radio input[type=radio]:focus + span.form-radio-parts {
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
}
.form-radio-parts {
  border: 1px solid #ccc;
  border-radius: 100%;
  display: block;
  height: 20px;
  position: relative;
  width: 20px;
}
.form-radio-label {
  padding-left: 0.5em;
}

.form-file::-webkit-file-upload-button {
  background: red;
  border: 0;
  border-radius: 10em;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 16px;
  text-align: center;
}

.form-file::file-selector-button {
  background: red;
  border: 0;
  border-radius: 10em;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 16px;
  text-align: center;
}

.btn-primary, .btn-more, .btn-more--white {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0;
  touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn-primary, .btn-more, .btn-more--white {
  background-color: #114477;
  border-radius: 100vw;
  color: #fff !important;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  min-width: 175px;
  padding: 3px;
  text-align: center;
  text-decoration: none;
}
.btn-primary.btn-primary--large, .btn-primary--large.btn-more, .btn-primary--large.btn-more--white {
  font-size: 2rem;
  font-weight: 700;
  min-width: 300px;
  padding: 0.86em 1em;
}
.btn-primary.btn-primary--large[disabled=disabled], .btn-primary--large[disabled=disabled].btn-more, .btn-primary--large[disabled=disabled].btn-more--white {
  background-image: none;
}
.btn-more, .btn-more--white {
  background-color: #114477;
  position: relative;
}
.btn-more:before, .btn-more--white:before {
  background-image: url(https://frocon.info/wp/wp-content/themes/frocon/assets/img/common/ico-bullet-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 7px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translate(0, -50%);
  width: 13px;
}
.btn-more--white {
  background-color: #fff;
  background-image: none;
  color: #212529 !important;
}
.btn-more--white:before {
  background-image: url(https://frocon.info/wp/wp-content/themes/frocon/assets/img/common/ico-bullet-2.png);
}

.ico-bullet {
  position: relative;
}
.ico-bullet:before {
  background-color: blue;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
  display: inline-block;
  height: 10px;
  vertical-align: middle;
  width: 6px;
}

.page-hero {
  background-color: #114477;
  margin-bottom: 100px;
}
.page-hero-inner {
  align-items: center;
  display: flex;
  height: 255px;
  justify-content: center;
  position: relative;
}
.page-hero-inner:before {
  background-image: url(../img/common/hero-obj.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 459px;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(0, calc(-50% + 20px));
  width: 837px;
}
.page-hero-ttl {
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
.page-hero-ttl:before {
  content: attr(data-subtitle);
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 7rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.05em;
}

.pager {
  margin-top: 44px;
}
.pager ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.pager ul li a,
.pager ul li span {
  align-items: center;
  background-color: #fff;
  border: 1px solid #212529;
  border-radius: 100%;
  color: #212529;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  height: 37px;
  justify-content: center;
  text-decoration: none;
  width: 37px;
}
.pager ul li a:hover,
.pager ul li span:hover {
  background-color: #212529;
  color: #fff;
  opacity: 1;
}

.tab-nav {
  color: #333;
  display: flex;
  gap: 30px;
}
.tab-nav li {
  cursor: pointer;
}
.tab-nav li.on {
  color: DeepSkyBlue;
}
.tab-wrap {
  background: White;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 20px;
}
.tab-content {
  color: #333;
  height: 0;
  opacity: 0;
  padding: 0 0;
  pointer-events: none;
  transform: translateX(-50px);
  transition: transform 0.3s 80ms, opacity 0.3s 80ms;
  width: 100%;
}
.tab-content.on {
  height: auto;
  opacity: 1;
  order: 1;
  pointer-events: auto;
  transform: translateX(50px);
  transform: translateX(0);
}
.tab-content.on ~ .tab-content {
  transform: translateX(50px);
}

.js-accordion-content {
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
}
.home-recruit {
  background-image: url(../img/home/bg-recruit.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}
.home-recruit .inner, .home-recruit .page-business-item-inner {
  padding-bottom: 105px;
  padding-top: 95px;
}
.home-recruit .heading-1 {
  color: #fff;
  margin-bottom: 2.5em;
  text-align: center;
}
.home-recruit .heading-1:before {
  color: #fff;
}
.home-recruit .desc {
  font-size: 2rem;
  margin-bottom: 2.5em;
}

.news-lists {
  grid-area: lists;
}
.news-lists li {
  border-bottom: 1px solid #dadada;
}
.news-lists li:first-child {
  border-top: 1px solid #dadada;
}
.news-lists li dl {
  align-items: center;
  display: flex;
  font-size: 2rem;
  line-height: 1.3;
  padding: 30px 23px;
}
.news-lists li dl dt {
  color: #7ca9c8;
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.news-lists li dl dd {
  margin-left: 2em;
}
.news-lists li dl dd a {
  color: #333;
  font-weight: 700;
  text-decoration: none;
}

.page-news-title {
  border-bottom: 1px solid #b4b4b4;
  padding-bottom: 1.5em;
  padding-inline: 23px;
}
.page-news-title p {
  color: #7ca9c8;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  margin-bottom: 0.1em;
}
.page-news-title h3 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
}
.page-news-body {
  border-bottom: 1px solid #b4b4b4;
  font-size: 2rem;
  padding-bottom: 3em;
  padding-inline: 23px;
  padding-top: 1em;
}
.page-news-body img {
  margin-block: 1em;
}
.page-news-body p {
  margin-bottom: 1.5em;
}
.page-news-pager {
  padding-top: 2em;
  text-align: center;
}

.page-business-hero {
  margin-block: 80px 150px;
  padding-inline: 50px;
}
.page-business-hero-inner {
  align-items: center;
  background-image: url(../img/business/bg-hero.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 635px;
  justify-content: center;
  text-align: center;
}
.page-business-hero-inner h3 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6666666667;
}
.page-business-item {
  background-color: #114477;
  border-bottom: 1px solid #fff;
}
.page-business-item:nth-child(even) {
  background-color: #114477;
}
.page-business-item-inner {
  padding-bottom: 100px;
  padding-top: 100px;
  margin-top: 80px;
}
.page-business-item-top {
  color: #fff;
  display: flex;
  margin-bottom: 80px;
}
.page-business-item-top .page-business-item-title-area {
  flex: 1;
  padding-right: 100px;
  padding-top: 240px;
  position: relative;
}
.page-business-item-top .page-business-item-title-area .subttl {
  font-family: "Roboto", sans-serif;
  font-size: 9rem;
  font-weight: 400;
  left: 0;
  line-height: 1;
  margin-bottom: 1em;
  position: absolute;
  top: 0;
  transform: translate(0, -10px);
  white-space: nowrap;
}
.page-business-item-top .page-business-item-title-area .desc {
  font-size: 2rem;
  line-height: 2;
}
.page-business-item-top .page-business-item-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.6em;
}
.page-business-item-top .page-business-item-figure {
  flex-shrink: 0;
  width: 50%;
}
.page-business-item-top .page-business-item-figure figure {
  aspect-ratio: 1180/900;
}
.page-business-item-top .page-business-item-figure figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.page-business-item-thumbs ul {
  display: grid;
  gap: 27px;
  grid-template-columns: 1fr 1fr 1fr;
}
.page-business-item-thumbs ul li {
  aspect-ratio: 1180/900;
}
.page-business-item-thumbs ul li img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.page-anchor-nav ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.page-anchor-nav ul a {
  border: 1px solid #212529;
  border-radius: 100vw;
  color: #212529;
  display: block;
  min-width: 175px;
  padding: 0.1em 1.1em;
  text-align: center;
  text-decoration: none;
}






.page-company-privacy {
  padding-top: 130px;
}

.page-recruit-hero {
  background-image: url(../img/recruit/bg-hero.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-block: 80px 0;
}
.page-recruit-hero .inner, .page-recruit-hero .page-business-item-inner {
  align-items: center;
  display: flex;
  height: 550px;
  justify-content: center;
  text-align: center;
}
.page-recruit-hero .inner h3, .page-recruit-hero .page-business-item-inner h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
}
.page-recruit-message {
  margin-bottom: 150px;
  padding-top: 150px;
}
.page-recruit-message .inner, .page-recruit-message .page-business-item-inner {
  display: flex;
}
.page-recruit-message-image {
  flex-shrink: 0;
  width: 50%;
}
.page-recruit-message-image figure {
  aspect-ratio: 1180/840;
  position: relative;
}
.page-recruit-message-image figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.page-recruit-message-image figure figcaption {
  font-family: "Roboto", sans-serif;
  font-size: 9rem;
  font-weight: 400;
  left: -5px;
  line-height: 1;
  position: absolute;
  top: -0.65em;
}
.page-recruit-message-text {
  padding-left: 100px;
}
.page-recruit-message-text dl {
  margin-block: calc((1em - 1lh) / 2);
}
.page-recruit-message-text dl dt {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.8em;
}
.page-recruit-message-text dl dd {
  font-size: 2rem;
}
.page-recruit .page-recruit-daily {
  background-image: linear-gradient(90deg, rgb(0, 33, 89) 0%, rgb(188, 231, 248) 100%);
  color: #fff;
  padding-bottom: 100px;
  padding-top: 100px;
}
.page-recruit .page-recruit-daily .c-ttl {
  margin-bottom: 0.3em;
}
.page-recruit .page-recruit-daily-ttlarea {
  text-align: center;
}
.page-recruit .page-recruit-daily-ttlarea p {
  font-size: 2rem;
  margin-bottom: 2.5em;
}
.page-recruit .page-recruit-daily-lists {
  position: relative;
}
.page-recruit .page-recruit-daily-lists:before {
  background-color: rgba(255, 255, 255, 0.2);
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translate(-50%, 0);
  width: 190px;
}
.page-recruit .page-recruit-daily-lists li {
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
}
.page-recruit .page-recruit-daily-lists li:last-child {
  margin-bottom: 0;
}
.page-recruit .page-recruit-daily-lists dl {
  align-items: center;
  background-color: #fff;
  border-radius: 100vw;
  display: flex;
  padding: 10px;
}
.page-recruit .page-recruit-daily-lists dl dt {
  background-image: linear-gradient(90deg, rgb(0, 33, 89) 0%, rgb(188, 231, 248) 100%);
  border-radius: 100vw;
  color: #fff;
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  padding: 10px;
  text-align: center;
  width: 300px;
}
.page-recruit .page-recruit-daily-lists dl dd {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 1.2em;
}
.page-recruit .page-recruit-career .inner, .page-recruit .page-recruit-career .page-business-item-inner {
  padding-block: 100px;
}
.page-recruit .page-recruit-career .inner > p, .page-recruit .page-recruit-career .page-business-item-inner > p {
  font-size: 2rem;
  margin-bottom: 2.5em;
}
.page-recruit .page-recruit-licence {
  display: flex;
  gap: 80px;
}
.page-recruit .page-recruit-licence .page-recruit-licence-item figure {
  aspect-ratio: 1100/730;
  display: block;
  margin-bottom: 1em;
  position: relative;
}
.page-recruit .page-recruit-licence .page-recruit-licence-item figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.page-recruit .page-recruit-licence .page-recruit-licence-item figcaption {
  background-color: #212529;
  bottom: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  left: 0;
  min-width: 335px;
  padding: 0.1em 0.7em;
  position: absolute;
}
.page-recruit .page-recruit-licence .page-recruit-licence-item p {
  font-size: 2rem;
}
.page-recruit .c-table thead th {
  background-color: rgba(255, 255, 255, 0.3);
  text-align: center;
}
.page-recruit .c-table .indeed {
  margin-inline: auto;
  margin-top: 80px;
  padding-bottom: 0;
  width: 340px;
}

.body-recruit .footer-contact {
  padding-top: 100px;
}

.page-contact dl {
  margin-bottom: 3.5em;
}
.page-contact dl dt {
  font-size: 3rem;
  font-weight: 700;
}
.page-contact dl .text {
  font-size: 2rem;
  margin-bottom: 0.3em;
}
.page-contact dl .caution {
  font-size: 1.6rem;
}
.page-contact table {
  text-align: left;
  width: 100%;
}
.page-contact table tr {
  border: 1px solid #a7a7a7;
  border-inline: 0;
}
.page-contact table th,
.page-contact table td {
  vertical-align: top;
}
.page-contact table th {
  background-color: #e8eff6;
  font-size: 2rem;
  font-weight: 400;
  padding: 22px 20px;
  width: 283px;
}
.page-contact table th span {
  background-color: #fff;
  border: 1px solid #d62517;
  border-radius: 5px;
  color: #d62517;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  margin-left: 0.3em;
  padding: 1px 2px;
  transform: translate(0, -2px);
}
.page-contact table td {
  padding: 30px 27.5px 30px 20px;
}
.page-contact span[data-name=radio-title] .wpcf7-list-item {
  display: block;
}
.page-contact .wpcf7-spinner {
  display: block;
  margin-inline: auto;
  margin-top: 30px;
}
.page-contact .g-recaptcha {
  margin-block: 60px 40px;
}
.page-contact .g-recaptcha > div {
  margin-inline: auto;
}

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

@media screen and (max-width: 576px){
  input,
  textarea {
    font-size: var(--base-fontsize--sp);
  }
  select {
    font-size: var(--base-fontsize--sp);
  }
  button {
    font-size: var(--base-fontsize--sp);
  }
  .pc-block {
    display: none;
  }
  .pc-inline {
    display: none;
  }
  .pc-inline-block {
    display: none;
  }
  .pc-table {
    display: none;
  }
  .sp-block {
    display: block;
  }
  .sp-inline {
    display: inline;
  }
  .sp-inline-block {
    display: inline-block;
  }
  .sp-table {
    display: table;
  }

  .narrow-inner {
    padding-left: 17px;
    padding-right: 17px;
    width: 100%;
  }
  .page-recruit .page-recruit-daily-lists {
    padding-left: 17px;
    padding-right: 17px;
    width: 100%;
  }
  .footer-contact {
    gap: 30px;
    grid-template-columns: 1fr;
    padding-top: 100px;
  }
  .footer-contact-box p {
    font-size: 1.8rem;
  }
  .footer-contact-box.tel dt {
    font-size: 4rem;
  }
  .footer-contact-box dt {
    font-size: 3rem;
  }
  .footer-contact-box dd {
    font-size: 1.5rem;
  }
  .footer__inner {
    display: block;
    padding-bottom: 40px;
    padding-top: 40px;
  }
  input[type=text],
  input[type=email],
  input[type=password] {
    height: 45px;
  }
  input[type=file] {
    min-width: 1px;
    width: 100%;
  }
  .form-select {
    max-width: 180px;
  }
  .form-select select {
    border-radius: 3px;
    font-size: 1.2rem;
    padding: 11px 30px 11px 20px;
  }
  .page-hero {
    margin-bottom: 50px;
  }
  .page-hero-inner {
    height: 180px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .page-hero-ttl:before {
    font-size: 4rem;
  }
  .pager {
    margin-top: 40px;
  }
  .pager ul li a,
  .pager ul li span {
    height: 30px;
    width: 30px;
  }
  .heading-1:before {
    font-size: 4rem;
    margin-right: 0.3em;
    transform: translate(0, 2px);
  }
  .heading-1 {
    font-size: 1.3rem;
  }
  .home-news {
    margin-bottom: 50px;
  }
  .home-news-grid {
    display: block;
  }
  .home-news-grid .heading-1 {
    margin-bottom: 1em;
  }
  .home-news-grid .home-news-lists {
    margin-bottom: 3em;
  }
  .home-news-grid .home-news-lists li dl {
    display: block;
    font-size: 1.8rem;
    padding: 20px 0px;
  }
  .home-news-grid .home-news-lists li dl dt {
    margin-bottom: 0.5em;
  }
  .home-news-grid .home-news-lists li dl dd {
    margin-left: 0;
  }
  .home-news-grid .btn-area {
    text-align: center;
  }
  .home-box {
    display: block;
    margin-bottom: 100px;
    min-width: 1px;
    padding-left: 17px;
    padding-right: 17px;
  }
  .home-box .heading-1 {
    transform: translate(0, 5px);
  }
  .home-box:before {
    height: 100%;
    top: 30px;
    width: 100%;
  }
  .home-box .heading-1 {
    padding-top: 0;
  }
  .home-box .desc {
    font-size: 1.6rem;
  }
  .home-box .desc br {
    display: none;
  }
  .home-box .image {
    height: auto;
    margin-bottom: 4em;
    padding-right: 0;
  }
  .home-box .image figure {
    aspect-ratio: 785/450;
    display: block;
    height: auto;
  }
  .home-box .btn-area {
    text-align: center;
  }
  .home-box.reverse {
    padding-left: 17px;
    padding-right: 17px;
  }
  .home-box.reverse .image {
    padding-inline: 0;
  }
  .home-recruit .inner, .home-recruit .page-business-item-inner {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .home-recruit .desc {
    font-size: 1.8rem;
  }
  .news-lists li dl {
    display: block;
    font-size: 1.8rem;
    padding: 20px 0px;
  }
  .news-lists li dl dt {
    margin-bottom: 0.5em;
  }
  .news-lists li dl dd {
    margin-left: 0;
  }
  .page-news-title {
    padding-inline: 0;
  }
  .page-news-title p {
    font-size: 1.4rem;
  }
  .page-news-title h3 {
    font-size: 2rem;
  }
  .page-news-body {
    font-size: 1.6rem;
    padding-inline: 0;
  }
  .page-business-hero {
    margin-block: 50px 70px;
    padding-inline: 0;
  }
  .page-business-hero-inner {
    height: 300px;
    padding-inline: 17px;
  }
  .page-business-hero-inner h3 {
    font-size: 2rem;
  }
  .page-business-item-inner {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .page-business-item-top {
    display: block;
    margin-bottom: 17px;
  }
  .page-business-item-top .page-business-item-title-area {
    padding-bottom: 0;
    padding-right: 0;
    padding-top: 0;
  }
  .page-business-item-top .page-business-item-title-area .subttl {
    font-size: 4rem;
    margin-bottom: 0.5em;
    position: static;
  }
  .page-business-item-top .page-business-item-title-area .desc {
    font-size: 1.8rem;
    margin-bottom: 2em;
  }
  .page-business-item-top .page-business-item-figure {
    width: 100%;
  }
  .page-business-item-thumbs ul {
    gap: 17px;
    grid-template-columns: 1fr;
  }
  .page-anchor-nav ul a {
    min-width: calc((100vw - 60px) / 2);
  }
  .page-recruit-hero {
    margin-block: 50px 0;
  }
  .page-recruit-hero .inner, .page-recruit-hero .page-business-item-inner {
    height: 300px;
  }
  .page-recruit-hero .inner h3, .page-recruit-hero .page-business-item-inner h3 {
    font-size: 1.8rem;
  }
  .page-recruit-message {
    margin-bottom: 70px;
    padding-top: 100px;
  }
  .page-recruit-message .inner, .page-recruit-message .page-business-item-inner {
    display: block;
  }
  .page-recruit-message-image {
    margin-bottom: 4em;
    width: 100%;
  }
  .page-recruit-message-image figure figcaption {
    font-size: 6rem;
  }
  .page-recruit-message-text {
    padding-left: 0;
  }
  .page-recruit-message-text dl dt {
    font-size: 2rem;
  }
  .page-recruit-message-text dl dd {
    font-size: 1.4rem;
  }
  .page-recruit .page-recruit-daily {
    padding-top: 50px;
  }
  .page-recruit .page-recruit-daily .c-ttl {
    margin-bottom: 2em;
  }
  .page-recruit .page-recruit-daily-lists {
    padding-inline: 0;
  }
  .page-recruit .page-recruit-daily-lists dl dt {
    padding: 7px;
    width: 160px;
  }
  .page-recruit .page-recruit-daily-lists dl dd {
    padding-left: 0.5em;
  }
  .page-recruit .page-recruit-career .inner, .page-recruit .page-recruit-career .page-business-item-inner {
    padding-block: 50px;
  }
  .page-recruit .page-recruit-licence {
    display: block;
  }
  .page-recruit .page-recruit-licence .page-recruit-licence-item {
    margin-bottom: 30px;
  }
  .page-recruit .page-recruit-licence .page-recruit-licence-item figcaption {
    min-width: 1px;
    width: 100%;
  }
  .page-recruit .c-table .indeed {
    max-width: 300px;
  }
  .page-contact table th,
  .page-contact table td {
    display: block;
  }
  .page-contact table th {
    font-size: 1.6rem;
    padding: 10px 17px;
    width: 100%;
  }
  .page-contact table td {
    padding: 15px 17px;
  }
}
/*25072200*/
main.main section.page-business div.inner div#company-2 {
  width: 100% !important;
  padding-left: 0px;
  padding-right: 0px;
}


/*25072300*/
.faq-section {
  width: 100%;
  margin: 60px auto;
  padding: 0 20px;
  max-width: 1200px; /* 他セクションに合わせて調整 */
  box-sizing: border-box;
}

.faq-title {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 60px;
  border-bottom: 2px solid #114477;
  padding-bottom: 10px;
}

.faq-item {
  border: 1px solid #ddd;
  margin-bottom: 20px;
  background-color: #fff;
  padding: 0px;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background: none;
  color: #333;
  border: none;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  text-align: left;
  position: relative;
  padding-right: 24px;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #114477;
  transition: transform 0.3s ease;
}

.faq-question.open::after {
  content: "−";
}

.faq-answer {
  display: none;
  margin-top: 15px;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-top: 0;
  padding-left: 20px;
  opacity: 0;
}

.faq-answer.open {
  max-height: 500px; /* 十分に大きめに設定（中身に応じて） */
  padding-top: 10px;
  padding-bottom: 20px;
  opacity: 1;
}
.faq-question {
  display: block;
  width: 100%;
  text-align: left;
  background-color: #f7f7f7;
  padding: 1em;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #114477; /* ← マウスオーバー時の色 */
  color: #ffffff; /* ホバー時の文字色 */
}
.faq-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #114477;
  padding-left: 10px;
  color: #333;
}

.page-business-item-thumbs ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.page-business-item-thumbs li {
  text-align: center; /* 画像とテキストを中央寄せ */
}

.thumb-desc {
  margin-top: 8px;
  font-size: 20px;
  color: #fff;
}