@charset "UTF-8";
@import url("https://fonts.cdnfonts.com/css/din-alternate");
/* デフォルト（スマホ用） */
/* タブレット用 */
/* PC用 */
/*==================================
リセットcss
===================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

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;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
}

/*==================================
style 
===================================*/
html {
  font-size: 62.5%;
  height: 100%;
}

body {
  font-family: Hiragino Kaku Gothic ProN, HiraKakuPro, ヒラギノ角ゴ ProN, Hiragino Kaku Gothic Pro, ヒラギノ角ゴ Pro;
  font-style: normal;
  color: #333;
  height: 100%;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
}

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

a:focus,
*:focus {
  outline: none;
}

img {
  max-width: 100%;
}

.center {
  text-align: center;
}

.inner {
  width: 90%;
  margin: auto;
}

section {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}

.pc {
  display: none;
}

.sp {
  display: block;
}

/* タブレット用 */
@media (min-width: 769px) {
  .inner {
    width: 90%;
    max-width: 100%;
  }
  section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
/* PC用 */
@media (min-width: 1025px) {
  .inner {
    width: 1050px;
    max-width: 100%;
  }
}
/*==================================
common
===================================*/
/* モバイル用ヘッダー */
header {
  min-height: 60px;
}

.header__flex {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 0 0 2rem;
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
  z-index: 100;
}

.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  height: clamp(30px, 24.328px + 1.493vw, 40px);
  width: auto;
  padding: 3px 0;
}

.header__nav {
  display: none;
}

/* ハンバーガーメニュー */
.mobile-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: #1125a3;
  color: #fff;
  cursor: pointer;
  border: none;
  margin: 0;
  padding: 7px;
}

