@charset "UTF-8";
@import url("ress.css");
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/*=================================================================
  common
=================================================================*/
body {
  background-color: #fff;
  color: #212121;
  font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Hiragino Sans','ヒラギノ角ゴシック','メイリオ',Meiryo,sans-serif;
  font-size: calc(12px + (16 - 12) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  letter-spacing: .08em;
}
@media screen and (min-width: 1600px) {
  body {
    font-size: 16px;
  }
}

a,
a:active,
a:hover {
  color: #212121;
  text-decoration: none;
}

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

table {
  border-collapse: collapse;
}

img {
  vertical-align: middle;
}

a img:hover {
  opacity: 0.9;
}

/* lang-vi */
body.lang-vi {
  font-family: Arial, sans-serif;
}

/*=================================================================
  utility
=================================================================*/
.center {
  text-align: center;
}

.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.img_full {
  max-width: 100%;
  width: 100%;
}

/*=================================================================
  form
=================================================================*/
/* input
-----------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="file"] {
  background-color: #eeeeee;
  border-radius: 10px;
  color: #212121;
  font-size: calc(14px + (18 - 14) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  padding: 20px;
  height: 60px;
  width: 100%;
}
@media screen and (min-width: 1600px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="file"] {
    font-size: 18px;
  }
}

input::-webkit-input-placeholder {
  color: #949393;
}

input:-ms-input-placeholder {
  color: #949393;
}

input::-ms-input-placeholder {
  color: #949393;
}

input::placeholder {
  color: #949393;
}

/* input[type="radio"]
-----------------------------------------------------------------*/
input[type="radio"] {
  display: none;
}

.radio {
  color: #212121;
  cursor: pointer;
  font-size: calc(14px + (18 - 14) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-weight: bold;
  margin-right: 2em;
  padding-left: 2em;
  position: relative;
}
@media screen and (min-width: 1600px) {
  .radio {
    font-size: 18px;
  }
}
.radio::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background: #e5e5e5;
  border-radius: 50%;
}

input[type="radio"]:checked + .radio::after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #63a614;
}

/* Safari */
_::-webkit-full-page-media, _:future, :root .radio::before {
  top: 0;
}

_::-webkit-full-page-media, _:future, :root input[type="radio"]:checked + .radio::after {
  top: 5px;
}

/* input[type="checkbox"]
-----------------------------------------------------------------*/
input[type="checkbox"] {
  display: none;
}

