@charset "UTF-8";
html {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1400px) {
  html {
    font-size: 0.7vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 1.3125vw;
  }
}
html * {
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 2.8rem;
  }
}

a {
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
}

#wrapper {
  overflow: hidden;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.noFind {
  text-align: center;
  margin-top: 2rem;
  width: 100%;
}

.fadeInLeft, .fadeInRight {
  position: relative;
}
.fadeInLeft::after, .fadeInRight::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all ease-in-out 0.6s;
  transform-origin: center right;
  z-index: 10;
}
.fadeInLeft.scrollActive::after, .fadeInRight.scrollActive::after {
  transform: scaleX(0);
}

.fadeInRight::after {
  transform-origin: center left;
}

.flowLink {
  position: relative;
  padding: 2px 0;
}
@media print, screen and (min-width: 768px) {
  .flowLink::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    height: 1px;
    width: 100%;
    transform: scale(0);
    transform-origin: left center;
    transition: all ease-in-out 0.3s;
  }
}
.flowLink:hover::after {
  transform: scale(1);
}

.maker {
  display: inline;
  background: linear-gradient(transparent 70%, #fdd8d8 0%);
  padding: 0 0.4rem;
}

.link-blue {
  color: #00b1dd;
}

.scrollItem, .scrollListItem {
  opacity: 0;
  transition: all ease-in-out 0.6s;
}
.scrollItem.scrollActive, .scrollListItem.scrollActive {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  #wrapper:not(.preload) * {
    transition: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@keyframes zoomUp {
  from {
    transform: scale(1) rotate(0.001deg);
  }
  to {
    transform: scale(1.15) rotate(0.001deg);
  }
}
.fadein {
  opacity: 0;
}
.fadein.scrollActive {
  opacity: 1;
}

.fadeTop {
  opacity: 0;
  transform: translateY(5rem);
}
.fadeTop.scrollActive {
  opacity: 1;
  transform: translate(0);
}

.fadeRight {
  opacity: 0;
  transform: translateX(5rem);
}
.fadeRight.scrollActive {
  opacity: 1;
  transform: translate(0);
}

.fadeBottom {
  opacity: 0;
  transform: translateY(-5rem);
}
.fadeBottom.scrollActive {
  opacity: 1;
  transform: translate(0);
}

.header {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #f5f8fa;
  width: 100%;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  .header.fixed {
    position: fixed;
  }
}
.header__anim {
  background-color: #f5f8fa;
  width: 100%;
  z-index: 1000;
}
.header__anim.fixed {
  position: fixed;
}
@media print, screen and (min-width: 768px) {
  .header__anim.fixed {
    transform: translateY(-160%);
  }
  .header__anim.fixed .header__wrapper {
    height: 7rem;
  }
  .header__anim.fixed .header__logo {
    width: 23.5rem;
  }
  .header__anim.fixed .gnav__bg {
    top: 7rem;
  }
  .header__anim.fixed .gnav__item.contact {
    height: 7rem;
  }
  .header__anim.fixed .gnav__item.contact::before {
    top: -2rem;
  }
  .header__anim.fixed .gnav__item.contact .gnavAnim__txt::before {
    top: -2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .header__anim.fixed {
    transform: translateY(-100%);
  }
}
.header__anim.hide {
  transition: all ease-in-out 0.6s;
}
.header__anim.anim {
  transform: translateX(0);
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  height: 9rem;
  width: 96%;
  max-width: 1550px;
}
@media only screen and (max-width: 767px) {
  .header__wrapper {
    height: 12rem;
    width: 90%;
  }
}
.header__logo {
  width: 29.5rem;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    width: 44rem;
  }
}
@media print, screen and (min-width: 768px) {
  .header .gnav {
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__first {
    position: fixed;
    top: 12rem;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100vh - 12rem);
    width: 100vw;
    background-color: rgba(0, 177, 221, 0.9);
    padding: 15% 10%;
    overflow: hidden scroll;
    transition: all ease-in-out 0.6s;
    transform: translateX(100%);
  }
  .header .gnav__first.active {
    transform: translateX(0);
  }
}
.header .gnav__title {
  display: flex;
  align-items: flex-end;
  color: #fff;
  font-weight: bold;
}
.header .gnav__title .en {
  font-size: 7.8rem;
  font-family: "Roboto Condensed", sans-serif;
  white-space: nowrap;
}
.header .gnav__title .ja {
  font-size: 2.8rem;
  letter-spacing: 1px;
  margin: 0 0 1.5rem 2rem;
  white-space: nowrap;
}
.header .gnav__list {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header .gnav__list {
    display: block;
    margin-top: 6rem;
    padding-bottom: 20rem;
  }
}
.header .gnav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;
  height: inherit;
  width: 16rem;
}
@media print, screen and (min-width: 768px) and (max-width: 1500px) {
  .header .gnav__item {
    font-size: 1.4rem;
    width: 14rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__item {
    height: auto;
    width: 100%;
  }
}
.header .gnav__item:hover > a > span::after, .header .gnav__item:hover .gnavAnim__txt::after {
  transform: scale(1) !important;
}
.header .gnav__item.border .gnavAnim__txt::after {
  transform: scale(1) !important;
}
@media print, screen and (min-width: 768px) {
  .header .gnav__item:not(.contact) {
    border-left: 1px solid #b3b3b3;
  }
  .header .gnav__item:not(.contact) .gnavAnim__txt {
    position: relative;
    padding: 0 0 4px 0;
  }
  .header .gnav__item:not(.contact) .gnavAnim__txt::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #000;
    height: 1px;
    width: 100%;
    transform: scale(0);
    transform-origin: left center;
    transition: all ease-in-out 0.3s;
  }
}
@media print, screen and (min-width: 768px) {
  .header .gnav__item.contact {
    position: relative;
    height: 9rem;
    transition: all ease-in-out 0.3s;
    color: #fff;
    order: 10;
  }
  .header .gnav__item.contact::before {
    content: "";
    position: absolute;
    background-image: url("../../assets/img/common/contact-bg.svg");
    background-repeat: no-repeat;
    top: 0;
    right: 0;
    height: 11.2rem;
    width: 100%;
    z-index: 1001;
    transition: all ease-in-out 0.3s;
  }
  .header .gnav__item.contact:hover {
    color: #e78c21;
  }
  .header .gnav__item.contact:hover::before {
    background-image: url("../../assets/img/common/contact-bg-white.svg");
  }
  .header .gnav__item.contact:hover .gnavAnim__txt::before {
    background-image: url("../../assets/img/common/icon-mail-orange.svg");
  }
  .header .gnav__item.contact .gnavAnim__txt {
    position: relative;
    z-index: 1002;
  }
  .header .gnav__item.contact .gnavAnim__txt::before {
    content: "";
    background-image: url("../../assets/img/common/icon-mail.svg");
    position: absolute;
    top: -3rem;
    right: 0;
    left: 0;
    margin: auto;
    height: 2rem;
    width: 2.8rem;
    background-size: cover;
    transition: all ease-in-out 0.3s;
  }
  .header .gnav__item.contact .gnavAnim__txt::after {
    content: "";
    background-image: url("../../assets/img/common/txt-contact.png");
    position: absolute;
    bottom: -4rem;
    right: -3rem;
    margin: auto;
    height: 4rem;
    width: 8rem;
    background-size: cover;
  }
  .header .gnav__item.contact .gnavAnim__txt span {
    transition: all ease-in-out 0.3s;
  }
  .header .gnav__item.contact .gnavAnim__txt span::after {
    display: none;
  }
}
.header .gnav__item > a {
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item > a {
    border-bottom: 1px solid #fff;
    display: block;
    padding: 4rem 0;
    color: #fff;
  }
}
.header .gnav__item > a span {
  position: relative;
  padding: 0 0 4px 0;
}
@media print, screen and (min-width: 768px) {
  .header .gnav__item > a span::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #000;
    height: 1px;
    width: 100%;
    transform: scale(0);
    transform-origin: left center;
    transition: all ease-in-out 0.3s;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__item .gnavAnim__txt {
    font-size: 3.2rem;
    display: block;
    position: relative;
    border-bottom: 1px solid #fff;
    display: block;
    padding: 4rem 0;
    color: #fff;
    width: 100%;
  }
  .header .gnav__item .gnavAnim__txt::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-image: url("../../assets/img/common/icon-arrow-white.svg");
    background-size: cover;
    height: 2.1rem;
    width: 2.8rem;
    transition: all ease-in-out 0.3s;
  }
}
.header .gnav__bg {
  display: none !important;
  position: fixed;
  top: 9rem;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(26, 26, 26, 0.8);
  height: calc(100vh - 9rem);
  width: 100vw;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  .header .gnav__bg {
    display: none !important;
  }
}
.header .gnav__bg.active {
  display: block;
}
.header .gnav__wrapper {
  display: none;
  position: fixed;
  right: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .header .gnav__wrapper {
    display: block;
    top: 12rem;
    right: 0;
    bottom: 0;
    left: auto;
    height: calc(100vh - 12rem);
    height: -webkit-fill-available;
    width: 98%;
    transform: translateX(100%);
    transition: all ease-in-out 0.6s;
    padding-top: 0;
    background-color: #0377b9;
    overflow-y: scroll;
  }
}
.header .gnav__wrapper.active {
  display: block;
}
.header .gnav__wrapper.spAnim {
  transform: translateX(0);
}
.header .gnav__content {
  display: flex;
  background-color: rgba(255, 255, 255, 0.9);
}
@media only screen and (max-width: 767px) {
  .header .gnav__content {
    display: block;
    padding: 5% 10% 20%;
    height: 100%;
    background-color: #0377b9;
  }
}
.header .gnav__content .text {
  position: absolute;
  bottom: 1.7rem;
  right: 5rem;
  color: #fff;
  text-align: right;
  line-height: 1.2;
  font-weight: 500;
  z-index: 5;
}
.header .gnav__detail {
  display: flex;
  align-items: center;
  position: relative;
  padding: 3rem;
  width: 25%;
  background: #00b1dd;
  background: linear-gradient(45deg, #00b1dd 35%, rgb(79, 160, 206) 100%);
}
@media only screen and (max-width: 767px) {
  .header .gnav__detail {
    display: block;
    margin-bottom: 4rem;
    width: 100%;
    background: transparent;
  }
}
.header .gnav__detail.arrow--white {
  position: relative;
}
.header .gnav__detail.arrow--white:hover::after {
  right: 1rem;
}
@media print, screen and (min-width: 768px) {
  .header .gnav__detail.arrow--white::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    border: 6rem solid #004097;
    border-top: 2.4rem solid transparent;
    border-left: 16rem solid transparent;
    z-index: 2;
  }
}
.header .gnav__detail.arrow--white::after {
  top: auto;
  bottom: 2rem;
  right: 2rem;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .header .gnav__detail.arrow--white::after {
    display: none;
  }
}
.header .gnav__detail figure {
  display: none;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .header .gnav__detail figure {
    display: none;
  }
}
.header .gnav__detail figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 177, 211, 0.7);
  background: linear-gradient(90deg, rgba(0, 177, 211, 0.5) 23%, rgba(3, 119, 255, 0.5) 100%);
  z-index: 1;
}
.header .gnav__back {
  position: relative;
  color: #fff;
  margin-bottom: 4rem;
  padding-left: 3.9rem;
}
.header .gnav__back::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../../assets/img/common/icon-arrow-white.svg");
  height: 2.1rem;
  width: 2.8rem;
  transform: scale(-1, 1);
}
.header .gnav__back--outlink {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.header .gnav__subtitle {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .header .gnav__subtitle {
    position: static;
    display: flex;
    align-items: flex-end;
    color: #fff;
    font-weight: bold;
    transform: translateY(0) translateX(0);
  }
}
.header .gnav__subtitle .en {
  display: none;
  font-size: 4.8rem;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .header .gnav__subtitle .en {
    display: block;
    font-size: 7.8rem;
  }
}
.header .gnav__subtitle .en::after {
  display: none !important;
}
.header .gnav__subtitle .ja {
  display: inline-block;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 1px;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .header .gnav__subtitle .ja {
    font-size: 2.8rem;
    margin: 0 0 1.5rem 2rem;
  }
}
.header .gnav__subtitle .ja::after {
  display: none !important;
}
.header .gnav__inner {
  padding: 3.2rem;
  width: 75%;
}
@media only screen and (max-width: 767px) {
  .header .gnav__inner {
    padding: 0 0 30%;
    width: 100%;
  }
}
.header .gnav__wrap {
  position: relative;
  max-width: 900px;
}
.header .gnav__wrap > *:first-child {
  margin-top: 0;
}
.header .gnav__note {
  position: relative;
  color: #00b1dd;
  font-size: 2rem;
  font-weight: bold;
  padding-left: 2.5rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__note {
    padding: 4rem 0;
    color: #fff;
    border-top: 1px solid #fff;
    border-bottom: 0;
    margin-bottom: 0;
    font-size: 3.2rem;
    padding-left: 2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .header .gnav__note::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-image: url("../../assets/img/common/icon-hexagon.svg");
    background-size: cover;
    height: 1.75rem;
    width: 1.53rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__note::before {
    content: "[";
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__note::after {
    content: "]";
  }
}
.header .gnav__sublist01 {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 1rem;
  gap: 1rem 2%;
}
@media only screen and (max-width: 767px) {
  .header .gnav__sublist01 {
    border-top: 1px solid #fff;
    margin-top: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .header .gnav__sublist01.column02 {
    gap: 1rem 4%;
  }
  .header .gnav__sublist01.column02 li {
    width: 48%;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__sublist01 + .gnav__sublist01, .header .gnav__sublist01 + .gnav__note {
    border-top: 0;
  }
}
.header .gnav__sublist01 li {
  width: 23.5%;
}
@media only screen and (max-width: 767px) {
  .header .gnav__sublist01 li {
    width: 100%;
  }
}
.header .gnav__sublist01 a {
  display: block;
  border-bottom: 1px solid #cccccc;
  color: #333;
  padding: 1rem 0;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .header .gnav__sublist01 a {
    font-size: 3.2rem;
    padding: 4rem;
    color: #fff;
    border-bottom: 1px solid #fff;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__sublist01 a.upper {
    padding: 4rem 0;
  }
}
.header .gnav__sublist01 a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
  height: 1px;
  width: 100%;
  transform: scale(0);
  transform-origin: left center;
  transition: all ease-in-out 0.3s;
}
.header .gnav__sublist01 a:hover::before {
  transform: scale(1);
}
.header .gnav__sublist01 a:hover::after {
  right: -1rem;
}
.header .gnav__sublist01 a::after {
  right: 0;
}
@media only screen and (max-width: 767px) {
  .header .gnav__sublist01 a::after {
    display: none;
  }
}
.header .gnav__sublist02 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 1.5rem 3.33333%;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .header .gnav__sublist02.position {
    justify-content: flex-end;
    margin-top: -3rem;
  }
}
.header .gnav__sublist02 li {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .header .gnav__sublist02 li {
    width: 100%;
  }
}
.header .gnav__sublist02 .btnType01 {
  background: none;
  color: #00b1dd;
  font-size: 2rem;
  line-height: 5rem;
  height: 5rem;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .header .gnav__sublist02 .btnType01 {
    background-color: unset;
    font-size: 3.2rem;
    color: #fff;
    border-bottom: 1px solid #fff;
    margin-top: 0;
    padding: 4rem 2rem;
    height: auto;
    line-height: auto;
    text-align: left;
  }
}
@media print, screen and (min-width: 768px) {
  .header .gnav__sublist02 .btnType01 span {
    font-weight: bold;
    justify-content: start;
    padding-left: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__sublist02 .btnType01 span {
    display: block;
    line-height: 1.4;
  }
}
.header .gnav__sublist02 .btnType01:hover {
  color: #fff;
}
.header .gnav__sublist02 .btnType01:hover span::after {
  background-image: url("../../assets/img/common/icon-arrow-white.svg");
}
.header .gnav__sublist02 .btnType01 span::after {
  background-image: url("../../assets/img/common/icon-arrow-blue.svg");
}
@media only screen and (max-width: 767px) {
  .header .gnav__sublist02 .btnType01 span::after {
    display: none;
  }
}
.header .gnav__sublist02 .btnType01::before {
  background-color: #00b1dd;
}
@media only screen and (max-width: 767px) {
  .header .gnav__sublist02 .btnType01::before, .header .gnav__sublist02 .btnType01::after {
    display: none;
  }
}
.header__btn {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 12rem;
  width: 12rem;
  z-index: 10001;
  background-color: #f5f8fa;
}
@media print, screen and (min-width: 768px) {
  .header__btn {
    display: none;
  }
}
.header__btn.active .header__bar:first-of-type {
  transform: translateY(1.5rem) rotate(30deg);
}
.header__btn.active .header__bar:nth-child(2) {
  transform: translateY(-50%);
  opacity: 0;
}
.header__btn.active .header__bar:last-of-type {
  transform: translateY(-1.2rem) rotate(-30deg);
  width: 100%;
}
.header__btn.active .header__menu {
  display: none;
}
.header__btn.active .header__close {
  display: block;
}
.header__mark {
  position: relative;
  cursor: pointer;
  height: 3rem;
  width: 7.5rem;
}
.header__bar {
  position: absolute;
  left: 0;
  background-color: #000;
  height: 0.3rem;
  width: 100%;
}
.header__bar:first-of-type {
  top: 0;
}
.header__bar:nth-child(2) {
  top: 1.4rem;
}
.header__bar:last-of-type {
  bottom: 0;
}
.header__mark, .header__bar {
  transition: all 0.6s ease-in-out;
}
.header__menu, .header__close {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}
.header__menu {
  display: block;
}
.header__close {
  display: none;
}

.main {
  margin-top: 9rem;
}
@media only screen and (max-width: 767px) {
  .main {
    margin-top: 12rem;
  }
}

.wrapper {
  margin: auto;
  max-width: 1200px;
  width: 90%;
}
@media print, screen and (min-width: 768px) {
  .wrapper.small {
    width: 80%;
    max-width: 1000px;
  }
}
.wrapper .wrapper__content {
  margin-left: auto;
  width: 92%;
}
@media only screen and (max-width: 767px) {
  .wrapper .wrapper__content {
    width: 95%;
  }
}

@media only screen and (max-width: 767px) {
  .inner {
    padding: 0 3.5rem;
  }
}

.note {
  line-height: 2.8rem;
}
@media only screen and (max-width: 767px) {
  .note {
    line-height: 4.4rem;
  }
}

[class*=arrow--] {
  position: relative;
}
[class*=arrow--]:hover::after {
  right: 1rem;
}
@media only screen and (max-width: 767px) {
  [class*=arrow--]:hover::after {
    right: 2rem;
  }
}
[class*=arrow--]::after {
  content: "";
  position: absolute;
  top: -0.6rem;
  right: 2rem;
  bottom: 0;
  margin: auto;
  background-size: cover;
  height: 1.25rem;
  width: 1.6rem;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  [class*=arrow--]::after {
    right: 4rem;
    height: 2.1rem;
    width: 2.8rem;
  }
}

.arrow--white::after {
  background-image: url("../../assets/img/common/icon-arrow-white.svg");
}

.arrow--blue::after {
  background-image: url("../../assets/img/common/icon-arrow-blue.svg");
}

.textLink {
  display: block;
  line-height: 2.8rem;
  padding-right: 2rem;
}
@media only screen and (max-width: 767px) {
  .textLink {
    padding-right: 2.5rem;
  }
}
.textLink:hover {
  opacity: 1;
}
.textLink:hover::after {
  right: -1rem;
}
.textLink:hover .text::after {
  transform: scale(1);
}
.textLink::after {
  right: 0;
}
.textLink .text {
  display: inline-block;
  position: relative;
  padding: 0 0 2px;
}
.textLink .text::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
  height: 1px;
  width: 100%;
  transform: scale(0);
  transform-origin: left center;
  transition: all ease-in-out 0.3s;
}

.linkCover {
  display: block;
  position: relative;
  color: #fff;
  background-color: #00b1dd;
}
.linkCover:hover {
  opacity: 1;
  color: #00b1dd;
}
.linkCover:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.linkCover:hover span::after {
  right: 1rem;
  background-image: url("../../assets/img/common/icon-arrow-blue.svg");
}
.linkCover::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background-color: #fff;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: bottom right;
}
.linkCover::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #00b1dd;
  transition: all ease-in-out 0.3s;
}

.titleType01 {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .titleType01 {
    display: block;
  }
}
.titleType01--en {
  position: relative;
  font-size: 6rem;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  color: #00b1dd;
  padding-right: 4rem;
  margin-right: 4rem;
}
@media only screen and (max-width: 767px) {
  .titleType01--en {
    font-size: 6.8rem;
    padding: 0 0 3rem;
    margin-right: 0;
  }
}
.titleType01--en::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 2rem;
  width: 1px;
  margin: auto;
  background-color: #cccccc;
}
@media only screen and (max-width: 767px) {
  .titleType01--en::after {
    top: auto;
    right: auto;
    left: 0;
    margin: 0;
    height: 2px;
    width: 3.5rem;
  }
}
.titleType01--ja {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .titleType01--ja {
    font-size: 3.8rem;
    margin-top: 3rem;
  }
}

