/* init fonts */
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 767px) {
  html {
    overflow-x: hidden;
  }
}

body {
  position: relative;
  font-size: 1.6em;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  color: #434343;
  max-width: 1440px;
  min-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  body {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
  }
}

img {
  max-width: 100%;
}

p {
  max-height: 100%;
}

.il-b {
  display: inline-block;
}

header {
  position: fixed;
  background-color: #fff;
  width: 100%;
  max-width: 1440px;
  min-width: 1000px;
  z-index: 9999;
}

header .header_wrap {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media screen and (max-width: 767px) {
  header .header_wrap {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

header .gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

header .gnav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .gnav ul li a {
  color: #434343;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .gnav ul li a:link, header .gnav ul li a:visited {
  color: #434343;
}

header .gnav ul li a .en {
  color: #f36734;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

header .gnav ul li a .jp {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

header .gnav ul li a:hover .en {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}

header .gnav ul li a:hover .jp {
  -webkit-transform: translateX(-0.5rem);
          transform: translateX(-0.5rem);
}

@media screen and (min-width: 768px) {
  header .gnav ul li.menu-home.top {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  header .gnav ul li::before {
    display: block;
    content: "";
    border-left: solid 1px #bbb;
    -webkit-transform: rotateZ(20deg);
            transform: rotateZ(20deg);
    margin-left: 3rem;
    margin-right: 3rem;
  }
  header .gnav ul li:last-child::after {
    display: block;
    content: "";
    border-left: solid 1px #bbb;
    -webkit-transform: rotateZ(20deg);
            transform: rotateZ(20deg);
    margin-left: 3rem;
    margin-right: 3rem;
  }
}

@media screen and (max-width: 767px) {
  header {
    position: fixed;
    min-width: 100%;
  }
  header .header_wrap {
    height: 74px;
    padding-top: 0;
    padding-bottom: 0;
  }
  header .header-logo {
    width: 200px;
  }
  header .menu_btn {
    position: relative;
    width: 30px;
    height: 26px;
    margin-right: 0.5rem;
  }
  header .menu_btn span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #f36734;
  }
  header .menu_btn span:nth-child(1) {
    top: 0;
  }
  header .menu_btn span:nth-child(2) {
    top: 12px;
  }
  header .menu_btn span:nth-child(3) {
    bottom: 0;
  }
  header .accordion-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.8);
    height: 100vh;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  header .accordion-wrap.show {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  header .accordion-wrap .accordion {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #fff;
  }
  header .accordion-wrap .accordion .nav_head {
    border-top: solid 2px #f36734;
    height: 74px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 1.5rem;
    padding-right: calc(3vw + 0.5rem);
    border-bottom: solid 1px #ddd;
    font-size: 2.4rem;
  }
  header .accordion-wrap .accordion .nav_head .menu_btn-close {
    width: 30px;
    height: 30px;
    position: relative;
  }
  header .accordion-wrap .accordion .nav_head .menu_btn-close span {
    position: absolute;
    height: 2px;
    width: 100%;
    top: 14px;
    background-color: #f36734;
  }
  header .accordion-wrap .accordion .nav_head .menu_btn-close span:first-child {
    -webkit-transform: rotateZ(45deg);
            transform: rotateZ(45deg);
  }
  header .accordion-wrap .accordion .nav_head .menu_btn-close span:last-child {
    -webkit-transform: rotateZ(-45deg);
            transform: rotateZ(-45deg);
  }
  header .accordion-wrap .accordion .gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .accordion-wrap .accordion .gnav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 0;
  }
  header .accordion-wrap .accordion .gnav ul li {
    width: 50%;
  }
  header .accordion-wrap .accordion .gnav ul li:nth-child(2n) {
    border-right: solid 1px #ddd;
  }
  header .accordion-wrap .accordion .gnav ul li a {
    position: relative;
    height: 66px;
    width: 100%;
    border-bottom: solid 1px #ddd;
  }
  header .accordion-wrap .accordion .gnav ul li a .en {
    font-size: 1.3rem;
  }
  header .accordion-wrap .accordion .gnav ul li a .jp {
    font-size: 1.6rem;
  }
  header .accordion-wrap .accordion .gnav ul li a::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 14px 0 0;
    border-color: #f36734 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
  }
  header .accordion-wrap .accordion .gnav ul li.menu-home {
    width: 100%;
  }
  header .accordion-wrap .accordion .gnav ul li.menu-home a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.6rem;
  }
  header .accordion-wrap .accordion .gnav ul li.menu-home a i {
    color: #f36734;
    margin-right: 0.8rem;
  }
  header .accordion-wrap .accordion .nav_info {
    margin-top: 3rem;
    padding-bottom: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .accordion-wrap .accordion .nav_info img {
    padding-bottom: 0.6rem;
    border-bottom: solid orange 1px;
    margin-bottom: 0.6rem;
  }
  header .accordion-wrap .accordion .nav_info p {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

@media screen and (min-width: 768px) {
  header .gnav .nav_head {
    display: none;
  }
  header .gnav a {
    padding-bottom: 1.5rem;
  }
  header .menu_btn {
    display: none;
  }
  header .nav_info {
    display: none;
  }
}

footer {
  color: #fff;
  background-color: #555;
  background-image: repeating-linear-gradient(45deg, rgba(67, 67, 67, 0.5), rgba(67, 67, 67, 0.5) 2px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 4px), repeating-linear-gradient(315deg, rgba(67, 67, 67, 0.5), rgba(67, 67, 67, 0.5) 2px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 4px);
}

footer .wrap {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 3.7rem 2rem 3.7rem 1.5rem;
}

@media screen and (max-width: 767px) {
  footer .wrap {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

footer .wrap a {
  color: #fff;
  text-decoration: none;
  display: block;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

footer .wrap a:link, footer .wrap a:visited {
  color: #fff;
}

footer .wrap a:hover {
  color: #f36734;
}

footer .wrap nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .wrap nav .home {
  padding-top: 0.8rem;
  padding-right: 2rem;
  border-right: solid 1px #fff;
}

footer .wrap nav .lv-1 {
  padding-top: 0.8rem;
  padding-left: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .wrap nav .lv-1:first-of-type {
  margin-right: 6rem;
}

footer .wrap nav .lv-2 {
  padding-left: 2rem;
  margin-top: 1.6rem;
}

footer .wrap nav .lv-2 li {
  margin-bottom: 0.8rem;
}

footer .wrap nav .lv-2 li:last-child {
  margin-bottom: 0;
}

footer .copy {
  background-color: #f36734;
  color: #fff;
  height: 5rem;
  text-align: center;
}

footer .copy span {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

@media screen and (max-width: 767px) {
  footer .copy span {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

@media screen and (max-width: 767px) {
  footer .wrap {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }
  footer .wrap nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .wrap nav .home {
    padding-left: 2rem;
    margin-bottom: 1rem;
    border: none;
  }
  footer .wrap nav .home a {
    border: solid 1px #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100px;
    height: 3rem;
  }
  footer .wrap nav .lv-1:first-of-type {
    margin-right: 0;
  }
  footer .wrap nav .lv-1:last-of-type {
    margin-top: 2rem;
  }
  footer .wrap nav .lv-1:last-of-type li {
    margin-bottom: 1.6rem;
  }
  footer .wrap .footer_logo {
    position: absolute;
    right: 3vw;
    bottom: 3rem;
  }
}

.scroll-top {
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  font-size: 2.1rem;
  color: #fff;
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  bottom: 25px;
  right: 66px;
}

.scroll-top:link, .scroll-top:visited {
  color: #fff;
}

@media screen and (min-width: 1440px) {
  .scroll-top {
    right: calc(50% - (1440px / 2) + 66px);
  }
}

@media screen and (max-width: 767px) {
  .scroll-top {
    right: 4vw;
  }
}

.top_blank {
  height: 65px;
}

@media screen and (max-width: 767px) {
  .top_blank {
    height: 74px;
  }
}

.breadcrumb {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.breadcrumb ul {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .breadcrumb ul {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.breadcrumb ul li::after {
  content: ">";
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}

.breadcrumb ul li:last-child::after {
  content: "";
  margin: 0;
}

.breadcrumb ul li a {
  color: #f36734;
  text-decoration: none;
  text-decoration: underline;
}

.breadcrumb ul li a:link, .breadcrumb ul li a:visited {
  color: #f36734;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 1.2rem;
  }
  .breadcrumb ul li::after {
    margin-left: 0.8rem;
    margin-right: 0.8rem;
  }
}

.read {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .read {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

@media screen and (max-width: 767px) {
  .read {
    font-size: 2rem;
  }
}

.bottom_nav {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: solid 2px #eee;
  background-color: #fff;
  background-image: repeating-linear-gradient(45deg, rgba(238, 238, 238, 0.5), rgba(238, 238, 238, 0.5) 2px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 4px), repeating-linear-gradient(315deg, rgba(238, 238, 238, 0.5), rgba(238, 238, 238, 0.5) 2px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 4px);
}

.bottom_nav ul {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .bottom_nav ul {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.bottom_nav ul li {
  margin-left: 8.3px;
  margin-right: 8.3px;
}

.bottom_nav ul li a {
  color: #434343;
  text-decoration: none;
  display: block;
  width: 310px;
  height: 10rem;
  border: solid 1px #eee;
  padding: 0.5rem;
  background-color: #fff;
  -webkit-transition: ease all 0.3s;
  transition: ease all 0.3s;
}

.bottom_nav ul li a:link, .bottom_nav ul li a:visited {
  color: #434343;
}

.bottom_nav ul li a div {
  border: solid 2px #f36734;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.bottom_nav ul li a div span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 2rem;
  font-size: 2rem;
}

.bottom_nav ul li a div span i {
  margin-right: 1rem;
}

.bottom_nav ul li a div i {
  color: #f36734;
}

.bottom_nav ul li a div .arrow {
  position: absolute;
  top: 50%;
  right: 3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bottom_nav ul li a:hover {
  background-color: #f36734;
  color: #fff;
}

.bottom_nav ul li a:hover div {
  border-color: #fff;
}

.bottom_nav ul li a:hover div i {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .bottom_nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .bottom_nav ul li {
    width: 100%;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
  }
  .bottom_nav ul li a {
    width: 100%;
  }
  .bottom_nav ul li a div {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 3rem;
  }
}

.sec_contact {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: solid 2px #eee;
  background-color: #fff;
  background-image: repeating-linear-gradient(45deg, rgba(238, 238, 238, 0.5), rgba(238, 238, 238, 0.5) 2px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 4px), repeating-linear-gradient(315deg, rgba(238, 238, 238, 0.5), rgba(238, 238, 238, 0.5) 2px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 4px);
}

.sec_contact .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}

.sec_contact .flex p {
  font-size: 2rem;
  line-height: 1.8;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.sec_contact .flex a {
  min-width: 75px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.sec_contact .flex a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .sec_contact {
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  .sec_contact {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

@media screen and (max-width: 767px) {
  .sec_contact .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sec_contact .flex p {
    margin-top: 1.6rem;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

.contact_form {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5rem;
}

@media screen and (max-width: 767px) {
  .contact_form {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.contact_form li {
  margin-bottom: 2rem;
  position: relative;
  border: solid 2px #ddd;
  padding: 1rem 0;
}

.contact_form li::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 18px 0 0;
  border-color: #ddd transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.contact_form li.req::before {
  border-color: #f36734 transparent transparent transparent;
}

.contact_form dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact_form dl dt {
  padding: 0 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: solid 3px #f36734;
}

@media screen and (min-width: 768px) {
  .contact_form dl dt.confirm {
    min-width: 280px;
  }
}

.contact_form dl dt span {
  min-width: 130px;
  line-height: 1.4;
  text-align: center;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.contact_form dl dd {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact_form dl dd input,
.contact_form dl dd textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1rem;
  font-size: 1.6rem;
}

.contact_form dl dd input[type="text"], .contact_form dl dd input[type="email"],
.contact_form dl dd textarea[type="text"],
.contact_form dl dd textarea[type="email"] {
  width: 100%;
}

.contact_form dl dd input[type="text"].input_tel, .contact_form dl dd input[type="email"].input_tel,
.contact_form dl dd textarea[type="text"].input_tel,
.contact_form dl dd textarea[type="email"].input_tel {
  max-width: 300px;
}

.contact_form dl dd textarea {
  width: 100%;
  height: 200px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
}

.contact_form dl dd label {
  margin-right: 2rem;
}

.contact_form dl dd label::before {
  font-family: "Font Awesome 5 Free";
  color: #f36734;
}

.contact_form dl dd label.label_checkbox::before {
  content: "\f0c8";
}

.contact_form dl dd label.label_checkbox.checked::before {
  content: "\f14a";
}

.contact_form dl dd label.label_radio::before {
  content: "\f111";
}

.contact_form dl dd label.label_radio.checked::before {
  content: "\f058";
}

.contact_form dl dd label:last-child {
  margin-right: 0;
}

.contact_form dl dd label input {
  display: none;
}

.contact_form dl dd .error {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #f36734;
}

@media screen and (max-width: 767px) {
  .contact_form dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .contact_form dl dt {
    border-right: none;
    border-bottom: solid 3px #f36734;
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
  .contact_form dl dt span {
    min-width: 70px;
  }
  .contact_form dl dt span br {
    display: none;
  }
  .contact_form dl dd {
    padding-left: 0;
    padding-right: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contact_form dl dd .option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contact_form dl dd label {
    margin-bottom: 1.5rem;
  }
  .contact_form dl dd label:last-child {
    margin-bottom: 0;
  }
}

.form_btn_area {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

@media screen and (max-width: 767px) {
  .form_btn_area {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.form_btn_area a {
  color: #f36734;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 150px;
  height: 50px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #f36734;
  border: solid 2px #f36734;
  margin: 0 1.5rem;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.form_btn_area a:link, .form_btn_area a:visited {
  color: #f36734;
}

.form_btn_area a:hover {
  background-color: #f36734;
  color: #fff;
}

.form_btn_area a i {
  margin-right: 1rem;
}

@media screen and (max-width: 767px) {
  .form_btn_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form_btn_area form {
    margin: 0 0 1.5rem;
  }
  .form_btn_area form:last-child {
    margin-bottom: 0;
  }
}

.top-page .sec_1 {
  padding-top: 6rem;
  padding-bottom: 9rem;
  background-image: url(../img/common/back.jpg);
  background-position: center 15px;
  background-repeat: no-repeat;
}

.top-page .sec_1 h1 {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.2rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .top-page .sec_1 h1 {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.top-page .sec_1 h1 img {
  margin-bottom: 1.5rem;
}

.top-page .sec_1 ul {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .top-page .sec_1 ul {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.top-page .sec_1 ul li {
  -webkit-transition: ease all 0.3s;
  transition: ease all 0.3s;
}

.top-page .sec_1 ul li a {
  position: relative;
}

.top-page .sec_1 ul li a span {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.8rem;
}

.top-page .sec_1 ul li a span i {
  color: #f36734;
  margin-right: 1rem;
}

.top-page .sec_1 ul li:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .top-page .sec_1 {
    padding-bottom: 3rem;
  }
  .top-page .sec_1 h1 {
    font-size: 2rem;
  }
  .top-page .sec_1 ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-page .sec_1 ul li {
    width: 100%;
    margin-bottom: 2.5rem;
  }
}

.access-page .sec_1 ul {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media screen and (max-width: 767px) {
  .access-page .sec_1 ul {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.access-page .sec_1 ul li {
  margin-bottom: 3rem;
}

.access-page .sec_1 dl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: solid 2px #ddd;
  padding: 2rem;
  line-height: 1.6;
}

.access-page .sec_1 dl::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 25px 0 0;
  border-color: #f36734 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.access-page .sec_1 dl dt {
  border-right: solid 3px #f36734;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 130px;
  padding-right: 2rem;
}

.access-page .sec_1 dl dt span {
  text-align: center;
}

.access-page .sec_1 dl dt span.honsha {
  display: table-cell;
  width: 60px;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.access-page .sec_1 dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.access-page .sec_1 dl dd.address {
  width: 356px;
  padding-left: 2rem;
}

.access-page .sec_1 dl dd.map {
  width: 450px;
  margin-right: auto;
}

.access-page .sec_1 dl dd.map iframe {
  height: 250px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .access-page .sec_1 {
    padding-top: 2.5rem;
  }
  .access-page .sec_1 ul {
    padding-top: 0;
  }
  .access-page .sec_1 dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .access-page .sec_1 dl dt {
    width: 100%;
    border-right: none;
    border-bottom: solid 3px #f36734;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .access-page .sec_1 dl dt br {
    display: none;
  }
  .access-page .sec_1 dl dd.address {
    width: 100%;
    padding-left: 0;
    margin-bottom: 1.5rem;
  }
  .access-page .sec_1 dl dd.map {
    width: 100%;
  }
}

.company-page .sec_1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.company-page .sec_1 ul {
  padding-top: 5rem;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 767px) {
  .company-page .sec_1 ul {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.company-page .sec_1 ul li:last-child dl {
  border-bottom: solid 1px #ddd;
}

.company-page .sec_1 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: solid 1px #ddd;
  border-right: solid 1px #ddd;
}

.company-page .sec_1 dl dt {
  width: 240px;
  border-left: solid 4px #f36734;
  min-height: 80px;
  background-color: #eee;
  padding-left: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.company-page .sec_1 dl dt span {
  display: table-cell;
  min-width: 4.8rem;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.company-page .sec_1 dl dd {
  padding: 2rem;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.company-page .sec_1 dl dd p {
  margin-top: 2rem;
}

.company-page .sec_1 dl dd p:first-of-type {
  margin-top: 0;
}

.company-page .sec_1 dl dd ul {
  padding: 0;
}

.company-page .sec_1 dl dd ul li {
  text-indent: -2.1rem;
  margin-left: 2.1rem;
}

.company-page .sec_1 dl dd ul li::before {
  content: "\f45c";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  padding-right: 0.5rem;
}

.company-page .sec_1 dl dd .fig {
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .company-page .sec_1 {
    padding-top: 2.5rem;
  }
  .company-page .sec_1 dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .company-page .sec_1 dl dt {
    width: 100%;
    min-height: 40px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .company-page .sec_1 dl dd {
    border-left: solid 1px #ddd;
  }
  .company-page .sec_1 dl dd ul li {
    margin-bottom: 1rem;
  }
  .company-page .sec_1 dl dd ul li:last-child {
    margin-bottom: 0;
  }
}

.services-page .sec_1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.services-page .sec_1 .read {
  padding-bottom: 5rem;
}

.services-page .sec_1 ul.outer {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 767px) {
  .services-page .sec_1 ul.outer {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.services-page .sec_1 ul.outer > li {
  margin-bottom: 3rem;
  position: relative;
  border: solid 2px #ddd;
}

.services-page .sec_1 ul.outer > li a {
  color: #fff;
  text-decoration: none;
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 168px;
  height: 34px;
  background-color: #f36734;
  color: #fff;
  font-size: 1.8rem;
  border: solid 2px #f36734;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.services-page .sec_1 ul.outer > li a:link, .services-page .sec_1 ul.outer > li a:visited {
  color: #fff;
}

.services-page .sec_1 ul.outer > li a i {
  margin-right: 1rem;
}

.services-page .sec_1 ul.outer > li a:hover {
  background-color: #fff;
  color: #f36734;
}

.services-page .sec_1 dl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem;
  line-height: 1.6;
  min-height: 265px;
}

.services-page .sec_1 dl::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 25px 0 0;
  border-color: #f36734 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.services-page .sec_1 dl dt {
  border-right: solid 3px #f36734;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 280px;
  min-width: 280px;
  padding-left: 1.5rem;
  padding-right: 2rem;
}

@media screen\0 {
  .services-page .sec_1 dl dt {
    height: 225px;
  }
}

.services-page .sec_1 dl dt span {
  font-size: 2rem;
  display: block;
}

.services-page .sec_1 dl dt span:first-child {
  color: #f36734;
  font-size: 3rem;
}

.services-page .sec_1 dl dd {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-top: 1rem;
  padding-left: 3rem;
}

@media screen\0 {
  .services-page .sec_1 dl dd {
    height: 225px;
  }
}

.services-page .sec_1 dl .flex_a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  counter-reset: c1;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.services-page .sec_1 dl .flex_a ul {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.services-page .sec_1 dl .flex_a ul:first-child {
  padding-right: 2rem;
}

.services-page .sec_1 dl .flex_a ul li {
  counter-increment: c1;
  border-bottom: solid 1px #ddd;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
}

.services-page .sec_1 dl .flex_a ul li div {
  text-indent: -22px;
  margin-left: 22px;
}

.services-page .sec_1 dl .flex_a ul li div::before {
  color: #f36734;
  content: "0" counter(c1) ".";
}

.services-page .sec_1 dl .flex_a ul li div span {
  font-size: 1.4rem;
}

.services-page .sec_1 dl .flex_b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen\0 {
  .services-page .sec_1 dl .flex_b {
    width: 626px;
  }
}

.services-page .sec_1 dl .flex_b p {
  padding-right: 1.5rem;
}

@media screen and (max-width: 767px) {
  .services-page .sec_1 {
    padding-top: 2.5rem;
  }
  .services-page .sec_1 ul.outer li {
    padding-bottom: 4rem;
  }
  .services-page .sec_1 ul.outer li a {
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  .services-page .sec_1 dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 4rem;
  }
  .services-page .sec_1 dl dt {
    border-right: none;
    border-bottom: solid 3px #f36734;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    min-width: unset;
  }
  .services-page .sec_1 dl dt span {
    text-align: center;
  }
  .services-page .sec_1 dl dd {
    padding-left: 0;
  }
  .services-page .sec_1 dl .flex_a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services-page .sec_1 dl .flex_a ul {
    width: 100%;
  }
  .services-page .sec_1 dl .flex_a ul:first-child {
    padding-right: 0;
  }
  .services-page .sec_1 dl .flex_a ul li div br {
    display: none;
  }
  .services-page .sec_1 dl .flex_a ul li div span {
    display: inline-block;
    margin-left: 22px;
  }
  .services-page .sec_1 dl .flex_b {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services-page .sec_1 dl .flex_b img {
    margin-bottom: 2rem;
  }
}

.overseas_business-page .sec_1 {
  padding-top: 5rem;
}

.overseas_business-page .sec_1 .p2 {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5rem;
  font-size: 1.8rem;
  line-height: 1.6;
  padding-left: 4rem;
  padding-right: 4rem;
}

@media screen and (max-width: 767px) {
  .overseas_business-page .sec_1 .p2 {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.overseas_business-page .sec_1 .p2 .il-b {
  display: inline;
}

.overseas_business-page .sec_1 .outer {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 7rem;
  counter-reset: c1;
}

@media screen and (max-width: 767px) {
  .overseas_business-page .sec_1 .outer {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.overseas_business-page .sec_1 .outer > li {
  counter-increment: c1;
  padding: 1.5rem 2rem 5rem;
  border-top: solid 3px #f36734;
}

.overseas_business-page .sec_1 .outer > li h2 {
  font-size: 2.4rem;
  padding-bottom: 1.5rem;
  border-bottom: solid 1px #ddd;
}

.overseas_business-page .sec_1 .outer > li h2 > span {
  display: block;
  text-indent: -33px;
  margin-left: 33px;
}

.overseas_business-page .sec_1 .outer > li h2 > span::before {
  color: #f36734;
  content: "0" counter(c1) ".";
}

.overseas_business-page .sec_1 .outer .flex {
  margin-top: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.overseas_business-page .sec_1 .outer .flex img {
  padding-left: 1rem;
  padding-right: 3.5rem;
}

.overseas_business-page .sec_1 .outer .flex div p {
  line-height: 1.6;
}

.overseas_business-page .sec_1 .outer .flex div ul {
  margin-top: 2rem;
}

.overseas_business-page .sec_1 .outer .flex div ul li {
  margin-bottom: 0.8rem;
  text-indent: -12px;
  margin-left: 12px;
}

.overseas_business-page .sec_1 .outer .flex div ul li::before {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  padding-right: 0.6rem;
}

@media screen and (max-width: 767px) {
  .overseas_business-page .sec_1 {
    padding-top: 2.5rem;
  }
  .overseas_business-page .sec_1 .p2 {
    font-size: 1.6rem;
  }
  .overseas_business-page .sec_1 .outer > li {
    padding-left: 0;
    padding-right: 0;
  }
  .overseas_business-page .sec_1 .outer > li h2 {
    line-height: 1.3;
  }
  .overseas_business-page .sec_1 .outer > li h2 > span {
    display: block;
    font-size: 2rem;
    text-indent: -28px;
    margin-left: 28px;
  }
  .overseas_business-page .sec_1 .outer > li h2 .sub {
    display: inline-block;
    margin-left: 28px;
  }
  .overseas_business-page .sec_1 .outer .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .overseas_business-page .sec_1 .outer .flex img {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 2rem;
  }
}

.contact-page .sec_1 {
  padding-top: 5rem;
}

.contact-page .sec_1 .finish_text {
  padding-top: 5rem;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact-page .sec_1 .finish_text {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.contact-page .sec_1 .finish_text p {
  line-height: 1.6;
  margin-bottom: 5rem;
}

.contact-page .sec_1 .finish_text ul {
  margin-bottom: 5rem;
}

.contact-page .sec_1 .finish_text ul li {
  color: #f36734;
  margin-bottom: 1.5rem;
}

.contact-page .sec_1 .finish_text ul li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .contact-page .sec_1 {
    padding-top: 2.5rem;
  }
}

.contact-page .global_errors {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 5rem;
}

@media screen and (max-width: 767px) {
  .contact-page .global_errors {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.contact-page .global_errors p {
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.contact-page .global_errors em {
  color: #f36734;
}

.contact-page .global_errors li {
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 1.4rem;
}

.overseas_store-page .sec_1 {
  margin: 0 auto;
  max-width: 1000px;
  padding-top: 5rem;
  background-position: center 15px;
  background-repeat: no-repeat;
}

.overseas_store-page .sec_1 h1 {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.2rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .overseas_store-page .sec_1 h1 {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.overseas_store-page .sec_1 .txt {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .overseas_store-page .sec_1 .txt {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

@media screen and (max-width: 767px) {
  .overseas_store-page .sec_1 {
    padding-top: 2.5rem;
  }
}

.overseas_store-page .sec_2 {
  padding-top: 4rem;
  padding-bottom: 9rem;
}

.overseas_store-page .sec_2 .ttl_logos {
  padding-bottom: 5rem;
  text-align: center;
}

.overseas_store-page .sec_2 .ttl_logos p {
  font-size: 2.3rem;
  line-height: 2.4;
  border-bottom: 3px solid #f36734;
}

.overseas_store-page .sec_2 ul {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .overseas_store-page .sec_2 ul {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.overseas_store-page .sec_2 ul li {
  -webkit-transition: ease all 0.3s;
  transition: ease all 0.3s;
  text-align: center;
}

.overseas_store-page .sec_2 ul li span {
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.overseas_store-page .sec_2 ul li span.cap_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .overseas_store-page .sec_2 {
    padding-bottom: 3rem;
  }
  .overseas_store-page .sec_2 h1 {
    font-size: 2rem;
  }
  .overseas_store-page .sec_2 .img_contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .overseas_store-page .sec_2 .img_contents ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .overseas_store-page .sec_2 .img_contents ul li {
    width: 50%;
    padding: 0 3vw 30px;
  }
}

.oem-page .sec_1 {
  margin: 0 auto;
  max-width: 1000px;
  padding-top: 5rem;
  background-position: center 15px;
  background-repeat: no-repeat;
}

.oem-page .sec_1 h1 {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.2rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .oem-page .sec_1 h1 {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.oem-page .sec_1 .txt {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .oem-page .sec_1 .txt {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

@media screen and (max-width: 767px) {
  .oem-page .sec_1 {
    padding-top: 2.5rem;
  }
}

.oem-page .sec_2 {
  padding-top: 4rem;
  padding-bottom: 9rem;
}

.oem-page .sec_2 .ttl_logos {
  padding-bottom: 5rem;
  text-align: center;
}

.oem-page .sec_2 .ttl_logos p {
  font-size: 2.3rem;
  line-height: 2.4;
  border-bottom: 3px solid #f36734;
}

.oem-page .sec_2 ul {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .oem-page .sec_2 ul {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.oem-page .sec_2 ul li {
  -webkit-transition: ease all 0.3s;
  transition: ease all 0.3s;
  text-align: center;
  margin: 30px 30px;
}

.oem-page .sec_2 ul li span {
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.oem-page .sec_2 ul li span.cap_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .oem-page .sec_2 {
    padding-bottom: 3rem;
  }
  .oem-page .sec_2 h1 {
    font-size: 2rem;
  }
  .oem-page .sec_2 .img_contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .oem-page .sec_2 .img_contents ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .oem-page .sec_2 .img_contents ul li {
    width: 100%;
    padding: 0 3vw 30px;
    margin: 0 !important;
  }
}

.oem-page .sec_3 {
  padding: 0px 3vw 80px;
  border-top: solid 1px #eee;
}

.oem-page .sec_3 .txt {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 2rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .oem-page .sec_3 .txt {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.related_company{
  display: block !important;
}
/*# sourceMappingURL=style.css.map */