@charset "UTF-8";
.btn {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5em;
  position: relative;
  padding: 0.75em 0.5em;
}
.btn::after {
  content: "";
  display: block;
  --size: 18px;
  width: var(--size);
  height: var(--size);
  background: url(../../dist/img/icon-r.svg) center/contain no-repeat;
}
.btn::before {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background: var(--blue_gd);
  position: absolute;
  inset: auto 0 0 0;
}

.btn-box {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.41);
  border: 1px solid rgba(0, 0, 0, 0.41);
  min-height: 63px;
  font-weight: bold;
}
.btn-box img {
  margin-right: 10px;
}
.btn-box small {
  font-size: 0.81em;
}

.btn-right {
  margin-left: auto;
}

.btn-center {
  margin-inline: auto;
}

.lang {
  border: 1px solid var(--black);
  padding: 0.1em 0.25em;
  width: fit-content;
}

h1,
h2,
h3,
h4 {
  font-weight: bold;
}

.hl-border {
  border-left: 8px solid var(--black);
  padding-left: 0.75em;
}

.hl-border2 {
  position: relative;
  padding-bottom: 0.75em;
}
.hl-border2:after {
  content: "";
  border-bottom: 5px solid var(--blue);
  width: 40px;
  position: absolute;
  left: 0;
  bottom: 5px;
}

.color-white .hl-border {
  border-color: var(--white);
}

.hl-lv02 {
  font-size: 2.25rem;
}
@media screen and (max-width: 991.98px) {
  .hl-lv02 {
    font-size: 1.375rem;
  }
}

.hl-lv03 {
  font-size: 1.5rem;
}
@media screen and (max-width: 991.98px) {
  .hl-lv03 {
    font-size: 1rem;
  }
}

.hl-lv04 {
  font-size: 1.375rem;
}
@media screen and (max-width: 991.98px) {
  .hl-lv04 {
    font-size: 0.875rem;
  }
}

.txt_blue {
  color: var(--blue);
}

.hl-58 {
  height: 58px;
}
@media screen and (max-width: 991.98px) {
  .hl-58 {
    height: 40.6px;
  }
}

.hl-36 {
  height: 36px;
}
@media screen and (max-width: 991.98px) {
  .hl-36 {
    height: 25.2px;
  }
}

.hl-27 {
  height: 27px;
}
@media screen and (max-width: 991.98px) {
  .hl-27 {
    height: 18.9px;
  }
}

.swiper {
  max-width: 100%;
}
.swiper picture {
  display: block;
}
.swiper picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-blocks .item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.grid-blocks .item a {
  --icon_size: 97px;
  display: grid;
  place-items: center;
  grid-template-rows: var(--icon_size) auto;
  padding-block: 70px 50px;
}
.grid-blocks .item a .text {
  margin-top: 0.5em;
}
.grid-blocks .item a img {
  height: var(--icon_size);
}
@media screen and (max-width: 991.98px) {
  .grid-blocks .item a {
    --icon_size: 50px;
    padding-block: 40px 25px;
  }
}
.grid-blocks .news {
  background-image: url(../../dist/img/bg-arwt01.webp);
}
.grid-blocks .philosophy {
  background-image: url(../../dist/img/bg-arwt02.webp);
}
.grid-blocks .history {
  background-image: url(../../dist/img/bg-arwt03.webp);
}

.grid-r {
  display: grid;
  grid-template-columns: 2fr 3fr;
}
.grid-r .item {
  grid-column: 2/3;
}
@media screen and (max-width: 991.98px) {
  .grid-r {
    grid-template-columns: 1fr 3fr;
  }
}

.grid-cards .item {
  display: grid;
  grid-template-areas: "stack";
}
.grid-cards .item > * {
  grid-area: stack;
}
.grid-cards .item .text {
  display: grid;
  place-items: center;
  font-size: 1.75rem;
}
@media screen and (max-width: 991.98px) {
  .grid-cards .item .text {
    font-size: 1.25rem;
  }
}
.grid-cards .item picture {
  display: block;
}
.grid-cards .item picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 575.98px) {
  .grid-cards {
    grid-template-columns: 1fr;
  }
}

.list-news li {
  border: 1px solid var(--black);
  border-width: 1px 0;
  margin-top: -1px;
}
.list-news a {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 0.75em 1em;
}

.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 1s;
}

