@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "Droid Sans", YuGothic, "游ゴシック", Meiryo, "メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif;
  color: #000;
}

html {
  font-size: 16px;
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.4s ease;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

/****  pc,spだし分け  *****/
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

/*****  タイトル系  *******/
h1,
h2 {
  font-weight: normal;
}

.titleBox .sub {
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 2.5rem;
  color: #9FA0A0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .titleBox .sub {
    font-size: 4.2666666667vw;
  }
}
.titleBox .main {
  font-size: 3.75rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .titleBox .main {
    font-size: 10.6666666667vw;
  }
}

/***** innerなど余白 *****/
.inner {
  width: 100%;
  max-width: 1050px;
  margin-inline: auto;
  padding-inline: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 20px;
  }
}

/******* flex ******/
.flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
}

/****** font ****/
p {
  font-size: 0.875rem;
}

/*****スクロール時にふわっと**********/
.fadein {
  transform: translateY(50px);
  opacity: 0;
}

.fadein.scrollin {
  transform: unset;
  opacity: 1;
  transition: 1s;
}

.fadein.scrollin.delay200 {
  transition-delay: 0.2s;
}

.btn {
  width: fit-content;
  margin: 0 auto;
}
.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5em;
  border: 1px solid #000;
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  min-height: 2.125rem;
  border-radius: 6.25rem;
  transition: all 0.4s ease;
}
.btn a:hover {
  background-color: #000;
  color: #fff;
}

/*------------------------
news
------------------------*/
.newsItems__item {
  padding: 1.875rem 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .newsItems__item {
    padding: 5.3333333333vw 0;
  }
}

.newsItems__item--time {
  font-size: 1rem;
  line-height: 1;
  width: 9.375rem;
  display: block;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 768px) {
  .newsItems__item--time {
    font-size: 3.7333333333vw;
  }
}

.newsItems__item--title {
  font-size: 1rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .newsItems__item--title {
    font-size: 3.7333333333vw;
  }
}

.footer {
  position: relative;
  background-color: #000;
  color: #fff;
}
.footer .inner {
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .footer .inner {
    padding: 21.3333333333vw 0;
  }
}

.footer__tel {
  font-size: 3rem;
  line-height: 1.5;
  color: #fff;
  width: fit-content;
  min-height: 5.5rem;
  padding: 0 1em;
  margin: 0 auto 1.875rem;
  border: 1px solid #fff;
  border-radius: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer__tel {
    font-size: 8vw;
    min-height: 23.4666666667vw;
    margin: 0 auto 8vw;
  }
}

.footer__opentime {
  font-size: 1rem;
  margin-bottom: 7.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__opentime {
    font-size: 4.2666666667vw;
    margin-bottom: 21.3333333333vw;
  }
}

.footer__links {
  gap: 1.875rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__links {
    gap: 2.6666666667vw;
  }
}

.footer__link {
  font-size: 0.75rem;
}

.copyright {
  font-size: 0.75rem;
  text-align: center;
}

.header {
  width: 100%;
  height: 100px;
  position: absolute;
  top: 13.4615384615vh;
  left: 0;
  right: 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header {
    top: 0;
  }
}

.ulPage .header {
  top: 7vw;
}

.header__logo {
  position: absolute;
  top: -3.8461538462vh;
  left: 5.2083333333vw;
  width: 6.25rem;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 10.6666666667vw;
    top: 2.6666666667vw;
    left: 2.6666666667vw;
  }
}

.ulPage .header__logo {
  top: -2vw;
}
@media screen and (max-width: 768px) {
  .ulPage .header__logo {
    top: -3vw;
  }
}

