@charset "UTF-8";
/*----------------------------------------------
  Reset
----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

/*----------------------------------------------
  common
----------------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-size: 14px;
  line-height: 1.66;
  color: #333;
  font-family: "Noto Sans JP", "メイリオ", "ヒラギノ角ゴProN", "MSPゴシック", sans-serif;
  background: #fff;
  -webkit-animation: fadeInAnime 3s forwards;
          animation: fadeInAnime 3s forwards;
}

@-webkit-keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
ul,
li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

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

figure {
  margin: 0;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-title {
  position: relative;
}

.page-title h1 {
  position: absolute;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .page-title h1 {
    font-size: 2.125rem;
  }
}

.page-title-margin {
  margin-top: 30px;
  margin-bottom: 30px;
}

.breadcrumb {
  display: none;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    display: block;
    padding-top: 30px;
  }
}

@media screen and (min-width: 768px) {
  .breadcrumb__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .breadcrumb__list > * + * {
    margin-left: 10px;
  }
  .breadcrumb__list > * + *::before {
    content: ">";
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media screen and (min-width: 768px) {
  .breadcrumb__link[href]:hover {
    color: #2a68c3;
  }
}

.btn-more {
  display: inline-block;
  color: #fff;
  background: #2a68c3;
  padding: 14px 48px;
  border: 2px solid #2a68c3;
  -webkit-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}
.btn-more::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 7%;
}
.btn-more:hover {
  color: #2a68c3;
  background: #fff;
}
.btn-more:hover::after {
  border-top: 2px solid #2a68c3;
  border-right: 2px solid #2a68c3;
}

.section__ttl {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.66;
  color: #2a68c3;
  letter-spacing: 0.2em;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .section__ttl {
    font-size: 2rem;
    padding-top: 40px;
    padding-bottom: 33px;
  }
}

.section__ttl--sub {
  font-size: 1rem;
  font-weight: 700;
  background: #f0f0f0;
  padding: 10px 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section__ttl--sub {
    font-size: 1.1875rem;
    padding: 14px 32px;
  }
}
.section__ttl--sub::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 20px;
  background: #2a68c3;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 15px;
}
@media screen and (min-width: 768px) {
  .section__ttl--sub::before {
    height: 29px;
  }
}

.cta {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .cta {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.cta__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .cta__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cta__ttl {
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .cta__ttl {
    font-size: clamp(14px, 2.1333333333vw, 32px);
    font-weight: 700;
    letter-spacing: 0.2em;
    width: 45%;
    background: #0f4ca8;
    padding: 67px;
    -webkit-clip-path: polygon(0% 0%, 100% 0, 85% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0, 85% 100%, 0% 100%);
    text-align: center;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .cta__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: right;
    gap: 37px;
  }
}

.cta__txt {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cta--tel,
.cta--fax {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .cta--tel {
    font-size: clamp(14px, 2.1333333333vw, 32px);
    font-weight: 700;
  }
}

@media screen and (min-width: 768px) {
  .cta--fax {
    font-size: 1rem;
  }
}

.btn-cta {
  display: inline-block;
  color: #2a68c3;
  font-weight: 700;
  background: #fff;
  padding: 14px 28px;
  border: 2px solid #2a68c3;
  -webkit-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn-cta {
    font-size: clamp(14px, 1.6vw, 24px);
    padding: 23px 38px;
  }
}
.btn-cta::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #2a68c3;
  border-right: 2px solid #2a68c3;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 7%;
}
.btn-cta:hover {
  opacity: 0.7;
}

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

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

.bg {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.bg--gray {
  background: #f0f0f0;
}

.bg--lightblue {
  background: #eaf4ff;
}

.bg--blue {
  background: #2a68c3;
}

.bg--black {
  background: #333;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 20px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-top: 21px;
    padding-bottom: 21px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }
}

.header__logo a img {
  width: clamp(145px, 18.5333333333vw, 278px);
  display: block;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__link {
  font-size: 0.8125rem;
  font-weight: 700;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  border-right: 1px solid #333;
  padding-left: 20px;
  padding-right: 20px;
}
.header__link:nth-of-type(1) {
  padding-left: 0;
}
.header__link:nth-of-type(6) {
  border-right: 0px;
  padding-right: 50px;
}
.header__link:hover {
  color: #2a68c3;
}

.header__button {
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 6px 14px;
  display: inline-block;
  color: #fff;
  border: 2px solid #2a68c3;
  background-color: #2a68c3;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.header__button:hover {
  background-color: #fff;
  color: #2a68c3;
}

@media screen and (min-width: 768px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 15px;
  height: 15px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #fff;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-last-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #fff;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background: #000;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 6px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 13px;
}

.drawer-content {
  width: 80%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #2a68c3;
  z-index: 50;
  padding: 39px 20px 20px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__link {
  display: block;
  padding-top: 19px;
  padding-bottom: 19px;
  color: #fff;
  border-bottom: 1px solid #fff;
  position: relative;
}
.drawer-content__link:last-child {
  border-bottom: 0;
}
.drawer-content__link::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.footer__box {
  margin-bottom: 40px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__item {
  margin-bottom: 38px;
}
@media screen and (min-width: 768px) {
  .footer__item {
    margin-bottom: 0;
  }
}
.footer__item img {
  width: 226px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .footer__item img {
    width: 300px;
  }
}

.footer-department {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__detail {
  margin-bottom: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
}
@media screen and (min-width: 768px) {
  .footer__detail {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 42px;
    margin-bottom: 0;
  }
}

.footer-factory {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-iso {
  width: 150px;
  display: inline-block;
}

.footer-contents {
  background: #f0f0f0;
  padding-top: 41px;
  padding-bottom: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer-contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 50px;
  }
}

.footer-contents__box {
  margin-bottom: 20px;
}
.footer-contents__box:last-of-type {
  margin-bottom: 0;
}
.footer-contents__box li {
  padding-top: 3px;
  padding-bottom: 3px;
}
.footer-contents__box a:hover {
  color: #2a68c3;
}

.footer-contents__text {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero {
  position: relative;
  text-align: center;
}

.hero__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-shadow: 1px 2px 6px #333;
}
@media screen and (min-width: 768px) {
  .hero__catch {
    font-size: 2.1875rem;
  }
}

.news {
  color: #fff;
  padding-top: 18px;
  padding-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-bottom: 8px;
}

.news--label {
  padding-right: 9px;
  border-right: 1px solid #fff;
}

.news--day {
  padding-right: 9px;
  padding-left: 9px;
}
@media screen and (min-width: 768px) {
  .news--day {
    border-right: 1px solid #fff;
  }
}

@media screen and (min-width: 768px) {
  .news--txt {
    padding-left: 9px;
  }
}

.topCompany {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .topCompany {
    padding-bottom: 90px;
  }
}

.topCompany__ttl {
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .topCompany__ttl {
    font-size: 2rem;
    margin-bottom: 75px;
  }
}

@media screen and (min-width: 768px) {
  .topCompany__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.topCompany__img img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .topCompany__img img {
    width: 582px;
    margin-bottom: 0;
  }
}

.topCompany__body .topCompany__txt {
  text-align: justify;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .topCompany__body .topCompany__txt {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .topCompany__body {
    width: 47%;
  }
}

.btn-layout {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .btn-layout {
    left: 100%;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    margin-top: 60px;
  }
}

.topBusiness {
  padding-top: 30px;
  padding-bottom: 44px;
  position: relative;
}
.topBusiness__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .topBusiness__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 46px;
    margin-bottom: 37px;
  }
}
.topBusiness__item {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .topBusiness__item {
    width: 48%;
  }
}
@media screen and (min-width: 768px) {
  .topBusiness {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}

.topBusiness__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 5px #333;
}
@media screen and (min-width: 768px) {
  .topBusiness__ttl {
    font-size: 2rem;
  }
}

.btn-center {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.topContents {
  padding-top: 60px;
  padding-bottom: 60px;
}
.topContents__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .topContents__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.topContents__item {
  position: relative;
}
.topContents__ttl {
  position: relative;
  margin-bottom: 30px;
}
.topContents__ttl h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-shadow: 2px 2px 5px #333;
}
@media screen and (min-width: 768px) {
  .topContents__ttl h3 {
    font-size: 2rem;
  }
}

.message {
  margin-top: 30px;
  margin-bottom: 60px;
}

.message__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .message__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.message__img {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .message__img {
    width: calc(46% - 63px);
    margin-right: 63px;
  }
}

.message__txt {
  width: 100%;
}
.message__txt p {
  text-align: justify;
  text-indent: 0.875rem;
}
@media screen and (min-width: 768px) {
  .message__txt p {
    font-size: 1rem;
  }
}
.message__txt p:last-of-type {
  margin-top: 30px;
}

.concept__box {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .concept__box {
    margin-bottom: 100px;
  }
}

.concept__ttl {
  text-align: center;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .concept__ttl {
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 35px;
  }
}

.concept__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .concept__item {
    gap: 35px;
  }
}

.concept__txt {
  background: #eaf4ff;
  padding: 23px 20px;
}
@media screen and (min-width: 768px) {
  .concept__txt {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}
@media screen and (min-width: 768px) {
  .concept__txt p {
    font-size: 1rem;
    text-align: center;
  }
}
.concept__txt p:first-of-type {
  text-align: center;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .concept__txt p:first-of-type {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
}
.concept__txt ul li {
  text-indent: -0.875rem;
  padding-left: 0.875rem;
  margin-bottom: 6px;
}
.concept__txt ul li:last-of-type {
  margin-bottom: 0;
}
.concept__txt ul li span {
  color: #2a68c3;
}
@media screen and (min-width: 768px) {
  .concept__txt ul li {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .concept__txt ul {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.philosophy {
  margin-bottom: 60px;
}

.philosophy-company__box {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .philosophy-company__box {
    margin-bottom: 100px;
  }
}

.philosophy-company__txt {
  margin-bottom: 30px;
}
.philosophy-company__txt p {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .philosophy-company__txt p {
    font-size: 1.5rem;
  }
}
.philosophy-company__txt p span {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2a68c3;
}
@media screen and (min-width: 768px) {
  .philosophy-company__txt p span {
    font-size: 1.875rem;
  }
}

.philosophy-company__detail {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .philosophy-company__detail {
    font-size: 1.25rem;
  }
}
.philosophy-company__detail span {
  font-weight: 700;
  color: #2a68c3;
}

.philosophy-company__detail2 {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .philosophy-company__detail2 {
    font-size: 1.5rem;
    margin-bottom: 47px;
  }
}
.philosophy-company__detail2 span {
  font-weight: 1.125rem;
  font-weight: 700;
  color: #2a68c3;
}

.philosophy-company__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .philosophy-company__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 58px 54px;
    margin-bottom: 0;
    border-top: 1px solid #d9d9d9;
  }
}
@media screen and (min-width: 768px) {
  .philosophy-company__item:last-of-type {
    border-bottom: 1px solid #d9d9d9;
  }
}

.philosophy-company__ttl {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #2a68c3;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .philosophy-company__ttl {
    font-size: 1.5rem;
    line-height: 67px;
    width: calc(23% - 55px);
    height: 67px;
    margin-right: 55px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.philosophy-company__content li {
  text-indent: -0.875rem;
  padding-left: 0.875rem;
}
@media screen and (min-width: 768px) {
  .philosophy-company__content li {
    font-size: 1rem;
  }
}

.philosophy-creed__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
  border-bottom: 1px dashed #2a68c3;
  color: #2a68c3;
}
.philosophy-creed__item:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .philosophy-creed__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 58px 54px;
    margin-bottom: 0;
  }
}

.philosophy-creed__ttl {
  font-size: 1rem;
  font-weight: 700;
  color: #2a68c3;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .philosophy-creed__ttl {
    font-size: 1.5rem;
    width: calc(23% - 55px);
    height: 67px;
    margin-right: 55px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.philosophy-creed__content li {
  text-indent: -0.875rem;
  padding-left: 0.875rem;
}
@media screen and (min-width: 768px) {
  .philosophy-creed__content li {
    font-size: 1rem;
  }
}

.philosophy-creed__balloon {
  position: relative;
  border: solid 2px #2a68c3;
  margin-bottom: 30px;
}
.philosophy-creed__balloon::before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #fff;
  z-index: 2;
}
.philosophy-creed__balloon::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #2a68c3;
  z-index: 1;
}

.philosophy-creed__answer > p {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .philosophy-creed__answer > p {
    font-size: 1.5rem;
  }
}

.policy {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .policy {
    padding-top: 49px;
    max-width: 810px;
    margin: 0 auto;
  }
}
.policy p:first-of-type {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .policy p:first-of-type {
    font-size: 1.5rem;
  }
}
.policy ul {
  margin-bottom: 30px;
}
.policy ul li {
  text-indent: -0.875rem;
  padding-left: 0.875rem;
}
@media screen and (min-width: 768px) {
  .policy ul li {
    font-size: 1rem;
  }
}
.policy p:last-of-type {
  font-weight: 700;
}

.policy__bg {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-bottom: 100px;
  background: #eaf4ff;
}

.company {
  padding-top: 30px;
}

.about {
  margin-bottom: 60px;
}

.about__txt {
  font-weight: 700;
  text-align: center;
  margin-top: 26px;
}
@media screen and (min-width: 768px) {
  .about__txt {
    font-size: 1.5rem;
  }
}

.info__tbl {
  font-size: 0.75rem;
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .info__tbl {
    width: 80%;
  }
}
.info__tbl th,
.info__tbl td {
  border: 1px solid #d9d9d9;
  padding: 10px 16px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .info__tbl th,
  .info__tbl td {
    font-size: 1rem;
  }
}
.info__tbl th {
  width: 30%;
  background: #f4f9ff;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .info__tbl th {
    width: 13%;
  }
}
.info__tbl td {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .info__tbl td {
    width: 87%;
  }
}

.history__tbl {
  font-size: 0.75rem;
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .history__tbl {
    width: 80%;
  }
}
.history__tbl th,
.history__tbl td {
  border: 1px solid #d9d9d9;
  padding: 10px 16px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .history__tbl th,
  .history__tbl td {
    font-size: 1rem;
  }
}
.history__tbl th {
  background: #f4f9ff;
  font-weight: 700;
  width: 20%;
  text-align: right;
}
.history__tbl td {
  width: 80%;
}
.access {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .access {
    padding-bottom: 100px;
  }
}

.access__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  gap: 90px;
}
@media screen and (min-width: 768px) {
  .access__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 35px;
  }
}

.access__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .access__item {
    width: 47%;
  }
}

.access__ttl {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .access__ttl {
    font-size: 1.1875rem;
    padding-top: 32px;
    padding-bottom: 16px;
  }
}

.access__tbl {
  width: 100%;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 18px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .access__tbl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}
.access__tbl dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .access__tbl dt,
  .access__tbl dd {
    font-size: 0.9375rem;
    margin-bottom: 13px;
  }
}
.access__tbl dt {
  width: 120px;
}
.access__tbl1 dt,
.access__tbl1 dd:last-of-type {
  margin-bottom: 0;
}

.access__tbl2 dt,
.access__tbl2 dd:last-of-type {
  margin-bottom: 0;
}

.access__txt {
  text-align: justify;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .access__txt {
    font-size: 1rem;
    padding-top: 23px;
    padding-bottom: 34px;
  }
}

.btn__wrapper {
  position: relative;
}

.btn__access {
  font-size: 1.25rem;
  color: #2a68c3;
  position: relative;
  display: inline-block;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  right: 0;
  position: absolute;
}
.btn__access::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #2a68c3;
  border-right: 2px solid #2a68c3;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 0;
}
.btn__access:hover {
  opacity: 0.5;
}

.business {
  padding-top: 30px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .business {
    padding-bottom: 116px;
  }
}

.business__box {
  background: #eaf4ff;
  padding: 26px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.business__box:last-of-type {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .business__box {
    padding: 52px 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 68px;
  }
}

@media screen and (min-width: 768px) {
  .business__body {
    width: 40%;
  }
}

.business__ttl {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 1rem;
  text-indent: -1rem;
}
@media screen and (min-width: 768px) {
  .business__ttl {
    font-size: 1.25rem;
    margin-bottom: 38px;
    padding-left: 1.25rem;
    text-indent: -1.25rem;
  }
}

.business__txt {
  text-align: justify;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .business__txt {
    font-size: 1rem;
    margin-bottom: 0;
  }
}

.business__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .business__img {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 60%;
  }
}

@media screen and (min-width: 768px) {
  .business__item {
    width: calc((100% - 10px) / 2);
  }
}

.segment__content {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .segment__content {
    margin-bottom: 100px;
  }
}

.segment__txt {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .segment__txt {
    font-size: 1rem;
    padding: 35px 37px 47px;
  }
}

.segment__list li {
  padding-left: 0.875rem;
  text-indent: -0.875rem;
}
@media screen and (min-width: 768px) {
  .segment__list li {
    font-size: 0.8125rem;
    padding-left: 0.825rem;
    text-indent: -0.825rem;
    margin: 0 37px;
  }
}

.modal {
  margin-bottom: 60px;
}

.modal__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
  padding-bottom: 60px;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .modal__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 78px 53px;
    gap: 90px;
  }
}

.modal__img {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .modal__img {
    width: 60%;
  }
}

.modal__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .modal__item {
    width: 40%;
  }
}

.section__ttl--sub2 {
  font-size: 1rem;
  font-weight: 700;
  color: #2a68c3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section__ttl--sub2::after {
  content: "";
  border-top: 1px solid #2a68c3;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.section__ttl--sub2::after {
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .section__ttl--sub2 {
    font-size: 1.1875rem;
  }
}

.button__modal {
  font-size: 1rem;
  color: #2a68c3;
  border: 1px solid #2a68c3;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  display: block;
  position: relative;
  margin-bottom: 20px;
}
.button__modal::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #2a68c3;
  border-right: 2px solid #2a68c3;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 10px;
}
.button__modal:hover {
  color: #fff;
  background: #2a68c3;
}
.button__modal:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.button__modal:last-of-type {
  margin-bottom: 0;
}

.about-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 30px);
  max-height: calc(100% - 20px);
  overflow: auto;
  padding: 16px 15px 64px;
  background: #fff;
  border: none;
  overscroll-behavior-y: none;
}
@media screen and (min-width: 768px) {
  .about-modal {
    width: 60%;
  }
}
.about-modal::-ms-backdrop {
  opacity: 0.5;
  background: #333;
}
.about-modal::backdrop {
  opacity: 0.5;
  background: #333;
}

.about-modal__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  position: sticky;
  top: 0;
}

.about-modal__close-icon img {
  width: 25px;
}

.about-modal__body {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about-modal__body {
    padding: 75px 80px;
  }
}
.about-modal__body h4 {
  font-size: 1rem;
  color: #2a68c3;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .about-modal__body h4 {
    font-size: 1.25rem;
  }
}
.about-modal__body p {
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .about-modal__body p {
    font-size: 1rem;
  }
}

.about-modal__close-button {
  text-align: center;
}

.modal__button {
  border: 1px solid #333;
  border-radius: 50px;
  padding: 10px 40px;
}

.technology {
  padding-top: 25px;
  padding-bottom: 58px;
}

.award__box {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .award__box {
    margin-bottom: 66px;
  }
}

.award__ttl {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .award__ttl {
    margin-bottom: 28px;
  }
}

.award__txt {
  text-align: justify;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .award__txt {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 768px) {
  .award__img img {
    width: 364px;
  }
}
.award__img figcaption {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .award__img {
    margin-top: 16px;
  }
}

@media screen and (min-width: 768px) {
  .technology__box {
    background: #fff;
    padding: 65px 150px;
  }
}

.type {
  margin-bottom: 60px;
}

.type__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .type__list {
    padding-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .type__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}

.type__tbl {
  border-collapse: collapse;
  border: 1px solid #2a68c3;
  width: 100%;
}
.type__tbl tr {
  text-align: center;
}
.type__tbl th,
.type__tbl td {
  vertical-align: middle;
  padding: 10px;
}
.type__tbl th {
  border-right: 1px solid #2a68c3;
  border-bottom: 1px solid #2a68c3;
  width: 30%;
  background: #bedcff;
}
.type__tbl td {
  border-bottom: 1px solid #2a68c3;
  background: #fff;
}

.process {
  margin-bottom: 60px;
}

.process__box {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .process__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 20px;
  }
}

.process__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  text-align: center;
}
.process__item figure {
  margin: 0;
  padding: 0;
  width: 48%;
}
.process__item figure img {
  margin-bottom: 7px;
}

.merit {
  background: #fff;
  padding: 26px 20px;
}
@media screen and (min-width: 768px) {
  .merit {
    border: 1px solid #2a68c3;
    padding: 40px;
  }
}

.merit__ttl,
.merit__sub {
  font-size: 1rem;
  font-weight: 700;
  color: #2a68c3;
  margin-bottom: 35px;
}

.merit__sub {
  color: #333;
  margin-bottom: 10px;
}

.merit__txt {
  margin-bottom: 40px;
}
.merit__txt:last-child {
  margin-bottom: 0;
}

.works {
  padding-top: 67px;
  padding-bottom: 100px;
}

.swiper-container {
  position: relative;
  margin-inline: auto;
}

.swiper-button-prev {
  top: 45%;
}

.swiper-button-next {
  top: 45%;
}

.swiper-button-prev,
.swiper-button-next {
  width: 27px;
  height: 27px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.swiper-button-prev::after {
  background-image: url(../business/img/prev-button.png);
}

.swiper-button-next::after {
  background-image: url(../business/img/next-button.png);
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -30px;
}

.swiper {
  width: 100%;
  height: auto;
  margin-top: 26px;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-slide-txt {
  text-align: center;
  background: #fff;
  padding: 10px;
}
.swiper-slide-txt h3 {
  font-weight: 700;
  margin-bottom: 10px;
}
.swiper-slide-txt p {
  font-size: 0.8125rem;
}

.pt30 {
  padding-top: 30px;
}

.facility__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.facility__tab:after {
  content: "";
  width: 100%;
  height: 3px;
  background: #2a68c3;
  display: block;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-bottom: 60px;
}

.tab__item {
  height: 38px;
  line-height: 38px;
  color: #9e9e9e;
  background: #f0f0f0;
  white-space: nowrap;
  text-align: center;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .tab__item {
    font-size: 1.5rem;
    height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.tab__content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.tab__active:checked + .tab__item {
  color: #fff;
  background: #2a68c3;
}

.tab__active:checked + .tab__item + .tab__content {
  height: auto;
  overflow: auto;
  opacity: 1;
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
}

.tab__active {
  display: none;
}

.tab__content-layout {
  margin-bottom: 60px;
}

.tab__img {
  margin-top: 38px;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .tab__img img {
    width: 600px;
  }
}
.tab__img p {
  font-size: 0.75rem;
  text-align: left;
  padding-left: 0.75rem;
  text-indent: -0.75rem;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .tab__img p {
    text-align: center;
    font-size: 0.875rem;
  }
}

.tab__content-facility,
.tab__content-test {
  margin-bottom: 65px;
}

.tab__content-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .tab__content-img {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.tab__content-item img {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .tab__content-item {
    width: calc((100% - 80px) / 3);
  }
}

.facility-table {
  border: 1px solid #2a68c3;
  border-collapse: collapse;
  font-size: 0.75rem;
  text-align: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.facility-table thead {
  background: #2a68c3;
  color: #fff;
}
.facility-table thead th {
  padding-top: 8px;
  padding-bottom: 8px;
  letter-spacing: 0.2em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .facility-table thead th {
    font-size: 1.0625rem;
  }
}
.facility-table tbody th {
  border: 1px solid #2a68c3;
  background: #bedcff;
  padding: 7px 5px;
}
@media screen and (min-width: 768px) {
  .facility-table tbody th {
    font-size: 1rem;
  }
}
.facility-table tbody td {
  border: 1px solid #2a68c3;
  background: #f4f9ff;
  padding: 10px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .facility-table tbody td {
    font-size: 1rem;
  }
}
.facility-table tbody tr:nth-child(even) td {
  background: #fff;
}

.recruit {
  background-image: url(../recruitment/img/recruitment-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 43px 34px;
}
@media screen and (min-width: 768px) {
  .recruit {
    padding: 100px;
    margin-top: 30px;
  }
}

.recruit__box {
  background: #fff;
  padding: 17px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .recruit__box {
    width: 45%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 57px;
  }
}

.section__ttl {
  padding-bottom: 20px;
}

.recruit__txt {
  text-align: justify;
  margin-bottom: 17px;
}
@media screen and (min-width: 768px) {
  .recruit__txt {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

.btn__recruit {
  font-size: 1rem;
  color: #fff;
  background: #2a68c3;
  display: inline-block;
  padding: 8px 41px;
  border: 2px solid #2a68c3;
  -webkit-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn__recruit {
    padding: 13px 68px;
  }
}
.btn__recruit::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 7%;
}
.btn__recruit:hover {
  color: #2a68c3;
  background: #fff;
}
.btn__recruit:hover::after {
  border-top: 2px solid #2a68c3;
  border-right: 2px solid #2a68c3;
}

.tel {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 60px;
}

.tel__txt {
  font-size: 0.875rem;
  margin-bottom: 18px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .tel__txt {
    font-size: 1rem;
    text-align: center;
  }
}

.tel__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .tel__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 34px;
  }
}
.tel__box p:nth-child(1) {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .tel__box p:nth-child(1) {
    font-size: 1.1875rem;
  }
}
.tel__box p:nth-child(2) {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .tel__box p:nth-child(2) {
    font-size: 2.25rem;
  }
}

@media screen and (min-width: 768px) {
  .mail {
    background: #f0f0f0;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 60px;
  }
}

.mail__container {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .mail__container {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}

.mail__form {
  background: #fff;
}

.mail__txt span {
  color: #ff2727;
}
@media screen and (min-width: 768px) {
  .mail__txt {
    font-size: 0.9375rem;
    margin-top: 28px;
    margin-bottom: 15px;
  }
}

.mail__txt2 {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .mail__txt2 {
    font-size: 0.75rem;
  }
}

.privacy__ttl {
  font-weight: 700;
  color: #2a68c3;
}
@media screen and (min-width: 768px) {
  .privacy__ttl {
    font-size: 1.2rem;
  }
}

.privacy__txt {
  text-align: justify;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .privacy__txt {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

.privacy__detail li {
  text-indent: -0.875rem;
  padding-left: 0.875rem;
}

.error {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .error {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.error__ttl {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2a68c3;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .error__ttl {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

.error__txt {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .error__txt {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

.error__link {
  font-size: 1rem;
  font-weight: 700;
  color: #2a68c3;
}
@media screen and (min-width: 768px) {
  .error__link {
    font-size: 1.2rem;
  }
}