.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.sub_nav ul {
  padding: 30px 0;
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}
.sub_nav ul li a {
  display: flex;
  gap: 10px;
}
.sub_nav ul li a:before {
  content: url("../../dist/img/page/tri1.png");
}
.sub_nav ul li.current a {
  color: var(--blue);
}
.sub_nav ul li.current a:before {
  content: url("../../dist/img/page/tri2.png");
}
@media screen and (max-width: 991.98px) {
  .sub_nav ul {
    padding: 30px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .sub_nav ul li {
    width: 100%;
    line-height: 1em;
  }
  .sub_nav ul li a {
    display: flex;
    gap: 10px;
  }
  .sub_nav ul li a:before {
    content: url("../../dist/img/page/tri1.png");
  }
  .sub_nav ul li.current a {
    color: var(--blue);
  }
  .sub_nav ul li.current a:before {
    content: url("../../dist/img/page/tri2.png");
  }
  .sub_nav ul li:not(:last-child) a {
    border-bottom: 1px solid var(--black);
  }
}

.section-contact {
  background: url(../../dist/img/bg-contact.webp) center/cover no-repeat;
  padding-block: 40px;
}

.contact-clm {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--gap);
}
.contact-clm .btn-box {
  width: 100%;
}
.contact-clm .r .btn-box {
  font-size: 1.375rem;
}
.contact-clm .l,
.contact-clm .r {
  padding-bottom: 1em;
}
@media screen and (min-width: 992px) {
  .contact-clm .r {
    border-left: 1px solid var(--black);
    padding-left: var(--gap);
  }
}
@media screen and (max-width: 991.98px) {
  .contact-clm {
    grid-template-columns: 1fr;
  }
}

.footer .nav-wrap {
  display: flex;
  gap: 2em;
}
@media screen and (max-width: 991.98px) {
  .footer .nav-wrap {
    flex-wrap: wrap;
  }
}
.footer .logo-area .lang {
  margin-left: auto;
}
@media screen and (max-width: 991.98px) {
  .footer .logo-area .lang {
    margin-left: 0;
  }
}
.footer .logo-area .logo {
  display: block;
}

.nav-footer .list-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  font-weight: bold;
}
.nav-footer .list-nav small {
  font-size: 0.875rem;
  font-weight: 500;
}

.js-menu {
  transition: clip-path 0.3s;
  clip-path: inset(0 0 0 100%);
  position: fixed;
  z-index: 10;
  inset: 0;
  background: #fff;
}

.menu-open .js-menu {
  clip-path: inset(0 0 0 0%);
  display: block;
}

.menu {
  text-align: center;
}
.menu .list-nav li {
  margin-top: 0.5em;
  font-weight: bold;
}
.menu .list-nav li small {
  font-size: 0.8em;
  font-weight: normal;
}
.menu .lang {
  margin-inline: auto;
}

.btn-menu {
  --size: 50px;
  --gap: 7px;
  width: var(--size);
  height: var(--size);
  position: fixed;
  z-index: 100;
  inset: 10px 10px auto auto;
  background: var(--white);
}
.btn-menu .bars {
  position: relative;
}
.btn-menu .bar {
  width: 60%;
  height: 1px;
  background: var(--black);
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  transition: transform 0.3s;
}
.btn-menu .bar:nth-child(1) {
  transform: translateY(var(--gap));
}
.btn-menu .bar:nth-child(2) {
  opacity: 1;
}
.btn-menu .bar:nth-child(3) {
  transform: translateY(calc(var(--gap) * -1));
}
@media screen and (max-width: 991.98px) {
  .btn-menu {
    top: 15px;
  }
}

.menu-open .bar:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.menu-open .bar:nth-child(2) {
  opacity: 0;
}
.menu-open .bar:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.section-globe {
  background: url(../../dist/img/bg-globe.webp) center/cover no-repeat;
}

.section-we_purse {
  background: url(../../dist/img/bg-green_gd.webp) center/cover no-repeat;
}

.section-international_network {
  background: url(../../dist/img/bg-blue_gd.webp) center/cover no-repeat;
}

.back-pink {
  background: url(../../dist/img/bg-arwt01.webp) center/cover no-repeat;
}

.formTable {
  margin-top: 60px;
  margin-bottom: 40px;
  width: 100%;
}
.formTable th, .formTable td {
  padding-bottom: 30px;
}
@media screen and (max-width: 991.98px) {
  .formTable th, .formTable td {
    padding-bottom: 10px;
  }
}
.formTable th {
  text-align: left;
  font-weight: bold;
  width: 20%;
  vertical-align: top;
}
@media screen and (max-width: 991.98px) {
  .formTable th {
    display: block;
    width: 100%;
  }
}
.formTable td {
  padding-left: 20px;
}
@media screen and (max-width: 991.98px) {
  .formTable td {
    display: block;
    width: 100%;
  }
}
.formTable span.hissu {
  font-size: 12px;
  color: var(--blue);
  display: inline-block;
  margin-left: 10px;
}
.formTable input, .formTable textarea, .formTable select {
  border: 1px solid var(--blue);
  width: 85%;
  padding: 6px 10px;
}
@media screen and (max-width: 991.98px) {
  .formTable input, .formTable textarea, .formTable select {
    width: 95%;
  }
}
.formTable textarea {
  height: 200px;
}

.submit input {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  background-color: var(--blue);
  width: 200px;
  padding: 4px 10px;
  margin: 0 auto;
  align-items: center;
}
@media screen and (max-width: 991.98px) {
  .submit input {
    width: 200px;
  }
}