.titleType02--en {
  position: relative;
  font-size: 6rem;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  color: #00b1dd;
  padding-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .titleType02--en {
    font-size: 6.8rem;
    padding-bottom: 3rem;
  }
}
.titleType02--en::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 2rem;
  background-color: #cccccc;
}
@media only screen and (max-width: 767px) {
  .titleType02--en::after {
    width: 3.5rem;
  }
}
.titleType02--ja {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: bold;
  margin-top: 2rem;
  line-height: 1.4;
  letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
  .titleType02--ja {
    font-size: 3.8rem;
    margin-top: 3rem;
  }
}

.titleType03 {
  display: inline;
  color: #004097;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.8;
  padding: 0 1.4rem 0.2rem;
  background: linear-gradient(transparent 50%, rgba(0, 177, 221, 0.2) 0%);
  box-decoration-break: clone;
}
@media only screen and (max-width: 767px) {
  .titleType03 {
    font-size: 3.8rem;
    padding: 0 1.8rem 0.4rem;
  }
}

.titleType03--nmb {
  counter-reset: titleType03-Nmb 0;
}
.titleType03--nmb .titleType03--nmb__wrapper {
  position: relative;
  padding-left: 7rem;
}
@media only screen and (max-width: 767px) {
  .titleType03--nmb .titleType03--nmb__wrapper {
    padding-left: 10rem;
  }
}
.titleType03--nmb .titleType03--nmb__wrapper::before {
  counter-increment: titleType03-Nmb 1;
  content: "0" counter(titleType03-Nmb) "";
  position: absolute;
  top: -3.4rem;
  left: 0;
  font-size: 6rem;
  font-weight: bold;
  color: #004097;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: -1px;
}
@media only screen and (max-width: 767px) {
  .titleType03--nmb .titleType03--nmb__wrapper::before {
    top: 55%;
    transform: translateY(-50%);
    font-size: 9rem;
  }
}

