@charset "UTF-8";
/* header height */
/* sub-header height */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes blinking-s {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinking {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(-60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-up {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-down {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-zoom-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-zoom-out {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-clip-left {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-right {
  from {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-up {
  from {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-down {
  from {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-center {
  from {
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}
@keyframes fade-clip-circle {
  from {
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
    opacity: 1;
  }
}
@keyframes fade-clip-skew {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0);
            clip-path: polygon(0 0, 0 0, 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
            clip-path: polygon(0 0, 200% 0, 0 200%);
    opacity: 1;
  }
}
@keyframes fade-clip-wave {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0);
            clip-path: polygon(0 0, 0 0, 0 0);
    transition: all 0.5s cubic-bezier(0.55, 0.06, 0.33, 1.85);
    transform: translateX(-30px) scale(0.8) skew(8deg);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
            clip-path: polygon(0 0, 200% 0, 0 200%);
    transform: translateX(0) scale(1) skew(0);
    opacity: 1;
  }
}
@keyframes cover-left {
  0%, 20% {
    transform-origin: 0 50%;
  }
  20%, 100% {
    transform-origin: 100% 50%;
  }
  20% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes cover-right {
  0%, 20% {
    transform-origin: 100% 50%;
  }
  20%, 100% {
    transform-origin: 0 50%;
  }
  20% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes cover-up {
  0%, 20% {
    transform-origin: 50% 100%;
  }
  20%, 100% {
    transform-origin: 50% 0;
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes cover-down {
  0%, 20% {
    transform-origin: 50% 0;
  }
  20%, 100% {
    transform-origin: 50% 100%;
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes hover-zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes hover-zoom-out {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hover-zoom-in-blink {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes hover-zoom-out-blink {
  0% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.company-message {
  padding-bottom: 60px;
  overflow: hidden;
  position: relative;
}
.company-message__content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
  padding-top: 0px;
}
.company-message__content__ttl {
  text-align: center;
  font-weight: 700;
  line-break: strict;
  line-height: 2;
  font-size: 1.125rem;
  margin-bottom: 40px;
}
.company-message__content__ttl.en {
  font-weight: 700;
  line-break: strict;
  line-height: 2;
  font-size: 1rem;
  margin-bottom: 20px;
}
.company-message__content__text {
  font-weight: 700;
  line-break: strict;
  line-height: 2;
  font-size: 0.75rem;
  text-align: center;
  margin-bottom: 50px;
}
.company-message__content__text.en {
  font-weight: 700;
  line-break: strict;
  line-height: 2;
  font-size: 0.75rem;
}
.company-message__content__symbol {
  margin: 0 auto;
  margin-bottom: 30px;
  width: 34px;
}
.company-message__content__symbol img {
  width: 100%;
  margin-left: -20px;
}
.company-message__content__symbol.en {
  margin-bottom: 20px;
}
.company-message__content__img {
  margin: 0 auto;
  width: 73px;
}
.company-message__content__img img {
  width: 100%;
}
.company-message__bg {
  position: absolute;
  z-index: -1;
}
.company-message__bg.left {
  top: 45px;
  left: -12%;
  width: 175px;
}
.company-message__bg.left img {
  width: 100%;
}
.company-message__bg.right {
  top: 47px;
  right: -13%;
  width: 178px;
}
.company-message__bg.right img {
  width: 100%;
}

.company-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 37px;
  padding: 0 0px;
}
.company-info__content {
  width: 100%;
  display: block;
}
.company-info .left {
  display: flex;
  flex-direction: row;
  margin: 0px 0 0px 0;
}
.company-info .left th {
  font-weight: 700;
  line-break: strict;
  line-height: 1.88;
  font-size: 0.875rem;
  padding: 0 0;
  width: 43%;
}
.company-info .left td {
  font-weight: normal;
  line-break: strict;
  line-height: 1.88;
  font-size: 0.875rem;
  width: 57%;
}
.company-info .full {
  width: 100%;
}
.company-info__label {
  font-weight: 700;
  line-break: strict;
  line-height: 1.88;
  font-size: 0.875rem;
  margin: 2px 15px 0 0;
}
.company-info .right {
  display: flex;
  flex-direction: row;
  margin: 80px 0 0px 0;
}
.company-info .right th {
  font-weight: normal;
  line-break: strict;
  line-height: 1.88;
  font-size: 0.875rem;
  padding: 0 10px 0 0;
}
.company-info .right td {
  font-weight: 700;
  line-break: strict;
  line-height: 1.88;
  font-size: 0.875rem;
}

.map {
  width: 100%;
  margin: 0px auto;
  margin-top: 10px;
}
.map__google {
  position: relative;
  width: 100%;
  padding-top: 100%;
  /* = height ÷ width × 100 */
}
.map__google iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map__address {
  font-weight: normal;
  line-break: strict;
  line-height: 200%;
  font-size: 0.875rem;
  margin-top: 0px;
  padding: 0 0px 50px;
}
.map__address span {
  font-weight: bold;
}
@media (min-width: 640px) {
  .company-message {
    padding-bottom: 120px;
    overflow: visible;
  }
  .company-message__content__ttl {
    line-height: 2;
    font-size: 1.125rem;
  }
  .company-message__content__ttl.en {
    line-height: 2;
    font-size: 1.125rem;
  }
  .company-message__content__text {
    line-height: 2;
    font-size: 0.75rem;
  }
  .company-message__content__text.en {
    line-height: 2;
    font-size: 0.75rem;
  }
  .company-message__bg.left {
    top: -10px;
    left: 0;
    width: 185px;
  }
  .company-message__bg.right {
    top: -10px;
    right: 0;
    width: 188px;
  }
  .company-info {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 105px;
    padding: 0 25px;
  }
  .company-info__content {
    width: 50%;
  }
  .company-info .left {
    justify-content: flex-end;
    margin: 0;
  }
  .company-info .left th {
    line-height: 1.88;
    font-size: 0.875rem;
  }
  .company-info .left th {
    width: 34%;
    padding: 0 15px;
  }
  .company-info .left td {
    line-height: 1.88;
    font-size: 0.875rem;
  }
  .company-info .left td {
    width: 66%;
  }
  .company-info .full {
    justify-content: center;
    margin: 0;
  }
  .company-info__label {
    line-height: 1.88;
    font-size: 0.875rem;
  }
  .company-info .right {
    justify-content: center;
    margin: 0;
  }
  .company-info .right th {
    line-height: 1.88;
    font-size: 0.875rem;
  }
  .company-info .right td {
    line-height: 1.88;
    font-size: 0.875rem;
  }
  .map {
    margin-top: 0px;
  }
  .map__google {
    padding-top: 42.8%;
    /* = height ÷ width × 100 */
  }
  .map__address {
    line-height: 200%;
    font-size: 0.875rem;
  }
  .map__address {
    margin-top: 10px;
    padding: 0 20px;
  }
}
@media (min-width: 1100px) {
  .company-message__content {
    padding-top: 62px;
  }
  .company-message__content__ttl {
    line-height: 2;
    font-size: 1.875rem;
  }
  .company-message__content__ttl {
    margin-bottom: 90px;
  }
  .company-message__content__ttl.en {
    line-height: 2;
    font-size: 1.875rem;
  }
  .company-message__content__ttl.en {
    margin-bottom: 90px;
  }
  .company-message__content__text {
    line-height: 2;
    font-size: 1.25rem;
  }
  .company-message__content__text {
    margin-bottom: 100px;
  }
  .company-message__content__text.en {
    line-height: 2;
    font-size: 1.25rem;
  }
  .company-message__content__symbol {
    margin-bottom: 61px;
    width: 67px;
  }
  .company-message__content__symbol img {
    margin-left: -20px;
  }
  .company-message__content__symbol.en {
    margin-bottom: 80px;
  }
  .company-message__content__img {
    width: 152px;
  }
  .company-message__bg.left {
    top: -60px;
    left: 0;
    width: 371px;
  }
  .company-message__bg.right {
    top: -58px;
    right: 0;
    width: 376px;
  }
  .company-info .left th {
    line-height: 1.88;
    font-size: 1rem;
  }
  .company-info .left th {
    white-space: nowrap;
  }
  .company-info .left td {
    line-height: 1.88;
    font-size: 1rem;
  }
  .company-info .left td {
    white-space: nowrap;
  }
  .company-info__label {
    line-height: 1.88;
    font-size: 1rem;
  }
  .company-info .right th {
    line-height: 1.88;
    font-size: 1rem;
  }
  .company-info .right td {
    line-height: 1.88;
    font-size: 1rem;
  }
  .map__address {
    line-height: 200%;
    font-size: 1rem;
  }
  .map__address {
    margin-top: 10px;
    padding: 0 75px;
  }
}