@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: 600px) {
  .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;
}
/* .side-links .side-links_sns .img_X{
	width: 23px;
} */
@media screen and (max-width: 768px) {
  .side-links .side-links_sns .side-links_sns_img {
    margin-top: 10px;
    width: 18px;
  }
  /* .side-links .side-links_sns .img_X {
    width: 16px;
  } */
}

/* 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: 600px) {
  .page-top {
    bottom: 50px;
    right: 10px;
  }
}
.page-top .page-top_img {
  width: 76px;
}
@media screen and (max-width: 600px) {
  .page-top .page-top_img {
    width: 65px;
  }
}

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

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

/* lang-km */
@media screen and (max-width: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .footer .footer_info .footer_info_txt {
    margin-top: 15px;
  }
}
.footer .footer_info .footer_info_link {
  margin-top: 32px;
}
@media screen and (max-width: 600px) {
  .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;
}
/* .footer .footer_info .footer_info_link .img_X{
	width: 23px;
} */
@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: 600px) {
  .footer .footer_nav {
    margin-top: 0;
  }
}
@media screen and (max-width: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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;
  }
}

* {
  min-height: 0;
  min-width: 0;
}

/*=================================================================
  common
=================================================================*/
h1 {
  color: #be4337;
  font-size: calc(20px + (30 - 20) / (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) {
  h1 {
    font-size: 30px;
  }
}

.full_bg {
  background-color: #fff;
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}
.full_bg.bg_bottom_radius {
  border-bottom-right-radius: 400% 100%;
  border-bottom-left-radius: 400% 100%;
  margin-left: -4%;
  margin-right: -4%;
  padding-left: 4%;
  padding-right: 4%;
  min-height: 400px;
  width: 108%;
}
@media screen and (max-width: 768px) {
  .full_bg.bg_bottom_radius {
    border-bottom-right-radius: 800% 100%;
    border-bottom-left-radius: 800% 100%;
  }
}
@media screen and (max-width: 600px) {
  .full_bg.bg_bottom_radius {
    border-bottom-right-radius: 1200% 100%;
    border-bottom-left-radius: 1200% 100%;
  }
}
.full_bg.bg_stripe {
  background: url("../img/bg_stripe.png") 0 0 repeat;
  margin-top: -200px;
  padding-top: 180px;
  padding-bottom: 120px;
  z-index: 0;
}
@media screen and (max-width: 600px) {
  .full_bg.bg_stripe {
    margin-top: -100px;
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

/* lang-en */
.lang-en h1 {
  letter-spacing: initial;
}

/* lang-vi */
.lang-vi h1 {
  letter-spacing: initial;
  font-family: Arial, sans-serif;
}

/* lang-km */
.lang-km h1 {
  letter-spacing: initial;
}

/*=================================================================
  mv
=================================================================*/
.mv {
  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;
  position: relative;
  padding: 0 60px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .mv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .mv {
    padding: 0 50px 0 10px;
  }
}
.mv .mv_bg {
  position: absolute;
  left: 20.625vw;
  z-index: 1;
}
@media screen and (min-width: 1600px) {
  .mv .mv_bg {
    left: 330px;
  }
}
.mv .mv_bg:nth-child(1) {
  top: 52px;
  left: 25.5vw;
}
@media screen and (max-width: 1024px) {
  .mv .mv_bg:nth-child(1) {
    left: 23.4375vw;
  }
}
@media screen and (max-width: 1024px) {
  .mv .mv_bg:nth-child(1) {
    top: 30px;
    left: 0;
  }
}
@media screen and (max-width: 600px) {
  .mv .mv_bg:nth-child(1) {
    left: 10px;
  }
}
.mv .mv_bg:nth-child(1) img {
  width: 218px;
}
@media screen and (max-width: 1024px) {
  .mv .mv_bg:nth-child(1) img {
    width: 70%;
  }
}
@media screen and (max-width: 600px) {
  .mv .mv_bg:nth-child(1) img {
    width: 109px;
  }
}
.mv .mv_bg:nth-child(2) {
  top: 90px;
  left: 80vw;
}
@media screen and (max-width: 1024px) {
  .mv .mv_bg:nth-child(2) {
    top: 40px;
    left: 76.171875vw;
  }
}
@media screen and (max-width: 1024px) {
  .mv .mv_bg:nth-child(2) {
    left: 70.3125vw;
  }
}
@media screen and (max-width: 600px) {
  .mv .mv_bg:nth-child(2) {
    left: auto;
    right: 40px;
  }
}
.mv .mv_bg:nth-child(2) img {
  width: 180px;
}
@media screen and (max-width: 1024px) {
  .mv .mv_bg:nth-child(2) img {
    width: 70%;
  }
}
@media screen and (max-width: 600px) {
  .mv .mv_bg:nth-child(2) img {
    width: 90px;
  }
}
.mv .mv_bg:nth-child(3) {
  bottom: 40px;
  left: 82vw;
}
@media screen and (max-width: 1024px) {
  .mv .mv_bg:nth-child(3) {
    left: 76.171875vw;
    bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .mv .mv_bg:nth-child(3) {
    top: 62.5vw;
  }
}
@media screen and (max-width: 600px) {
  .mv .mv_bg:nth-child(3) {
    left: auto;
    right: 40px;
  }
}
.mv .mv_bg:nth-child(3) img {
  width: 189px;
}
@media screen and (max-width: 1024px) {
  .mv .mv_bg:nth-child(3) img {
    width: 70%;
  }
}
@media screen and (max-width: 600px) {
  .mv .mv_bg:nth-child(3) img {
    width: 95px;
  }
}
.mv .scroll_img {
  position: absolute;
  top: 30vw;
  left: 20px;
}
@media screen and (min-width: 1600px) {
  .mv .scroll_img {
    top: 480px;
  }
}
@media screen and (max-width: 600px) {
  .mv .scroll_img {
    display: none;
  }
}
.mv .scroll_img img {
  width: 16px;
}
@media screen and (max-width: 1024px) {
  .mv .scroll_img img {
    width: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .mv .scroll_img img {
    width: 10px;
  }
}
.mv .mv_logo_img {
  width: 200px;
}
@media screen and (max-width: 1024px) {
  .mv .mv_logo_img {
    display: none;
  }
}
.mv .lead-text-wrap {
  position: absolute;
  top: 26.875vw;
  text-align: left;
}
@media screen and (min-width: 1600px) {
  .mv .lead-text-wrap {
    top: 430px;
  }
}
@media screen and (max-width: 1024px) {
  .mv .lead-text-wrap {
    position: relative;
    top: 0;
  }
}
.mv .lead-text-wrap > div + div {
  margin-top: 7px;
}
.mv .lead-text-wrap span {
  color: #fff;
  background-color: #be4337;
  border-radius: 10px;
  display: inline-block;
  font-size: calc(12px + (18 - 12) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  letter-spacing: .1em;
  padding: .5em 20px;
  white-space: nowrap;
}
@media screen and (min-width: 1600px) {
  .mv .lead-text-wrap span {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .mv .lead-text-wrap span {
    padding: .5em 10px;
    letter-spacing: .1em;
  }
}
.mv .lead-text-wrap span.lead-text_large {
  font-size: calc(16px + (36 - 16) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
}
@media screen and (min-width: 1600px) {
  .mv .lead-text-wrap span.lead-text_large {
    font-size: 36px;
  }
}

/* lang-en */
.lang-en .mv .lead-text-wrap span {
  letter-spacing: .1em;
}
.lang-en .mv .lead-text-wrap span br.sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .lang-en .mv .lead-text-wrap span br.sp {
    display: block;
  }
}

/* lang-vi */
.lang-vi .mv .lead-text-wrap span {
  letter-spacing: .1em;
  font-family: Arial, sans-serif;
}
.lang-vi .mv .lead-text-wrap span.lead-text_large {
  font-family: Arial, sans-serif;
}
.lang-vi .mv .lead-text-wrap span br.sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .lang-vi .mv .lead-text-wrap span br.sp {
    display: block;
  }
}

/* lang-km */
.lang-km .mv .lead-text-wrap span {
  letter-spacing: .1em;
}

/* slick
-----------------------------------------------------------------*/
.slider-wrap {
  margin-top: 30px;
  margin-left: 75px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .slider-wrap {
    margin-left: 0;
  }
}
.slider-wrap .slider img {
  height: auto;
  max-width: 1168px;
  width: 100%;
}
.slider-wrap .slider_txt {
  color: #be4337;
  font-size: calc(14px + (22 - 14) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-weight: bold;
  position: absolute;
  left: 9.875vw;
  bottom: 117px;
  letter-spacing: .18em;
}
@media screen and (min-width: 1600px) {
  .slider-wrap .slider_txt {
    font-size: 22px;
  }
}
@media screen and (min-width: 1600px) {
  .slider-wrap .slider_txt {
    left: 158px;
  }
}
@media screen and (max-width: 1024px) {
  .slider-wrap .slider_txt {
    bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .slider-wrap .slider_txt {
    left: 0;
  }
}
.slider-wrap .slick-dots {
  position: absolute;
  left: 9.4vw;
  bottom: 56px;
  width: auto;
}
@media screen and (min-width: 1600px) {
  .slider-wrap .slick-dots {
    left: 152px;
  }
}
@media screen and (max-width: 1024px) {
  .slider-wrap .slick-dots {
    bottom: -10px;
  }
}
@media screen and (max-width: 768px) {
  .slider-wrap .slick-dots {
    left: -5px;
  }
}
.slider-wrap .slick-dots li {
  margin: 0 8px;
}
@media screen and (max-width: 1024px) {
  .slider-wrap .slick-dots li {
    margin: 0 5px;
  }
}
.slider-wrap .slick-dots li button:before,
.slider-wrap .slick-dots li.slick-active button:before {
  opacity: 1;
}

.slick-slide:focus {
  outline: none;
}

.slick-dots li button {
  padding: 0;
  height: 14px;
  width: 14px;
}

.slick-dots li button:before {
  content: "";
  border: 1px solid #be4337;
  border-radius: 50%;
  height: 14px;
  width: 14px;
}

li.slick-active button:before {
  content: "";
  background-color: #be4337;
  border-radius: 50%;
  height: 14px;
  width: 14px;
}

/* lang-en */
.lang-en .slider-wrap .slider_txt {
  bottom: 47px;
}
.lang-en .slider-wrap .slick-dots {
  bottom: -14px;
}

/* lang-vi */
.lang-vi .slider-wrap .slider_txt {
  bottom: 47px;
}
.lang-vi .slider-wrap .slick-dots {
  bottom: -14px;
}

/* lang-km */
.lang-km .slider-wrap .slider_txt {
  bottom: 47px;
}
.lang-km .slider-wrap .slick-dots {
  bottom: -14px;
}

/*=================================================================
  YUIMEとは
=================================================================*/
/* ライン背景のタイトル
-----------------------------------------------------------------*/
.line_header {
  background: url("../img/bg_line_h24.png") right center repeat-x;
  text-align: left;
  position: relative;
  height: 60px;
}
.line_header .line_header_inner {
  background-color: #fff;
  color: #be4337;
  font-size: calc(30px + (40 - 30) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
  padding: 0 50px;
  position: absolute;
  right: 0;
  letter-spacing: .2em;
}
@media screen and (min-width: 1600px) {
  .line_header .line_header_inner {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .line_header .line_header_inner {
    top: 70px;
    padding: 0 60px 0 20px;
    width: 100%;
  }
}
.line_header .line_header_inner .line_header_img {
  width: 294px;
}
@media screen and (max-width: 600px) {
  .line_header .line_header_inner .line_header_img {
    display: none;
  }
}

/* lang-en */
.lang-en .line_header .line_header_inner {
  letter-spacing: initial;
}
@media screen and (max-width: 600px) {
  .lang-en .line_header .line_header_inner {
    font-size: 26px;
    white-space: nowrap;
  }
}

/* lang-vi */
.lang-en .line_header .line_header_inner {
  letter-spacing: initial;
  font-family: Arial, sans-serif;
}
@media screen and (max-width: 600px) {
  .lang-en .line_header .line_header_inner {
    font-size: 26px;
    white-space: nowrap;
  }
}

/* lang-km */
.lang-km .line_header .line_header_inner {
  letter-spacing: initial;
}
@media screen and (max-width: 600px) {
  .lang-km .line_header .line_header_inner {
    font-size: 26px;
    white-space: nowrap;
  }
}

/* YUIMEとは
-----------------------------------------------------------------*/
.about {
  padding: 0 0 60px;
}
@media screen and (max-width: 1024px) {
  .about {
    padding: 0 0 30px;
  }
}

.about_inner {
  margin: 80px auto 0;
  text-align: left;
  position: relative;
  width: 1024px;
}
@media screen and (max-width: 1024px) {
  .about_inner {
    padding: 0 70px 0 20px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .about_inner {
    padding-right: 50px;
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 600px) {
  .about_inner {
    padding-top: 40px;
  }
}
.about_inner .line_header_inner {
  background-color: #fff;
  color: #be4337;
  font-size: calc(30px + (40 - 30) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
  padding: 0 50px;
  position: absolute;
  top: -8.7rem;
  left: -50px;
  letter-spacing: .1em;
  white-space: nowrap;
}
@media screen and (min-width: 1600px) {
  .about_inner .line_header_inner {
    font-size: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .about_inner .line_header_inner {
    left: -30px;
  }
}
@media screen and (max-width: 768px) {
  .about_inner .line_header_inner {
    top: -6.2rem;
  }
}
@media screen and (max-width: 600px) {
  .about_inner .line_header_inner {
    top: -1.5rem;
  }
}
@media screen and (max-width: 424px) {
  .about_inner .line_header_inner {
    font-size: 24px;
  }
}
.about_inner .line_header_inner span {
  font-size: calc(20px + (30 - 20) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
}
@media screen and (min-width: 1600px) {
  .about_inner .line_header_inner span {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .about_inner .line_header_inner .line_header_img {
    display: none;
  }
}
.about_inner .about_txt {
  font-size: calc(14px + (20 - 14) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  margin-top: 25px;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (min-width: 1600px) {
  .about_inner .about_txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .about_inner .about_txt {
    margin-top: 12px;
  }
}
.about_inner .btn {
  margin: 35px 0 0;
}
@media screen and (max-width: 768px) {
  .about_inner .btn {
    margin-top: 17px;
  }
}

/*=================================================================
  事業内容
=================================================================*/
.business {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .business {
    padding-bottom: 20px;
  }
}

.business_lead_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-items: center;
}
.business_lead_wrap .business_lead {
  position: relative;
  margin: 70px auto 0;
  text-align: left;
  width: 1024px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .business_lead_wrap .business_lead {
    padding: 0 60px 0 20px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .business_lead_wrap .business_lead {
    padding-right: 50px;
    margin-top: 35px;
  }
}
.business_lead_wrap .business_lead .bg_img {
  position: absolute;
  left: -16%;
  top: 30px;
  width: 128px;
}
@media screen and (max-width: 1024px) {
  .business_lead_wrap .business_lead .bg_img {
    display: none;
  }
}
.business_lead_wrap .business_lead .business_lead_txt {
  font-size: calc(14px + (20 - 14) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (min-width: 1600px) {
  .business_lead_wrap .business_lead .business_lead_txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .business_lead_wrap .business_lead .business_lead_txt {
    padding-top: 40px;
  }
}
.business_lead_wrap .business_lead .business_lead_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
}
.business_lead_wrap .business_lead .business_lead_link a {
  margin: 0 10px;
}
@media screen and (max-width: 600px) {
  .business_lead_wrap .business_lead .business_lead_link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .business_lead_wrap .business_lead .business_lead_link a {
    margin: 0 auto;
  }
  .business_lead_wrap .business_lead .business_lead_link a:first-of-type {
    margin-bottom: 20px;
  }
}
.business_lead_wrap .business_lead_img_wrap {
  position: relative;
  width: 100%;
}
.business_lead_wrap .business_lead_img_wrap .business_lead_img {
  max-width: 100%;
}

/* 農業支援について 登録支援について
-----------------------------------------------------------------*/
.business_info {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .business_info {
    margin-top: 30px;
  }
}

.business_info_wrap {
  margin: 0 auto;
  padding-bottom: 80px;
  width: 1024px;
}
@media screen and (max-width: 1380px) {
  .business_info_wrap {
    padding: 0 50px 80px;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .business_info_wrap {
    padding: 0 50px 80px 20px;
  }
}
.business_info_wrap .business_info_for_farmar+.business_info_for_farmar {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .business_info_wrap .business_info_for_farmar+.business_info_for_farmar {
    margin-top: 30px;
  }
}
.business_info_wrap .business_info_for_farmar:first-of-type {
  margin-top: 0;
}
.business_info_wrap .btn {
  max-width: 100%;
}
.business_info_wrap .business_info_header {
  color: #be4337;
  font-size: calc(20px + (30 - 20) / (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) {
  .business_info_wrap .business_info_header {
    font-size: 30px;
  }
}
.business_info_wrap .business_info_header img {
  margin-right: .5em;
  vertical-align: top;
  width: 43px;
}
@media screen and (max-width: 768px) {
  .business_info_wrap .business_info_header img {
    vertical-align: 0;
    width: 30px;
  }
}
.business_info_wrap .business_info_header_line {
  height: 2px;
  margin-bottom: 18px;
  position: relative;
}
.business_info_wrap .business_info_header_line::before {
  content: "";
  background-image: linear-gradient(to right, #be4337, #be4337 6px, transparent 6px, transparent 8px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.business_info_wrap .business_info_img {
  max-width: 100%;
}
.business_info_wrap .business_info_title {
  color: #be4337;
  font-size: calc(20px + (30 - 20) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  letter-spacing: .2em;
  margin-top: 20px;
}
@media screen and (min-width: 1600px) {
  .business_info_wrap .business_info_title {
    font-size: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .business_info_wrap .business_info_title {
    letter-spacing: inherit;
  }
}
@media screen and (max-width: 600px) {
  .business_info_wrap .business_info_title {
    margin-top: 10px;
  }
}
.business_info_wrap .business_info_txt {
  line-height: 1.5;
  margin: 16px auto 20px;
  padding: 0 2em;
}
@media screen and (max-width: 600px) {
  .business_info_wrap .business_info_txt {
    margin: 8px auto 10px;
    padding: 0;
  }
}

.business_info_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  .business_info_inner {
    margin-top: 19px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .business_info_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.business_info_inner .business_info_inner_item {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .business_info_inner .business_info_inner_item {
    margin-top: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .business_info_inner .business_info_inner_item:last-of-type {
    margin-top: 19px;
  }
}
@media screen and (max-width: 1380px) {
  .business_info_inner .business_info_inner_item .business_info_inner_header {
    letter-spacing: normal;
  }
}
.business_info_inner .business_info_inner_item .business_info_inner_img {
  max-width: 100%;
}
.business_info_inner .business_info_inner_item .business_info_inner_txt {
  line-height: 1.5;
  margin: 20px auto 26px;
  padding: 0 1em;
}
@media screen and (max-width: 600px) {
  .business_info_inner .business_info_inner_item .business_info_inner_txt {
    margin: 10px auto 13px;
    padding: 0;
  }
}

.business_button_wrap {
  margin: 78px auto 0;
  width: 920px;
}
@media screen and (max-width: 768px) {
  .business_button_wrap {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .business_button_wrap {
    margin-top: 39px;
  }
}
.business_button_wrap .btn {
  background-color: #f8f5ef;
  border: 2px solid #be4337;
  color: #be4337;
  font-size: calc(20px + (28 - 20) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-weight: bold;
  padding: 6px 1em;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 1600px) {
  .business_button_wrap .btn {
    font-size: 28px;
  }
}
.business_button_wrap .btn:hover {
  background-color: #fff;
}

/* lang-en */
.lang-en .business_info_wrap .business_info_header {
  letter-spacing: initial;
}
.lang-en .business_info_wrap .business_info_title {
  letter-spacing: initial;
}

/* lang-vi */
.lang-vi .business_info_wrap .business_info_header {
  letter-spacing: initial;
  font-family: Arial, sans-serif;
}
.lang-vi .business_info_wrap .business_info_title {
  letter-spacing: initial;
  font-family: Arial, sans-serif;
}

/* lang-km */
.lang-km .business_info_wrap .business_info_header {
  letter-spacing: initial;
}
.lang-km .business_info_wrap .business_info_title {
  letter-spacing: initial;
}

/*=================================================================
  農家で働きたい方へ
=================================================================*/
.recruit_title_bg_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 90px 0 40px;
  height: 34px;
}
@media screen and (max-width: 600px) {
  .recruit_title_bg_wrap {
    margin: 45px 0 20px;
  }
}
.recruit_title_bg_wrap .recruit_title_bg {
  background: url("../img/bg_line_h24.png") 0 center repeat-x;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.recruit_title_bg_wrap .recruit_title {
  color: #be4337;
  display: inline-block;
  font-size: calc(26px + (32 - 26) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
  line-height: 1;
  letter-spacing: .04em;
  margin: 0 auto;
  padding: 0 1em;
  vertical-align: middle;
  white-space: nowrap;
}
@media screen and (min-width: 1600px) {
  .recruit_title_bg_wrap .recruit_title {
    font-size: 32px;
  }
}

.recruit_inner {
  margin: 0 auto;
  width: 1024px;
}
@media screen and (max-width: 1024px) {
  .recruit_inner {
    padding: 0 50px 0 20px;
    width: 100%;
  }
}
.recruit_inner .recruit_lead {
  margin-top: 20px;
  padding: 0 2em;
}
@media screen and (max-width: 600px) {
  .recruit_inner .recruit_lead {
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .recruit_inner {
    margin-top: 10px;
  }
}

.for-worker_recruit_wrap {
  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-top: 60px;
}
@media screen and (max-width: 768px) {
  .for-worker_recruit_wrap {
    -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;
  }
}
@media screen and (max-width: 600px) {
  .for-worker_recruit_wrap {
    margin-top: 30px;
  }
}
@media screen and (max-width: 600px) {
  .for-worker_recruit_wrap .for-worker_recruit {
    margin-bottom: 40px;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .for-worker_recruit_wrap .for-worker_recruit:last-of-type {
    margin-bottom: 0;
  }
}
.for-worker_recruit_wrap .for-worker_recruit .for-worker_recruit_header img {
  margin-bottom: 16px;
  width: 102px;
}
.for-worker_recruit_wrap .for-worker_recruit .for-worker_recruit_header p {
  color: #be4337;
  font-size: calc(16px + (20 - 16) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
  letter-spacing: .12em;
}
@media screen and (min-width: 1600px) {
  .for-worker_recruit_wrap .for-worker_recruit .for-worker_recruit_header p {
    font-size: 20px;
  }
}
.for-worker_recruit_wrap .for-worker_recruit .for-worker_recruit_header p span {
  color: #be4337;
  font-size: calc(34px + (40 - 34) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-weight: bold;
}
@media screen and (min-width: 1600px) {
  .for-worker_recruit_wrap .for-worker_recruit .for-worker_recruit_header p span {
    font-size: 40px;
  }
}
.for-worker_recruit_wrap .for-worker_recruit .for-worker_recruit_img {
  margin-top: 15px;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .for-worker_recruit_wrap .for-worker_recruit .for-worker_recruit_img {
    padding: 0 1em;
  }
}
@media screen and (max-width: 600px) {
  .for-worker_recruit_wrap .for-worker_recruit .for-worker_recruit_img {
    padding: 0;
  }
}
.for-worker_recruit_wrap .for-worker_recruit .for-worker_recruit_txt {
  margin: 20px auto 0;
  padding: 0 1em;
}
@media screen and (max-width: 1024px) {
  .for-worker_recruit_wrap .for-worker_recruit .for-worker_recruit_txt {
    padding: 0 1em;
  }
}
@media screen and (max-width: 600px) {
  .for-worker_recruit_wrap .for-worker_recruit .for-worker_recruit_txt {
    margin-top: 10px;
    padding: 0;
  }
}
.for-worker_recruit_wrap .for-worker_recruit .btn {
  margin-top: 30px;
  z-index: inherit;
}
@media screen and (max-width: 600px) {
  .for-worker_recruit_wrap .for-worker_recruit .btn {
    margin-top: 15px;
  }
}

.recruit_info {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .recruit_info {
    margin-right: 0;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .recruit_info {
    margin-top: 30px;
  }
}
.recruit_info:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .recruit_info:last-of-type {
    margin-top: 60px;
  }
}
@media screen and (max-width: 600px) {
  .recruit_info:last-of-type {
    margin-top: 30px;
  }
}
.recruit_info .recruit_items_wrap {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .recruit_info .recruit_items_wrap {
    width: 460px;
  }
}
@media screen and (max-width: 768px) {
  .recruit_info .recruit_items_wrap {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .recruit_info .recruit_items_wrap {
    margin-top: 30px;
  }
}
.recruit_info .recruit_items_wrap .recruit_items_title {
  color: #be4337;
  font-size: calc(14px + (18 - 14) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-family: 'Noto Sans Japanese', sans-serif;
}
@media screen and (min-width: 1600px) {
  .recruit_info .recruit_items_wrap .recruit_items_title {
    font-size: 18px;
  }
}
.recruit_info .recruit_items_wrap .recruit_items_title br.sp {
  display: none;
}
@media screen and (max-width: 320px) {
  .recruit_info .recruit_items_wrap .recruit_items_title br.sp {
    display: block;
  }
}
.recruit_info .recruit_items_wrap .recruit_items_title span {
  font-size: calc(20px + (30 - 20) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  letter-spacing: .2em;
  vertical-align: -4px;
}
@media screen and (min-width: 1600px) {
  .recruit_info .recruit_items_wrap .recruit_items_title span {
    font-size: 30px;
  }
}
.recruit_info .recruit_items_wrap .recruit_items_title_line {
  height: 2px;
  margin-bottom: 18px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .recruit_info .recruit_items_wrap .recruit_items_title_line {
    margin-bottom: 9px;
  }
}
.recruit_info .recruit_items_wrap .recruit_items_title_line::before {
  content: "";
  background-image: linear-gradient(to right, #be4337, #be4337 8px, transparent 4px, transparent 12px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.recruit_info .recruit_items {
  margin-bottom: 40px;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .recruit_info .recruit_items {
    margin-bottom: 20px;
  }
}
.recruit_info .recruit_items .recruit_item {
  border-bottom: 1px solid #d2d2d2;
  width: 100%;
}
.recruit_info .recruit_items .recruit_item a {
  background: url("../img/top/ico_news-arrow_r.svg") right center no-repeat;
  background-size: 10px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 20px 20px 0;
  font-size: calc(12px + (14 - 12) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
}
@media screen and (min-width: 1600px) {
  .recruit_info .recruit_items .recruit_item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 424px) {
  .recruit_info .recruit_items .recruit_item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit_info .recruit_items .recruit_item a:hover {
  color: #be4337;
}
.recruit_info .recruit_items .recruit_item a .recruit_item_date {
  color: #be4337;
  text-align: left;
  font-weight: bold;
}
.recruit_info .recruit_items .recruit_item a .recruit_item_txt {
  padding-left: 2em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-align: justify;
  width: 100%;
}
@media screen and (max-width: 424px) {
  .recruit_info .recruit_items .recruit_item a .recruit_item_txt {
    padding-left: 0;
  }
}

/* Safari */
_::-webkit-full-page-media, _:future, :root .recruit_info .recruit_items .recruit_item a .recruit_item_txt {
  text-align: left;
}

.recruit_button_wrap {
  margin: 78px auto 0;
  width: 920px;
}
@media screen and (max-width: 768px) {
  .recruit_button_wrap {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .recruit_button_wrap {
    margin-top: 39px;
  }
}
.recruit_button_wrap .btn {
  background-color: #f8f5ef;
  border: 2px solid #be4337;
  color: #be4337;
  font-size: calc(20px + (28 - 20) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-weight: bold;
  padding: 6px 1em;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 1600px) {
  .recruit_button_wrap .btn {
    font-size: 28px;
  }
}
.recruit_button_wrap .btn:hover {
  background-color: #fff;
}

/* lang-en */
.lang-en .recruit_title_bg_wrap .recruit_title {
  white-space: inherit;
}
@media screen and (max-width: 768px) {
  .lang-en .recruit_title_bg_wrap .recruit_title {
    font-size: 24px;
    margin: 0 50px 0 20px;
  }
}
@media screen and (max-width: 320px) {
  .lang-en .recruit_title_bg_wrap .recruit_title {
    padding: 0;
    font-size: 22px;
  }
}

/* lang-vi */
.lang-vi .recruit_title_bg_wrap .recruit_title {
  white-space: inherit;
  font-family: Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  .lang-vi .recruit_title_bg_wrap .recruit_title {
    font-size: 24px;
    margin: 0 50px 0 20px;
  }
}
@media screen and (max-width: 600px) {
  .lang-vi .recruit_title_bg_wrap .recruit_title {
    padding: 0;
    font-size: 22px;
  }
}
@media screen and (max-width: 320px) {
  .lang-vi .recruit_title_bg_wrap .recruit_title {
    font-size: 18px;
  }
}
.lang-vi .for-worker_recruit_wrap .for-worker_recruit .for-worker_recruit_header p {
  font-family: Arial, sans-serif;
}
.lang-vi .recruit_info .recruit_items_wrap .recruit_items_title {
  font-family: Arial, sans-serif;
}

/* lang-km */
.lang-km .recruit_title_bg_wrap .recruit_title {
  white-space: inherit;
}
@media screen and (max-width: 768px) {
  .lang-km .recruit_title_bg_wrap .recruit_title {
    font-size: 24px;
    margin: 0 50px 0 20px;
  }
}
@media screen and (max-width: 320px) {
  .lang-km .recruit_title_bg_wrap .recruit_title {
    padding: 0;
    font-size: 22px;
  }
}

/*=================================================================
  体験者の声
=================================================================*/
.for-worker_lead {
  text-align: justify;
}
.for-worker_lead + .btn {
  margin-top: 40px;
}

.for-worker_voice_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;
  margin-top: 80px;
}
@media screen and (min-width: 1600px) {
  .for-worker_voice_header {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .for-worker_voice_header {
    margin-top: 40px;
  }
}
.for-worker_voice_header img {
  margin-bottom: 16px;
  width: 102px;
}

.for-worker_voice_txt {
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .for-worker_voice_txt {
    margin-top: 15px;
  }
}
.for-worker_voice_txt + .btn {
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .for-worker_voice_txt + .btn {
    margin-top: 20px;
  }
}

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

/*=================================================================
  お知らせ
=================================================================*/
.news {
  background-image: url("../img/bg_line_h17.png"), url("../img/top/bg_news_ear-of-rice.svg"), url("../img/top/bg_news_pig.svg");
  background-position: 0 0, left 83px bottom, right 50px bottom;
  background-repeat: repeat-x, no-repeat, no-repeat;
  background-size: 2px 17px, 150px 116px, 236px 45px;
  padding: 100px 0 64px;
}
@media screen and (max-width: 1024px) {
  .news {
    background-position: 0 0, left 20px bottom, right 50px bottom;
  }
}
@media screen and (max-width: 600px) {
  .news {
    background-position: 0 0, left 20px bottom, right 20px bottom;
    background-size: 2px 17px, 75px 58px, 118px 23px;
    padding-top: 50px;
    padding-bottom: 32px;
  }
}

.news_items {
  margin: 40px auto 60px;
  width: 1024px;
}
@media screen and (max-width: 1024px) {
  .news_items {
    padding: 0 50px 0 20px;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .news_items {
    margin: 20px auto 24px;
  }
}
.news_items .news_item {
  background: url("../img/top/ico_news-arrow_r.svg") right center no-repeat;
  background-size: 13px 25px;
  border-top: 1px solid #d2d2d2;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .news_items .news_item {
    background-size: 7px 13px;
  }
}
.news_items .news_item:last-of-type {
  border-bottom: 1px solid #d2d2d2;
}
.news_items .news_item a {
  color: #212121;
  display: block;
}
.news_items .news_item a:hover {
  color: #be4337;
}
.news_items .news_item .news_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 14em 30px 0;
}
@media screen and (max-width: 600px) {
  .news_items .news_item .news_info {
    padding: 15px 3em 15px 0;
  }
}
@media screen and (max-width: 320px) {
  .news_items .news_item .news_info {
    padding-right: 1em;
  }
}
.news_items .news_item .news_info .news_date {
  color: #be4337;
  font-size: calc(12px + (19 - 12) / (1600 - 320) * (100vw - 320px));
  min-height: 0vw;
  font-weight: bold;
  text-align: left;
}
@media screen and (min-width: 1600px) {
  .news_items .news_item .news_info .news_date {
    font-size: 19px;
  }
}
.news_items .news_item .news_info .news_txt {
  padding-left: 3em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-height: 1.8;
  text-align: justify;
  width: 100%;
}

/* Safari */
_::-webkit-full-page-media, _:future, :root .news_items .news_item .news_info .news_txt {
  text-align: left;
}




.about_ttxl {
    font-size: calc(11px + (24 - 11) / (1600 - 320) * (100vw - 320px));
    line-height: 1.7;
    font-weight: bold;
    min-height: 0vw;
    letter-spacing: .1em;
	text-align: center;
}
@media screen and (min-width: 1600px) {
  .about_ttxl {
    font-size: 24px;
    font-weight: bold;
  }
}
.about_ttxl+.btn{
	margin: 50px auto 0;
}
.business_info_wrap{
	width: 1370px;
	padding: 50px 0 160px;
}
@media screen and (max-width: 1600px) {
  .business_info_wrap {
    padding: 50px 50px 80px;
    width: 100%;
  }
}
.business_info_for_farmar_list{
	display: flex;
	gap: 40px 60px;
}
.business_info_for_farmar_item{
	width: calc(50% - 30px);
}
.business_info_wrap .business_info_title{
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.business_info_wrap .btn img{
	margin-left: 7px;
}
.business_info_wrap .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv .lead-text-wrap {
    bottom: 90px;
    top: auto;
}
.mv .mv_text span {
	background-color: transparent;
	color: #be4337;
}
.mv .lead-text-wrap > div + div{
	margin-top: 0;
}
.mv .mv_text span.lead-text_large {
  font-size: calc(30px + (70 - 30) / (1600 - 320) * (100vw - 320px));
  line-height: 1.3;
  padding: 0;
}
@media screen and (min-width: 1600px) {
  .mv .mv_text span.lead-text_large {
    font-size: 70px;
    line-height: 1.3;
  }
}
.mv .mv_text .lead-img_large {
	margin-top: 20px;
	margin-bottom: 25px;
	padding: 0;
}
.mv .mv_text img {
	height: 60px;
}

.mv .lead-text-wrap > div {
    opacity: 0;
    transition: opacity, transform 2.5s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
	transform: translate(0, 80px);
}
.mv .lead-text-wrap > div.is-show {
    opacity: 1;
    transform: translate(0, 0);
}
.mv .lead-text-wrap > div.text-01 {
    transition-delay: 700ms;
}
.mv .lead-text-wrap > div.text-02 {
    transition-delay: 800ms;
}
.mv .lead-text-wrap > div.text-03 {
    transition-delay: 900ms;
}
.sp{display: none;}
@media screen and (max-width: 1024px){
	.mv .lead-text-wrap{
		bottom: 0;
	}
}
@media screen and (max-width: 600px){
	.sp{display: block;}
	.pc{display: none;}
	.mv .mv_text img {
	    height: 30px;
	}
	.mv .lead-text-wrap{
		bottom: 0;
	}
	.mv .mv_text .lead-img_large{
		margin-top: 10px;
	}
	.about_ttxl+.btn {
	    margin: 30px auto 0;
	}
	.business_info_wrap{
		padding: 0 50px 80px 20px;
	}
	.business_info_for_farmar_list {
	    flex-wrap: wrap;
	    gap: 30px;
		margin-top: 30px;
	}
	.business_info_for_farmar_item {
	    width: 100%;
	}
	.business_info_wrap .business_info_title{
		height: 40px;
	}
	.business_info_wrap .business_info_title img {
		height: 40px;
	}
}