.titleType04 {
  height: 6rem;
  line-height: 6rem;
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  color: #004097;
  background: rgb(0, 177, 211);
  background: linear-gradient(90deg, rgba(0, 177, 211, 0.15) 0%, rgba(0, 64, 151, 0.15) 100%);
}
@media only screen and (max-width: 767px) {
  .titleType04 {
    font-size: 3.8rem;
    line-height: 9rem;
    height: 9rem;
  }
}

.titleType05 {
  position: relative;
  color: #00b1dd;
  font-size: 2rem;
  font-weight: bold;
  padding-left: 2.4rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .titleType05 {
    font-size: 3.2rem;
    padding-left: 4rem;
  }
}
.titleType05::before {
  content: "";
  background-image: url("../../assets/img/common/icon-hexagon.svg");
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0.8rem;
  height: 1.8rem;
  width: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .titleType05::before {
    height: 3.6rem;
    width: 3.2rem;
  }
}

.btnType01 {
  display: block;
  position: relative;
  color: #fff;
  background-color: #00b1dd;
  text-align: center;
  letter-spacing: 1.4px;
  font-size: 2rem;
  line-height: 1.4;
  height: 8rem;
  width: 35rem;
}
@media only screen and (max-width: 767px) {
  .btnType01 {
    font-size: 3.4rem;
    height: 13rem;
    width: 60rem;
  }
}
.btnType01.big {
  height: 10rem;
  width: 45rem;
}
@media only screen and (max-width: 767px) {
  .btnType01.big {
    height: 18rem;
    width: 60rem;
  }
}
.btnType01.dowonload {
  background-color: #EC6571;
  height: 8rem;
  width: 45rem;
}
@media only screen and (max-width: 767px) {
  .btnType01.dowonload {
    height: 13rem;
    width: 60rem;
  }
}
.btnType01.dowonload::after {
  border: 1px solid #EC6571;
}
.btnType01.dowonload:hover {
  color: #EC6571;
}
.btnType01.dowonload:hover span::before {
  background-image: url("../../assets/img/common/icon-pdf.svg");
}
.btnType01.dowonload:hover span::after {
  right: 2rem;
  background-image: url("../../assets/img/common/icon-arrow-red.svg");
}
@media only screen and (max-width: 767px) {
  .btnType01.dowonload:hover span::after {
    right: 4rem;
  }
}
.btnType01.dowonload span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2.5rem;
  margin: auto;
  background-image: url("../../assets/img/common/icon-pdf-white.svg");
  background-size: cover;
  height: 3.1rem;
  width: 2.6rem;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  .btnType01.dowonload span::before {
    left: 4rem;
    height: 5.3rem;
    width: 4.6rem;
  }
}
.btnType01.dowonload span::after {
  transform: rotate(90deg);
}
.btnType01.blue {
  background-color: #004097;
}
.btnType01.blue:hover {
  color: #004097;
}
.btnType01.blue:hover span::after {
  background-image: url("../../assets/img/common/icon-arrow-navy.svg");
}
.btnType01.blue::after {
  border: 1px solid #004097;
}
.btnType01:hover {
  opacity: 1;
  color: #00b1dd;
}
.btnType01:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.btnType01:hover span::after {
  right: 1rem;
  background-image: url("../../assets/img/common/icon-arrow-blue.svg");
}
.btnType01::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background-color: #fff;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: bottom right;
}
.btnType01::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #00b1dd;
}
.btnType01 span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.btnType01 span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto;
  background-size: cover;
  height: 1.25rem;
  width: 1.6rem;
  transition: all ease-in-out 0.3s;
  background-image: url("../../assets/img/common/icon-arrow-white.svg");
}
@media only screen and (max-width: 767px) {
  .btnType01 span::after {
    right: 4rem;
    height: 2.1rem;
    width: 2.8rem;
  }
}