.header__inner {
  width: 100%;
  height: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__btn {
  width: 36px;
  height: 21px;
  position: fixed;
  top: 23px;
  right: 23px;
}

.header__btn span {
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  display: block;
  left: 0;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
}

.header.is-active .header__btn span {
  background-color: #000;
}

.header__btn span:nth-child(1) {
  top: 0;
}

.header__btn span:nth-child(2) {
  top: 9px;
}

.header__btn span:nth-child(3) {
  top: 19px;
}

.header.is-active .header__btn span:nth-child(1) {
  transform: rotate(-30deg);
  top: 9px;
}

.header.is-active .header__btn span:nth-child(2) {
  display: none;
}

.header.is-active .header__btn span:nth-child(3) {
  transform: rotate(30deg);
  top: 9px;
}

/*
  -----------------------------------
sp
  -----------------------------------
  */
.headerSp__nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: calc(100vw - 80px);
  height: 100%;
  background-color: rgba(255, 255, 255, 0.93);
  transition: all 0.4s ease;
}
.headerSp__nav .header__nav-items {
  padding: 74px 25px;
  text-align: right;
  width: 100%;
}
.headerSp__nav .header__nav-item {
  margin-bottom: 17px;
}
.headerSp__nav .header__nav-item a {
  color: #3e3e3e;
  font-size: 2rem;
  line-height: 1.6875;
  font-weight: 800;
  text-transform: capitalize;
}

/*
-----------------------------------
pc
-----------------------------------
*/
.headerPc__nav {
  height: 100%;
}
.headerPc__nav .header__nav-items {
  display: flex;
  gap: 3.75rem;
}
@media (max-width: 1200px) {
  .headerPc__nav .header__nav-items {
    gap: 1.5625rem;
  }
}
.headerPc__nav .header__nav-item a {
  font-size: 1.125rem;
  font-weight: bold;
  color: #000;
  position: relative;
}

.header.is-active .headerSp__nav {
  right: 0;
}

.mv {
  width: 100%;
  height: 100vh;
  position: relative;
}

.mv__title {
  position: absolute;
  bottom: -3vw;
  left: 0;
  right: 0;
  font-size: 22vw;
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.7826086957;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mv__title {
    bottom: 17vw;
    font-size: 32vw;
  }
}

.mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-about {
  background-color: #000;
  padding: 7.5rem 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-about {
    padding: 32vw 0;
  }
}
.top-about .titleBox {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-about .titleBox {
    margin-bottom: 10.6666666667vw;
  }
}
.top-about .titleBox .sub {
  color: #fff;
}
.top-about .btn a {
  border: 1px solid #fff;
  background-color: #fff;
  color: #000;
}
.top-about .btn a:hover {
  background-color: #000;
  color: #fff;
}

.top-group__item {
  padding: 7.5rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-group__item {
    padding: 21.3333333333vw 5.3333333333vw;
  }
}
.top-group__item:nth-child(1) {
  background: no-repeat center/cover url(../images/Image_IFCC.jpg);
}
.top-group__item:nth-child(2) {
  background: no-repeat center/cover url(../images/Image_IFCL.jpg);
}
.top-group__item:nth-child(3) {
  background: no-repeat center/cover url(../images/Image_FC.jpg);
}
.top-group__item:nth-child(4) {
  background: no-repeat center/cover url(../images/Image_IFCP.jpg);
}
.top-group__item:nth-child(5) {
  background: no-repeat center/cover url(../images/Image_IF.jpg);
}

.top-group__item--wrapper {
  max-width: 62.5rem;
  margin: 0 auto;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 1.25rem;
  border: 1px solid #004EA2;
  padding: 3.4375rem 1.25rem;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .top-group__item--wrapper {
    display: block;
    padding: 10.6666666667vw 5.3333333333vw;
  }
}
.top-group__item--wrapper:hover {
  background-color: #fff;
}

.top-group__item--logo {
  width: 8.125rem;
}
@media screen and (max-width: 768px) {
  .top-group__item--logo {
    width: 34.6666666667vw;
    margin: 0 auto 5.3333333333vw;
  }
}
.top-group__item--logo img {
  height: auto;
}

.top-group__item--cont {
  flex: 1;
  max-width: 38.125rem;
}
.top-group__item--cont .company-name {
  font-size: 2rem;
  font-weight: 600;
  color: #004EA2;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-group__item--cont .company-name {
    font-size: 4.8vw;
    margin-bottom: 5.3333333333vw;
  }
}
.top-group__item--cont .link {
  min-height: 2.5rem;
  border-radius: 6.25rem;
  background-color: #004EA2;
  border: 1px solid #004EA2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #fff;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .top-group__item--cont .link {
    min-height: 10.6666666667vw;
    font-size: 3.7333333333vw;
  }
}

