/**************************************
 font指定
 **************************************/

@font-face {
  font-family: "ShipporiMincho";
  src: url("./fonts/ShipporiMincho-Regular.ttf") format("truetype");
}

/* .title {
  font-family: "ShipporiMincho", sans-serif;
} */

/**************************************
 base
 **************************************/
@media screen and (max-width: 767px) {
  .only-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .only-sp {
    display: none !important;
  }
}

::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/**************************************
 stepFlow
 **************************************/
.stepflow {
  display: flex;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 0;
  list-style: none;
  position: relative;
  max-width: 28rem;
  margin: 0 auto 2.4rem auto;
  padding: 0 1.5rem;
  height: 3.2rem;
}
.stepflow::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  width: calc(100% - 3rem);
}
.stepflow .stepflow__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #eeffce;
  font-size: 1rem;
  line-height: 1.2rem;
  margin: 0 -0.7rem;
  -webkit-clip-path: polygon(
    5rem 50%,
    0% 0%,
    calc(100% - 5rem) 0%,
    100% 50%,
    calc(100% - 5rem) 100%,
    0% 100%
  );
  clip-path: polygon(
    5rem 50%,
    0% 0%,
    calc(100% - 5rem) 0%,
    100% 50%,
    calc(100% - 5rem) 100%,
    0% 100%
  );
}
.stepflow.goods .stepflow__item {
  background: #fff4ea;
}
.stepflow.machinery .stepflow__item {
  background: #eef8fa;
}
.stepflow.service .stepflow__item {
  background: #fff7ff;
}
.stepflow.content .stepflow__item {
  background: #f8ecec;
}
.stepflow .stepflow__item.current {
  background: #548235;
  font-weight: bold;
  color: #ffffff;
}
.stepflow.goods .stepflow__item.current {
  background: #d56a00;
}
.stepflow.machinery .stepflow__item.current {
  background: #2e75b6;
}
.stepflow.service .stepflow__item.current {
  background: #eb7831;
}
.stepflow.content .stepflow__item.current {
  background: #81322f;
}
.stepflow .stepflow__item:not(:first-child) {
  -webkit-clip-path: polygonpolygon(
    1.7rem 50%,
    0% 0%,
    calc(100% - 1.7rem) 0%,
    100% 50%,
    calc(100% - 1.7rem) 100%,
    0% 100%
  );
  clip-path: polygon(
    1.7rem 50%,
    0% 0%,
    calc(100% - 1.7rem) 0%,
    100% 50%,
    calc(100% - 1.7rem) 100%,
    0% 100%
  );
}
.stepflow .stepflow__item:first-child {
  -webkit-clip-path: polygon(
    1.7rem 50%,
    0% 0%,
    calc(100% - 1.7rem) 0%,
    100% 50%,
    calc(100% - 1.7rem) 100%,
    0% 100%
  );
  clip-path: polygon(
    1.7rem 50%,
    0% 0%,
    calc(100% - 1.7rem) 0%,
    100% 50%,
    calc(100% - 1.7rem) 100%,
    0% 100%
  );
  text-align: center;
  padding-right: 1.7rem;
  padding-left: 2rem;
  padding-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .stepflow {
    margin-bottom: 3rem;
    padding: 0 1.1rem;
    height: 4.4rem;
  }
  .stepflow .stepflow__item {
    font-size: 1.4rem;
    line-height: 1;
    margin: 0 -1.1rem;
    -webkit-clip-path: polygon(
      2.5rem 50%,
      0% 0%,
      calc(100% - 2.5rem) 0%,
      100% 50%,
      calc(100% - 2.5rem) 100%,
      0% 100%
    );
    clip-path: polygon(
      2.5rem 50%,
      0% 0%,
      calc(100% - 2.5rem) 0%,
      100% 50%,
      calc(100% - 2.5rem) 100%,
      0% 100%
    );
  }
  .stepflow .stepflow__item:not(:first-child) {
    -webkit-clip-path: polygon(
      2.5rem 50%,
      0% 0%,
      calc(100% - 2.5rem) 0%,
      100% 50%,
      calc(100% - 2.5rem) 100%,
      0% 100%
    );
    clip-path: polygon(
      2.5rem 50%,
      0% 0%,
      calc(100% - 2.5rem) 0%,
      100% 50%,
      calc(100% - 2.5rem) 100%,
      0% 100%
    );
  }
  .stepflow .stepflow__item:first-child {
    -webkit-clip-path: polygon(
      0% 0%,
      calc(100% - 2.5rem) 0%,
      100% 50%,
      calc(100% - 2.5rem) 100%,
      0% 100%
    );
    clip-path: polygon(
      0% 0%,
      calc(100% - 2.5rem) 0%,
      100% 50%,
      calc(100% - 2.5rem) 100%,
      0% 100%
    );
    text-align: center;
    padding-left: 0;
    padding-right: 1.2rem;
  }
}