.hamburger-line {
  width: 30px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-text {
  font-size: 12px;
  color: #fff;
  margin-top: 0;
}

/* ハンバーガーメニュー開閉時 */
.mobile-header__hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-header__hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-header__hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ドロップダウンメニュー */
.mobile-header__nav {
  position: absolute;
  left: 0;
  right: 0;
  background: #f9f9f9;
  transform: translateY(-100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  opacity: 0;
  border-top: 1px solid #ddd;
  z-index: -1;
}

.mobile-header__nav.active {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
  z-index: 100;
}

.mobile-header__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-header__nav-item {
  border-bottom: 1px solid #ddd;
}

.mobile-header__nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  text-decoration: none;
  color: inherit;
}

.mobile-header__nav-link:hover {
  background: #e9f5ff;
  color: inherit;
}

/* サブメニュー */
.mobile-header__nav-submenu {
  padding-left: 20px;
  background: #fff;
  max-height: 0;
  list-style: none;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.7s ease, opacity 0.7s ease, transform 0.7s ease;
}

.has-sublink.active .mobile-header__nav-submenu {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

.mobile-header__nav-submenu-link {
  display: block;
  padding: 15px 20px;
  color: #555;
  text-decoration: none;
}

.mobile-header__nav-submenu-link:hover {
  background: #e9f5ff;
  color: inherit;
}

/* + ボタン修正 */
.has-sublink {
  position: relative;
}

.mobile-submenu-toggle {
  display: inline-block;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 48px;
  height: 57px;
  color: #1125a3;
  font-size: 16px;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 0.4s ease-out;
}
.mobile-submenu-toggle::before, .mobile-submenu-toggle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 11px;
  height: 1px;
  background-color: #1125a3;
  color: #333;
  transition: all 0.4s ease-out;
}
.mobile-submenu-toggle::after {
  transform: rotate(90deg);
}

.mobile-header__nav-item.active .mobile-submenu-toggle::after {
  transform: rotate(0);
}

/* 開閉の調整 */
.has-sublink .mobile-header__nav-link {
  cursor: pointer;
}

.has-sublink.active .mobile-header__nav-link {
  background: #e9f5ff;
}

/* タブレット用 */
@media (min-width: 769px) {
  .header__nav {
    display: none;
  }
}
/* PC用 */
@media (min-width: 1025px) {
  .mobile-header__hamburger {
    display: none;
  }
  header {
    min-height: 84px;
  }
  .header__flex {
    height: 84px;
    padding: 0 2rem;
  }
  .header__nav {
    display: flex;
    align-items: center;
  }
  .header__nav-list {
    display: flex;
    padding: 0;
    list-style: none;
  }
  .header__nav-item {
    position: relative;
    font-size: 1.5rem;
  }
  .header__nav-item::after {
    content: "";
    width: 1px;
    height: 20px;
    background: #1125a3;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .header__nav-link {
    padding: 3rem;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    position: relative;
  }
  .header__nav-link:hover {
    color: #1d63c5;
  }
  .header__nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    width: 0;
    height: 2px;
    background-color: #1d63c5;
    transition: width 0.3s ease, left 0.3s ease;
  }
  .header__nav-link:hover::after {
    width: 50%;
    left: 25%;
  }
  .header__nav-item.has-sublink > .header__nav-link::after {
    content: none;
  }
  .header__nav-submenu {
    padding: 2rem 4rem 3rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
    display: block;
    position: absolute;
    left: -350px;
    width: 700px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease-out;
    pointer-events: none;
    z-index: 100;
  }
  .header__nav-submenu::before {
    content: "";
    width: 20px;
    height: 20px;
    background: linear-gradient(90deg, #1d63c5 0%, #1125a3 64%);
    position: absolute;
    top: -10px;
    right: 40%;
  }
  .header__nav-item.has-sublink:hover .header__nav-submenu {
    opacity: 1;
    pointer-events: auto;
    margin-top: 2px;
    transform: translateY(0);
  }
  .header__nav-submenu--inner {
    display: flex;
  }
  .header__submenu_ttl {
    color: #1125a3;
    margin-right: 48px;
    letter-spacing: 0.1em;
  }
  .header__submenu_ttl h2 {
    font-family: "DIN Alternate", sans-serif;
    font-weight: 700;
    font-size: 250%;
  }
  .header__submenu_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
  }
  .header__submenu_list li {
    width: 45%;
    position: relative;
    display: block;
    border-bottom: 1px solid #eee;
  }
  .header__submenu_list li a {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    line-height: 1.6;
    text-decoration: none;
    color: inherit;
  }
  .header__submenu_list li a span {
    font-size: 1rem;
  }
  .header__submenu_list li a::after {
    font: var(--fa-font-solid);
    content: "\f061";
    font-size: 18px;
    color: #1125a3;
    position: absolute;
    right: 0;
    display: inline-block;
    transition: all 0.5s;
  }
  .header__submenu_list li a:hover {
    color: #1d63c5;
  }
  .header__submenu_list li a:hover::after {
    transform: translateX(10px);
  }
  .header__button {
    color: #fff;
    padding: 13px 35px;
    font-size: 16px;
    background: linear-gradient(90deg, #1d63c5 0%, #1125a3 50%, #1d63c5 100%);
    background-size: 200% 100%;
    cursor: pointer;
    text-decoration: none;
  }
  .header__button:hover {
    color: #fff;
    background-position: 100% 0;
  }
}
.footerContact {
  background: #dbebfb;
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
  border-bottom: 2px solid #1125a3;
}
.footerContact__inner {
  background: #fff;
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
  padding: 10% 7%;
}
.footerContact__contener {
  border-bottom: 1px solid #1125a3;
  padding-bottom: clamp(20px, 14.328px + 1.493vw, 30px);
}
.footerContact__text {
  width: 100%;
  text-align: center;
}
.footerContact__info {
  width: 100%;
}
.footerContact__description {
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}
.footerContact__link:hover {
  color: #fff;
}

footer.footer {
  padding: 0;
  margin: 0;
}
footer a {
  color: inherit;
  text-decoration: none;
}
footer ol, footer ul {
  list-style: none;
  padding-left: 0;
}

.footer__wrap {
  padding: 3rem 0;
}
.footer__logo {
  width: 50%;
  margin: auto;
  line-height: 1;
}
.footer__logo img {
  width: 280px;
}
.footer__nav {
  display: none;
}
.footer__sponsors {
  background-color: #ececec;
  padding: 30px 0;
}
.footer__sponsors-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 2%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__sponsors-item {
  width: 49%;
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__sponsors-link {
  display: block;
  transition: opacity 0.3s ease;
}
.footer__sponsors-link:hover {
  opacity: 0.8;
}
.footer__sponsors-image {
  width: 100%;
  height: auto;
  display: block;
}
.footer__copyright {
  background: linear-gradient(90deg, #1d63c5 0%, #1125a3 64%);
  color: #fff;
  font-size: 1rem;
  padding: 1.5rem;
}
.footer__copyright .copyright {
  margin-bottom: 1rem;
}
.footer__copyright a:hover {
  color: #fff;
}
.footer .copyright__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.h__title {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.h__subtitle {
  font-family: "DIN Alternate", sans-serif;
  font-size: clamp(40px, 28.657px + 2.985vw, 60px);
  font-weight: 700;
  color: #1125a3;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 2rem;
}

.top__textlink {
  font-size: 16px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #1125a3;
  padding-bottom: 10px;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: all 0.5s;
  cursor: pointer;
}
.top__textlink:hover {
  color: #1125a3;
}
.top__textlink::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #1125a3;
  transition: width 0.5s ease;
}
.top__textlink:hover:before {
  width: 100%;
}
.top__textlink::after {
  font: var(--fa-font-solid);
  content: "\f0a9";
  font-size: 30px;
  color: #1125a3;
  background: linear-gradient(90deg, #1d63c5 0%, #1125a3 64%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  right: -45px;
  display: inline-block;
}
.top__textlink:hover::after {
  transform: rotateX(360deg);
  transition: 2s;
}

.top__btnlink {
  width: 300px;
  max-width: 100%;
  height: 70px;
  background: linear-gradient(90deg, #1d63c5 0%, #1125a3 50%, #1d63c5 100%);
  background-size: 200% 100%;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  padding: 20px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.top__btnlink::after {
  font: var(--fa-font-solid);
  content: "\f061";
  font-size: 18px;
  color: #fff;
  position: absolute;
  right: 20px;
  display: inline-block;
}
.top__btnlink:hover::after {
  transform: rotateX(360deg);
  transition: 2s;
}
.top__btnlink:hover {
  background-position: 100% 0;
  color: #fff;
}

/* PC用 */
@media (min-width: 769px) {
  .footerContact__inner {
    padding: clamp(40px, 17.313px + 5.97vw, 80px) clamp(30px, 12.985px + 4.478vw, 60px);
  }
  .footerContact__contener {
    border-bottom: 1px solid #1125a3;
    padding-bottom: clamp(20px, 14.328px + 1.493vw, 30px);
  }
  .footerContact__flex {
    display: flex;
  }
  .footerContact__subtitle {
    margin-bottom: 0;
  }
  .footerContact__text {
    width: 50%;
    text-align: left;
  }
  .footerContact__info {
    width: 50%;
  }
  .footerContact__description {
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
  }
  .footerContact__link {
    width: clamp(300px, 233.333px + 8.681vw, 400px);
  }
  .footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer__wrap {
    padding: 7rem 0 8rem;
  }
  .footer__nav {
    display: block;
    width: 45%;
    align-items: center;
  }
  .footer__nav__flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer__nav-list {
    width: 45%;
    font-size: 1.6rem;
  }
  .footer__nav-link {
    position: relative;
    display: block;
    padding: 1.5rem 0;
    border-bottom: 1px solid #1125a3;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
  }
  .footer__nav-link::after {
    font: var(--fa-font-solid);
    content: "\f061";
    font-size: 18px;
    color: #1125a3;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    transition: all 0.5s;
  }
  .footer__nav-link:hover {
    color: #1125a3;
  }
  .footer__nav-link:hover::after {
    transform: translate(1rem, -50%);
  }
  .footer__submenu {
    margin-left: 1rem;
  }
  .footer__submenu-link {
    font-size: 1.4rem;
    position: relative;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid #1125a3;
    cursor: pointer;
  }
  .footer__submenu-link::after {
    font: var(--fa-font-solid);
    content: "\f061";
    font-size: 16px;
    color: #1125a3;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5rem;
    display: inline-block;
    transition: all 0.5s;
  }
  .footer__submenu-link:hover {
    color: #1125a3;
  }
  .footer__submenu-link:hover::after {
    transform: translate(1rem, -50%);
  }
  .footer__sponsors-list {
    gap: 30px;
  }
  .footer__sponsors-item {
    width: calc(25% - 22.5px);
  }
  .footer__copyright {
    font-size: 1.2rem;
  }
  .footer__copyright .copyright {
    margin: 0;
  }
  .h__title {
    font-size: clamp(16px, 13.731px + 0.597vw, 20px);
    margin-bottom: clamp(15px, 12.164px + 0.746vw, 20px);
  }
  .h__subtitle {
    font-size: clamp(28px, 9.851px + 4.776vw, 60px);
    margin-bottom: clamp(20px, 11.493px + 2.239vw, 35px);
  }
  .top__textlink::after {
    font-size: 40px;
    position: absolute;
    right: -60px;
    margin-top: -10px;
  }
  .top__btnlink {
    width: 300px;
    height: 86px;
    font-size: clamp(14px, 12.866px + 0.299vw, 16px);
  }
  .top__btnlink::after {
    font-size: 22px;
  }
}
/*==================================
TOPページ
===================================*/
.main-view__wrap {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}
.main-view__wrap .swiper-wrapper {
  margin-top: 0;
  margin-left: 0;
}

.main-view {
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(100vh - 60px);
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__catchCopy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -6rem);
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  white-space: normal;
  width: 90%;
  text-align: center;
  opacity: 1;
  text-shadow: 1.5px 2px 10px rgba(10, 22, 95, 0.4);
  z-index: 20;
}

.mv__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 60px);
  width: 70%;
  max-width: 462px;
  height: auto;
  z-index: 20;
}

.topAbout {
  background: #dbebfb;
  overflow-x: hidden;
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
}
.topAbout_flex {
  display: block;
}
.topAbout__text {
  width: 100%;
}
.topAbout__title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.topAbout__subtitle {
  font-size: 3.8rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.topAbout__highlight {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1125a3;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.topAbout__description {
  line-height: 2;
  margin-bottom: 3.5rem;
}
.topAbout__image {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin-top: 3rem;
}
.topAbout__image img {
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
}

.topService__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.topService__item {
  width: calc(50% - 10px);
  max-width: 320px;
  margin-bottom: 2rem;
}
.topService__item .topService__image {
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
}
.topService__item .topService__image img {
  width: 100%;
}
.topService__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.topService__link .topService__image {
  position: relative;
  overflow: hidden;
}
.topService__link .topService__image::after {
  content: "詳細はこちら";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  font-size: clamp(14px, 9.463px + 1.194vw, 22px);
  font-weight: bold;
  color: #fff;
  opacity: 0;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.topService__link .topService__image img {
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.topService__link.notOpen .topService__image::after {
  content: "準備中";
  opacity: 1;
  letter-spacing: 0.2em;
}
.topService__link:hover .topService__image::after {
  opacity: 1;
  letter-spacing: 0.2em;
}
.topService__link:hover img {
  transform: scale(1.1);
  filter: brightness(70%);
}
.topService__link:hover .topService__name {
  color: #1125a3;
}
.topService__link .topService__name {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 1rem;
}
.topService__link .topService__name span {
  font-size: 1.2rem;
  display: block;
}
.topService__more {
  width: calc(70% - 10px);
  max-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topNews {
  background: #dbebfb;
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
}
.topNews__subtitle {
  margin-bottom: 0;
}
.topNews__header {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.topNews__lists {
  margin-top: 4rem;
  list-style: none;
  padding: 0;
}
.topNews__item {
  border-bottom: 1px solid #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: block;
  transition: all 0.5s;
  text-decoration: none;
  color: inherit;
}
.topNews__item:hover {
  background-color: #fff;
  border-bottom: 1px solid #1125a3;
  color: inherit;
}
.topNews__list:first-of-type .topNews__list__item {
  border-top: 1px solid #fff;
}
.topNews__date {
  font-size: 1.4rem;
}
.topNews__cat {
  font-size: 1.2rem;
  color: #fff;
  background-color: #1125a3;
  border-radius: 30px;
  padding: 5px 15px;
  margin-left: 13px;
}
.topNews__text {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.topNews__link {
  display: flex;
  align-items: flex-end;
  margin-right: 45px;
}

.topCompany {
  position: relative;
  padding-top: clamp(200px, 143.284px + 14.925vw, 300px);
  padding-bottom: clamp(250px, 108.209px + 37.313vw, 500px);
}
.topCompany__inner {
  position: relative;
}
.topCompany__contaner {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  background: #fff;
  padding: 10%;
  position: relative;
  margin-left: auto;
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
  z-index: 1;
}
.topCompany__highlight {
  font-size: 1.8rem;
  color: #1125a3;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}
.topCompany__description {
  line-height: 1.8;
  margin-bottom: 2rem;
}
.topCompany__link {
  position: absolute;
  bottom: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.topCompany__image {
  position: absolute;
}
.topCompany__image img {
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
  object-fit: cover;
}
.topCompany__image1 {
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}
.topCompany__image1 img {
  width: 100%;
  height: 100%;
}
.topCompany__image2 {
  width: 46%;
  height: auto;
  bottom: 5%;
  right: 0;
}
.topCompany__image3 {
  width: 46%;
  height: auto;
  bottom: 2%;
  left: 0;
  z-index: 0;
}

/* PC用 */
@media (min-width: 769px) {
  .main-view {
    height: calc(100vh - 84px);
  }
  .mv__catchCopy {
    font-size: clamp(46px, 26px + 2.604vw, 76px);
    white-space: nowrap;
    max-width: 90vw;
    transform: translate(-50%, -10rem);
  }
  .mv__logo {
    transform: translate(-50%, 80px);
    width: auto;
  }
  .topAbout_flex {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
  }
  .topAbout__text {
    width: 50%;
    padding-right: 3rem;
    position: relative;
  }
  .topAbout__title {
    font-size: clamp(16px, 5.517px + 2.759vw, 20px);
    margin-bottom: clamp(15px, 1.897px + 3.448vw, 20px);
  }
  .topAbout__subtitle {
    font-size: clamp(34px, -34.138px + 17.931vw, 60px);
    margin-bottom: clamp(20px, -19.31px + 10.345vw, 35px);
  }
  .topAbout__highlight {
    font-size: clamp(18px, 7.517px + 2.759vw, 22px);
    margin-bottom: 20px;
  }
  .topAbout__description {
    margin-bottom: clamp(30px, -48.621px + 20.69vw, 60px);
  }
  .topAbout__image {
    width: 66.666%;
    max-width: 700px;
    margin-right: clamp(-180px, -54.627px + -11.94vw, -100px);
    margin-top: 0;
  }
  .topService__item {
    width: calc(33.3333333333% - 20px);
    margin-bottom: 4.5rem;
  }
  .topService__link .topService__name {
    font-size: clamp(16px, 13.731px + 0.597vw, 20px);
  }
  .topService__link .topService__name span {
    font-size: clamp(12px, 9.731px + 0.597vw, 16px);
  }
  .topService__more {
    width: calc(33.3333333333% - 20px);
    margin-top: -8%;
  }
  .topNews__subtitle {
    margin-bottom: clamp(40px, 22.985px + 4.478vw, 70px);
  }
  .topNews__header {
    width: 30%;
    display: block;
  }
  .topNews_flex {
    display: flex;
    flex-wrap: wrap;
  }
  .topNews__lists {
    width: 65%;
    margin-top: 0;
  }
  .topNews__item {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .topNews__texts {
    padding: 0 2rem;
  }
  .topNews__text {
    margin-top: 1.5rem;
  }
  .topNews__link {
    display: inline-block;
    margin-right: 0;
  }
  .topCompany {
    position: relative;
    padding-top: clamp(100px, -100px + 26.042vw, 400px);
    padding-bottom: clamp(300px, 233.333px + 8.681vw, 400px);
  }
  .topCompany__inner {
    position: relative;
  }
  .topCompany__contaner {
    width: 70%;
    background: #fff;
    padding: clamp(40px, 17.313px + 5.97vw, 80px) clamp(30px, 12.985px + 4.478vw, 60px);
    box-shadow: none;
  }
  .topCompany__highlight {
    font-size: clamp(18px, 15.731px + 0.597vw, 22px);
    line-height: 2;
  }
  .topCompany__description {
    line-height: 2;
    margin-bottom: clamp(30px, 12.985px + 4.478vw, 60px);
  }
  .topCompany__link {
    bottom: -46px;
    left: 50%;
    transform: translateX(-50%);
  }
  .topCompany__image1 {
    width: 50%;
    height: 50%;
    top: clamp(80px, 33.333px + 6.076vw, 150px);
    left: 0;
  }
  .topCompany__image2 {
    width: 23%;
    height: auto;
    top: clamp(30px, -3.333px + 4.34vw, 80px);
    bottom: auto;
    right: 5%;
    z-index: 1;
  }
  .topCompany__image3 {
    width: 42%;
    height: auto;
    bottom: clamp(-300px, 13.433px + -29.851vw, -100px);
    left: 0;
    z-index: 1;
  }
}
/*==================================
下層 共通
===================================*/
.page__ttl {
  position: relative;
  z-index: 10;
  height: clamp(200px, 86.567px + 29.851vw, 400px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.page__ttl--bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #eee;
  background-size: cover;
  background-position: center;
}

.page__ttl {
  text-align: center;
  text-shadow: 1px 1.6px 10px rgb(10, 22, 95);
  color: #fff;
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
}
.page__ttl .page__ttl--bg {
  background-image: url(../image/bg_common.jpg);
}

h1.page__ttl--jp {
  font-size: clamp(16px, 11.463px + 1.194vw, 24px);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
}

.page__ttl--en {
  font-family: "DIN Alternate", sans-serif;
  font-size: clamp(28px, 9.851px + 4.776vw, 60px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: clamp(15px, 9.328px + 1.493vw, 25px);
  text-transform: uppercase;
}

.breadcrumb {
  text-align: center;
}

.notOpen {
  pointer-events: none;
  color: #666;
  text-decoration: none;
}

.header__submenu_list li a.notOpen {
  color: #999;
}

/*==================================
下層-*-私たちについて
===================================*/
.page__ttl--about .page__ttl--bg {
  background-image: url(../image/bg_about.jpg);
}

.aboutUs {
  background: #dbebfb;
  overflow-x: hidden;
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
}
.aboutUs_flex {
  display: block;
}
.aboutUs__text {
  width: 100%;
}
.aboutUs__title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.aboutUs__subtitle {
  font-size: 3.8rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.aboutUs__highlight {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1125a3;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.aboutUs__description {
  line-height: 2;
  margin-bottom: 3.5rem;
}
.aboutUs__image {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin-top: 3rem;
}
.aboutUs__image img {
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
}

.vision__heading {
  margin-top: 3rem;
  position: relative;
}
.vision__heading::after {
  content: "";
  display: block;
  background: #1125a3;
  width: calc(100% - 100px);
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
}
.vision__heading-en {
  font-family: "DIN Alternate", sans-serif;
  font-size: 2.8rem;
  color: #1125a3;
}
.vision__heading-jp {
  background: linear-gradient(90deg, #1d63c5 0%, #1125a3 64%);
  font-size: 1.4rem;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
}
.vision__list {
  display: block;
  margin-top: 5rem;
  counter-reset: number 0;
}
.vision__item {
  width: 100%;
  margin-top: 7rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #1125a3;
  position: relative;
}
.vision__item::before {
  counter-increment: number 1;
  content: counter(number) " ";
  font-family: "DIN Alternate", sans-serif;
  font-size: 4rem;
  color: #1125a3;
  line-height: 1.3;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -7%;
  border-bottom: 2px solid #1125a3;
}
.vision__item:first-of-type {
  margin-top: 0;
}
.vision__item__inner {
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
  background: #fff;
  text-align: center;
  padding: 15% 10% 10%;
}
.vision__splitedName {
  font-size: 2rem;
  font-weight: bold;
}
.vision__text {
  font-size: 16px;
  margin-top: 2rem;
  line-height: 2;
}

/* PC用 */
@media (min-width: 769px) {
  .aboutUs {
    position: relative;
  }
  .aboutUs_flex {
    display: flex;
    flex-wrap: nowrap;
  }
  .aboutUs__text {
    width: 50%;
  }
  .aboutUs__title {
    font-size: clamp(16px, 5.517px + 2.759vw, 20px);
    margin-bottom: clamp(15px, 1.897px + 3.448vw, 20px);
  }
  .aboutUs__subtitle {
    font-size: clamp(34px, -34.138px + 17.931vw, 60px);
    margin-bottom: clamp(20px, -19.31px + 10.345vw, 35px);
  }
  .aboutUs__highlight {
    font-size: clamp(18px, 7.517px + 2.759vw, 22px);
    margin-bottom: 20px;
  }
  .aboutUs__image {
    width: 50%;
    height: clamp(300px, 146.866px + 40.299vw, 570px);
    margin-top: 0;
    padding-left: 5%;
    position: absolute;
    right: 0;
  }
  .aboutUs__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .vision__heading::after {
    width: calc(100% - clamp(130px, 101.642px + 7.463vw, 180px));
  }
  .vision__heading-en {
    font-size: clamp(30px, 18.657px + 2.985vw, 50px);
  }
  .vision__heading-jp {
    font-size: clamp(14px, 8.328px + 1.493vw, 24px);
    padding: 5px 15px;
  }
  .vision__list {
    gap: 70px 4%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .vision__item {
    width: 30.6666666667%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
  }
  .vision__item__inner {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .vision__image {
    height: 113px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vision__image img {
    max-height: 100%;
  }
  .vision__splitedName {
    max-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
  }
  .vision__text {
    font-size: 1.6rem;
    text-align: center;
  }
}
/*==================================
下層-*-会社案内
===================================*/
.page__ttl--company .page__ttl--bg {
  background-image: url(../image/bg_company.jpg);
}

.message {
  background: #dbebfb;
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
}
.message__img {
  width: 100%;
  max-width: 100%;
}
.message__img img {
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
}
.message_flex {
  display: block;
}
.message__text {
  width: 100%;
  margin-bottom: 3rem;
}
.message__description {
  line-height: 2.5;
}

.companyProf {
  background: #fff;
}
.companyProf dl {
  display: block;
}
.companyProf dl dt {
  width: 100%;
  color: #1125a3;
  padding: 2rem 0 0;
}
.companyProf dl dt:first-of-type {
  border-top: 1px solid #dbebfb;
}
.companyProf dl dd {
  width: 100%;
  padding: 1rem 0 2rem;
  line-height: 1.6;
  border-bottom: 1px solid #dbebfb;
}
.access {
  padding-top: 0;
}
.access .address {
  color: #1125a3;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 3rem;
}
.access .gmap {
  margin-top: 3rem;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 60%;
}
.access .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* PC用 */
@media (min-width: 769px) {
  .message__img {
    width: 66.666%;
    max-width: 700px;
    margin-left: clamp(-170px, 49.403px + -20.896vw, -30px);
  }
  .message_flex {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
  }
  .message__text {
    width: 50%;
    padding-left: 5%;
    margin-bottom: 0;
  }
  .companyProf {
    background: #fff;
  }
  .companyProf dl {
    display: flex;
    flex-wrap: wrap;
  }
  .companyProf dl dt {
    width: 30%;
    padding: 3rem 0;
    border-bottom: 1px solid #dbebfb;
  }
  .companyProf dl dd {
    width: 70%;
    padding: 3rem 0;
    line-height: 1.8;
  }
  .companyProf dl dd:first-of-type {
    border-top: 1px solid #dbebfb;
  }
  .access .gmap {
    padding-top: 26%;
  }
}
/*==================================
下層-*-事業案内
===================================*/
.page__ttl--service .page__ttl--bg {
  background-image: url(../image/bg_service.jpg);
}

.business .business__list {
  gap: 70px 0;
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.business .business__item {
  width: 46%;
}
.business .business__item .business__image {
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
}
.business .business__item .business__image img {
  width: 100%;
}
.business .business__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.business .business__link .business__image {
  position: relative;
  overflow: hidden;
}
.business .business__link img {
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.business .business__link:hover img {
  transform: scale(1.1);
  filter: brightness(70%);
}
.business .business__link:hover .business__name {
  color: #1125a3;
}
.business .business__link .business__name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 2rem;
  padding-right: 35px;
  position: relative;
}
.business .business__link .business__name span {
  font-size: clamp(12px, 9.731px + 0.597vw, 16px);
  display: block;
}
.business .business__link .business__name::after {
  font: var(--fa-font-solid);
  content: "\f0a9";
  font-size: 30px;
  color: #1125a3;
  background: linear-gradient(90deg, #1d63c5 0%, #1125a3 64%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  right: 0;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
}
.business .business__link.notOpen:hover img {
  transform: scale(1);
}
.business .business__link.notOpen:hover .business__name {
  color: #333;
}
.business .business__description {
  font-size: 14px;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1125a3;
}

/* PC用 */
@media (min-width: 769px) {
  .business .business__list {
    gap: 70px 4%;
    margin-top: 5rem;
  }
  .business .business__item {
    width: 30.6666666667%;
  }
  .business .business__item .business__image img {
    width: 100%;
  }
  .business .business__link .business__name {
    font-size: clamp(16px, 13.731px + 0.597vw, 20px);
    padding-right: 45px;
  }
  .business .business__link .business__name span {
    font-size: clamp(12px, 9.731px + 0.597vw, 16px);
    display: initial;
  }
  .business .business__link .business__name::after {
    font: var(--fa-font-solid);
    content: "\f0a9";
    font-size: 40px;
    color: #1125a3;
    background: linear-gradient(90deg, #1d63c5 0%, #1125a3 64%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    right: 0;
    display: inline-block;
  }
  .business .business__description {
    font-size: 1.6rem;
  }
}
/*==================================
下層-*-各種事業
===================================*/
.page__ttl--solar-power .page__ttl--bg {
  background-image: url(../image/bg_solar-power.jpg);
}

.page__ttl--power-equipment .page__ttl--bg {
  background-image: url(../image/bg_power-equipment.jpg);
}

.page__ttl--automatic-control .page__ttl--bg {
  background-image: url(../image/bg_automatic-control.jpg);
}

.bizDetail {
  background: #dbebfb;
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
  border-bottom: 2px solid #1125a3;
}
.bizDetail__title {
  text-align: center;
  font-size: clamp(22px, 19.731px + 0.597vw, 26px);
  font-weight: 700;
  color: #1125a3;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}
.bizDetail__description {
  text-align: center;
  line-height: 1.8;
}
.bizDetail__list {
  display: block;
  margin-top: 3rem;
}
.bizDetail__item {
  width: 100%;
  background: #fff;
  padding: 8%;
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
  margin-top: 3rem;
}
.bizDetail__item h3 {
  text-align: center;
  color: #1125a3;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #1125a3;
}
.bizDetail__flex {
  display: flex;
  justify-content: space-between;
}
.bizDetail__image {
  width: 40%;
  text-align: center;
  padding: 0 5%;
}
.bizDetail__text {
  width: 60%;
  line-height: 1.8;
}

.bizSummary {
  position: relative;
  border-bottom: 2px solid #1125a3;
}
.bizSummary__flex {
  display: block;
  margin-bottom: clamp(100px, 0px + 13.021vw, 250px);
}
.bizSummary__flex:nth-of-type(even) {
  flex-direction: row-reverse;
}
.bizSummary__flex:nth-of-type(even) .bizSummary__text {
  margin-left: auto;
}
.bizSummary__flex:nth-of-type(even) .bizSummary__image {
  margin-right: auto;
  margin-left: initial;
}
.bizSummary__flex:nth-of-type(even) .bizSummary__image::after {
  right: auto;
  left: 4%;
}
.bizSummary__flex:last-of-type {
  margin-bottom: 0;
}
.bizSummary__text {
  background: #1125a3;
  width: 90%;
  padding: 10% 8% 12%;
}
.bizSummary__title {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
  position: relative;
}
.bizSummary__title::after {
  content: "";
  width: 40px;
  height: clamp(5px, 3.299px + 0.448vw, 8px);
  background: #fff;
  display: block;
  position: absolute;
  bottom: -2rem;
  left: 0;
}
.bizSummary__description {
  color: #fff;
  line-height: 2;
}
.bizSummary__description dl {
  background: #dbebfb;
  color: #1125a3;
  margin-top: 2rem;
  padding: 5%;
}
.bizSummary__description dl dt {
  font-size: 120%;
  font-weight: 700;
  position: relative;
}
.bizSummary__description dl dt::before {
  content: "●";
  margin-right: 1rem;
  background: linear-gradient(90deg, #1d63c5 0%, #1125a3 64%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bizSummary__image {
  width: 90%;
  height: auto;
  margin-top: 0;
  position: relative;
  margin-top: -5%;
  margin-left: auto;
}
.bizSummary__image img {
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
}
.bizSummary__image::after {
  content: "";
  background: #1125a3;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -5%;
  right: 4%;
  z-index: -10;
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
  box-shadow: 14.322px 15.358px 18px 0px rgba(0, 0, 0, 0.28);
}

.bizWork h3 {
  color: #1125a3;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

.othereBiz__list {
  gap: 50px 0;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.othereBiz__item {
  width: 46%;
}
.othereBiz__image {
  box-shadow: 3px 4px 24px 3px rgba(132, 154, 153, 0.21);
}
.othereBiz__image img {
  width: 100%;
}
.othereBiz__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.othereBiz__link:hover img {
  transform: scale(1.1);
  filter: brightness(70%);
}
.othereBiz__link:hover .othereBiz__name {
  color: #1125a3;
}
.othereBiz__link.notOpen:hover img {
  transform: scale(1);
}
.othereBiz__image {
  position: relative;
  overflow: hidden;
}
.othereBiz__image img {
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.othereBiz__name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 2rem;
  padding-right: 35px;
  position: relative;
}
.othereBiz__name span {
  font-size: clamp(12px, 9.731px + 0.597vw, 16px);
  display: block;
}
.othereBiz__name::after {
  font: var(--fa-font-solid);
  content: "\f0a9";
  font-size: 24px;
  color: #1125a3;
  background: linear-gradient(90deg, #1d63c5 0%, #1125a3 64%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  right: 0;
  display: inline-block;
  top: 0;
}

/* PC用 */
@media (min-width: 769px) {
  .bizDetail__title {
    font-size: clamp(28px, 21.194px + 1.791vw, 40px);
  }
  .bizDetail__list {
    gap: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .bizDetail__item {
    width: calc(50% - 20px);
    padding: 30px;
    margin-top: 0;
  }
  .bizDetail__item h3 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }
  .bizSummary__flex {
    display: flex;
    margin-bottom: clamp(100px, 0px + 13.021vw, 250px);
  }
  .bizSummary__flex:nth-of-type(even) .bizSummary__image {
    right: auto;
    left: 0;
  }
  .bizSummary__flex:nth-of-type(even) .bizSummary__image::after {
    top: -5%;
    right: auto;
    left: 4%;
  }
  .bizSummary__flex:last-of-type {
    margin-bottom: auto;
    padding-bottom: clamp(1px, -130.667px + 10.972vw, 80px);
  }
  .bizSummary__text {
    width: 60%;
    padding: 6%;
    margin-top: 10%;
  }
  .bizSummary__title {
    font-size: clamp(20px, 12.06px + 2.09vw, 34px);
    margin-bottom: 5rem;
  }
  .bizSummary__image {
    width: 48.48%;
    height: clamp(350px, 210.667px + 18.142vw, 559px);
    margin-top: 0;
    position: absolute;
    right: 0;
    z-index: -1;
  }
  .bizSummary__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .bizSummary__image::after {
    bottom: initial;
    top: -5%;
  }
  .bizWork h3 {
    font-size: clamp(20px, 12.06px + 2.09vw, 34px);
  }
  .othereBiz__list {
    margin-top: 5rem;
  }
  .othereBiz__item {
    width: 22%;
  }
  .othereBiz__name {
    font-size: clamp(13px, 11.866px + 0.299vw, 15px);
    padding-right: 45px;
  }
  .othereBiz__name span {
    font-size: clamp(12px, 9.731px + 0.597vw, 16px);
    display: initial;
  }
  .othereBiz__name::after {
    font: var(--fa-font-solid);
    content: "\f0a9";
    font-size: 30px;
    color: #1125a3;
    background: linear-gradient(90deg, #1d63c5 0%, #1125a3 64%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    right: 0;
    display: inline-block;
  }
}
.automatic-control__bizSummary .bizSummary__flex {
  margin-bottom: clamp(100px, 66.667px + 4.34vw, 150px);
}
.automatic-control__bizSummary .bizSummary__flex:last-of-type {
  margin-bottom: clamp(1px, -130.667px + 10.972vw, 80px);
  padding-bottom: clamp(1px, -130.667px + 10.972vw, 80px);
}

/*==================================
下層-*-プライバシーポリシー
===================================*/
.page__ttl--privacy-policy .page__ttl--bg {
  background-image: url(../image/bg_privacy.jpg);
}

.privacyPolicy h2 {
  font-size: clamp(20px, 16.597px + 0.896vw, 26px);
  font-weight: 700;
  color: #1125a3;
  border-left: 7px solid #1125a3;
  padding-left: 1.5rem;
}
.privacyPolicy h3 {
  font-size: clamp(18px, 15.731px + 0.597vw, 22px);
  font-weight: 700;
  color: #1125a3;
  background: #dbebfb;
  padding: 1rem;
  padding-left: 2.2rem;
  margin-top: clamp(20px, 11.493px + 2.239vw, 35px);
}
.privacyPolicy h4 {
  font-size: clamp(16px, 13.731px + 0.597vw, 20px);
  font-weight: 700;
  color: #1125a3;
  border-bottom: 1px solid #1125a3;
  margin-top: clamp(20px, 11.493px + 2.239vw, 35px);
}
.privacyPolicy p {
  margin-top: clamp(10px, 7.164px + 0.746vw, 15px);
  line-height: 1.8;
}
.privacyPolicy a {
  color: #1125a3;
  text-decoration: underline;
}
.privacyPolicy a:hover {
  color: #666;
}

/* PC用 */
@media (min-width: 769px) {
  .privacyPolicy h2 {
    border-left: 10px solid #1125a3;
    padding-left: 2.5rem;
  }
  .privacyPolicy h3 {
    padding-left: 3.5rem;
  }
}
/*==================================
下層-*-お問い合わせ
===================================*/
.page__ttl--contact .page__ttl--bg {
  background-image: url(../image/bg_contact.jpg);
}

.contact__form {
  background: #dbebfb;
  padding: 5%;
  margin-top: 3rem;
}
.contact__form dl {
  display: flex;
  border-bottom: 1px solid #fff;
}
.contact__form dl dt {
  width: 100%;
  padding: 20px 0 0;
  color: #1125a3;
  position: relative;
}
.contact__form dl dt.required:after {
  content: "必須";
  font-size: 12px;
  color: #fff;
  margin-left: 10px;
  background: #f2756e;
  padding: 2% 3%;
  border-radius: 15px;
}
.contact__form dl dt p {
  display: inline-block;
}
.contact__form dl dd {
  width: 100%;
  padding: 20px 0;
}
.contact__form dl dd .your-policy {
  display: block;
  padding: 2%;
}
.contact__form dl dd .help_text {
  font-size: 85%;
  color: #666;
  display: block;
}
.contact__form dl dd .help_text a {
  color: #333;
  text-decoration: underline;
  transition: all 0.5s ease-out;
  outline: none;
}
.contact__form dl dd .help_text a:hover {
  text-decoration: none;
}

.submit__btn {
  margin-top: 40px;
  text-align: center;
}

.submit__btn input[type=submit] {
  width: 280px;
  padding: 20px 80px;
  background: rgb(0, 131, 179);
  background: linear-gradient(90deg, #1d63c5 0%, #1125a3 64%);
  letter-spacing: 0.2em;
  border: none;
  appearance: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}
.submit__btn input[type=submit]:hover {
  opacity: 0.7;
}

input[type=email],
input[type=number],
input[type=password],
input[type=reset],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
select,
textarea {
  width: 100%;
  margin: 0;
  padding: 15px;
  border: 1px solid #fff;
  font: inherit;
  font-size: 100%;
  border-radius: 10px;
}

.ast-button,
input#submit,
input[type=button],
input[type=submit],
input[type=reset] {
  font-size: 15px;
  width: 280px;
}

@media (max-width: 768px) {
  .contact__form dl {
    display: block;
  }
  .contact__form dl dt {
    width: 100%;
    padding: 20px 0 0;
  }
  .contact__form dl dd {
    width: 100%;
  }
}
/* PC用 */
@media (min-width: 769px) {
  .contact__form dl dt {
    width: 34%;
    padding: 20px 0;
  }
  .contact__form dl dd {
    width: 66%;
  }
}
/*==================================
cocoon追加・修正
===================================*/
body.page {
  background: #fff;
}

.content {
  margin: 24px 0;
}