.top-news {
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding: 21.3333333333vw 0;
  }
}
.top-news .btn {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-news .btn {
    margin-bottom: 5.3333333333vw;
  }
}

.top-news__title {
  font-size: 6rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 2.5rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .top-news__title {
    font-size: 10.6666666667vw;
    margin-bottom: 8vw;
  }
}

/*------------------------
下層共通
------------------------*/
.ulHead {
  padding-top: 15.625vw;
  height: 56.25vw;
  margin-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ulHead {
    padding-top: 0;
    height: 100vw;
    margin-bottom: 10vw;
  }
}

.ulHead__title {
  position: absolute;
  top: 34.375vw;
  left: 10.4166666667vw;
  margin: auto;
  font-size: 3.125vw;
  line-height: 1;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .ulHead__title {
    top: 49vw;
    left: 10vw;
    font-size: 7vw;
  }
}

.ulHead__img {
  height: 40.625vw;
}
@media screen and (max-width: 768px) {
  .ulHead__img {
    height: 100%;
  }
}
.ulHead__img img {
  height: 100%;
  object-fit: cover;
}

/*------------------------
philosophy
------------------------*/
.philosophy-top {
  background-color: #fff;
  position: relative;
  height: 57.2916666667vw;
}
@media screen and (max-width: 768px) {
  .philosophy-top {
    height: 90vw;
  }
}
.philosophy-top .mv__title {
  bottom: 0;
}

.philosophy-about {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .philosophy-about {
    margin-bottom: 16vw;
  }
}
.philosophy-about .titleBox {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .philosophy-about .titleBox {
    margin-bottom: 10.6666666667vw;
  }
}

.philosophy-about__text {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .philosophy-about__text {
    font-size: 4.8vw;
  }
}

.philosophy-vision {
  padding: 7.5rem 0 6.875rem;
  background: no-repeat center top/cover url(../images/philosophy/vision_bg.jpg);
}
@media screen and (max-width: 768px) {
  .philosophy-vision {
    padding: 21.3333333333vw 0;
  }
}
.philosophy-vision .titleBox {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .philosophy-vision .titleBox {
    margin-bottom: 10.6666666667vw;
  }
}
.philosophy-vision .titleBox .sub {
  color: #000;
}
@media screen and (max-width: 768px) {
  .philosophy-vision .titleBox .sub {
    margin-bottom: 5.3333333333vw;
  }
}
.philosophy-vision .titleBox .main {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .philosophy-vision .titleBox .main {
    font-size: 7.4666666667vw;
  }
}

.philosophy-vision__text {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 7.5rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .philosophy-vision__text {
    font-size: 4.8vw;
    margin-bottom: 21.3333333333vw;
  }
}

.philosophy-vision__promise .titleBox .sub {
  color: #fff;
}

.philosophy-vision__promise--item .en {
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .philosophy-vision__promise--item .en {
    font-size: 5.8666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.philosophy-vision__promise--item .jp {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .philosophy-vision__promise--item .jp {
    font-size: 4.8vw;
    line-height: 1.5;
  }
}
.philosophy-vision__promise--item + .philosophy-vision__promise--item {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .philosophy-vision__promise--item + .philosophy-vision__promise--item {
    margin-top: 8vw;
  }
}

/*------------------------
company
------------------------*/
.company-message {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .company-message {
    margin-bottom: 21.3333333333vw;
  }
}

.company-message__text {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .company-message__text {
    font-size: 4.8vw;
    margin-bottom: 1.875rem;
  }
}

.company-message__sign {
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .company-message__sign {
    font-size: 7.4666666667vw;
  }
}
.company-message__sign .role {
  font-size: 1.5rem;
  display: inline-block;
  margin-right: 0.625rem;
}
@media screen and (max-width: 768px) {
  .company-message__sign .role {
    font-size: 5.3333333333vw;
  }
}

.company-overview {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .company-overview {
    padding-bottom: 21.3333333333vw;
  }
}
.company-overview .titleBox .sub {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .company-overview .titleBox .sub {
    margin-bottom: 5.3333333333vw;
  }
}

.company-overview__wrap dl {
  display: flex;
  padding: 0.625rem 0;
  border-top: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .company-overview__wrap dl {
    flex-direction: column;
  }
}
.company-overview__wrap dl:last-child {
  border-bottom: 1px solid #000;
}

.company-overview__title {
  white-space: nowrap;
  min-width: 5em;
  min-height: 2.5rem;
  width: 32%;
  background-color: #E6E6E6;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .company-overview__title {
    width: 100%;
    min-height: 10.6666666667vw;
    font-size: 3.7333333333vw;
    border-radius: 2.6666666667vw;
  }
}

.company-overview__text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 1em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .company-overview__text {
    font-size: 3.7333333333vw;
    padding: 1em;
  }
}