.check {
  font-size: calc(14px + (18 - 14) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-weight: bold;
  margin-right: 2em;
  padding-left: 1.5em;
  position: relative;
  text-align: justify;
}
@media screen and (min-width: 1600px) {
  .check {
    font-size: 18px;
  }
}
.check::before {
  background-color: #e5e5e5;
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
}

/* Safariの縦位置ずれ調整 */
_::-webkit-full-page-media, _:future, :root .check::before {
  top: 0;
}

input[type="checkbox"]:checked + .check::before {
  background-color: #e5e5e5;
}

input[type="checkbox"]:checked + .check::after {
  border-bottom: 3px solid #63a614;
  border-right: 3px solid #63a614;
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 5px;
  width: 10px;
  height: 14px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

/* Safariの縦位置ずれ調整 */
_::-webkit-full-page-media, _:future, :root input[type="checkbox"]:checked + .check::after {
  top: 1px;
}

/* select
-----------------------------------------------------------------*/
select {
  background-color: #eeeeee;
  border-radius: 10px;
  color: #212121;
  font-size: calc(14px + (18 - 14) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  padding: 20px;
  height: 60px;
  position: relative;
  width: 100%;
  z-index: 0;
}
@media screen and (min-width: 1600px) {
  select {
    font-size: 18px;
  }
}

select::-ms-expand {
  display: none;
}

.select-wrap {
  display: inline-block;
  position: relative;
  width: 100%;
}

.select-wrap::after {
  content: '';
  background: url("../img/ico_select_arrow.svg");
  top: 5px;
  right: 5px;
  padding: 0;
  position: absolute;
  pointer-events: none;
  height: 50px;
  width: 50px;
  z-index: 1;
}

/* textarea
-----------------------------------------------------------------*/
textarea {
  background-color: #eeeeee;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
}
textarea::-webkit-input-placeholder {
  color: #949393;
}
textarea:-ms-input-placeholder {
  color: #949393;
}
textarea::-ms-input-placeholder {
  color: #949393;
}
textarea::placeholder {
  color: #949393;
}

/* button
-----------------------------------------------------------------*/
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
}

.btn {
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
  border-radius: 1000px;
  height: 42px;
  line-height: 42px;
  width: 280px;
}
.btn:hover {
  opacity: 0.9;
}
.btn:focus {
  outline: none;
}

a.btn {
  display: block;
}

.btn.red {
  background-color: #be4337;
  color: #fff;
}
.btn.gray {
  background-color: #ccc;
  color: #212121;
}

/*=================================================================
  wrapper
=================================================================*/
.wrapper {
  width: 100%;
}

/*=================================================================
  main
=================================================================*/
.main {
  overflow: hidden;
  position: relative;
  margin-top: 80px;
  width: 100%;
}
.main#top {
  margin-top: 60px;
}

/*=================================================================
  section
=================================================================*/
section {
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
}

/*=================================================================
header
=================================================================*/
.header {
  color: #be4337;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header_nav {
  height: 60px;
}
.header_nav .header_logo {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header_nav .header_logo {
    display: block;
  }
}
.header_nav ul {
  padding-top: 33px;
  padding-right: 1em;
  text-align: right;
  width: 100%;
}
.header_nav ul li {
  text-align: center;
  display: inline-block;
  letter-spacing: .28em;
  padding: 0 1.4em;
  position: relative;
}
.header_nav ul li::after {
  content: "|";
  position: absolute;
  right: -.4em;
  letter-spacing: 0;
}
.header_nav ul li:last-of-type::after {
  content: "";
}
.header_nav ul li:hover, .header_nav ul li.is-active {
  border-bottom: 6px solid #be4337;
}
@media screen and (max-width: 1024px) {
  .header_nav ul li:hover, .header_nav ul li.is-active {
    border-bottom: none;
  }
}
.header_nav ul li a {
  color: #be4337;
}
.header_nav ul li.dropdown-btn {
  cursor: pointer;
  position: relative;
}
.header_nav ul li ul.header_subnav {
  background-color: #f3f3f3;
  border-radius: 10px;
  position: absolute;
  left: -4px;
  top: 30px;
  padding: 0;
  text-align: left;
  height: 36px;
  line-height: 36px;
  width: 480px;
  display: none;
}
.header_nav ul li ul.header_subnav li {
  display: inline-block;
  font-size: calc(12px + (14 - 12) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  padding-left: 2em;
  position: relative;
}
@media screen and (min-width: 1600px) {
  .header_nav ul li ul.header_subnav li {
    font-size: 14px;
  }
}
.header_nav ul li ul.header_subnav li::before {
  content: "";
  position: absolute;
  top: .9em;
  left: .8em;
  width: 8px;
  height: 8px;
  border-top: 1px solid #be4337;
  border-right: 1px solid #be4337;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header_nav ul li ul.header_subnav li::after {
  content: "";
}
.header_nav ul li ul.header_subnav li:hover {
  border: none;
}
.header_nav ul li ul.header_subnav li a {
  color: #212121;
  display: block;
}
.header_nav ul li ul.header_subnav li a:hover {
  color: #be4337;
}
@media screen and (max-width: 1024px) {
  .header_nav .header_nav_list {
    position: fixed;
    z-index: 2;
    top: 0;
    right: -500px;
    color: #be4337;
    background: #f3f3f3;
    text-align: center;
    width: 50%;
    height: 100vh;
    opacity: 0;
    -webkit-transition: opacity .6s ease, visiblity .6s ease, right .6s ease;
    transition: opacity .6s ease, visiblity .6s ease, right .6s ease;
  }
}
@media screen and (max-width: 1024px) and (max-width: 425px) {
  .header_nav .header_nav_list {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .header_nav .header_nav_list ul {
    margin: 52px auto 10px;
    padding: 0;
    width: 100%;
  }
  .header_nav .header_nav_list ul li {
    font-size: calc(14px + (20 - 14) / (1600 - 320) * (100vw - 320px));
    min-height: 0vw;
    padding: 0;
    width: 100%;
    -webkit-transition: .4s all;
    transition: .4s all;
    text-align: left;
    position: relative;
  }
}
@media screen and (max-width: 1024px) and (min-width: 1600px) {
  .header_nav .header_nav_list ul li {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header_nav .header_nav_list ul li::after {
    content: "";
  }
  .header_nav .header_nav_list ul li::before {
    content: "";
    position: absolute;
    top: 1.4em;
    left: 1.5em;
    width: 8px;
    height: 8px;
    border-top: 1px solid #be4337;
    border-right: 1px solid #be4337;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header_nav .header_nav_list ul li:hover {
    border: none;
  }
  .header_nav .header_nav_list ul li a {
    display: block;
    color: #be4337;
    text-decoration: none;
    padding: 1em 2em 1em 3em;
  }
  .header_nav .header_nav_list ul li.js-nav-business {
    padding: 1em 2em 0 3em;
  }
  .header_nav .header_nav_list ul li.js-nav-business::before {
    left: 1.7em;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .header_nav .header_nav_list ul li:nth-child(4) {
    margin-top: 10px;
  }
  .header_nav .header_nav_list ul li ul {
    margin-top: 0;
  }
  .header_nav .header_nav_list ul li ul.header_subnav_sp li {
    font-size: calc(14px + (20 - 14) / (1600 - 320) * (100vw - 320px));
    min-height: 0vw;
  }
}
@media screen and (max-width: 1024px) and (min-width: 1600px) {
  .header_nav .header_nav_list ul li ul.header_subnav_sp li {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header_nav .header_nav_list ul li ul.header_subnav_sp li::before {
    top: 1.4em;
    left: .1em;
  }
  .header_nav .header_nav_list ul li ul.header_subnav_sp li a {
    color: #be4337;
    padding: 1em 2em 1em 1.6em;
  }
  .header_nav .header_nav_list.active {
    opacity: 1;
    right: 0;
  }
  .header_nav .header.is-float .header_nav .header_nav_list ul li {
    height: auto;
  }
}

/* lang-en */
.lang-en .header_nav ul li {
  letter-spacing: initial;
}
.lang-en .header_nav ul li ul.header_subnav {
  width: 520px;
}
.lang-en .header_nav ul li ul.header_subnav li {
  letter-spacing: initial;
}

/* lang-vi */
.lang-vi .header_nav ul li {
  letter-spacing: initial;
}
.lang-vi .header_nav ul li ul.header_subnav {
  width: 400px;
}
.lang-vi .header_nav ul li ul.header_subnav li {
  letter-spacing: initial;
}

/* lang-km */
.lang-km .header_nav ul li {
  letter-spacing: initial;
}
.lang-km .header_nav ul li ul.header_subnav {
  width: 440px;
}
.lang-km .header_nav ul li ul.header_subnav li {
  letter-spacing: initial;
}

/* header float
-----------------------------------------------------------------*/
@media screen and (max-width: 1024px) {
  .header_nav {
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header_nav .header_logo {
  display: none;
  padding-left: 35px;
}
@media screen and (max-width: 1024px) {
  .header_nav .header_logo {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .header_nav .header_logo {
    padding-left: 10px;
  }
}
.header_nav .header_logo .header_logo_img {
  width: 185px;
}
.header_nav .header_logo .header_logo_img:hover {
  opacity: 1;
}

.header.is-float {
  background-color: #fff;
}
.header.is-float .header_nav {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header.is-float .header_nav .header_logo {
  display: block;
}
.header.is-float .header_nav .header_nav_list {
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .header.is-float .header_nav .header_nav_list {
    margin-left: initial;
  }
}
.header.is-float .header_nav ul li {
  height: 47px;
}
.header.is-float .header_nav ul li ul.header_subnav {
  background-color: transparent;
  top: 48px;
}
@media screen and (max-width: 1024px) {
  .header.is-float .header_nav ul li ul.header_subnav {
    top: 0;
    display: block;
  }
}
.header.is-float .header_bottom_line {
  background-color: #f3f3f3;
  height: 36px;
  width: 100%;
  display: none;
}
@media screen and (max-width: 1024px) {
  .header.is-float .header_bottom_line {
    display: none;
  }
}

/* header sp
-----------------------------------------------------------------*/
.header_nav_ico {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  display: none;
}
@media screen and (max-width: 1024px) {
  .header_nav_ico {
    display: block;
  }
}
.header_nav_ico span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #212121;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header_nav_ico span:nth-child(1) {
  top: 10px;
}
.header_nav_ico span:nth-child(2) {
  top: 20px;
}
.header_nav_ico span:nth-child(3) {
  top: 30px;
}

.header_nav_ico.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #be4337;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header_nav_ico.active span:nth-child(2),
.header_nav_ico.active span:nth-child(3) {
  top: 16px;
  background: #be4337;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*=================================================================
side-links
=================================================================*/
.side-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: 170px;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .side-links {
    top: 80px;
  }
}
.side-links .side-links_img {
  width: 48px;
}
@media screen and (max-width: 768px) {
  .side-links .side-links_img {
    width: 38px;
  }
}
.side-links a + a {
  margin-top: 10px;
}
.side-links .side-links_sns {
  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;
}
.side-links .side-links_sns .side-links_sns_title {
  margin-top: 36px;
  width: 16px;
}
@media screen and (max-width: 768px) {
  .side-links .side-links_sns .side-links_sns_title {
    margin-top: 20px;
    width: 12px;
  }
}
.side-links .side-links_sns a {
  margin-top: 0;
}
.side-links .side-links_sns .side-links_sns_img {
  margin-top: 18px;
  width: 24px;
}
@media screen and (max-width: 768px) {
  .side-links .side-links_sns .side-links_sns_img {
    margin-top: 10px;
    width: 18px;
  }
}

/* lang-en */
.lang-en .side-links {
  top: 80px;
}

/* lang-vi */
.lang-vi .side-links {
  top: 80px;
}

/* lang-km */
.lang-km .side-links {
  top: 80px;
}

/*=================================================================
  page-top-btn
=================================================================*/
.page-top {
  position: fixed;
  bottom: 20px;
  right: 100px;
  z-index: 998;
}
@media screen and (max-width: 1024px) {
  .page-top {
    right: 40px;
  }
}
@media screen and (max-width: 425px) {
  .page-top {
    bottom: 50px;
    right: 10px;
  }
}
.page-top .page-top_img {
  width: 76px;
}
@media screen and (max-width: 425px) {
  .page-top .page-top_img {
    width: 65px;
  }
}

/* lang-en */
@media screen and (max-width: 425px) {
  .lang-en .page-top {
    right: 40px;
  }
}

/* lang-vi */
@media screen and (max-width: 425px) {
  .lang-vi .page-top {
    right: 40px;
  }
}

/* lang-km */
@media screen and (max-width: 425px) {
  .lang-km .page-top {
    right: 40px;
  }
}

/*=================================================================
footer
=================================================================*/
footer {
  border-bottom: 6px solid #be4337;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

/* contact
-----------------------------------------------------------------*/
.footer_contact {
  background-color: #be4337;
  color: #fff;
  padding: 33px 0;
  position: relative;
}
.footer_contact .footer_contact_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 1024px;
}
@media screen and (max-width: 1024px) {
  .footer_contact .footer_contact_inner {
    padding: 0 50px 0 20px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer_contact .footer_contact_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer_contact .footer_contact_inner .footer_contact_title {
  font-size: calc(20px + (26 - 20) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-weight: bold;
  letter-spacing: .2em;
}
@media screen and (min-width: 1600px) {
  .footer_contact .footer_contact_inner .footer_contact_title {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .footer_contact .footer_contact_inner .footer_contact_title {
    text-align: center;
  }
}
.footer_contact .footer_contact_inner .footer_contact_btn {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .footer_contact .footer_contact_inner .footer_contact_btn {
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
  }
}

.btn-footer_contact {
  background-color: #fff;
  border-radius: 30px;
  color: #be4337;
  font-size: calc(14px + (18 - 14) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-weight: bold;
  height: 60px;
  line-height: 60px;
  width: 540px;
}
@media screen and (min-width: 1600px) {
  .btn-footer_contact {
    font-size: 18px;
  }
}
@media screen and (max-width: 425px) {
  .btn-footer_contact {
    width: 100%;
  }
}
.btn-footer_contact:hover {
  color: #be4337;
}

/* lang-vi */
.footer_contact .footer_contact_inner .footer_contact_title {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .footer_contact .footer_contact_inner .footer_contact_title {
    width: 100%;
  }
}

/* footer_nav
-----------------------------------------------------------------*/
.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding-top: 35px;
  width: 1024px;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 35px 20px 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 425px) {
  .footer {
    padding-top: 15px;
  }
}
.footer .footer_info {
  font-size: calc(11px + (15 - 11) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1600px) {
  .footer .footer_info {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_info {
    margin: 0 auto;
  }
}
.footer .footer_info .footer_info_img {
  width: 83px;
}
@media screen and (max-width: 425px) {
  .footer .footer_info .footer_info_img {
    width: 65px;
  }
}
.footer .footer_info .footer_info_txt {
  margin-top: 23px;
  letter-spacing: 0;
  line-height: 1.73;
}
@media screen and (max-width: 425px) {
  .footer .footer_info .footer_info_txt {
    margin-top: 15px;
  }
}
.footer .footer_info .footer_info_link {
  margin-top: 32px;
}
@media screen and (max-width: 425px) {
  .footer .footer_info .footer_info_link {
    margin-top: 15px;
  }
}
.footer .footer_info .footer_info_link > div {
  float: left;
  margin-right: 24px;
}
.footer .footer_info .footer_info_link .footer_info_link_img {
  width: 24px;
}
@media screen and (max-width: 768px) {
  .footer .footer_info .footer_info_link .footer_info_link_img.img_twitter {
    margin-top: 2px;
  }
}
.footer .footer_nav {
  color: #be4337;
  font-size: calc(11px + (14 - 11) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 1600px) {
  .footer .footer_nav {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_nav {
    margin: 0 auto;
    margin-top: 32px;
  }
}
@media screen and (max-width: 425px) {
  .footer .footer_nav {
    margin-top: 0;
  }
}
@media screen and (max-width: 425px) {
  .footer .footer_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .footer_nav ul {
  list-style: none;
  margin-right: 50px;
}
.footer .footer_nav ul:last-of-type {
  margin-right: 0;
}
.footer .footer_nav ul li {
  position: relative;
  white-space: nowrap;
}
.footer .footer_nav ul li + li {
  margin-top: 1em;
}
.footer .footer_nav ul li a {
  color: #be4337;
}
.footer .footer_nav ul li a:hover {
  color: #212121;
}
@media screen and (max-width: 425px) {
  .footer .footer_nav .footer_nav_first {
    margin-top: 1em;
  }
}
.footer .footer_nav .footer_nav_first > li {
  padding-left: 1.5em;
}
.footer .footer_nav .footer_nav_first > li::before {
  content: "";
  position: absolute;
  top: .4em;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #be4337;
  border-right: 1px solid #be4337;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.footer .footer_nav .footer_nav_first > li.arrow-bottom::before {
  top: .3em;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.footer .footer_nav .footer_nav_second {
  background-color: #f3f3f3;
  border-radius: 5px;
  margin-top: 6px;
  margin-left: -.7em;
  padding: .7em;
  width: 240px;
}
.footer .footer_nav .footer_nav_second li {
  padding: .2em 0;
  padding-left: 1em;
}
.footer .footer_nav .footer_nav_second li::before {
  content: "・";
  font-size: calc(10px + (13 - 10) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 1600px) {
  .footer .footer_nav .footer_nav_second li::before {
    font-size: 13px;
  }
}
.footer .footer_nav .footer_nav_second li ul {
  margin-left: 1.2em;
}
.footer .footer_nav .footer_nav_second li ul li::before {
  content: "‐";
}
.footer .footer_nav .footer_nav_second li ul li a {
  color: #898989;
}
.footer .footer_nav .footer_nav_second li ul li a:hover {
  color: #212121;
}
.footer .footer_nav .footer_nav_second li + li {
  margin-top: 0;
}
.footer .footer_nav .footer_nav_second li a {
  color: #be4337;
}

/* lang-en */
.lang-en .footer .footer_nav ul li {
  white-space: initial;
}

/* lang-vi */
.lang-vi .footer .footer_nav ul li {
  white-space: initial;
}

/* lang-km */
.lang-km .footer .footer_nav ul li {
  white-space: initial;
}

/* copyright
-----------------------------------------------------------------*/
.copyright {
  font-size: calc(10px + (13 - 10) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  letter-spacing: 0;
  padding: 20px 0;
  text-align: center;
}
@media screen and (min-width: 1600px) {
  .copyright {
    font-size: 13px;
  }
}

/*=================================================================
  sub page
=================================================================*/
/* breadcrumb
-----------------------------------------------------------------*/
.breadcrumb-wrap {
  background-color: #f8f5ef;
  text-align: center;
}
.breadcrumb-wrap .breadcrumb {
  font-size: calc(10px + (12 - 10) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  margin: 0 auto;
  padding: .75em 0;
  text-align: left;
  width: 1024px;
}
@media screen and (min-width: 1600px) {
  .breadcrumb-wrap .breadcrumb {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .breadcrumb-wrap .breadcrumb {
    padding-left: 20px;
    padding-right: 50px;
    width: 100%;
  }
}
.breadcrumb-wrap .breadcrumb a {
  color: #be4337;
}
.breadcrumb-wrap .breadcrumb a:hover {
  color: #212121;
}
.breadcrumb-wrap .breadcrumb .breadcrumb_separator {
  color: #be4337;
  margin-left: .5em;
}

/* pagination
-----------------------------------------------------------------*/
.pagination {
  margin-top: 40px;
}
.pagination ul {
  text-align: center;
}
.pagination ul li {
  display: inline-block;
  list-style: none;
  margin-left: 20px;
}
@media screen and (max-width: 320px) {
  .pagination ul li {
    margin-left: 10px;
  }
}
.pagination ul li:nth-child(1), .pagination ul li:nth-child(2), .pagination ul li:last-child {
  margin-left: 0;
}
.pagination ul li:hover a, .pagination ul li.active a {
  background-color: #212121;
  color: #fff;
}
.pagination ul li a {
  background-color: #d2d2d2;
  border-radius: 50%;
  color: #878787;
  display: block;
  height: 40px;
  line-height: 40px;
  width: 40px;
}
.pagination ul li.pagination_arrow a {
  background-color: transparent;
}
.pagination ul li.pagination_arrow a:hover {
  opacity: .8;
}
.pagination ul li.pagination_arrow a img {
  width: 10px;
}

/* page-header
-----------------------------------------------------------------*/
.page-header {
  overflow: hidden;
  margin-bottom: 65px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-header {
    margin-bottom: 33px;
  }
}
.page-header .page-header_bg {
  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;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-right-radius: 200% 100%;
  border-bottom-left-radius: 200% 100%;
  margin-left: -4%;
  margin-right: -4%;
  padding-left: 4%;
  padding-right: 4%;
  min-height: 400px;
}
.page-header .page-header_bg h1 {
  color: #fff;
  font-size: calc(26px + (30 - 26) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
  letter-spacing: .2em;
  text-align: center;
}
@media screen and (min-width: 1600px) {
  .page-header .page-header_bg h1 {
    font-size: 30px;
  }
}
.page-header .page-header_bg h1 br.sp {
  display: none;
}
@media screen and (max-width: 425px) {
  .page-header .page-header_bg h1 br.sp {
    display: block;
  }
}

/* footer
-----------------------------------------------------------------*/
.sub-page footer {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .sub-page footer {
    margin-top: 50px;
  }
}

/*=================================================================
  common
=================================================================*/
/* ヘッダー画像
-----------------------------------------------------------------*/
.page-header .page-header_bg {
  background-image: url("../img/for-farmer/foreign/img_page-header.jpg");
}

/* footer
-----------------------------------------------------------------*/
.s-foreign footer {
  margin-top: 0;
}

/*=================================================================
  外国人スタッフ代行サービス
=================================================================*/
.full_bg {
  background-color: #fff;
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}
.full_bg.bg_color {
  background-color: #f8f5ef;
}

.foreign_inner {
  margin: 0 auto;
  position: relative;
  width: 1024px;
}
@media screen and (max-width: 1024px) {
  .foreign_inner {
    padding: 0 50px 0 20px;
    width: 100%;
  }
}

/* 外国人農業スタッフの派遣をYUIMEが全面サポート！
-----------------------------------------------------------------*/
.foreign_title {
  color: #be4337;
  font-size: calc(26px + (30 - 26) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
  letter-spacing: .12em;
}
@media screen and (min-width: 1600px) {
  .foreign_title {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .foreign_title {
    letter-spacing: -.01em;
  }
}

.foreign_lead {
  margin-top: 40px;
  text-align: justify;
  font-size: calc(14px + (18 - 14) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
}
@media screen and (min-width: 1600px) {
  .foreign_lead {
    font-size: 18px;
  }
}
@media screen and (max-width: 425px) {
  .foreign_lead {
    margin-top: 20px;
  }
}

/* 外国人スタッフ契約の課題
-----------------------------------------------------------------*/
.task_bg_img {
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .task_bg_img {
    display: none;
  }
}
.task_bg_img:nth-child(1) {
  top: 20px;
  right: -22%;
  width: 130px;
}
.task_bg_img:nth-child(2) {
  top: 640px;
  left: -22%;
  width: 128px;
}
.task_bg_img:nth-child(3) {
  bottom: 530px;
  right: -22%;
  width: 177px;
}
.task_bg_img:nth-child(4) {
  bottom: 200px;
  left: -24%;
  width: 189px;
}

.header_bg {
  background: url("../img/bg_line_h24.png") 0 center repeat-x;
  margin: 90px 0 70px;
  height: 64px;
}
@media screen and (max-width: 425px) {
  .header_bg {
    margin: 45px 0 35px;
  }
}
.header_bg .header_bg_title {
  background-color: #fff;
  color: #be4337;
  display: inline-block;
  font-size: calc(30px + (40 - 30) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
  letter-spacing: .2em;
  margin: 0 auto;
  padding: 0 1em;
  vertical-align: middle;
  font-size: calc(34px + (40 - 34) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
}
@media screen and (min-width: 1600px) {
  .header_bg .header_bg_title {
    font-size: 40px;
  }
}
@media screen and (min-width: 1600px) {
  .header_bg .header_bg_title {
    font-size: 40px;
  }
}
@media screen and (max-width: 425px) {
  .header_bg .header_bg_title {
    margin-top: 70px;
  }
}

.task_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 425px) {
  .task_items {
    margin-top: 140px;
  }
}
.task_items .task_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 30px;
  width: 480px;
}
@media screen and (max-width: 1024px) {
  .task_items .task_item {
    width: 460px;
  }
}
@media screen and (max-width: 768px) {
  .task_items .task_item {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .task_items .task_item {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 424px) {
  .task_items .task_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.task_items .task_item .task_item_txt {
  color: #be4337;
  font-size: calc(16px + (20 - 16) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  letter-spacing: .12em;
  margin-left: 20px;
  text-align: justify;
}
@media screen and (min-width: 1600px) {
  .task_items .task_item .task_item_txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 424px) {
  .task_items .task_item .task_item_txt {
    margin-top: 20px;
    margin-left: 0;
  }
}
.task_items .task_item .task_item_txt span {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
}

.task_item_lead {
  font-size: calc(14px + (18 - 14) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  margin-top: 30px;
  text-align: justify;
}
@media screen and (min-width: 1600px) {
  .task_item_lead {
    font-size: 18px;
  }
}
@media screen and (max-width: 425px) {
  .task_item_lead {
    margin-top: 15px;
  }
}

/* YUIMEの派遣事業をご活用ください
-----------------------------------------------------------------*/
.task_utilization_title {
  background-color: #f8f5ef;
  border-radius: 20px;
  color: #be4337;
  font-size: calc(26px + (40 - 26) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
  letter-spacing: .2em;
  margin-top: 70px;
  padding: .33em 1em;
}
@media screen and (min-width: 1600px) {
  .task_utilization_title {
    font-size: 40px;
  }
}
@media screen and (max-width: 425px) {
  .task_utilization_title {
    margin-top: 35px;
    letter-spacing: .1em;
  }
}
@media screen and (max-width: 424px) {
  .task_utilization_title {
    font-size: 20px;
    padding: .33em .5em;
  }
}
.task_utilization_title br.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .task_utilization_title br.sp {
    display: block;
  }
}

.task_utilization_txt {
  font-size: calc(14px + (18 - 14) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  margin-top: 40px;
  text-align: justify;
}
@media screen and (min-width: 1600px) {
  .task_utilization_txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 425px) {
  .task_utilization_txt {
    margin-top: 20px;
  }
}

.task_utilization_items {
  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;
  margin-top: 60px;
}
@media screen and (max-width: 425px) {
  .task_utilization_items {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .task_utilization_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.task_utilization_items .task_utilization_item {
  width: 480px;
}
@media screen and (max-width: 1024px) {
  .task_utilization_items .task_utilization_item {
    width: 460px;
  }
}
@media screen and (max-width: 768px) {
  .task_utilization_items .task_utilization_item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .task_utilization_items .task_utilization_item:last-of-type {
    margin-top: 60px;
  }
}
@media screen and (max-width: 425px) {
  .task_utilization_items .task_utilization_item:last-of-type {
    margin-top: 30px;
  }
}
.task_utilization_items .task_utilization_item .task_utilization_item_title {
  border-bottom: 4px solid #be4337;
  color: #be4337;
  font-size: calc(26px + (30 - 26) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
  letter-spacing: .2em;
}
@media screen and (min-width: 1600px) {
  .task_utilization_items .task_utilization_item .task_utilization_item_title {
    font-size: 30px;
  }
}
.task_utilization_items .task_utilization_item .task_utilization_item_txt {
  margin-top: 30px;
  text-align: justify;
}
@media screen and (max-width: 425px) {
  .task_utilization_items .task_utilization_item .task_utilization_item_txt {
    margin-top: 15px;
  }
}
.task_utilization_items .task_utilization_item .task_utilization_item_subtitle {
  color: #be4337;
  font-size: calc(16px + (20 - 16) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
  margin-top: 40px;
  letter-spacing: .2em;
}
@media screen and (min-width: 1600px) {
  .task_utilization_items .task_utilization_item .task_utilization_item_subtitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 425px) {
  .task_utilization_items .task_utilization_item .task_utilization_item_subtitle {
    margin-top: 20px;
  }
}
.task_utilization_items .task_utilization_item .task_utilization_item_tags {
  margin-top: 20px;
  margin-left: -8px;
  overflow: hidden;
}
.task_utilization_items .task_utilization_item .task_utilization_item_tags .task_utilization_item_tag {
  background-color: #be4337;
  border-radius: 1000px;
  color: #fff;
  font-size: calc(11px + (15 - 11) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  float: left;
  letter-spacing: 0;
  margin-bottom: 6px;
  margin-left: 8px;
  min-width: 154px;
  padding: .37em .5em;
}
@media screen and (min-width: 1600px) {
  .task_utilization_items .task_utilization_item .task_utilization_item_tags .task_utilization_item_tag {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .task_utilization_items .task_utilization_item .task_utilization_item_tags .task_utilization_item_tag {
    min-width: 148px;
  }
}

.task_pr_wrap {
  background-color: #fff;
  border: 10px solid #f8f5ef;
  border-radius: 20px;
  margin-top: 50px;
  padding: 30px 40px;
}
@media screen and (max-width: 425px) {
  .task_pr_wrap {
    margin-top: 25px;
    padding: 15px 20px;
  }
}
.task_pr_wrap .task_pr_title {
  color: #be4337;
  font-size: calc(26px + (30 - 26) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
  letter-spacing: .2em;
}
@media screen and (min-width: 1600px) {
  .task_pr_wrap .task_pr_title {
    font-size: 30px;
  }
}
@media screen and (max-width: 425px) {
  .task_pr_wrap .task_pr_title {
    border-bottom: 4px solid #be4337;
  }
}
@media screen and (max-width: 424px) {
  .task_pr_wrap .task_pr_title {
    letter-spacing: 0;
  }
}
.task_pr_wrap .task_pr_title span {
  border-bottom: 4px solid #be4337;
}
@media screen and (max-width: 425px) {
  .task_pr_wrap .task_pr_title span {
    border: none;
  }
}
.task_pr_wrap img {
  margin: 30px 0;
  width: 43px;
}
.task_pr_wrap .task_pr_burden span {
  background-color: #be4337;
  border-radius: 1000px;
  color: #fff;
  font-size: calc(26px + (30 - 26) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
  letter-spacing: .2em;
  padding: .45em 1.35em;
}
@media screen and (min-width: 1600px) {
  .task_pr_wrap .task_pr_burden span {
    font-size: 30px;
  }
}
@media screen and (max-width: 424px) {
  .task_pr_wrap .task_pr_burden span {
    letter-spacing: 0;
    padding: .45em .5em;
  }
}
.task_pr_wrap .task_pr_main {
  color: #be4337;
  font-size: calc(26px + (40 - 26) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
  letter-spacing: .2em;
  margin-top: 50px;
}
@media screen and (min-width: 1600px) {
  .task_pr_wrap .task_pr_main {
    font-size: 40px;
  }
}
@media screen and (max-width: 424px) {
  .task_pr_wrap .task_pr_main {
    letter-spacing: 0;
  }
}
.task_pr_wrap .task_pr_main br.sp {
  display: none;
}
@media screen and (max-width: 425px) {
  .task_pr_wrap .task_pr_main br.sp {
    display: block;
  }
}
.task_pr_wrap .task_pr_main_line {
  height: 2px;
  position: relative;
}
.task_pr_wrap .task_pr_main_line::before {
  content: "";
  background-image: linear-gradient(to right, #be4337, #be4337 12px, transparent 6px, transparent 18px);
  background-size: 18px 2px;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.task_pr_wrap .task_pr_caution {
  color: #be4337;
  margin-top: 5px;
}

/* 国家戦略特区事業で特定機関として認可
-----------------------------------------------------------------*/
.authorization {
  background: url("../img/bg_line_h17.png") 0 top repeat-x;
  margin-top: 70px;
}
@media screen and (max-width: 425px) {
  .authorization {
    margin-top: 35px;
  }
}
.authorization .authorization_header {
  color: #be4337;
  font-size: calc(26px + (30 - 26) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
  letter-spacing: .12em;
  padding-top: 80px;
}
@media screen and (min-width: 1600px) {
  .authorization .authorization_header {
    font-size: 30px;
  }
}
@media screen and (max-width: 425px) {
  .authorization .authorization_header {
    padding-top: 40px;
  }
}
.authorization .authorization_txt {
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: justify;
}
@media screen and (max-width: 425px) {
  .authorization .authorization_txt {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

/* リンク
-----------------------------------------------------------------*/
.foreign_link {
  margin-top: 80px;
  padding: 32px 52px;
}
@media screen and (max-width: 425px) {
  .foreign_link {
    margin-top: 40px;
    padding-right: 0;
    padding-left: 0;
  }
}
.foreign_link .btn {
  border: 2px solid #be4337;
  color: #be4337;
  font-size: calc(18px + (28 - 18) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-weight: bold;
  padding: 7px 0;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 1600px) {
  .foreign_link .btn {
    font-size: 28px;
  }
}
@media screen and (max-width: 320px) {
  .foreign_link .btn {
    line-height: 1;
  }
}
.foreign_link .btn:hover {
  background-color: #fff;
}