/*事業案内*/
.flex.serviceinner {
  justify-content: space-between;
  align-items: baseline;
}
.flex.serviceinner img {
  height: 45px;
}

.sign img {
  vertical-align: -30px;
  padding-left: 10px;
}

.governance-ul {
  padding-top: 50px;
}
.governance-ul li {
  align-items: flex-start;
  display: flex;
  gap: 30px;
  justify-content: flex-start;
}
.governance-ul li h3 {
  margin-bottom: 20px;
}
.governance-ul li img {
  width: 120px;
}

.company-table {
  width: 100%;
  margin-top: 60px;
  background-color: #fff;
  border-collapse: collapse;
  border: 1px solid var(--blue);
}
.company-table th, .company-table td {
  padding: 15px;
}
.company-table th {
  background-color: var(--blue);
  color: #fff;
}
.company-table tr:not(:last-child) th {
  border-bottom: 1px solid #fff;
}
.company-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--blue);
}

@media screen and (min-width: 992px) {
  #companyimage {
    width: 500px;
    margin-block: auto;
  }
}

img {
  max-width: 100% !important;
  height: auto;
}

table.history {
  margin-top: 60px;
  margin-bottom: 80px;
  width: 100%;
  border-collapse: collapse;
}
table.history td {
  padding: 30px 20px;
}
@media screen and (max-width: 991.98px) {
  table.history td {
    padding: 20px 10px;
  }
}
table.history td.year {
  border-bottom: 1px solid var(--blue);
}
@media screen and (min-width: 992px) {
  table.history td.year {
    width: 35%;
  }
}
@media screen and (max-width: 991.98px) {
  table.history td.year {
    width: 35%;
  }
}
table.history td.cont {
  border-bottom: 1px solid #ccc;
}

.phy {
  margin-top: 100px;
  padding-bottom: 80px;
}
.phy li {
  margin-top: 50px;
}
.phy li h3 {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 991.98px) {
  .phy li img {
    display: block;
  }
}

.privacy p {
  font-size: 0.8em;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.mt-05 {
  margin-top: 0.5em !important;
}

.mb-05 {
  margin-bottom: 0.5em !important;
}

.mt-1 {
  margin-top: 1em !important;
}

.mb-1 {
  margin-bottom: 1em !important;
}

.mt-2 {
  margin-top: 2em !important;
}

.mb-2 {
  margin-bottom: 2em !important;
}

.mt-3 {
  margin-top: 3em !important;
}

.mb-3 {
  margin-bottom: 3em !important;
}

.mt-4 {
  margin-top: 4em !important;
}

.mb-4 {
  margin-bottom: 4em !important;
}

.mt-5 {
  margin-top: 5em !important;
}

.mb-5 {
  margin-bottom: 5em !important;
}

.mb-6 {
  margin-bottom: 6em !important;
}

.mr-2 {
  margin-right: 2em !important;
}

@media screen and (max-width: 991.98px) {
  .mt-0-sp {
    margin-top: 0 !important;
  }
  .mb-0-sp {
    margin-bottom: 0 !important;
  }
  .pt-0-sp {
    padding-top: 0 !important;
  }
  .pb-0-sp {
    padding-bottom: 0 !important;
  }
  .mt-05-sp {
    margin-top: 0.5em !important;
  }
  .mb-05-sp {
    margin-bottom: 0.5em !important;
  }
  .mt-1-sp {
    margin-top: 1em !important;
  }
  .mb-1-sp {
    margin-bottom: 1em !important;
  }
  .mt-2-sp {
    margin-top: 2em !important;
  }
  .mb-2-sp {
    margin-bottom: 2em !important;
  }
  .mt-3-sp {
    margin-top: 3em !important;
  }
  .mb-3-sp {
    margin-bottom: 3em !important;
  }
  .mt-4-sp {
    margin-top: 4em !important;
  }
  .mb-4-sp {
    margin-bottom: 4em !important;
  }
  .mt-5-sp {
    margin-top: 5em !important;
  }
  .mb-5-sp {
    margin-bottom: 5em !important;
  }
}
.mi-auto {
  margin-inline: auto;
}

.bg-white {
  background-color: var(--white);
}

.bg-black {
  background-color: var(--black);
}

.color-white {
  color: var(--white);
}

.color-black {
  color: var(--black);
}

.fw-bold {
  font-weight: bold;
}

.fw-light {
  font-weight: lighter;
}

.fw-normal {
  font-weight: normal;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

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

.ta-right {
  text-align: right;
}

.ta-left {
  text-align: left;
}

@media screen and (max-width: 991.98px) {
  .ta-center-sp {
    text-align: center;
  }
  .ta-right-sp {
    text-align: right;
  }
  .ta-left-sp {
    text-align: left;
  }
}/*# sourceMappingURL=bundle.css.map */