.btnType02-download {
  text-align: center;
}
.btnType02-download .btnType02 {
  display: inline-block;
  height: auto;
  line-height: 1.4;
  width: auto;
}
.btnType02-download .btnType02:hover p::after {
  right: 1rem;
  background-image: url("../../assets/img/common/icon-arrow-white.svg");
}
.btnType02-download .btnType02:hover span::after {
  background-image: url("../../assets/img/common/icon-pdf-white.svg");
}
.btnType02-download .btnType02 p {
  position: relative;
  display: block;
  padding: 2rem 6rem;
}
@media only screen and (max-width: 767px) {
  .btnType02-download .btnType02 p {
    padding: 3rem 8rem 3rem 3.5rem;
    text-align: left;
  }
}
.btnType02-download .btnType02 p::after {
  content: "";
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto;
  background-size: cover;
  height: 1.25rem;
  width: 1.6rem;
  transition: all ease-in-out 0.3s;
  background-image: url("../../assets/img/common/icon-arrow-blue.svg");
}
@media only screen and (max-width: 767px) {
  .btnType02-download .btnType02 p::after {
    right: 4rem;
    height: 2.1rem;
    width: 2.8rem;
  }
}
.btnType02-download .btnType02 p span {
  display: inline-block;
  padding: 0 6rem 0 0;
}
@media only screen and (max-width: 767px) {
  .btnType02-download .btnType02 p span {
    padding: 0;
  }
}
.btnType02-download .btnType02 p span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto;
  background-image: url("../../assets/img/common/icon-pdf.svg");
  background-size: cover;
  height: 3.1rem;
  width: 2.6rem;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  .btnType02-download .btnType02 p span::after {
    position: relative;
    display: inline-block;
    top: 1.2rem;
    left: 1.5rem;
    height: 5.3rem;
    width: 4.6rem;
  }
}

