﻿@charset "UTF-8";
@import "base.css";
@import "font-family.css";
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 16px;
  -webkit-text-size-adjust: none;
}
header, section, footer, aside, nav, main, article, figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
  color: #e9ac56;
}
a:hover, a:active {
  text-decoration: none;
}
table {
  width: 100%
}
p {
  margin: 0 0 1.5em;
}
.section {
  padding: 0 0 30px;
}
p, dd, td, th, li {
  line-height: 1.5em;
}
#totop {
  position: fixed;
  bottom: 60px;
  right: 50px;
  z-index: 10;
  margin-bottom: 0;
  width: 50px;
}
#totop a {
  display: block;
  transition: all 0.5s;
  /*-webkit-animation: slide-top 0.8s linear infinite alternate-reverse;
  animation: slide-top 0.8s linear infinite alternate-reverse;*/
}
#totop a:hover {
  opacity: 0.7;
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.bold {
  font-weight: bold;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
  color: #333333;
  font-family: 'Raleway', sans-serif;
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
  padding-top: 84px;
}
.container {
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
h1 {
  display: none;
}
#header {
  padding: 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}
#header {
  -webkit-animation: remove-fixed 0.3s linear;
  -moz-animation: remove-fixed 0.3s linear;
  -ms-animation: remove-fixed 0.3s linear;
  animation: remove-fixed 0.3s linear;
}
#header.fixed  {
  position: fixed;
  background: #fff;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
  -webkit-animation: header-fixed 0.6s;
  -moz-animation: header-fixed 0.6s;
  -ms-animation: header-fixed 0.6s;
  animation: header-fixed 0.6s;
}
@keyframes remove-fixed {
  0% {
    opacity: 0.9;
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -moz-transform: translateY(20%);
    transform: translateY(20%)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0)
  }
}
@-webkit-keyframes remove-fixed {
  0% {
    opacity: 0.9;
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -moz-transform: translateY(20%);
    transform: translateY(20%)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0)
  }
}
@-moz-keyframes remove-fixed {
  0% {
    opacity: 0.9;
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -moz-transform: translateY(20%);
    transform: translateY(20%)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0)
  }
}
@keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'UTMAvo';
}
.logo {
  margin: 0;
}
.logo a {
  display: block;
  position: relative;
  z-index: 2;
}
.logo a:after {
  content: '';
  position: absolute;
  width: 165px;
  height: 103px;
  background: #b5e7f9;
  border-radius: 50%;
  bottom: 28px;
  right: 23px;
  z-index: -2;
  pointer-events: none;
}
#gnavi {
  margin: 0 40px 0 auto;
}
.gnavi {
  display: flex;
}
.gnavi > li {
  position: relative;
  margin: 0 10px;
}
.gnavi > li > a {
  text-decoration: none;
  color: #0a75b9;
  text-transform: uppercase;
  display: block;
  padding: 30px 5px;
  position: relative;
}
.gnavi > li > a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: #8fcb52;
  top: 0;
  left: 0;
  transform: scale(0, 1);
  transition: all 0.3s;
}
.gnavi > li.active > a, .gnavi > li:hover > a {
  color: #8fcb52;
}
.gnavi > li.active > a:after, .gnavi > li:hover > a:after {
  transform: scale(1, 1);
}
.submenu {
  position: absolute;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  min-width: 200px;
}
.submenu a {
  display: block;
  text-decoration: none;
  color: #fff;background: #1f5279;
  margin-top: 1px;
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 15px;
  transition: all 0.3s;
  text-transform: uppercase;
}
.submenu a:hover {
  background: #62ba02;
}
.h_btn {
  margin: 0 30px 0 0;
}
.h_btn a {
  background: #8fcb52;
  color: #fff;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s;
  -webkit-box-shadow: 2px 2px 0px 0px rgba(104, 172, 36, 1);
  -moz-box-shadow: 2px 2px 0px 0px rgba(104, 172, 36, 1);
  box-shadow: 2px 2px 0px 0px rgba(104, 172, 36, 1);
}
.h_btn a:hover {
  background: #0a75b9;
}
.h_search {
  position: relative;
  margin: 0 30px 0 0;
}
.h_search_ttl {
  margin: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #5ab200;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.h_search .form {
  position: absolute;
  right: 0;
  background: #f0f0f0;
  padding: 5px;
  display: none;
}
.h_search input {
  width: 250px;
  border: none;
  font-size: 12px;
  font-style: italic;
  padding: 10px 15px;
}
.h_search .button {
  position: absolute;
  font-size: 12px;
  right: 5px;
  top: 5px;
  background: #5ab200;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.h_lang {
  background: #b5e7f9;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px 13px 20px;
  border-radius: 30px;
}
.h_lang li {
  line-height: 0.8em;
}
.h_lang li a {
  text-decoration: none;
  color: #0a75bc;
  font-size: 12px;
}
.h_lang li:not(:last-child) {
  border-right: 1px solid #0a75bc;
  padding-right: 10px;
  margin-right: 10px;
}
.main_slide p {
  margin: 0;
}
.main_slide p img {
  width: 100%;
}
.main_slide .slick-dots {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.main_slide .slick-dots li {
  width: 15px;
  height: 15px;
  border: 1px solid transparent;
  border-radius: 50%;
  position: relative;
  margin-bottom: 10px;
}
.main_slide .slick-dots li:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  transition: all 0.3s;
  background: #fff;
  top: calc(100% + 5px);
  left: 50%;
}
.main_slide .slick-dots li button {
  width: 5px;
  height: 5px;
  background: #fff;
  border: none;
  border-radius: 50%;
  text-indent: -500000px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.main_slide .slick-dots li.slick-active {
  border-color: #fff;
  margin-bottom: 50px;
}
.main_slide .slick-dots li.slick-active:after {
  height: 40px;
}
.box01 {
  padding: 80px 0;
}
.idx_h2 {
  font-size: 40px;
  line-height: 1.5em;
  color: #5ab200;
  font-weight: 700;
  position: relative;
  z-index: 2;
  background: url("../W_images/idx_line.png") no-repeat left bottom;
  margin-bottom: 40px;
}
.idx_h2 .en {
  font-size: 375%;
  text-transform: uppercase;
  font-family: 'UTMAvo';
  line-height: 1em;
  position: absolute;
  left: 0;
  top: 30%;
  transform: translateY(-50%);
  z-index: -3;
  opacity: 0.05;
  text-shadow: rgb(10, 117, 185) 3px 0px 0px, rgb(10, 117, 185) 2.83487px 0.981584px 0px, rgb(10, 117, 185) 2.35766px 1.85511px 0px, rgb(10, 117, 185) 1.62091px 2.52441px 0px, rgb(10, 117, 185) 0.705713px 2.91581px 0px, rgb(10, 117, 185) -0.287171px 2.98622px 0px, rgb(10, 117, 185) -1.24844px 2.72789px 0px, rgb(10, 117, 185) -2.07227px 2.16926px 0px, rgb(10, 117, 185) -2.66798px 1.37182px 0px, rgb(10, 117, 185) -2.96998px 0.42336px 0px, rgb(10, 117, 185) -2.94502px -0.571704px 0px, rgb(10, 117, 185) -2.59586px -1.50383px 0px, rgb(10, 117, 185) -1.96093px -2.27041px 0px, rgb(10, 117, 185) -1.11013px -2.78704px 0px, rgb(10, 117, 185) -0.137119px -2.99686px 0px, rgb(10, 117, 185) 0.850987px -2.87677px 0px, rgb(10, 117, 185) 1.74541px -2.43999px 0px, rgb(10, 117, 185) 2.44769px -1.73459px 0px, rgb(10, 117, 185) 2.88051px -0.838247px 0px;
  color: #fff;
}
.b01_list {
  display: flex;
  flex-wrap: wrap;
}
.b01_item {
  width: calc(50% - 15px);
  margin: 0 30px 30px 0;
  border: 1px solid #ebebeb;
  display: flex;
}
.b01_item:nth-child(2n) {
  margin-right: 0;
}
.b01_itm_info {
  width: 50%;
  position: relative;
}
.new .b01_itm_info:after {
  content: 'Mới';
  position: absolute;
  font-size: 15px;
  left: 15px;
  top: 15px;
  z-index: 2;
  background: #8fcb52;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
}
.b01_itm_note {
  width: 50%;
  background: #ebebeb;
  padding: 25px;
}
.b01_itm_ttl a {
  display: block;
  text-decoration: none;
  background: #7da7d9;
  color: #fff;
  text-align: center;
  line-height: 1.5em;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s;
}
.b01_itm_ttl a:hover {
  background: #8fcb52;
}
.b01_itm_txt {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}
.b01_itm_img {
  margin: 0;
  height: 100%;
}
.b01_itm_img a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.b01_itm_btn {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
  display: flex;
}
.b01_itm_btn a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #7da7d9;
}
.b01_itm_btn li:not(:last-child) {
  margin-right: 10px;
}
.b01_itm_btn a:hover {
  background: #8fcb52;
}
.box02 {
  background: url("../W_images/b02_bg.jpg") no-repeat center center/cover;
  padding: 80px 0;
  color: #fff;
}
.box02 .container {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: flex-start;
}
.b02_main {
  width: 50%;
}
.b02_img {
  margin: 0;
  width: 50%;
  padding-right: 60px;
  position: relative;
}
.b02_img a > img {
  border-radius: 50px;
  -webkit-box-shadow: 0px 33px 30px 0px rgba(10, 10, 10, 0.7);
  -moz-box-shadow: 0px 33px 30px 0px rgba(10, 10, 10, 0.7);
  box-shadow: 0px 33px 30px 0px rgba(10, 10, 10, 0.7);
}
.box02 .idx_h2 .en {
  color: #383c46;
  text-shadow: rgb(255, 255, 255) 3px 0px 0px, rgb(255, 255, 255) 2.83487px 0.981584px 0px, rgb(255, 255, 255) 2.35766px 1.85511px 0px, rgb(255, 255, 255) 1.62091px 2.52441px 0px, rgb(255, 255, 255) 0.705713px 2.91581px 0px, rgb(255, 255, 255) -0.287171px 2.98622px 0px, rgb(255, 255, 255) -1.24844px 2.72789px 0px, rgb(255, 255, 255) -2.07227px 2.16926px 0px, rgb(255, 255, 255) -2.66798px 1.37182px 0px, rgb(255, 255, 255) -2.96998px 0.42336px 0px, rgb(255, 255, 255) -2.94502px -0.571704px 0px, rgb(255, 255, 255) -2.59586px -1.50383px 0px, rgb(255, 255, 255) -1.96093px -2.27041px 0px, rgb(255, 255, 255) -1.11013px -2.78704px 0px, rgb(255, 255, 255) -0.137119px -2.99686px 0px, rgb(255, 255, 255) 0.850987px -2.87677px 0px, rgb(255, 255, 255) 1.74541px -2.43999px 0px, rgb(255, 255, 255) 2.44769px -1.73459px 0px, rgb(255, 255, 255) 2.88051px -0.838247px 0px;
}
.b02_ttl {
  font-size: 22px;
  color: #5e93d2;
  font-weight: bold;
  margin: 40px 0 20px;
}
.b02_txt {
  font-size: 18px;
  line-height: 1.8em;
}
.b02_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.b02_list li {
  width: calc(33.33% - 10px);
}
.b02_list a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  border: 1px dashed #fff;
  height: 90px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s;
}
.b02_list a:before {
  content: '';
  position: relative;
  display: inline-block;
  background: url("../W_images/b02_icon01.png") no-repeat center center/100% auto;
  width: 45px;
  height: 34px;
  margin-right: 15px;
}
.b02_list li:nth-child(2) a:before {
  background-image: url("../W_images/b02_icon02.png");
  width: 40px;
  height: 41px;
}
.b02_list li:nth-child(3) a:before {
  background-image: url("../W_images/b02_icon03.png");
  width: 35px;
  height: 35px;
}
.b02_list a:hover {
  background: #0a75b9;
}
.idx_btn {
  margin: 0;
}
.idx_btn a {
  text-decoration: none;
  display: inline-block;
  background: #0a75b9;
  width: 180px;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 20px;
  padding: 10px;
  border-radius: 3px;
  transition: all 0.3s;
}
.idx_btn a:hover {
  background: #5ab200;
}
.idx_btn a:after {
  content: '';
  position: absolute;
  width: 13px;
  height: 1px;
  right: 0;
  top: 50%;
  background: #fff;
}
.idx_btn a:before {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  right: 11px;
  top: calc(50% - 1px);
  background: #fff;
}
.b02_img a {
  display: block;
  position: relative;
}
.b02_img .icon {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 70px;
  height: 70px;
}
.b02_img .icon:before, .b02_img .icon:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite both;
  animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite both;
}
.b02_img .icon:after {
  -webkit-animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.4s infinite both;
  animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.4s infinite both;
}
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
.box03 {
  padding: 80px 0;
}
.box03 .idx_h2 {
  text-align: center;
  background-position: bottom center;
}
.box03 .idx_h2 .en {
  left: 50%;
  transform: translate(-50%, -50%);
}
.b03_txt {
  text-align: center;
  font-size: 18px;
  max-width: 70%;
  margin: 0 auto 30px;
}
.b03_list {
  display: flex;
  margin-bottom: 40px;
}
.b03_item {
  width: calc(33.33% - 20px);
  margin: 0 30px 0 0;
}
.b03_item:last-child {
  margin-right: 0;
}
.b03_itm_img {
  margin: 0;
  overflow: hidden;
}
.b03_itm_img img {
  width: 100%;
  transition: all 0.7s;
}
.b03_item a:hover .b03_itm_img img {
  transform: scale(1.1, 1.1);
}
.b03_item a {
  position: relative;
  display: block;
}
.b03_itm_ttl {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: calc(100% - 20px);
  background: #fff;
  font-size: 20px;
  color: #333333;
  text-align: center;
  line-height: 1.4em;
  padding: 20px;
  transition: all 0.3s;
  font-weight: 500;
}
.b03_itm_ttl:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #59b200 transparent;
  right: 3px;
  bottom: 3px;
}
.b03_itm_ttl:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #59b200 transparent transparent transparent;
  left: 3px;
  top: 3px;
}
.b03_item a:hover .b03_itm_ttl {
  background: #0a75b9;
  color: #fff;
}
.box03 .idx_btn {
  text-align: center;
}
.box04 {
  position: relative;
  z-index: 2;
}
.box04:before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  z-index: -2;
  background: url("../W_images/b04_bg.jpg") no-repeat center center/cover;
  top: 0;
  left: 0;
}
.box04:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  z-index: -2;
  background: url("../W_images/b04_img.jpg") no-repeat center center/cover;
  top: 0;
  right: 0;
}
.box04 .container {
  display: flex;
}
.b04_main, .b04_img {
  width: 50%;
  color: #fff;
}
.b04_main {
  padding: 80px 50px 80px 0;
}
.box04 .idx_h2 .en {
  color: #091822;
  text-shadow: rgb(255, 255, 255) 3px 0px 0px, rgb(255, 255, 255) 2.83487px 0.981584px 0px, rgb(255, 255, 255) 2.35766px 1.85511px 0px, rgb(255, 255, 255) 1.62091px 2.52441px 0px, rgb(255, 255, 255) 0.705713px 2.91581px 0px, rgb(255, 255, 255) -0.287171px 2.98622px 0px, rgb(255, 255, 255) -1.24844px 2.72789px 0px, rgb(255, 255, 255) -2.07227px 2.16926px 0px, rgb(255, 255, 255) -2.66798px 1.37182px 0px, rgb(255, 255, 255) -2.96998px 0.42336px 0px, rgb(255, 255, 255) -2.94502px -0.571704px 0px, rgb(255, 255, 255) -2.59586px -1.50383px 0px, rgb(255, 255, 255) -1.96093px -2.27041px 0px, rgb(255, 255, 255) -1.11013px -2.78704px 0px, rgb(255, 255, 255) -0.137119px -2.99686px 0px, rgb(255, 255, 255) 0.850987px -2.87677px 0px, rgb(255, 255, 255) 1.74541px -2.43999px 0px, rgb(255, 255, 255) 2.44769px -1.73459px 0px, rgb(255, 255, 255) 2.88051px -0.838247px 0px;
}
.b04_item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 120px;
}
.b04_item:last-child {
  margin-bottom: 0;
}
.b04_item:before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: url("../W_images/b04_icon01.png") no-repeat center center #0a75b9;
  left: 0;
  top: 0;
  border-radius: 50%;
}
.b04_itm_ttl {
  font-size: 24px;
  color: #5ab200;
  font-weight: bold;
  line-height: 1.4em;
  margin: 0 0 5px;
}
.b04_itm_txt {
  margin: 0;
  font-size: 18px;
}
.b04_item:nth-child(2):before {
  background-image: url("../W_images/b04_icon02.png");
}
.b04_item:nth-child(3):before {
  background-image: url("../W_images/b04_icon03.png");
}
.b04_img a {
  text-decoration: none;
  display: block;
  position: relative;
  height: 100%;
}
.b04_img .icon {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.b04_img .icon:before, .b04_img .icon:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite both;
  animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite both;
}
.b04_img .icon:after {
  -webkit-animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.4s infinite both;
  animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.4s infinite both;
}
.box05 {
  background: #ececec;
  padding: 80px 0;
}
.box05 .idx_h2 {
  text-align: center;
  background-position: bottom center;
}
.box05 .idx_h2 .en {
  left: 50%;
  transform: translate(-50%, -50%);
}
.b05_txt {
  max-width: 70%;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 18px;
}
.b05_list {
  display: flex;
}
.b05_item {
  width: calc(33.33% - 30px);
  margin: 0 45px 0 0;
}
.b05_item:last-child {
  margin-right: 0;
}
.b05_item a {
  display: block;
  text-decoration: none;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s;
  height: 100%;
  color: #333;
}
.b05_itm_img {
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
}
.b05_itm_img img {
  width: 100%;
  transition: all 0.7s;
}
.b05_item a:hover .b05_itm_img img {
  transform: scale(1.1, 1.1);
}
.b05_itm_main {
  padding: 15px;
}
.b05_itm_info {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  border-bottom: 1px solid #e6e8eb;
  padding: 0 0 20px;
  margin-bottom: 15px;
}
.b05_itm_info span {
  display: flex;
  align-items: center;
}
.b05_itm_info span:before {
  content: '';
  position: relative;
  display: inline-block;
  background: url("../W_images/b05_icon01.png") no-repeat center center/100% auto;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.b05_itm_info span:last-child:before {
  background-image: url("../W_images/b05_icon02.png");
  width: 17px;
}
.b05_itm_ttl {
  font-size: 20px;
  color: #000;
  line-height: 1.3em;
  font-weight: bold;
  margin: 0 0 10px;
}
.b05_itm_txt {
  margin: 0 0 30px;
}
.b05_itm_btn {
  margin: 0;
  display: inline-block;
  background: #0a75b9;
  width: 180px;
  text-align: center;
  color: #fff;
  padding: 8px;
  border-radius: 5px;
  position: relative;
  font-size: 18px;
  transition: all 0.3s;
}
.b05_itm_btn:after {
  content: '';
  position: absolute;
  width: 13px;
  height: 1px;
  right: 0;
  top: 50%;
  background: #fff;
}
.b05_itm_btn:before {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  right: 11px;
  top: calc(50% - 1px);
  background: #fff;
}
.b05_item a:hover .b05_itm_btn {
  background: #5ab200;
}
.box06 {
  background: url("../W_images/b06_bg.jpg") no-repeat center center/cover;
  padding: 80px 0 50px;
  color: #fff;
}
.box06 .idx_h2 {
  text-align: center;
  background-position: bottom center;
}
.b06_txt {
  max-width: 70%;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 18px;
}
.b06_item {
  margin: 0 22px;
}
.b06_list {
  margin: 0 -22px;
}
.b06_itm_txt {
  background: url("../W_images/b06_icon.png") no-repeat right 20px bottom 20px #0a75b9;
  padding: 30px 40px 40px;
  border-radius: 5px;
  position: relative;
  margin-bottom: 40px;
  line-height: 1.8em;
  text-align: justify;
}
.b06_itm_txt:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 30px 0 30px;
  border-color: #0a76b9 transparent transparent transparent;
  bottom: -20px;
  left: 80px;
}
.b06_itm_info {
  display: flex;
  align-items: flex-start;
}
.b06_itm_img {
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 10px 0 0;
}
.b06_itm_name span {
  display: block;
}
.b06_itm_name span:nth-child(1) {
  font-size: 125%;
  font-weight: 700;
}
.b06_itm_name span:nth-child(2) {
  font-style: italic;
}
.b06_itm_name .star {
  display: flex;
}
.b06_itm_name .star img {
  margin-right: 3px;
}
.box07 {
  background: #7da7d9;
  padding: 80px 0 50px;
  color: #fff;
}
.box07 .idx_h2 {
  color: #fff;
}
.box07 .idx_h2 .en {
  color: #7da7d9;
  text-shadow: rgb(255, 255, 255) 3px 0px 0px, rgb(255, 255, 255) 2.83487px 0.981584px 0px, rgb(255, 255, 255) 2.35766px 1.85511px 0px, rgb(255, 255, 255) 1.62091px 2.52441px 0px, rgb(255, 255, 255) 0.705713px 2.91581px 0px, rgb(255, 255, 255) -0.287171px 2.98622px 0px, rgb(255, 255, 255) -1.24844px 2.72789px 0px, rgb(255, 255, 255) -2.07227px 2.16926px 0px, rgb(255, 255, 255) -2.66798px 1.37182px 0px, rgb(255, 255, 255) -2.96998px 0.42336px 0px, rgb(255, 255, 255) -2.94502px -0.571704px 0px, rgb(255, 255, 255) -2.59586px -1.50383px 0px, rgb(255, 255, 255) -1.96093px -2.27041px 0px, rgb(255, 255, 255) -1.11013px -2.78704px 0px, rgb(255, 255, 255) -0.137119px -2.99686px 0px, rgb(255, 255, 255) 0.850987px -2.87677px 0px, rgb(255, 255, 255) 1.74541px -2.43999px 0px, rgb(255, 255, 255) 2.44769px -1.73459px 0px, rgb(255, 255, 255) 2.88051px -0.838247px 0px;
}
.box07 .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.b07_txt {
  margin: 0;
}
.b07_main {
  margin-right: 60px;
}
.b07_form {
  display: flex;
}
.b07_form input {
  width: 500px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-style: italic;
  padding: 25px 30px;
  border-radius: 50px;
  margin-right: 15px;
}
.b07_form input::-webkit-input-placeholder {
  color: #fff;
}
.b07_form input::-moz-placeholder {
  color: #fff;
}
.b07_form input:-ms-input-placeholder {
  color: #fff;
}
.b07_form input:-moz-placeholder {
  color: #fff;
}
.b07_form button {
  width: 160px;
  background: #0a75b9;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s;
}
.b07_form button:before {
  content: '';
  position: relative;
  display: inline-block;
  background: url("../W_images/f_send.png") no-repeat center center/100% auto;
  width: 20px;
  height: 15px;
  margin-right: 10px;
}
.b07_form button:hover {
  background: #5ab200;
}
#footer {
  padding: 60px 0;
}
#footer .container {
  display: flex;
  justify-content: space-between;
}
.f_mod {
  width: calc(33.33% - 20px);
}
.f_ttl {
  font-size: 40px;
  color: #0976bd;
  font-weight: 700;
  margin-bottom: 20px;
}
.f_info {
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
}
.f_info:before {
  content: '';
  position: absolute;
  background: url("../W_images/f_add.png") no-repeat center center;
  width: 30px;
  height: 22px;
  left: 0;
  top: 2px;
}
.f_tel:before {
  background-image: url("../W_images/f_tel.png");
}
.f_mail:before {
  background-image: url("../W_images/f_mail.png");
}
.f_web:before {
  background-image: url("../W_images/f_web.png");
}
.f_social {
  margin: 30px 0 0;
  display: flex;
}
.f_social a {
  margin-right: 10px;
}
.f_mod_main {
  display: flex;
  align-items: flex-start;
}
.f_mod_img {
  flex-shrink: 0;
  margin: 0 15px 0 0;
}
.f_mod_info_ttl {
  color: #0976bd;
  font-weight: 700;
  margin: 0 0 5px;
}
.f_mod_info li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.f_mod_info li:before {
  width: 6px;
  height: 6px;
  content: '';
  position: absolute;
  background: #0a75b9;
  border-radius: 50%;
  left: 0;
  top: 8px;
}
@media screen and (max-width: 1400px) {
  .container {
    padding: 0 3%;
  }
}
@media screen and (max-width: 768px) {
  h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
    font-size: 14px;
  }
  #wrapper {
    min-width: 100%;
    margin: 0;
    padding-top: 72px;
  }
  #main, #footer {
    min-width: 100%;
  }
  .container {
    padding: 0 3%;
    width: 100%;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon {
    width: 50px;
    height: 43px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    z-index: 99999;
    background: #7da7d9;
    margin-left: 10px;
  }
  .menu-icon span {
    display: block;
    margin: 0 auto 15px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-duration: 0;
    -moz-transition-duration: 0;
    -ms-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    top: 12px;
    left: 0;
    position: relative;
  }
  .menu-icon span::after, .menu-icon span::before {
    display: block;
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0;
    -moz-transition-delay: 0.2s, 0;
    -ms-transition-delay: 0.2s, 0;
    -o-transition-delay: 0.2s, 0;
    transition-delay: 0.2s, 0;
  }
  .menu-icon span::before {
    margin-top: -10px;
  }
  .menu-icon span::after {
    margin-top: 10px;
  }
  .menu-icon.active span {
    background-color: transparent;
  }
  .menu-icon.active span::before, .menu-icon.active span::after {
    margin-top: 0px;
    -webkit-transition-delay: 0, 0.2s;
    -moz-transition-delay: 0, 0.2s;
    -ms-transition-delay: 0, 0.2s;
    -o-transition-delay: 0, 0.2s;
    transition-delay: 0, 0.2s;
  }
  .menu-icon.active span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menu-icon.active span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .gnv-ico {
    width: 50px;
    height: 50px;
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    right: 0;
    top: 0 !important;
    transform: none !important;
    border: none !important;
  }
  .gnv-ico:before {
    content: '';
    position: absolute;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: calc(50% - 3px);
    top: calc(50% - 3px);
    transition: all 0.5s ease;
  }
  .gnavi li.active > .gnv-ico:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .submenu{position:relative;}
  .submenu a{text-align:center;}
  #totop {
    width: 40px;
    right: 3%;
    bottom: 50px;
    line-height: 0;
  }
  #gnavi {
    position: fixed;
    top: 72px;
    width: 100%;
    height: calc(100% - 72px);
    overflow: auto;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 3%;
    display: none;
  }
  .gnavi {
    display: block;
  }
  .gnavi > li > a:after {
    display: none;
  }
  .gnavi > li > a {
    background: #0a75b9;
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    border-bottom: 1px solid #fff;
  }
  .gnavi > li.active > a, .gnavi > li:hover > a {
    color: #fff;
  }
  .gnavi > li {
    margin: 0;
  }
  #header {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 999;
    width: 100%;
    padding: 10px 0;
  }
  .h_search, .h_btn {
    display: none;
  }
  .logo {
    width: 80px;
  }
  .h_lang {
    margin: 0 0 0 auto;
  }
  .box01 {
    padding: 50px 0 40px;
  }
  .idx_h2 {
    font-size: 22px;
    padding: 0 0 5px;
    margin-bottom: 30px;
    text-align: center;
    background-position: bottom center;
  }
  .idx_h2 .en {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .b01_item {
    width: 100%;
    margin: 0 0 20px;
  }
  .b01_itm_note {
    padding: 20px;
  }
  .b01_item:last-child {
    margin-bottom: 0;
  }
  .box02 {
    padding: 50px 0 40px;
  }
  .box02 .container {
    display: block;
  }
  .b02_main {
    width: 100%;
    margin: 0 0 30px;
  }
  .b02_img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
  }
  .b02_ttl {
    font-size: 16px;
  }
  .b02_txt {
    font-size: 14px;
  }
  .b02_list a {
    height: 70px;
  }
  .b02_list a:before {
    width: 30px;
    height: 25px;
    margin-right: 10px;
  }
  .b02_list li:nth-child(2) a:before {
    width: 25px;
    height: 26px;
  }
  .b02_list li:nth-child(3) a:before {
    width: 22px;
    height: 22px;
  }
  .idx_btn {
    text-align: center;
  }
  .idx_btn a {
    font-size: 15px;
  }
  .box03 {
    padding: 50px 0 40px;
  }
  .b03_txt {
    font-size: 14px;
    max-width: 100%;
  }
  .b03_list {
    display: block;
    margin: 0 0 10px;
  }
  .b03_item {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
  }
  .b03_itm_ttl {
    font-size: 16px;
  }
  .b03_item:last-child {
    margin-right: auto;
  }
  .b03_itm_ttl:before {
    border-width: 15px 15px 0 0;
  }
  .b03_itm_ttl:after {
    border-width: 0 0 15px 15px;
  }
  .box04 .container {
    display: block;
    padding: 0;
  }
  .b04_main {
    width: 100%;
    padding: 50px 3% 40px;
    position: relative;
    z-index: 2;
    background: url("../W_images/b04_bg.jpg") no-repeat center center/cover;
  }
  .box04:before, .box04:after {
    display: none;
  }
  .b04_img {
    width: 100%;
    background: url("../W_images/b04_img.jpg") no-repeat center center/cover;
    height: 50vw;
  }
  .b04_itm_ttl {
    font-size: 16px;
  }
  .b04_itm_txt {
    font-size: 14px;
  }
  .b04_item:before {
    width: 60px;
    height: 60px;
    background-size: 30px auto;
    top: -10px;
  }
  .b04_item {
    padding-left: 80px;
  }
  .box05 {
    padding: 50px 0 40px;
  }
  .b05_txt {
    max-width: 100%;
    font-size: 14px;
  }
  .b05_list {
    display: block;
  }
  .b05_item {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
  }
  .b05_itm_info {
    padding: 0 0 10px;
    margin-bottom: 10px;
  }
  .b05_itm_ttl {
    font-size: 16px;
  }
  .b05_itm_txt {
    margin: 0 0 15px;
  }
  .b05_itm_btn {
    font-size: 14px;
    width: 150px;
  }
  .b05_item:last-child {
    margin-right: auto;
    margin-bottom: 0;
  }
  .box06 {
    padding: 40px 0;
  }
  .b06_txt {
    max-width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .b06_item {
    margin: 0 10px;
  }
  .b06_list {
    margin: 0 -10px;
  }
  .b06_itm_txt {
    padding: 20px;
    background-size: 30px auto;
  }
  .b06_itm_txt:after {
    border-width: 20px 20px 0 20px;
    bottom: -15px;
  }
  .box07 {
    padding: 40px 0;
  }
  .box07 .container {
    display: block;
  }
  .b07_main {
    margin: 0 0 30px;
  }
  .b07_txt {
    text-align: center;
  }
  .b07_form {
    width: 100%;
  }
  .b07_form button {
    font-size: 14px;
    width: 120px;
  }
  .b07_form button:before {
    width: 15px;
    height: 10px;
    margin-right: 5px;
  }
  .b07_form input {
    width: calc(100% - 140px);
    padding: 15px 20px;
  }
  #footer {
    padding: 40px 0;
  }
  #footer .container {
    display: block;
  }
  .f_mod {
    width: 100%;
    margin: 0 0 30px;
  }
  .f_img {
    margin: 0;
  }
  .f_ttl {
    font-size: 22px;
    margin: 0 0 10px;
  }
  .f_info:before {
    background-size: 47% auto;
  }
  .f_mod_img {
    width: 120px;
  }
}
@media screen and (max-width: 480px) {
  .b01_item {
    display: block;
  }
  .b01_itm_info {
    width: 100%;
  }
  .b01_itm_note {
    width: 100%;
  }
  .b02_list {
    display: block;
    margin-bottom: 20px;
  }
  .b02_list li {
    width: 100%;
    margin: 0 auto 20px;
    max-width: 300px;
  }
  .b02_img .icon {
    width: 50px;
    height: 50px;
  }
  .b02_img a > img {
    border-radius: 30px;
  }
  .b04_img {
    height: 70vw;
  }
  .b04_img .icon {
    width: 50px;
    height: 50px;
  }
  .b07_form {
    display: block;
  }
  .b07_form input {
    width: 100%;
    margin: 0 0 10px;
  }
  .b07_form button {
    padding: 15px;
    margin: 0 auto;
  }
}