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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

p {
  margin: 0;
  padding: 0;
}

ul, ol, dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

li, dt, dd {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a:active {
  color: inherit;
}

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

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
  padding: 0;
}
button:focus {
  outline: none;
}

input:focus {
  outline: none;
}
input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

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

abbr, acronym, cite, code, dfn, em, kbd, strong, var {
  font-style: normal;
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
  margin: 0;
  padding: 0;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: "";
  content: none;
}

hr {
  margin: 0;
  padding: 0;
  border: 0;
  height: 1px;
  background-color: transparent;
}

pre {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  white-space: pre-wrap;
  word-wrap: break-word;
}

code, kbd, samp, tt {
  font-family: inherit;
  font-size: inherit;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  margin: 0;
  padding: 0;
  border: 0;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
}
select::-ms-expand {
  display: none;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=file] {
  background: none;
  border: none;
  padding: 0;
}
input[type=file]::-webkit-file-upload-button {
  -webkit-appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
}

progress {
  vertical-align: baseline;
}

meter {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

canvas {
  display: inline-block;
  vertical-align: middle;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

::-moz-selection {
  background-color: rgba(0, 123, 255, 0.2);
  color: inherit;
}

::selection {
  background-color: rgba(0, 123, 255, 0.2);
  color: inherit;
}

::-moz-selection {
  background-color: rgba(0, 123, 255, 0.2);
  color: inherit;
}

body {
  font-size: 16px;
  line-height: 24px;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  color: #000;
  width: 100%;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

a {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
a:hover {
  opacity: 0.7;
}
a.arrow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
a.arrow .arrow-icon {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
a.arrow .arrow-icon:before, a.arrow .arrow-icon:after {
  content: "";
  background-color: #fff;
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  left: 50%;
  width: 1px;
  height: 6px;
}
a.arrow .arrow-icon:before {
  top: 7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
a.arrow .arrow-icon:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em 2em;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn.btn-round {
  border-radius: 60px;
}
.btn.btn-border {
  border: 1px solid #005EAC;
}
.btn.btn-border-white {
  border: 1px solid #fff;
}

.container {
  position: relative;
  width: 90%;
  max-width: 1480px;
  margin: 0 auto;
}

.flex {
  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;
}

.en {
  font-family: "Century Gothic", "Avenir-Book", sans-serif;
  font-weight: 600;
  letter-spacing: -2px;
}
@media screen and (max-width: 600px) {
  .en {
    letter-spacing: 0;
  }
}

.thumb-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 200px;
}
.thumb-item a {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 4px;
  height: 100%;
}
.thumb-item a img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.thumb-item a .txt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  padding: 2em 1em 0.8em;
  color: #fff;
  text-align: left;
}
.thumb-item a .txt h4 {
  line-height: 1.2;
  font-size: 1.1rem;
  font-weight: 600;
}
.thumb-item a .txt p {
  font-size: 0.6rem;
  font-weight: 400;
}
.thumb-item a .txt .arrow-icon {
  position: absolute;
  right: 1em;
  bottom: 1em;
}
.thumb-item a:hover {
  opacity: 1;
}
.thumb-item a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 1024px) {
  .thumb-item a .txt {
    padding: 1em 0.5em 0.5em;
  }
  .thumb-item a .txt h4 {
    font-size: 1rem;
  }
  .thumb-item a .txt p {
    line-height: 1.5;
    font-size: 0.5rem;
  }
  .thumb-item a .txt .arrow-icon {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 10px;
    bottom: 10px;
  }
  .thumb-item a .txt .arrow-icon:before, .thumb-item a .txt .arrow-icon:after {
    width: 1px;
    height: 4px;
  }
  .thumb-item a .txt .arrow-icon:before {
    top: 3px;
  }
  .thumb-item a .txt .arrow-icon:after {
    top: 6px;
  }
}
@media screen and (max-width: 600px) {
  .thumb-item {
    display: block;
    margin-bottom: 1.4em;
  }
  .thumb-item:last-child {
    margin-bottom: 0;
  }
}

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

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

.intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #005EAC;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}
.intro.intro-hidden {
  opacity: 0;
  visibility: hidden;
}
.intro__content {
  text-align: center;
  width: 80%;
  max-width: 800px;
}
.intro__content object {
  height: auto;
}
.intro__content object img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

header {
  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;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.6em;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-transition: -webkit-transform 1s ease-out;
  transition: -webkit-transform 1s ease-out;
  transition: transform 1s ease-out;
  transition: transform 1s ease-out, -webkit-transform 1s ease-out;
}
header.header-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
header .logo {
  margin-right: auto;
  width: 320px;
  height: 40px;
}
header .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header nav.nav-desktop ul {
  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;
}
header nav.nav-desktop ul li {
  position: relative;
  margin: 0 1.2em;
}
header nav.nav-desktop ul li a {
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}
header nav.nav-desktop ul li a:hover {
  color: #000;
}
header nav.nav-desktop ul li a.current {
  color: #005EAC;
}
header nav.nav-desktop ul li a.current:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #005EAC;
  position: absolute;
  bottom: -6px;
  left: 0;
}
header nav.nav-desktop ul li.mega-menu-item .mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 300px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1001;
}
header nav.nav-desktop ul li.mega-menu-item .mega-menu:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(255, 255, 255, 0.95);
}
header nav.nav-desktop ul li.mega-menu-item .mega-menu .mega-menu-content {
  padding: 2em;
}
header nav.nav-desktop ul li.mega-menu-item .mega-menu .mega-menu-content .mega-menu-column h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #005EAC;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #005EAC;
}
header nav.nav-desktop ul li.mega-menu-item .mega-menu .mega-menu-content .mega-menu-column ul {
  display: block;
}
header nav.nav-desktop ul li.mega-menu-item .mega-menu .mega-menu-content .mega-menu-column ul li {
  margin-bottom: 0.8em;
}
header nav.nav-desktop ul li.mega-menu-item .mega-menu .mega-menu-content .mega-menu-column ul li a {
  padding: 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: #333;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
header nav.nav-desktop ul li.mega-menu-item .mega-menu .mega-menu-content .mega-menu-column ul li a:hover {
  color: #005EAC;
}
header nav.nav-desktop ul li.mega-menu-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(5px);
          transform: translateX(-50%) translateY(5px);
}
header nav.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #005EAC;
  z-index: 1002;
  padding: 6em 2em 2em;
  overflow-y: auto;
}
header nav.nav-mobile ul li {
  margin-bottom: 1.5em;
}
header nav.nav-mobile ul li a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  padding: 0.5em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
header nav.nav-mobile ul li a.mobile-menu-toggle {
  position: relative;
}
header nav.nav-mobile ul li a.mobile-menu-toggle:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header nav.nav-mobile ul li a.mobile-menu-toggle:after {
  content: "";
  position: absolute;
  right: 7px;
  top: 50%;
  width: 2px;
  height: 16px;
  background-color: #fff;
  border-radius: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header nav.nav-mobile ul li a.mobile-menu-toggle.active:before {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
header nav.nav-mobile ul li a.mobile-menu-toggle.active:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
header nav.nav-mobile ul li .mobile-submenu {
  display: none;
  margin-top: 1em;
  padding-left: 1.5em;
}
header nav.nav-mobile ul li .mobile-submenu li {
  margin-bottom: 0.8em;
}
header nav.nav-mobile ul li .mobile-submenu li a {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: none;
  padding: 0.3em 0;
}
header nav.nav-mobile ul li .mobile-submenu li a:hover {
  color: #fff;
}
header nav.nav-mobile ul li .mobile-submenu.active {
  display: block;
}
header .hamburger-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1003;
}
header .hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 3px 0;
}
header .hamburger-menu.active span {
  background-color: #fff;
}
header .hamburger-menu.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(8px, 8px);
          transform: rotate(45deg) translate(8px, 8px);
}
header .hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
header .hamburger-menu.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(8px, -8px);
          transform: rotate(-45deg) translate(8px, -8px);
}
@media screen and (max-width: 1024px) {
  header .nav-desktop {
    display: none;
  }
  header .hamburger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .nav-mobile {
    height: 100vh;
  }
  header .nav-mobile.active {
    display: block;
  }
  header.menu-open .logo {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 600px) {
  header {
    padding: 1em;
  }
  header .logo {
    width: 240px;
    height: 24px;
  }
}

main {
  margin-top: 100px;
}
main .pankuzu {
  background-color: #005EAC;
  color: #fff;
  padding: 0.5em 1.5em;
}
main .pankuzu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .pankuzu ul li {
  font-size: 0.8rem;
  font-weight: 400;
  color: #fff;
}
main .pankuzu ul li a:hover {
  text-decoration: underline;
  opacity: 1;
}
main .pankuzu ul li:after {
  display: inline-block;
  margin: 0 1em;
  content: "/";
  font-size: 0.8rem;
}
main .pankuzu ul li:last-child:after {
  display: none;
}
@media screen and (max-width: 1024px) {
  main .pankuzu ul li {
    font-size: 0.7rem;
  }
  main .pankuzu ul li:after {
    font-size: 0.7rem;
  }
}
main .page-title {
  padding: 5em 0;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}
main .page-title h1 {
  line-height: 1.2;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
}
main .page-title h1 span {
  letter-spacing: 0;
  display: block;
  color: #005EAC;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1024px) {
  main .page-title {
    padding: 3.5em 0;
  }
  main .page-title h1 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 600px) {
  main .page-title {
    padding: 2.4em 0;
  }
  main .page-title h1 {
    font-size: 1.8rem;
  }
  main .page-title h1 span {
    font-size: 0.8rem;
  }
}
main .page-title.business-single {
  padding: 6em 0;
  border-bottom: none;
}
main .page-title.business-single .container {
  max-width: 1200px;
  margin: auto;
}
main .page-title.business-single .name h1 {
  text-align: left;
  font-weight: 600;
  font-size: 1.2rem;
  color: #005EAC;
  margin-bottom: 1em;
}
main .page-title.business-single .name .logo {
  height: 100px;
}
main .page-title.business-single .name .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .page-title.business-single .url a {
  color: #005EAC;
  font-size: 1rem;
  font-weight: 500;
  background: url("../img/icon-url.svg") no-repeat 0px 3px;
  background-size: 20px 20px;
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  main .page-title.business-single {
    padding-bottom: 4em;
  }
  main .page-title.business-single .name h1 {
    font-size: 1rem;
  }
  main .page-title.business-single .name .logo {
    height: 80px;
  }
  main .page-title.business-single .url a {
    font-size: 0.9rem;
    background-position: 0 0;
  }
}
@media screen and (max-width: 600px) {
  main .page-title.business-single {
    padding: 2em 0;
  }
  main .page-title.business-single .flex {
    width: 100%;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .page-title.business-single .flex .name .logo {
    margin: 0.4em auto 1.5em;
  }
  main .page-title.business-single .flex .url a {
    font-size: 0.8rem;
    background-size: 16px 16px;
    padding-left: 24px;
    background-position: 0 2px;
  }
}
main .business-lead {
  padding: 8em 0;
  text-align: center;
}
main .business-lead__txt h2 {
  margin-bottom: 2.5em;
}
main .business-lead__txt h2 img {
  width: 100%;
  max-width: 660px;
  height: auto;
}
main .business-lead__txt p {
  font-size: 1.2rem;
  letter-spacing: 1px;
  line-height: 2;
}
main .business-lead__txt p span {
  color: #005EAC;
  font-weight: 600;
}
main .business-lead__img {
  margin: 5em auto;
  text-align: center;
}
main .business-lead__img object {
  width: 100%;
  max-width: 860px;
  height: auto;
}
main .business-lead__img img {
  width: 100%;
  max-width: 860px;
  height: auto;
}
main .business-lead__logo ul {
  width: 80%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .business-lead__logo ul li {
  text-align: center;
}
main .business-lead__logo ul li a {
  display: block;
  padding: 0.2em 2em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main .business-lead__logo ul li a img {
  width: 100%;
  max-height: 100px;
  max-width: 320px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  main .business-lead {
    padding: 6em 0 2em;
  }
  main .business-lead__txt h2 img {
    max-width: 550px;
  }
  main .business-lead__txt p {
    font-size: 1rem;
  }
  main .business-lead__logo ul {
    gap: 1em;
  }
  main .business-lead__logo ul li a {
    padding: 1em;
  }
  main .business-lead__logo ul li a img {
    max-width: 180px;
  }
}
@media screen and (max-width: 600px) {
  main .business-lead {
    padding: 2em 0;
  }
  main .business-lead__txt h2 img {
    width: 90%;
  }
  main .business-lead__txt p {
    text-align: left;
    line-height: 1.8;
  }
  main .business-lead__img {
    margin: 2em auto;
  }
  main .business-lead__logo ul {
    gap: 0.6em;
  }
  main .business-lead__logo ul li a img {
    max-width: 200px;
  }
}

.back {
  text-align: center;
  padding: 8em 0 0;
}
.back a {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  padding: 0.4em 0;
}
.back a i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #005EAC;
  border-right: 1px solid #005EAC;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-right: 10px;
  top: -2px;
  left: 0;
  position: relative;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.back a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #005EAC;
  bottom: 0;
  left: 0;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.back a:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (max-width: 1024px) {
  .back {
    padding-top: 5em;
  }
}
@media screen and (max-width: 600px) {
  .back {
    padding-top: 4em;
  }
  .back a {
    font-size: 0.9rem;
  }
}

footer {
  margin-top: 10em;
  color: #fff;
}
footer .footer__nav {
  padding: 9em 0 5em;
  background-color: #005EAC;
}
footer .footer__nav .logo {
  margin-bottom: 4em;
}
footer .footer__nav .flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
footer .footer__nav .flex > div {
  width: 30%;
}
footer .footer__nav .flex > div dl {
  margin-bottom: 2em;
}
footer .footer__nav .flex > div dl dt {
  margin-bottom: 1em;
}
footer .footer__nav .flex > div dl dt a {
  padding: 0.5em 0;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #fff;
}
footer .footer__nav .flex > div dl dd {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.5em;
}
footer .footer__nav .flex > div dl dd:before {
  opacity: 0.3;
  position: absolute;
  top: 50%;
  content: "";
  left: 0;
  width: 10px;
  height: 1px;
  background-color: #fff;
}
footer .footer__nav .flex > div dl dd a {
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 0.5em;
}
footer .footer__nav .flex > div dl dd a:hover {
  text-decoration: underline;
  opacity: 1;
}
footer .footer__nav .sns {
  margin-top: 2em;
}
footer .footer__nav .sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.4em;
}
footer .footer__nav .sns ul li a img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer__copyright {
  background-color: #003B6D;
  color: #fff;
  padding: 0.5em 0;
  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;
}
footer .footer__copyright ul {
  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;
}
footer .footer__copyright ul li a {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 400;
}
footer .footer__copyright ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}
footer .footer__copyright p {
  font-size: 0.7rem;
  font-weight: 400;
  color: #fff;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  footer {
    margin-top: 6em;
  }
  footer .footer__nav {
    padding: 5em 0 3em;
  }
}
@media screen and (max-width: 768px) {
  footer .footer__nav .logo {
    width: 200px;
    height: auto;
    margin-bottom: 2.4em;
  }
  footer .footer__nav .flex > div dl dt {
    margin-bottom: 0.5em;
  }
  footer .footer__nav .flex > div dl dt a {
    font-size: 1rem;
  }
  footer .footer__nav .flex > div dl dd {
    margin-bottom: 0.2em;
  }
  footer .footer__nav .flex > div dl dd a {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 600px) {
  footer {
    margin-top: 4em;
  }
  footer .footer__nav {
    padding: 4em 0 3em;
  }
  footer .footer__nav .logo {
    width: 200px;
    margin: 0 auto 2.5em;
  }
  footer .footer__nav .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer__nav .flex > div {
    width: 100%;
  }
  footer .footer__nav .flex > div dl {
    margin-bottom: 1em;
  }
  footer .footer__nav .flex > div dl dt a {
    font-size: 1rem;
  }
  footer .footer__nav .flex > div dl dd a {
    font-size: 0.8rem;
  }
  footer .footer__copyright .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer__copyright .flex p {
    margin: 1em 0 0;
    font-size: 0.6rem;
  }
}

@-webkit-keyframes introLogoAnimation {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5) rotate(-10deg);
            transform: scale(0.5) rotate(-10deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1) rotate(0deg);
            transform: scale(1.1) rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
  }
}

@keyframes introLogoAnimation {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5) rotate(-10deg);
            transform: scale(0.5) rotate(-10deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1) rotate(0deg);
            transform: scale(1.1) rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
  }
}
body.intro-active {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.header-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.8s ease-out;
  transition: -webkit-transform 0.8s ease-out;
  transition: transform 0.8s ease-out;
  transition: transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.header-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.animate-on-scroll {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.animate-on-scroll.animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.lead.animate-on-scroll {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.our-business.animate-on-scroll {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.company.animate-on-scroll {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.sustainability.animate-on-scroll {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.information.animate-on-scroll {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.banners.animate-on-scroll {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}/*# sourceMappingURL=common.css.map */