.btnType02 {
  display: block;
  position: relative;
  color: #00b1dd;
  background-color: #fff;
  letter-spacing: 1.4px;
  height: 5rem;
  width: 24rem;
}
@media only screen and (max-width: 767px) {
  .btnType02 {
    font-size: 2.8rem;
    line-height: 10rem;
    height: 10rem;
    width: 60rem;
  }
}
.btnType02:hover {
  opacity: 1;
  color: #fff;
}
.btnType02:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.btnType02:hover span::after {
  right: 1rem;
  background-image: url("../../assets/img/common/icon-arrow-white.svg");
}
.btnType02::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background-color: #00b1dd;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: bottom right;
}
.btnType02::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #00b1dd;
}
.btnType02 span {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 2rem;
  height: 100%;
  width: 100%;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .btnType02 span {
    padding-left: 4rem;
  }
}
.btnType02 span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto;
  background-size: cover;
  height: 1.25rem;
  width: 1.6rem;
  transition: all ease-in-out 0.3s;
  background-image: url("../../assets/img/common/icon-arrow-blue.svg");
}
@media only screen and (max-width: 767px) {
  .btnType02 span::after {
    right: 4rem;
    height: 2.1rem;
    width: 2.8rem;
  }
}

.pdfBtn {
  display: inline-block;
  line-height: 1.6;
}
.pdfBtn .text {
  padding-bottom: 0.6rem;
}
.pdfBtn .pdf {
  position: relative;
  display: inline-block;
  padding-left: 4rem;
}
.pdfBtn .pdf::before {
  content: "";
  position: absolute;
  top: -0.2rem;
  left: 1rem;
  background-image: url("../../assets/img/common/icon-pdf.svg");
  background-size: cover;
  height: 3.1rem;
  width: 2.6rem;
}
@media only screen and (max-width: 767px) {
  .pdfBtn .pdf::before {
    top: 0.4rem;
    height: 3.5rem;
    width: 2.8rem;
  }
}

.listType01 {
  padding-left: 1.8rem;
  text-indent: -1.8rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .listType01 {
    padding-left: 2.8rem;
    text-indent: -2.8rem;
    margin-bottom: 5rem;
  }
}

.listType02 .item {
  line-height: 1.6;
  text-indent: -2.2rem;
  padding-left: 2.2rem;
}
@media only screen and (max-width: 767px) {
  .listType02 .item {
    text-indent: -3.6rem;
    padding-left: 3.6rem;
  }
}
.listType02 .item::before {
  content: "■";
  margin-right: 0.5rem;
  color: #00b1dd;
}

.newsList__age {
  padding: 0 10rem 5rem;
}
@media only screen and (max-width: 767px) {
  .newsList__age {
    padding: 0 0 6rem 0;
  }
}
.newsList__age .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 0;
  padding: 2rem 2.5rem;
  background-color: #E5F7FC;
}
@media only screen and (max-width: 767px) {
  .newsList__age .list {
    padding: 3.5rem 2rem;
    gap: 2.5rem 0;
  }
}
@media print, screen and (min-width: 768px) {
  .newsList__age .list.rows03 .item {
    width: 33.333%;
    text-align: center !important;
  }
}
.newsList__age .list .item {
  width: 16.6666%;
  color: #00b1dd;
  text-align: center;
  border-right: 1px solid #B3B3B3;
}
@media print, screen and (min-width: 768px) {
  .newsList__age .list .item:nth-of-type(6n) {
    border-right: 0;
  }
  .newsList__age .list .item:first-child, .newsList__age .list .item:nth-of-type(7n) {
    text-align: left;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .newsList__age .list .item {
    width: 33.333%;
  }
  .newsList__age .list .item:nth-of-type(3n) {
    border-right: 0;
  }
  .newsList__age .list .item:first-child, .newsList__age .list .item:nth-of-type(4), .newsList__age .list .item:nth-of-type(7), .newsList__age .list .item:nth-of-type(10) {
    text-align: left;
    padding-left: 2rem;
  }
}
.newsList__age .list .item.active {
  color: #004097;
}
.newsList__age .list .item.active span::after {
  border-top: 2px solid #004097;
  border-right: 2px solid #004097;
}
.newsList__age .list .item a {
  display: block;
  padding: 0.5rem;
}
.newsList__age .list .item span {
  position: relative;
  padding-right: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .newsList__age .list .item span {
    padding-right: 2.5rem;
  }
}
.newsList__age .list .item span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-top: 2px solid #00b1dd;
  border-right: 2px solid #00b1dd;
  transform: rotate(45deg);
  width: 1rem;
  height: 1rem;
}
@media only screen and (max-width: 767px) {
  .newsList__age .list .item span::after {
    top: 0.2rem;
    height: 1.6rem;
    width: 1.6rem;
  }
}
.newsList__cat {
  display: flex;
  align-items: center;
  padding: 0 10rem 4rem;
  border-bottom: 1px solid #e6e6e6;
}
@media only screen and (max-width: 767px) {
  .newsList__cat {
    padding: 0 9% 5rem 9%;
    display: block;
  }
}
.newsList__cat .title {
  color: #00b1dd;
  font-size: 6rem;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  margin-right: 4rem;
}
@media only screen and (max-width: 767px) {
  .newsList__cat .title {
    margin-bottom: 2rem;
    font-size: 7.8rem;
  }
}
.newsList__cat .list {
  display: flex;
  align-items: center;
  padding-left: 2px;
}
@media only screen and (max-width: 767px) {
  .newsList__cat .list {
    flex-wrap: wrap;
    gap: 3rem 0;
  }
}
.newsList__cat .list li {
  cursor: pointer;
  font-weight: 500;
  padding: 0 2rem;
  border-right: 2px solid #e6e6e6;
  border-left: 2px solid #e6e6e6;
  margin-left: -2px;
}
@media only screen and (max-width: 767px) {
  .newsList__cat .list li {
    padding: 0.5rem 2rem;
  }
}
.newsList__cat .list li:first-child {
  border-left: 2px solid #e6e6e6;
}
.newsList__cat .list li.active span {
  background-color: #004097;
  color: #fff;
}
.newsList__cat .list li:hover span {
  background-color: #004097;
  color: #fff;
}
.newsList__cat .list span {
  display: inline-block;
  padding: 0.3rem 1.5rem 0.5rem;
  border-radius: 2rem;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  .newsList__cat .list span {
    padding: 0.6rem 1.8rem 0.8rem;
  }
}
.newsList__content {
  padding: 4rem 10rem 0;
}
@media only screen and (max-width: 767px) {
  .newsList__content {
    padding: 5rem 9% 0 9%;
  }
}
.newsList__content .articleList01 {
  display: none;
}
.newsList__content .articleList01.active {
  display: block;
}