/******************************************************
header
******************************************************/

.l-header {
  background-color: #ffffff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding-top: 1.37rem;
  padding-bottom: 1.5rem;
}
.l-header .l-header__inner {
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
.l-header .hlogo {
  display: flex;
  justify-content: center;
}
.l-header .hlogo .hlogo_link {
  transition: 0.2s linear;
  outline: none;
  margin-bottom: -7px;
}
.l-header .hlogo .hlogo_link:hover {
  opacity: 0.7;
}
.l-header .hlogo .hlogo_link img {
  width: 15.4rem; /*dezrev*/
  height: auto;
}
.l-header .header-function {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: flex-end;
}
.l-header
  .header-function
  .header-search
  .search-form-header
  > *:not(.header-search__btn) {
  opacity: 0;
  visibility: hidden;
}
.l-header
  .header-function
  .header-search
  .search-form-header.active
  > *:not(.header-search__btn) {
  opacity: 1;
  visibility: visible;
}
.l-header
  .header-function
  .header-search
  .search-form-header.active
  .header-search__btn {
  opacity: 0;
  visibility: hidden;
}
.l-header .header-function .header-search__btn {
  display: block;
}
.l-header .header-function .header-search__btn svg {
  display: block;
  fill: #363c45;
  transition: all 0.2s;
}
.l-header .header-function .header-search__btn:hover svg {
  fill: #aaa07a;
}
.l-header .header-function .nav-icon-g {
  display: flex;
  align-items: center;
  margin-right: 9.3rem;
}
.l-header .header-function .site-lang {
  position: relative;
  display: flex;
}
.l-header .header-function .site-lang .site-lang_btn {
  font-weight: bold;
  line-height: 1;
  padding: 0 0.7rem;
  position: relative;
  display: flex;
  align-items: center;
}
.l-header .header-function .site-lang .site-lang_btn .icon-arrow-d {
  margin-left: 1rem;
}
.l-header .header-function .site-lang .site-lang_btn .icon-arrow-d svg {
  display: block;
  width: 1rem;
  height: 0.6rem;
}
.l-header .header-function .site-lang .site-lang_btn .icon-arrow-d svg use {
  transition: 0.2s linear;
  stroke: #363c45;
}
.l-header .header-function .site-lang .site-lang_list {
  padding: 0 0.4rem;
  position: absolute;
  z-index: 20;
  min-width: 100%;
  display: block;
  opacity: 0;
  left: 0;
  top: calc(100% - 0.1rem);
  pointer-events: none;
  transform: translateY(-0.5rem);
  transition-duration: 86ms;
  transition-property: opacity, transform;
}
.l-header .header-function .site-lang .site-lang_list .site-lang_link {
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  padding: 0.3rem 0.5rem;
  border: 0.22rem solid transparent;
}
.l-header .header-function .site-lang .site-lang_list .site-lang_link:hover,
.l-header .header-function .site-lang .site-lang_list .site-lang_link:focus {
  border-color: #aaa07a;
  background-color: #ffffff;
}
.l-header .header-function .site-lang:hover .site-lang_list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.l-header
  .header-function
  .site-lang:hover
  .site-lang_btn
  .icon-arrow-d
  svg
  use {
  stroke: #aaa07a;
}
.l-header .header-function .header-path-hover {
  transition: 0.2s linear;
}
.l-header .header-function .nav-log {
  margin-left: 3.4rem;
}
.l-header .header-function .nav-log .nav-log__link svg use {
  transition: 0.2s linear;
  fill: #363c45;
}
.l-header .header-function .nav-log .nav-log__link:hover svg use {
  fill: #aaa07a;
}
.l-header .header-function .nav-log .nav-log__link .nav-log_icon {
  display: block;
  position: relative;
  /*  width: 2.5rem;
            height: 2.5rem;
            background-repeat: no-repeat;
            background-position: center; */
}
.l-header .header-function .nav-log .nav-log__link .nav-log_icon svg {
  width: 1.66rem; /* 3092 add */
  height: 1.83rem; /* 3092 add */
  display: block;
}
.l-header .header-function .user-info {
  margin-right: 7.4rem;
  position: relative;
}
.l-header .header-function .user-info__link {
  display: block;
}
.l-header .header-function .user-info__link svg use {
  transition: 0.2s linear;
  stroke: #363c45;
}
.l-header .header-function .user-info__link:hover svg use {
  stroke: #aaa07a;
}
.l-header .header-function .user-info__link:hover .user-info__text {
  color: #aaa07a;
}
.l-header .header-function .user-info__img {
  text-align: center;
}
.l-header .header-function .user-info__img svg {
  display: block;
  margin: 0 auto;
  width: 2.23rem; /* 3115 add */
  height: 1.83rem; /* 3115 add */
}
.l-header .header-function .user-info__img .icon-user_guest {
  width: 1.6rem;
  height: auto;
}
.l-header .header-function .user-info__text {
  text-align: center;
  line-height: 2.4rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  margin-top: 0.3rem;
}
.l-header .header-function .header-function__item {
  position: relative;
}
.l-header .header-function .header-function__item .header-function__item_icon {
  display: block;
  width: 1.83rem; /* 3135 add */
  height: 1.83rem; /* 3135 add */
}
.l-header
  .header-function
  .header-function__item
  .header-function__item_link
  svg
  use {
  transition: 0.2s linear;
  fill: #363c45;
}
.l-header
  .header-function
  .header-function__item
  .header-function__item_link:hover
  svg
  use {
  fill: #aaa07a;
}
.l-header .header-function .header-function__item .header-function__item_text {
  font-family: "futura-pt-cond", sans-serif;
  font-size: 1.2rem;
  line-height: 2.4rem;
  line-height: 2rem;
  position: absolute;
  top: -0.6rem;
  transform: translateY(calc(-100% - 0.7rem)) translateX(-50%);
  background-color: #f2d1d9;
  display: block;
  min-width: 4rem;
  text-align: center;
  font-weight: bold;
  left: 50%;
  right: 0;
  margin: 0 auto;
  display: block;
}
.l-header
  .header-function
  .header-function__item
  .header-function__item_text::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  border-left: 0.7rem solid transparent;
  border-right: 0.7rem solid transparent;
  border-top: 0.7rem solid #f2d1d9;
  bottom: 0.11rem;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(100%);
}
@media screen and (min-width: 768px) {
  .l-header .hlogo,
  .l-header .header-function {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    width: 100%;
  }
  .l-header .l-header__inner {
    justify-content: center;
  }
  .l-header .header-function {
    padding-bottom: 0.6rem;
  }
  .l-header .header-function .header-search {
    margin-right: 8rem;
    position: relative;
  }
  .l-header .header-function .header-search__btn {
    position: absolute;
    cursor: pointer;
    right: 0;
    bottom: 0;
    width: 5.5rem;
    height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-left: 0;
  }
  .l-header .header-function .nav-icon-g {
    gap: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    padding-top: 2rem;
    padding-bottom: 2.9rem;
  }
  .l-header .l-header__inner {
    justify-content: space-between;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .l-header .hlogo .hlogo_link img {
    width: 9.8rem;
    height: auto;
  }
  .l-header .header-function .header-search__btn svg {
    display: block;
    width: 2rem;
    height: 2rem;
  }
  .l-header .header-function .nav-icon-g {
    margin-right: 2rem;
  }
  .l-header .header-function .site-lang .site-lang_btn {
    font-size: 1.2rem;
    padding: 0 0.5rem;
  }
  .l-header .header-function .site-lang .site-lang_btn .icon-arrow-d {
    margin-left: 0.9rem;
  }
  .l-header .header-function .site-lang .site-lang_btn .icon-arrow-d svg {
    width: 1.17rem;
    height: 0.67rem;
  }
  .l-header .header-function .site-lang .site-lang_list {
    padding: 0 0.2rem;
  }
  .l-header .header-function .site-lang .site-lang_list .site-lang_link {
    font-size: 1.2rem;
    padding: 0.2rem 0.3rem;
    border-width: 0.17rem;
  }
  .l-header .header-function .nav-log {
    margin-left: 2.7rem;
  }
  .l-header .header-function .nav-log .nav-log_icon svg {
    width: 1.9rem;
    height: auto;
    display: block;
  }
  .l-header .header-function .header-function__item {
    width: 2.1rem;
    height: 2.1rem;
  }
  .l-header .header-function .header-function__item.nav-favorite {
    margin-right: 2rem;
  }
  .l-header
    .header-function
    .header-function__item
    .header-function__item_icon {
    width: auto;
    height: 2.1rem;
  }
  .l-header
    .header-function
    .header-function__item
    .header-function__item_text {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    display: block;
    padding: 0 0.5rem;
    line-height: 1.6rem;
    font-size: 1.2rem;
    top: -0.7rem;
  }
  .l-header .header-function .user-info {
    margin-right: 2.9rem;
    position: relative;
  }
  .l-header .header-function .user-info__text {
    font-size: 1.2rem;
    line-height: 1.7rem;
  }
  .l-header .header-function .user-info__img .icon-user_guest {
    width: 2rem;
  }
  .l-header .header-function .user-info__img svg {
    width: 2.6rem;
    height: auto;
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .l-header .l-header__inner {
    justify-content: space-between;
  }
}

.l-header_guest .header-function {
  padding-right: 6%;
}

@media screen and (max-width: 767px) {
  .l-header_sub {
    padding-bottom: 2.2rem;
  }
}
.l-header_sub .l-header__inner {
  justify-content: space-between;
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .l-header_sub .l-header__inner {
    flex-direction: column;
    gap: 4rem;
  }
}
.l-header_sub .l-header__inner .hlogo {
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .l-header_sub .l-header__inner .hlogo {
    padding-left: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .l-header_sub .l-header__inner .header-function {
    flex: 0 0 66.666666%;
    max-width: 66.666666%;
  }
}
@media screen and (max-width: 767px) {
  .l-header_sub .header-search {
    margin-top: 3.5rem;
    width: 100%;
  }
  .l-header_sub .header-search__btn svg {
    display: block;
    width: 2rem;
    height: auto;
  }
}

/******************************************************
footer
******************************************************/
.l-footer {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: radial-gradient(
    circle at 0.5rem 0.5rem,
    #d7d7d7 0.18rem,
    #e4e4e4 0
  );
  background-size: 2.2rem 2.2rem;
}
.l-footer a {
  font-size: 0.75rem;
}
.l-footer .copyright {
  font-size: 0.75rem;
}
.l-footer .inner {
  max-width: 108rem;
  margin-left: auto;
  margin-right: auto;
}
.l-footer .f-link {
  position: relative;
}
.l-footer .f-link::after {
  position: absolute;
  content: "";
  background-color: #505960;
  width: 0;
  left: 0;
  bottom: -0.4rem;
  height: 0.22rem;
  border-radius: 0.5rem;
}
.l-footer .f-link:hover::after {
  width: 100%;
}
.l-footer .f-link[target="_blank"]::after {
  background-color: #4375ad;
}
.l-footer .footer-logo__in {
  display: flex;
  flex-direction: column;
  align-items: end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-footer .footer-logo__in .japanstreet-logo {
  width: 26.6rem;
  height: auto;
  display: block;
}
.l-footer .footer-logo .product-by {
  margin-top: 1.7rem;
  line-height: 2.4;
}
.l-footer .footer-logo .product-by > span {
  font-size: 1.2rem;
  line-height: 2.4rem;
  margin-right: 2rem;
}
.l-footer .footer-logo .product-by .produced-logo {
  display: inline-block;
}
.l-footer .footer-logo .product-by .produced-logo .jetro-logo {
  width: 12.1rem;
  height: auto;
}
.l-footer .footer-top {
  display: flex;
  flex-wrap: wrap;
}
.l-footer .footer-top .footer-menu .footer-col .footer-menu__tl {
  font-weight: bold;
}
.l-footer .footer-top .footer-menu .footer-col > ul > li a {
  font-size: 1.2rem;
  line-height: 3rem;
}
.l-footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 2.7rem;
}
.l-footer .contact-us {
  padding-left: 0;
}
.l-footer .contact-us > a {
  display: flex;
  align-items: center;
}
.l-footer .contact-us > a svg {
  margin-left: 2rem;
}
.l-footer .contact-us .intro-movie {
  margin-right: 4.5rem;
}
.l-footer .contact-us .intro-movie .icon-movie {
  position: absolute;
}
.l-footer .contact-us .intro-movie .icon-movie::after {
  content: "";
  background: url("./icon-movie.svg") no-repeat center;
  background-size: contain;
  width: 2.5rem;
  height: 1.7rem;
  display: inline-block;
  margin-left: 2rem;
  position: relative;
  top: 0.2rem;
}
@media screen and (min-width: 768px) {
  .l-footer .footer-top {
    padding-bottom: 2rem;
    margin: 0 -2rem;
  }
  .l-footer .footer-top .footer-logo {
    width: 50%;
    padding: 0 2rem;
  }
  .l-footer .footer-top .footer-menu {
    width: 50%;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .l-footer .footer-top .footer-menu .footer-col2 {
    width: 100%;
    display: flex;
    padding: 0 2rem;
    justify-content: flex-end;
    flex-direction: column;
  }
  .l-footer .footer-top .footer-menu .footer-col2 > ul {
    gap: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .l-footer .footer-top .footer-menu:only-child {
    /*  .footer-col {
        width: 100%;
    } */
  }
  .l-footer .footer-bottom {
    border-top: 0.22rem solid #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 2.2rem;
    padding-bottom: 3.7rem;
    background-image: radial-gradient(
      circle at 0.3rem 0.3rem,
      #d7d7d7 0.15rem,
      #e4e4e4 0
    );
    background-size: 1.5rem 1.5rem;
  }
  .l-footer .f-link {
    font-size: 1.2rem;
  }
  .l-footer .f-link::after {
    height: 0.16rem;
    bottom: -0.3rem;
  }
  .l-footer .footer-logo {
    width: 100%;
  }
  .l-footer .footer-logo .footer-logo__in {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: end;
    justify-content: center;
  }
  .l-footer .footer-logo .footer-logo__in .japanstreet-foot__link {
    margin-right: 2.8rem;
  }
  .l-footer .footer-logo .footer-logo__in .japanstreet-logo {
    width: 14.9rem;
    height: auto;
    display: block;
  }
  .l-footer .footer-logo .footer-logo__in .product-by {
    display: flex;
    align-items: end;
    margin-top: 0;
  }
  .l-footer .footer-logo .footer-logo__in .product-by span {
    font-size: 1.2rem;
    line-height: 1.7rem;
    margin-right: 0.8rem;
  }
  .l-footer .footer-logo .footer-logo__in .product-by .jetro-logo {
    width: 6rem;
    height: auto;
    display: block;
  }
  .l-footer .footer-top {
    flex-direction: column-reverse;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .l-footer .footer-top .footer-menu {
    width: 100%;
    margin-bottom: 2.6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .l-footer .footer-top .footer-menu .footer-menu__tl {
    font-size: 1.2rem;
    line-height: 3.3rem;
  }
  .l-footer .footer-top .footer-menu .footer-col {
    padding-left: 1.7rem;
    padding-right: 1.7rem;
    /*  &:nth-child(2) {
        order: 3;
    }

    &:nth-child(3) {
        order: 2;
    }

    &:nth-child(4) {
        order: 4;
    } */
  }
  .l-footer .footer-top .footer-menu .footer-col ul li > a {
    font-size: 1.2rem;
    line-height: 3.3rem;
  }
  .l-footer .footer-top .footer-menu .foot-about {
    grid-column: 1/3;
    position: relative;
  }
  .l-footer .footer-top .footer-menu .foot-about:not(:only-child)::after {
    content: "";
    position: absolute;
    border-bottom: 0.16rem solid #ffffff;
    left: -1.5rem;
    right: -1.5rem;
    bottom: 0;
    height: 0.2rem;
  }
  .l-footer .footer-top .footer-menu .foot-about ul {
    /*  columns: 2;
     column-gap: 3.4rem; */
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 3.4rem;
    column-gap: 3.4rem;
  }
  .l-footer .footer-top .footer-menu .foot-about ul li {
    width: calc(50% - 1.7rem);
  }
  .l-footer .footer-top .footer-menu .foot-specials {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .l-footer .footer-top .footer-menu .foot-searchby {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .l-footer .footer-top .footer-menu .footer-col2 {
    padding-left: 1.7rem;
    padding-right: 1.7rem;
  }
  .l-footer .footer-bottom {
    padding-top: 1.9rem;
    border-top: 0.16rem solid #ffffff;
  }
  .l-footer .footer-bottom .footer-logo {
    order: 2;
    margin-top: 1rem;
  }
  .l-footer .footer-bottom .copyright {
    width: calc(100% + 4rem);
    font-size: 0.9rem;
    line-height: 1.9rem;
    text-align: center;
    order: 3;
    margin-top: 2.2rem;
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .l-footer .contact-us {
    width: 100%;
    padding-left: 0;
    order: 1;
    display: flex;
    justify-content: space-between;
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }
  .l-footer .contact-us .intro-movie {
    margin-right: 3.2rem;
  }
  .l-footer .contact-us .intro-movie .icon-movie::after {
    content: "";
    width: 2.2rem;
    height: 2rem;
    margin-left: 1rem;
    top: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .l-footer-ja .footer-top {
    padding: 0;
  }
  .l-footer-ja .footer-top .footer-menu .footer-col {
    padding-left: 0;
    padding-right: 0;
  }
  .l-footer-ja .footer-top .footer-menu .footer-col ul {
    padding-left: 1.7rem;
  }
  .l-footer-ja .footer-top .footer-menu .foot-searchby {
    grid-column: auto;
    grid-row: auto;
  }
  .l-footer-ja .footer-top .footer-menu .foot-about {
    grid-column: 1/2;
  }
  .l-footer-ja .footer-top .footer-menu .foot-about ul {
    -moz-columns: auto;
    columns: auto;
  }
  .l-footer-ja .footer-top .footer-menu .foot-about ul li {
    width: 100%;
  }
  .l-footer-ja .footer-top .footer-menu .foot-about:not(:only-child)::after {
    content: none;
  }
  .l-footer-ja .footer-top .footer-menu .foot-specials {
    grid-row: 1/2;
  }
  .l-footer-ja .footer-bottom {
    padding-top: 0;
    border-top: none;
  }
  .l-footer-ja .contact-us {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .l-footer-guest .footer-top {
    padding-bottom: 4.7rem;
  }
}

/******************************************************
dezrev
input fields
******************************************************/

.header {
  color: #333333;
  font-size: 24pt; /* 32px */
  font-weight: bold;
  text-align: center;
}

.page-header {
  color: #444444;
  font-size: 18pt; /* 24px */
  font-weight: bold;
}

.section-header {
  color: #444444;
  font-size: 14pt; /* 18px */
  font-weight: bold;
}


.border {
  color: #444444;
  font-size: 18px;
  font-weight: bold;
}

.lead {
  font-size: 10pt; /* 13.33...px */
}

.fm-input-text input {
  font-size: 1rem;
  line-height: 2rem;
  width: 100%;
}

.fm-input-text .with-unit {
  font-size: 1rem;
}
.fm-input-text .with-unit input {
  line-height: 2rem;
  width: 30%;
}

.fm-input-select select {
  height: 2rem;
  font-size: 1rem;
}

table {
  border-spacing: 0 15px;
}

/* .fm-answer .unit {
  font-size: 1.0rem;
} */

.fm-answer ul,
.fm-answer div,
.fm-input-radio ul {
  font-size: 10pt; /* 13.33...px */
}

.fm-answer ul {
  padding-left: 1.5rem;
  margin-top: 0.3rem;
}

.fm-answer ul.no-bullet {
  list-style-type: none;
  padding-left: 0;
}

.footer {
  /* font-size: 0.8rem; */
  font-size: 10pt; /* 13.33...px */
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.fm-enqueteout {
  width: 65%;
}

.fm-question {
  vertical-align: middle; /*1028-dezrev*/
  padding-left: 16px; /*1028-dezrev*/
  font-weight: bold; /*1028-dezrev*/
}

.fm-input-radio label,
.fm-input-checkbox label {
  font-size: 12pt; /* 16...px */
  line-height: 1.6rem;
}

.fm-input-radio input[type="radio"],
.fm-input-checkbox input[type="checkbox"] {
  vertical-align: initial;
}

/******************************************************

footer

******************************************************/
.l-footer {
  box-sizing: border-box;
  padding-top: 3.75rem;
  padding-bottom: 2.5rem;
  background-image: radial-gradient(
    circle at 0.31rem 0.31rem,
    #d7d7d7 0.11rem,
    #e4e4e4 0
  );
  background-size: 1.4rem 1.4rem;
}

.l-footer a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

.l-footer .inner {
  max-width: 67.5rem; /* 1030-dezrev */
  margin-left: auto;
  margin-right: auto;
}
.l-footer .f-link {
  position: relative;
}
.l-footer .f-link::after {
  position: absolute;
  content: "";
  background-color: #505960;
  width: 0;
  left: 0;
  bottom: -0.25rem;
  height: 0.13rem;
  border-radius: 0.5rem;
}
.l-footer .f-link:hover::after {
  width: 100%;
}
.l-footer .f-link[target="_blank"]::after {
  background-color: #4375ad;
}
.l-footer .footer-logo__in {
  display: flex;
  flex-direction: column;
  align-items: end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-footer .footer-logo__in .japanstreet-logo {
  width: 16.6rem; /* 1030-dezrev */
  height: auto;
  display: block;
}
.l-footer .footer-logo .product-by {
  margin-top: 1.06rem;
  line-height: 1.7;
}
.l-footer .footer-logo .product-by > span {
  font-size: 0.75rem; /* 1030-dezrev */
  line-height: 1.7rem; /* 1030-dezrev */
  margin-right: 1.25rem; /* 1030-dezrev */
}
.l-footer .footer-logo .product-by .produced-logo {
  display: inline-block;
}
.l-footer .footer-logo .product-by .produced-logo .jetro-logo {
  width: 7.56rem; /* 1030-dezrev */
  height: auto;
}
.l-footer .footer-top {
  display: flex;
  flex-wrap: wrap;
}
.l-footer .footer-top .footer-menu .footer-col .footer-menu__tl {
  font-weight: bold;
}
.l-footer .footer-top .footer-menu .footer-col > ul > li a {
  font-size: 1.2rem;
  line-height: 3rem;
}
.l-footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 2.7rem;
}
.l-footer .contact-us {
  padding-left: 0;
}
.l-footer .contact-us > a {
  display: flex;
  align-items: center;
}
.l-footer .contact-us > a svg {
  margin-left: 2rem;
}
.l-footer .contact-us .intro-movie {
  margin-right: 4.5rem;
}
.l-footer .contact-us .intro-movie .icon-movie {
  position: absolute;
}
.l-footer .contact-us .intro-movie .icon-movie::after {
  content: "";
  background: url("./icon-movie.svg") no-repeat center;
  background-size: contain;
  width: 1.6rem;
  height: 1.1rem;
  display: inline-block;
  margin-left: 1.25rem;
  position: relative;
  top: 0.4rem;
}
@media screen and (min-width: 768px) {
  .l-footer .footer-top {
    padding-bottom: 2rem;
    margin: 0 -2rem;
  }
  .l-footer .footer-top .footer-logo {
    width: 45%;
    padding: 0 1.25rem; /* 1030-dezrev */
  }
  .l-footer .footer-top .footer-menu {
    width: 45%;
    padding: 0 1.25rem; /* 1030-dezrev */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .l-footer .footer-top .footer-menu .footer-col2 {
    width: 100%;
    display: flex;
    padding: 0 2rem;
    justify-content: flex-end;
    flex-direction: column;
  }
  .l-footer .footer-top .footer-menu .footer-col2 > ul {
    gap: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .l-footer .footer-top .footer-menu:only-child {
    /*  .footer-col {
        width: 100%;
    } */
  }
  .l-footer .footer-bottom {
    border-top: 0.22rem solid #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 2.2rem;
    padding-bottom: 3.7rem;
    background-image: radial-gradient(
      circle at 0.3rem 0.3rem,
      #d7d7d7 0.15rem,
      #e4e4e4 0
    );
    background-size: 1.5rem 1.5rem;
  }
  .l-footer .f-link {
    font-size: 1.2rem;
  }
  .l-footer .f-link::after {
    height: 0.16rem;
    bottom: -0.3rem;
  }
  .l-footer .footer-logo {
    width: 100%;
  }
  .l-footer .footer-logo .footer-logo__in {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: end;
    justify-content: center;
  }
  .l-footer .footer-logo .footer-logo__in .japanstreet-foot__link {
    margin-right: 2.8rem;
  }
  .l-footer .footer-logo .footer-logo__in .japanstreet-logo {
    width: 14.9rem;
    height: auto;
    display: block;
  }
  .l-footer .footer-logo .footer-logo__in .product-by {
    display: flex;
    align-items: end;
    margin-top: 0;
  }
  .l-footer .footer-logo .footer-logo__in .product-by span {
    font-size: 1.2rem;
    line-height: 1.7rem;
    margin-right: 0.8rem;
  }
  .l-footer .footer-logo .footer-logo__in .product-by .jetro-logo {
    width: 6rem;
    height: auto;
    display: block;
  }
  .l-footer .footer-top {
    flex-direction: column-reverse;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .l-footer .footer-top .footer-menu {
    width: 100%;
    margin-bottom: 2.6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .l-footer .footer-top .footer-menu .footer-menu__tl {
    font-size: 1.2rem;
    line-height: 3.3rem;
  }
  .l-footer .footer-top .footer-menu .footer-col {
    padding-left: 1.7rem;
    padding-right: 1.7rem;
    /*  &:nth-child(2) {
        order: 3;
    }

    &:nth-child(3) {
        order: 2;
    }

    &:nth-child(4) {
        order: 4;
    } */
  }
  .l-footer .footer-top .footer-menu .footer-col ul li > a {
    font-size: 1.2rem;
    line-height: 3.3rem;
  }
  .l-footer .footer-top .footer-menu .foot-about {
    grid-column: 1/3;
    position: relative;
  }
  .l-footer .footer-top .footer-menu .foot-about:not(:only-child)::after {
    content: "";
    position: absolute;
    border-bottom: 0.16rem solid #ffffff;
    left: -1.5rem;
    right: -1.5rem;
    bottom: 0;
    height: 0.2rem;
  }
  .l-footer .footer-top .footer-menu .foot-about ul {
    /*  columns: 2;
     column-gap: 3.4rem; */
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 3.4rem;
    column-gap: 3.4rem;
  }
  .l-footer .footer-top .footer-menu .foot-about ul li {
    width: calc(50% - 1.7rem);
  }
  .l-footer .footer-top .footer-menu .foot-specials {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .l-footer .footer-top .footer-menu .foot-searchby {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .l-footer .footer-top .footer-menu .footer-col2 {
    padding-left: 1.7rem;
    padding-right: 1.7rem;
  }
  .l-footer .footer-bottom {
    padding-top: 1.9rem;
    border-top: 0.16rem solid #ffffff;
  }
  .l-footer .footer-bottom .footer-logo {
    order: 2;
    margin-top: 1rem;
  }
  .l-footer .footer-bottom .copyright {
    width: calc(100% + 4rem);
    font-size: 0.9rem;
    line-height: 1.9rem;
    text-align: center;
    order: 3;
    margin-top: 2.2rem;
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .l-footer .contact-us {
    width: 100%;
    padding-left: 0;
    order: 1;
    display: flex;
    justify-content: space-between;
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }
  .l-footer .contact-us .intro-movie {
    margin-right: 3.2rem;
  }
  .l-footer .contact-us .intro-movie .icon-movie::after {
    content: "";
    width: 2.2rem;
    height: 2rem;
    margin-left: 1rem;
    top: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .l-footer-ja .footer-top {
    padding: 0;
  }
  .l-footer-ja .footer-top .footer-menu .footer-col {
    padding-left: 0;
    padding-right: 0;
  }
  .l-footer-ja .footer-top .footer-menu .footer-col ul {
    padding-left: 1.7rem;
  }
  .l-footer-ja .footer-top .footer-menu .foot-searchby {
    grid-column: auto;
    grid-row: auto;
  }
  .l-footer-ja .footer-top .footer-menu .foot-about {
    grid-column: 1/2;
  }
  .l-footer-ja .footer-top .footer-menu .foot-about ul {
    -moz-columns: auto;
    columns: auto;
  }
  .l-footer-ja .footer-top .footer-menu .foot-about ul li {
    width: 100%;
  }
  .l-footer-ja .footer-top .footer-menu .foot-about:not(:only-child)::after {
    content: none;
  }
  .l-footer-ja .footer-top .footer-menu .foot-specials {
    grid-row: 1/2;
  }
  .l-footer-ja .footer-bottom {
    padding-top: 0;
    border-top: none;
  }
  .l-footer-ja .contact-us {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .l-footer-guest .footer-top {
    box-sizing: border-box;
    padding-bottom: 2.94rem;
  }
}

footer ul,
footer ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* body > form > table > tbody > tr:nth-child(5) {
  color: red;
} */