/*------------------------
business
------------------------*/
.business-detail {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .business-detail {
    padding-bottom: 21.3333333333vw;
  }
}
.business-detail .inner {
  max-width: 1170px;
}

.business-detail__item {
  gap: 2.125rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .business-detail__item {
    gap: 5.3333333333vw;
    margin-bottom: 16vw;
  }
}
.business-detail__item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .business-detail__item:nth-child(2n) {
    flex-direction: column;
  }
}
.business-detail__item:last-child {
  margin-bottom: 0;
}

.business-detail__item--img {
  width: 32.1428571429%;
}
@media screen and (max-width: 768px) {
  .business-detail__item--img {
    width: 100%;
  }
}

.business-detail__cont {
  flex: 1;
  flex-shrink: 0;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .business-detail__cont {
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}

.business-detail__item--logo {
  width: 7.5rem;
}
@media screen and (max-width: 768px) {
  .business-detail__item--logo {
    width: 18%;
  }
}

.business-detail__item--text {
  flex: 1;
}
.business-detail__item--text .company-name {
  font-size: 1.875rem;
  color: #004EA2;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
@media screen and (max-width: 768px) {
  .business-detail__item--text .company-name {
    font-size: 4.2666666667vw;
    margin-bottom: 0;
  }
}
.business-detail__item--text .type {
  font-size: 1rem;
  line-height: 1;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  background-color: #004EA2;
  color: #fff;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6.25rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .business-detail__item--text .type {
    font-size: 3.7333333333vw;
    min-height: 8vw;
    margin-bottom: 8vw;
  }
}
.business-detail__item--text .main {
  font-size: 1.5rem;
  line-height: 1;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #004EA2;
}
@media screen and (max-width: 768px) {
  .business-detail__item--text .main {
    font-size: 4.2666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.business-detail__item--text .desc {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .business-detail__item--text .desc {
    font-size: 3.7333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.business-detail__item--text .btn a {
  border: 1px solid #004EA2;
  color: #004EA2;
}
@media screen and (max-width: 768px) {
  .business-detail__item--text .btn a {
    font-size: 3.7333333333vw;
  }
}
.business-detail__item--text .btn a:hover {
  background-color: #004EA2;
  color: #fff;
}

.business-detail__item__set {
  display: contents;
}
@media screen and (max-width: 768px) {
  .business-detail__item__set {
    display: flex;
    align-items: center;
    margin-bottom: 2.6666666667vw;
  }
}

/*------------------------
archive-news
------------------------*/
.archive-newsItems {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .archive-newsItems {
    padding-bottom: 16vw;
  }
}
.archive-newsItems .newsItems .newsItems__item:first-child {
  border-top: 1px solid #000;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .pagination {
    gap: 1.3333333333vw;
    margin-top: 10.6666666667vw;
  }
}

.pagination__prev,
.pagination__next {
  font-size: 1rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .pagination__prev,
  .pagination__next {
    font-size: 3.2vw;
  }
}

.pagination__number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.pagination__number.current {
  border: 1px solid #9FA0A0;
}
@media screen and (max-width: 768px) {
  .pagination__number {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    font-size: 3.7333333333vw;
  }
}/*# sourceMappingURL=styles.css.map */