.articleList01 .item {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .articleList01 .item {
    flex-wrap: wrap;
  }
}
.articleList01 .item:not(:first-child) {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .articleList01 .item:not(:first-child) {
    margin-top: 5rem;
  }
}
.articleList01 .time {
  color: #808080;
  font-size: 1.4rem;
  font-family: "Roboto Condensed", sans-serif;
  margin-right: 3rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .articleList01 .time {
    font-size: 2.4rem;
    margin-top: 1rem;
  }
}
.articleList01 .cat {
  color: #00b1dd;
  border: 1px solid #00b1dd;
  border-radius: 2rem;
  font-size: 1.2rem;
  margin-right: 4rem;
  height: 2.5rem;
  line-height: 2rem;
  width: 16rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .articleList01 .cat {
    font-size: 2.2rem;
    height: 4rem;
    line-height: 3.3rem;
    width: 22rem;
  }
}
.articleList01 .cat.imp {
  color: #f8102e;
  border: 1px solid #f8102e;
}
.articleList01 .headline {
  width: 110%;
}
@media only screen and (max-width: 767px) {
  .articleList01 .headline {
    margin-top: 2rem;
    width: 100%;
  }
}
.articleList01 .headline a {
  display: block;
  line-height: 2.8rem;
  padding-right: 2rem;
}
@media only screen and (max-width: 767px) {
  .articleList01 .headline a {
    line-height: 4.4rem;
    padding-right: 4rem;
  }
}
.articleList01 .headline a:hover::after {
  right: -1rem;
}
.articleList01 .headline a::after {
  right: 0;
}
.articleList01 .headline .pdf {
  position: relative;
  display: inline-block;
  padding-left: 4rem;
}
.articleList01 .headline .pdf::before {
  content: "";
  position: absolute;
  top: -0.4rem;
  left: 1rem;
  background-image: url("../../assets/img/common/icon-pdf.svg");
  background-size: cover;
  height: 3.1rem;
  width: 2.6rem;
}
@media only screen and (max-width: 767px) {
  .articleList01 .headline .pdf::before {
    top: 0.4rem;
    height: 3.5rem;
    width: 2.8rem;
  }
}

.articleList02 .item {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .articleList02 .item {
    margin-top: 5rem;
  }
}
.articleList02 .time {
  color: #808080;
  font-size: 1.4rem;
  font-family: "Roboto Condensed", sans-serif;
  margin-right: 3rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .articleList02 .time {
    font-size: 2.4rem;
    margin-top: 1rem;
  }
}
.articleList02 .cat {
  display: inline-block;
  color: #00b1dd;
  border: 1px solid #00b1dd;
  border-radius: 2rem;
  font-size: 1.2rem;
  height: 2.5rem;
  line-height: 2rem;
  width: 12rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .articleList02 .cat {
    font-size: 2.2rem;
    height: 4rem;
    line-height: 3.3rem;
    width: 22rem;
  }
}
.articleList02 .headline {
  margin-top: 1rem;
}
.articleList02 .headline a {
  display: block;
  line-height: 2.8rem;
  padding-right: 2rem;
}
@media only screen and (max-width: 767px) {
  .articleList02 .headline a {
    line-height: 4.4rem;
    padding-right: 4rem;
  }
}
.articleList02 .headline a:hover::after {
  right: -1rem;
}
.articleList02 .headline a::after {
  right: 0;
}

.induction {
  margin-top: 12rem;
}
@media only screen and (max-width: 767px) {
  .induction {
    margin-top: 14rem;
  }
}
.induction__wrapper {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .induction__wrapper {
    flex-wrap: wrap;
  }
}
.induction__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-size: cover;
  color: #fff;
  padding: 10rem;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .induction__content {
    padding: 6rem 0;
    width: 100%;
  }
}
.induction__content::after {
  content: "";
}
.induction__content.tel {
  background-image: url("../../assets/img/common/induction-bg01.png");
}
.induction__content.estimate {
  background-image: url("../../assets/img/common/induction-bg02.png");
}
@media print, screen and (min-width: 768px) {
  .induction__content.estimate {
    align-items: flex-end;
  }
}
.induction__content.estimate .titleType02::after {
  background-image: url("../../assets/img/common/induction-estimate.svg");
}
.induction__content.contact {
  background-image: url("../../assets/img/common/induction-bg03.png");
}
@media print, screen and (min-width: 768px) {
  .induction__content.contact {
    align-items: flex-start;
  }
}
.induction__content.contact .titleType02::after {
  background-image: url("../../assets/img/common/induction-mail.svg");
}
@media print, screen and (min-width: 768px) {
  .induction__inner {
    width: 39rem;
  }
}
.induction .titleType02 {
  position: relative;
}
.induction .titleType02::after {
  content: "";
  position: absolute;
  top: -2rem;
  right: 0;
  background-image: url("../../assets/img/common/induction-tel.svg");
  background-size: cover;
  height: 8.6rem;
  width: 7.5rem;
}
@media only screen and (max-width: 767px) {
  .induction .titleType02::after {
    top: -3rem;
    right: -3rem;
    height: 15rem;
    width: 13rem;
  }
}
.induction .titleType02--en {
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .induction .titleType02--en {
    font-size: 5rem;
  }
}
.induction .titleType02--en::after {
  background-color: #fff;
}
.induction .titleType02--ja {
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .induction .titleType02--ja {
    font-size: 2.4rem;
  }
}
.induction__nmb {
  display: inline-block;
  font-size: 5.8rem;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  margin-top: 5.5rem;
}
@media only screen and (max-width: 767px) {
  .induction__nmb {
    margin-top: 2rem;
    font-size: 9rem;
  }
}
.induction__attention {
  display: block;
  background-color: rgba(0, 177, 221, 0.85);
  border: 1px solid #fff;
  line-height: 4rem;
  text-align: center;
  height: 5rem;
  width: 58rem;
  margin-top: 1rem;
}
.induction__link {
  display: block;
  border: 1px solid #fff;
  text-align: center;
  margin-top: 2.5rem;
  line-height: 4.5rem;
  background-color: transparent;
  height: 5rem;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .induction__link {
    margin-top: 4rem;
    height: 8.5rem;
    line-height: 8rem;
    width: 58rem;
  }
}
.induction__link:hover {
  color: #0377b9;
}
.induction__link:hover span::after {
  background-image: url("../../assets/img/common/icon-arrow-navy.svg");
}
.induction__link::after {
  display: none;
}
.induction__link span {
  display: block;
  height: 100%;
}
.induction__link + .induction__txt {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .induction__link + .induction__txt {
    margin-top: 2rem;
  }
}
.induction__txt {
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .induction__txt {
    margin-top: 2rem;
  }
}

.modaal-wrapper .modaal-close {
  position: absolute;
  right: 0;
  top: -60px;
}

.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto Condensed", sans-serif;
  margin-top: 5rem;
  font-size: 2rem;
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 10rem;
    font-size: 3rem;
  }
}
.wp-pagenavi > * {
  border: 1px solid #CCCCCC;
  text-align: center;
  line-height: 4.9rem;
  height: 5rem;
  width: 5rem;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi > * {
    line-height: 6.2rem;
    height: 6.5rem;
    width: 6.5rem;
  }
}
.wp-pagenavi .current {
  border: 1px solid #00b1dd;
  background-color: #00b1dd;
  color: #fff;
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  position: relative;
  border: none;
}
.wp-pagenavi .previouspostslink::after, .wp-pagenavi .nextpostslink::after {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  margin: auto;
  background-image: url("../../assets/img/common/icon-arrow-blue.svg");
  background-size: cover;
  height: 1.25rem;
  width: 1.6rem;
  transition: all ease-in-out 0.3s;
}
.wp-pagenavi .previouspostslink {
  order: -10;
}
.wp-pagenavi .previouspostslink::after {
  transform: scale(-1, 1);
}
.wp-pagenavi .nextpostslink {
  order: 10;
}
.wp-pagenavi .extend {
  border: none;
  font-weight: bold;
  letter-spacing: -8px;
  text-align: center;
  margin-left: -1rem;
}

.wpform .mwform-checkbox-field input[type=checkbox] {
  display: none;
}
.wpform .mwform-checkbox-field input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}
.wpform .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 5rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .wpform .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text {
    padding-left: 8rem;
  }
}
.wpform .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #fff;
  border: 1px solid #cccccc;
  display: block;
  height: 3.5rem;
  width: 3.5rem;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .wpform .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text::before {
    height: 6rem;
    width: 6rem;
  }
}
.wpform .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 1rem;
  transform: translateY(-50%) rotate(45deg);
  border-right: 0.4rem solid #00b1dd;
  border-bottom: 0.4rem solid #00b1dd;
  height: 2.3rem;
  width: 1.3rem;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .wpform .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text::after {
    left: 2rem;
    border-right: 0.6rem solid #00b1dd;
    border-bottom: 0.6rem solid #00b1dd;
    height: 4.2rem;
    width: 2.2rem;
  }
}
.wpform .mwform-radio-field input[type=radio] {
  display: none;
}
.wpform .mwform-radio-field input[type=radio]:checked + .mwform-radio-field-text::after {
  opacity: 1;
}
.wpform .mwform-radio-field input[type=radio] + .mwform-radio-field-text {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0.6rem 0 0.6rem 5rem;
  margin: 0.2rem 0;
}
@media only screen and (max-width: 767px) {
  .wpform .mwform-radio-field input[type=radio] + .mwform-radio-field-text {
    padding: 0.9rem 0 0.9rem 8rem;
    margin: 1rem 0;
  }
}
.wpform .mwform-radio-field input[type=radio] + .mwform-radio-field-text::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  border-radius: 50%;
  background: #fff;
  height: 3.5rem;
  width: 3.5rem;
  border: 1px solid #B3B3B3;
}
@media only screen and (max-width: 767px) {
  .wpform .mwform-radio-field input[type=radio] + .mwform-radio-field-text::before {
    height: 6rem;
    width: 6rem;
  }
}
.wpform .mwform-radio-field input[type=radio] + .mwform-radio-field-text::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  left: 0.7rem;
  border-radius: 50%;
  background: #F2A136;
  height: 2rem;
  width: 2rem;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  .wpform .mwform-radio-field input[type=radio] + .mwform-radio-field-text::after {
    top: 1.2rem;
    left: 1.1rem;
    height: 4rem;
    width: 4rem;
  }
}

.answer span.sel-arrow {
  position: relative;
}
.answer span.sel-arrow::after {
  content: "";
  position: absolute;
  margin: auto;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(135deg);
  width: 1rem;
  height: 1rem;
}
@media only screen and (max-width: 767px) {
  .answer span.sel-arrow::after {
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    width: 2rem;
    height: 2rem;
  }
}

.productsList__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .productsList__list {
    margin-top: 5rem;
  }
}
.productsList__item {
  width: 49%;
  margin-top: 2%;
}
@media only screen and (max-width: 767px) {
  .productsList__item {
    margin-top: 2rem;
    width: 100%;
  }
}
.productsList__item a {
  display: flex;
}
.productsList__item a:hover {
  opacity: 1;
}
.productsList__item a:hover .productsList__name {
  color: #00b1dd;
}
.productsList__item a:hover .productsList__name::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.productsList__item a:hover .productsList__name span::after {
  right: 1rem;
  background-image: url("../../assets/img/common/icon-arrow-blue.svg");
}
.productsList__item.food a:hover .productsList__name {
  color: #EC6571;
}
.productsList__item.food a:hover .productsList__name span::after {
  right: 1rem;
  background-image: url("../../assets/img/common/icon-arrow-red.svg");
}
.productsList__item.food .productsList__name {
  background-color: #EC6571;
}
.productsList__item.food .productsList__name::after {
  border: 1px solid #EC6571;
}
.productsList__item.food .productsList__txt {
  background-color: rgba(236, 101, 113, 0.6);
}
.productsList__item.electronic a:hover .productsList__name {
  color: #E6891E;
}
.productsList__item.electronic a:hover .productsList__name span::after {
  right: 1rem;
  background-image: url("../../assets/img/common/icon-arrow-orange.svg");
}
.productsList__item.electronic .productsList__name {
  background-color: #E6891E;
}
.productsList__item.electronic .productsList__name::after {
  border: 1px solid #E6891E;
}
.productsList__item.electronic .productsList__txt {
  background-color: rgba(230, 137, 30, 0.6);
}
.productsList__item.life a:hover .productsList__name {
  color: #E6D21E;
}
.productsList__item.life a:hover .productsList__name span::after {
  right: 1rem;
  background-image: url("../../assets/img/common/icon-arrow-yellow.svg");
}
.productsList__item.life .productsList__name {
  background-color: #E6D21E;
}
.productsList__item.life .productsList__name::after {
  border: 1px solid #E6D21E;
}
.productsList__item.life .productsList__txt {
  background-color: rgba(230, 210, 30, 0.6);
}
.productsList__item.medicine a:hover .productsList__name {
  color: #96C23A;
}
.productsList__item.medicine a:hover .productsList__name span::after {
  right: 1rem;
  background-image: url("../../assets/img/common/icon-arrow-light-green.svg");
}
.productsList__item.medicine .productsList__name {
  background-color: #96C23A;
}
.productsList__item.medicine .productsList__name::after {
  border: 1px solid #96C23A;
}
.productsList__item.medicine .productsList__txt {
  background-color: rgba(150, 194, 58, 0.6);
}
.productsList__item.material a:hover .productsList__name {
  color: #519850;
}
.productsList__item.material a:hover .productsList__name span::after {
  right: 1rem;
  background-image: url("../../assets/img/common/icon-arrow-green.svg");
}
.productsList__item.material .productsList__name {
  background-color: #519850;
}
.productsList__item.material .productsList__name::after {
  border: 1px solid #519850;
}
.productsList__item.material .productsList__txt {
  background-color: rgba(81, 152, 80, 0.6);
}
.productsList__item.car a:hover .productsList__name {
  color: #1ba1e7;
}
.productsList__item.car a:hover .productsList__name span::after {
  right: 1rem;
  background-image: url("../../assets/img/common/icon-arrow-blue.svg");
}
.productsList__item.car .productsList__name {
  background-color: #1ba1e7;
}
.productsList__item.car .productsList__name::after {
  border: 1px solid #1ba1e7;
}
.productsList__item.car .productsList__txt {
  background-color: rgba(27, 161, 231, 0.6);
}
.productsList__item.sustainable a:hover .productsList__name {
  color: #9A77B9;
}
.productsList__item.sustainable a:hover .productsList__name span::after {
  right: 1rem;
  background-image: url("../../assets/img/common/icon-arrow-purple.svg");
}
.productsList__item.sustainable .productsList__name {
  background-color: #9A77B9;
}
.productsList__item.sustainable .productsList__name::after {
  border: 1px solid #9A77B9;
}
.productsList__item.sustainable .productsList__txt {
  background-color: rgba(154, 119, 185, 0.6);
}
.productsList__item.innovation a:hover .productsList__name {
  color: #0377B9;
}
.productsList__item.innovation a:hover .productsList__name span::after {
  right: 1rem;
  background-image: url("../../assets/img/common/icon-arrow-navy.svg");
}
.productsList__item.innovation .productsList__name {
  background-color: #0377B9;
}
.productsList__item.innovation .productsList__name::after {
  border: 1px solid #0377B9;
}
.productsList__item.innovation .productsList__txt {
  background-color: rgba(3, 119, 185, 0.6);
}
.productsList__item.consignment a:hover .productsList__name {
  color: #E78BB4;
}
.productsList__item.consignment a:hover .productsList__name span::after {
  right: 1rem;
  background-image: url("../../assets/img/common/icon-arrow-pink02.svg");
}
.productsList__item.consignment .productsList__name {
  background-color: #E78BB4;
}
.productsList__item.consignment .productsList__name::after {
  border: 1px solid #E78BB4;
}
.productsList__item.consignment .productsList__txt {
  background-color: rgba(231, 139, 180, 0.6);
}
.productsList__img {
  position: relative;
  width: 35%;
}
.productsList__img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.productsList__explain {
  width: 65%;
}
.productsList__explain.wide {
  width: 100%;
}
.productsList__name {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.4;
  letter-spacing: 1px;
  text-align: center;
  height: 9rem;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .productsList__name {
    height: 16rem;
    font-size: 3.8rem;
  }
}
.productsList__name::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 2px;
  left: 0;
  background-color: #fff;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: bottom right;
}
.productsList__name::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #00b1dd;
}
.productsList__name .arrow--white {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .productsList__name .arrow--white::after {
    right: 3rem;
  }
}
.productsList__txt {
  line-height: 2.5rem;
  padding: 1rem 1rem 1rem 1.5rem;
}
@media only screen and (max-width: 767px) {
  .productsList__txt {
    padding: 2rem 2.5rem;
    line-height: 4.4rem;
  }
}

.footer {
  background-color: #ebeef5;
}
.footer__top {
  position: fixed;
  right: 2rem;
  bottom: 10rem;
  background-image: url("../../assets/img/common/icon-top.png");
  background-size: cover;
  padding-top: 10rem;
  width: 10rem;
  opacity: 0;
  transform: translateY(5rem);
  transition: all ease-in-out 0.6s;
  z-index: 1000;
}
.footer__top:hover {
  background-image: url("../../assets/img/common/icon-top-hover.png");
}
.footer__top.active {
  opacity: 1;
  transform: translateX(0);
}
.footer__guide {
  position: fixed;
  bottom: 0;
  left: 0;
  color: #fff;
  height: 12rem;
  width: 100vw;
  text-align: center;
  transition: all ease-in-out 0.6s;
  transform: translateY(100%);
  z-index: 9999;
}
.footer__guide.active {
  transform: translateX(0);
}
.footer__guide ul {
  display: flex;
}
.footer__guide li {
  width: 50%;
}
.footer__guide li.estimate {
  background-color: #0377b9;
}
.footer__guide li.mail {
  background-color: #004097;
}
.footer__guide figure {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12rem;
}
.footer__guide img {
  width: 6.2rem;
}
.footer__guide figcaption {
  font-weight: bold;
  line-height: 1.4;
  margin-left: 2rem;
}
.footer__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
  .footer__wrapper {
    flex-wrap: wrap;
    padding: 8rem 0 0;
  }
}
.footer__info {
  position: absolute;
  right: 0;
  bottom: 10rem;
  width: 30rem;
}
@media only screen and (max-width: 767px) {
  .footer__info {
    position: static;
    margin: auto;
    width: 55rem;
    padding: 5rem 0;
  }
}
.footer__info .address {
  line-height: 1.6;
  font-size: 1.3rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #D2D2D2;
}
@media only screen and (max-width: 767px) {
  .footer__info .address {
    font-size: 2.4rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }
}
.footer__info .btnType01 {
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2rem;
  margin-top: 2rem;
  line-height: 5rem;
  height: 5rem;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .footer__info .btnType01 {
    line-height: 8rem;
    height: 8rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .footer__info .btnType01 {
    font-size: 3.2rem;
  }
}
.footer__info .btnType01:hover span::before {
  background-image: url("../../assets/img/common/icon-earth-blue.svg");
}
.footer__info .btnType01 span {
  position: relative;
}
.footer__info .btnType01 span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4.5rem;
  margin: auto;
  height: 2.3rem;
  width: 2.3rem;
  background-image: url("../../assets/img/common/icon-earth.svg");
  background-size: cover;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  .footer__info .btnType01 span::before {
    width: 4.2rem;
    height: 4.2rem;
    left: 7rem;
  }
}
.footer__info .btnType01 span::after {
  display: none;
}
.footer__links {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .footer__links {
    position: relative;
    font-size: 2.4rem;
    width: 100%;
    padding-bottom: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer__links::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -5vw;
    background-color: #d2d2d2;
    height: 2px;
    width: 110vw;
  }
}
.footer__content {
  width: 20%;
}
@media only screen and (max-width: 767px) {
  .footer__content {
    width: 46%;
  }
}
.footer__inner:not(:first-child) {
  margin-top: 4.5rem;
}
@media print, screen and (min-width: 768px) {
  .footer__inner.mt0 {
    margin-top: 0;
  }
}
.footer__inner .upper, .footer__inner li > a, .footer__inner .parent a {
  display: inline-block;
  position: relative;
  padding: 0 0 2px;
}
.footer__inner .upper:hover::before, .footer__inner li > a:hover::before, .footer__inner .parent a:hover::before {
  transform: scale(1);
}
.footer__inner .upper::before, .footer__inner li > a::before, .footer__inner .parent a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
  height: 1px;
  width: 100%;
  transform: scale(0);
  transform-origin: left center;
  transition: all ease-in-out 0.3s;
}
.footer__inner .upper {
  display: block;
  font-size: 1.4rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .footer__inner .upper {
    font-size: 2.8rem;
    line-height: 1.4;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
  }
}
.footer__inner .upper:hover::after {
  right: -1rem;
}
.footer__inner .upper::after {
  top: 0;
  right: 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .footer__inner .upper::after {
    top: 0.8rem;
  }
}
.footer__inner span.upper::before {
  display: none;
}
.footer__inner .parent {
  display: block;
  color: #00b1dd;
  margin-top: 2rem;
}
.footer__inner li {
  margin-top: 1rem;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .footer__inner li {
    line-height: 1.6;
  }
}
.footer__sublist {
  padding-left: 2rem;
}
@media only screen and (max-width: 767px) {
  .footer__sublist {
    padding-left: 4rem;
  }
}
.footer__copy {
  border-top: 2px solid #d2d2d2;
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  font-weight: 300;
  font-size: 1.2rem;
  padding: 3rem 0;
}
@media only screen and (max-width: 767px) {
  .footer__copy {
    font-size: 2.4rem;
  }
}
.footer .global-link {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  display: inline-block;
  text-decoration: underline;
}
@media print, screen and (min-width: 768px) {
  .footer .global-link:hover {
    text-decoration: none;
  }
}
@media only screen and (max-width: 767px) {
  .footer .global-link {
    margin-top: 3rem;
    font-size: 2.4rem;
  }
}
.footer .global-link img {
  position: relative;
  width: 1.4rem;
  height: auto;
  display: inline-block;
  margin-left: 1rem;
  top: 0.1rem;
}
@media only screen and (max-width: 767px) {
  .footer .global-link img {
    width: 2.6rem;
    top: 0.2rem;
  }
}