﻿@charset "UTF-8";
@import "base.css";
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Montserrat:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 24px;
  -webkit-text-size-adjust: none;
}
header, section, footer, aside, nav, main, article, figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
  color: #e0a169;
}
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.3em;
}
#totop {
  position: fixed;
  bottom: 60px;
  right: 50px;
  z-index: 10;
  margin-bottom: 0;
  width: 80px;
}
#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: #5a3015;
  font-family: 'Montserrat', sans-serif;
}
#wrapper {
  min-width: 1235px;
  overflow: hidden;
}
.container {
  width: 1235px;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
h1 {
  display: none;
}
#header {
  background: #5a3015;
  padding: 10px 0;
  border-bottom: 2px solid #e0a169;
}
.logo {
  width: 168px;
  margin: 0;
}
#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 769px) {
.h_right {
  display: flex;
  align-items: center;
}
}
.h_lang {
  display: flex;
}
.h_lang a {
  text-decoration: none;
  display: block;
  padding: 5px;
  text-transform: uppercase;
  font-size: 18px;
}
.h_lang .active a {
  font-weight: 700;
}
.h_search {
  position: relative;
  margin-right: 30px;
}
.h_search_form {
  position: absolute;
  right: 0;
  z-index: 5;
  background: #e0a169;
  padding: 5px;
  width: 250px;
  margin-top: 5px;
  display: none;
}
.h_search_form input {
  width: 100%;
  font-size: 14px;
  opacity: 0.7;
  background: none;
  border: none;
  padding: 10px;
  font-style: italic;
}
.h_search_form .button {
    text-decoration:none;
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 14px;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  padding: 10px;color:#000;
}
.h_search_ttl {
  margin: 0;
  width: 24px;
  height: 24px;
  background: #e0a169;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}
.gnavi {
  display: flex;
}
.gnavi > li {
  position: relative;
  margin-right: 30px;
  width: 115px;
  text-align: center;
}
.gnavi > li > a {
  text-decoration: none;
  padding: 10px 5px;
  display: inline-block;
  font-size: 18px;
  text-transform: uppercase;
}
.gnavi > li.active > a, .gnavi > li:hover > a {
  font-weight: 700;
}
.submenu {
  position: absolute;
  z-index: 10;
  background: #e0a169;
  width: 210px;
  padding: 0 15px;
  display: none;
}
.submenu a {
  color: #5a3015;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #5a3015;
  text-align: left;
  transition: all 0.3s;
  font-size: 18px;
}
.submenu li:last-child a {
  border-bottom: none;
}
.submenu a:hover {
  color: #000;
}
@media screen and (min-width: 769px) {
  #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 {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    -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);
  }
}
#index .mainvisual {
  height: 700px;
  background: url("/W_images/idx_main_bg.jpg") no-repeat bottom center/cover;
  padding: 113px 0 88px;
  position: relative;
}
#index .mainvisual .container {
  width: 100%;
  max-width: 1345px;
  padding: 0;
}
.idx_logo {
    margin: 0;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.idx_logo img:first-child {
  margin-bottom: 25px;
  display: block;
}
.main_itm_img {
    margin: 0;
}
.main_list {
    display: flex;
}
.main_item {
    width: 249px;
    margin-right: 34px;
}
.main_item:nth-child(2) {
  margin-right: auto;
}
.main_item:nth-child(3) {
  margin-left: auto;
}
.main_item:last-child {
  margin-right: 0;
}

.main_item a {
    display: block;
    position: relative;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    color: #e0a169;
  z-index: 2;
}
.main_itm_info {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 15px;
  background: rgb(90,48,21);
background: linear-gradient(0deg, rgba(90,48,21,1) 25%, rgba(90,48,21,0.2) 100%);
}
.main_itm_info_txt {
    margin: 0;
    font-size: 16px;
    height: 84px;
}
.main_itm_info_ttl {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px;
    white-space: nowrap;
  font-family: 'Merriweather', serif;
}
.main_itm_info_img {
    border-bottom: 1px solid;
    margin-bottom: 20px;
    padding: 0 0 40px;
    width: 100%;
}
.main_item a:after {
  content: '';
  position: absolute;
  z-index: -4;
  width: 100%;
  height: 100%;
  top: 10px;
  left: -10px;
  border: 1px solid #e0a169;
}
.main_item a:hover {
  transform: translateY(-10px);
}
.box01 {
    padding: 60px 0;
  text-align: center;
}
.b01_txt {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    font-size: 30px;
}
.b02_txt {
  text-align: center;
  position: relative;
  background: #5a3015;
  padding: 120px 0 80px;
  color: #e0a169;
}
.b02_txt:before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: url(/W_images/under_icon06.svg) no-repeat center center #e0a169;
    border: 19px solid #5a3015;
    border-radius: 50%;
    top: -70px;
    left: calc(50% - 80px);
}
.b02_txt_info {
    font-size: 30px;
    padding: 0 30px;
    margin-bottom: 25px;
}
.idx_btn {
    margin: 0;
    text-align: center;
}
.idx_btn a {
    display: inline-block;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border: 1px solid #e0a169;
    padding: 5px 15px 3px;
    transition: all 0.3s;
}
.idx_btn a:hover {
  background: #e0a169;
  color: #5a3015;
}
.box03 {
    padding: 60px 0;
}
.b03_txt {
    text-align: center;
    margin-bottom: 120px;
    font-size: 30px;
}
.b03_item {
    display: flex;
    align-items: center;
  position: relative;
  margin-bottom: 55px;
}
.b03_itm_img {
    flex-shrink: 0;
    margin: 0 30px 0 0;
    overflow: hidden;
  border-radius: 50% 50% 0% 0% / 40% 40% 0% 0% ;
}
.idx_h3 {
    font-size: 60px;
    color: #e0a169;
    text-transform: uppercase;
    line-height: 1.3em;
    font-weight: 700;
    margin-bottom: 30px;
  font-family: 'Merriweather', serif;
  white-space: nowrap;
}
.b03_itm_txt {
    font-size: 16px;
    color: #5a3015;line-height: 1.5;
}
.box03 .idx_btn {
  text-align: left;
}
.b03_item:nth-child(1) {
    align-items: flex-end;
}
.b03_item:nth-child(1) .b03_itm_main {
  padding-bottom: 60px;
}
.b03_item:nth-child(1):after {
    content: '';
    position: absolute;
    background: url(/W_images/under_icon02.png) no-repeat center center/100% auto;
    width: 432px;
    height: 324px;
    right: -118px;
    bottom: 230px;
    pointer-events: none;
}
.b03_item:nth-child(2n) {
    flex-direction: row-reverse;
}
.b03_item:nth-child(2n) .b03_itm_img {
  margin: 0 0 0 70px;
}
.b03_item:nth-child(2n) .b03_itm_main {
  /*width: 340px;*/
}
.b03_item:nth-child(2) .b03_itm_img {
  border-radius: 50% 50% 0% 0% / 0% 30% 0% 0% ;
}
.b03_item:nth-child(3) .b03_itm_img {
  border-radius: 50% 50% 0% 0% / 30% 0% 0% 0% ;
}
.b03_item:nth-child(4) .b03_itm_img {
  border-radius:50% 50% 50% 50% / 40% 40% 40% 40% ;
}
.b03_item:nth-child(2):after {
    content: '';
    position: absolute;
    background: url(/W_images/under_icon05.png) no-repeat center center/100% auto;
    width: 432px;
    height: 324px;
    left: -113px;
    bottom: -77px;
    pointer-events: none;
}
.b03_item:nth-child(3):after {
    content: '';
    position: absolute;
    background: url(/W_images/under_icon02.png) no-repeat center center/100% auto;
    width: 432px;
    height: 324px;
    right: -118px;
    bottom: -164px;
    pointer-events: none;
}
.b03_item:last-child {
  margin-bottom: 0;
}




.under .mainvisual {
  background: url("/W_images/under_main_bg.jpg") no-repeat center center/cover;
  height: 800px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}
.about_main {
  margin: 0;
}
.about_box01 {
  padding: 80px 0 120px;
  text-align: center;
}
.idx_h2 {
  text-align: center;
  font-size: 60px;
  color: #e0a169;
  text-transform: uppercase;
  font-family: 'Merriweather', serif;
  line-height: 1.5em;
  margin-bottom: 30px;
  font-weight: 700;
}
.about_b01_txt {
  width: 80%;
  margin: 0 auto 80px;
  font-size: 30px;
  color: #5a3015;
}
.about_b01_list {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
.about_b01_img {
  flex-shrink: 0;
  width: 46%;
  border-top-left-radius: 50%;
  padding-right: 10px;
  margin: 0 10px 0 0;
  overflow: hidden;
}
.about_b01_img img {
  width: 100%;
}
.about_b01_info {
  margin: 0 auto 0 0;
  text-align: left;
  width: 40%;
}
.about_b01_list:after {
  content: '';
  position: absolute;
  background: url("/W_images/under_icon02.png") no-repeat center center/100% auto;
  width: 432px;
  height: 324px;
  right: 0;
  bottom: 90px;
  pointer-events: none;
}
.about_b02_main {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
}
.about_b02_img {
  flex-shrink: 0;
  width: 50%;
  border-top-right-radius: 50%;
  padding-left: 10px;
  margin: 0;
  overflow: hidden;
}
.about_b02_img img {
  width: 100%;
}
.about_b02_list {
  width: 50%;
  padding-right: 10px;
}
.about_b02_list li {
  position: relative;
  padding-left: 50px;
}
.about_b02_list li:before {
  content: '';
  position: absolute;
  background: url("/W_images/under_icon03.svg") no-repeat center center/100% auto;
  width: 38px;
  height: 38px;
  left: 0;
  top: 0;
}
.about_b02_list li:not(:last-child) {
  margin-bottom: 60px;
}
.about_box02 {
  margin-bottom: 85px;
}
.about_box03 {
  padding: 60px 0 107px;
  position: relative;
  z-index: 2;
}
.about_box03:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 70%;
  z-index: -2;
  background: #5a3015;
  pointer-events: none;
  top: 0;
  left: 0;
}
.about_b03_txt {
  color: #e0a169;
  text-align: center;
  width: 70%;
  margin: 0 auto 60px;
  font-size: 30px;
}
.about_b03_list {
  display: flex;
  justify-content: space-between;
}
.about_box03 .container {
  width: 100%;
  max-width: 1345px;
}
.about_b03_item {
  width: calc(25% - 22.5px);
}
.about_b03_item a {
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}
.about_b03_item a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #e0a169;
  z-index: -3;
  pointer-events: none;
  top: 10px;
  left: -10px;
}
.about_b03_itm_img {
  margin: 0;
  background: #000;
}
.about_b03_itm_img img {
  width: 100%;
  transition: all 0.3s;
}
.about_b03_itm_main {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 17px;
  background: rgb(90, 48, 21);
  background: linear-gradient(0deg, rgba(90, 48, 21, 1) 0%, rgba(90, 48, 21, 0) 100%);
}
.about_b03_itm_txt {
  font-size: 16px;
  margin: 0 0 0 15px;
}
.about_b03_itm_ttl {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 5px;
  font-family: 'Merriweather', serif;
  /**/white-space: nowrap;
}
.about_b03_item a:hover .about_b03_itm_img img {
  opacity: 0.7;
}
.about_b04_line {
  margin: 0 auto 70px;
  position: relative;
  background: url("/W_images/under_icon04.svg") no-repeat center center;
  height: 38px;
  width: 100%;
  max-width: 1345px;
}
.about_b04_line:before, .about_b04_line:after {
  content: '';
  position: absolute;
  background: #e0a169;
}
.about_b04_line:before {
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
}
.about_b04_line:after {
  width: 1px;
  height: 100px;
  left: 50%;
  top: calc(50% - 50px);
}
.about_b04_item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  margin-bottom: 110px;
}
.about_b04_item:nth-child(1):after {
  content: '';
  position: absolute;
  background: url("/W_images/under_icon05.png") no-repeat center center/100% auto;
  width: 432px;
  height: 324px;
  left: -110px;
  bottom: -260px;
  pointer-events: none;
}
.about_b04_itm_img {
  flex-shrink: 0;
  width: 47%;
  margin: 0 60px 0 0;
  border-radius: 50% 50% 50% 50% / 35% 35% 35% 35%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.about_b04_itm_img img {
  width: 100%;
}
.about_b04_itm_ttl {
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5em;
  margin-bottom: 40px;
  position: relative;
  padding-left: 55px;
}
.about_b04_itm_ttl:before {
  content: '';
  position: absolute;
  background: url("/W_images/under_icon03.svg") no-repeat center center/100% auto;
  width: 38px;
  height: 38px;
  left: 0;
  top: 8px;
}
.about_b04_itm_ttl span {
  display: block;
  font-size: 40px;
  line-height: 1.3em;
  font-style: normal;
  font-weight: 700;
  font-family: 'Merriweather', serif;
}
.about_b04_itm_txt {
  margin: 0 0 0 55px;
}
.about_b04_itm_main {
  padding-bottom: 35px;
  position: relative;
  z-index: 2;
}
.about_b04_item:nth-child(2n) {
  flex-direction: row-reverse;
}
.about_b04_item:nth-child(2n) .about_b04_itm_img {
  margin: 0 0 0 60px;
}
.about_b04_item:nth-child(2) .about_b04_itm_img {
  border-radius: 50% 50% 50% 50% / 35% 35% 0% 0%;
}
.about_b04_item:nth-child(3) .about_b04_itm_img {
  border-radius: 50% 50% 50% 50% / 35% 0% 0% 0%;
}
.about_b04_item:nth-child(3):after {
  content: '';
  position: absolute;
  background: url("/W_images/under_icon02.png") no-repeat center center/100% auto;
  width: 432px;
  height: 324px;
  right: -90px;
  bottom: -255px;
  pointer-events: none;
}
.about_b04_item:nth-child(3) {
  margin-bottom: 170px;
}
.about_b04_item:nth-child(2) {
  margin-bottom: 115px;
}
.about_b04_item:nth-child(4):after {
  content: '';
  position: absolute;
  background: url("/W_images/under_icon05.png") no-repeat center center/100% auto;
  width: 432px;
  height: 324px;
  left: calc(50% - 190px);
  top: 73px;
  pointer-events: none;
}
.about_b04_item:nth-child(4) {
  margin-bottom: 100px;
}
.about_b05_img img {
  width: 100%;
}
.about_b05_img {
  margin: 0;
}
.about_b05_txt {
  background: #5a3015;
  padding: 130px 0 60px;
  position: relative;
}
.about_b05_txt p {
  font-size: 40px;
  color: #e0a169;
  text-align: center;
  font-weight: 700;
  font-family: 'Merriweather', serif;
  margin: 0;
}
.about_b05_txt:before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  background: url("/W_images/under_icon06.svg") no-repeat center center #e0a169;
  border: 19px solid #5a3015;
  border-radius: 50%;
  top: -70px;
  left: calc(50% - 80px);
}
.about_box06 {
  padding: 80px 0 140px;
}
.about_b06_txt {
  font-size: 30px;
  text-align: center;
  color: #e0a169;
}
.about_box06 .idx_h2 {
  margin-bottom: 0;
}
.about_b06_item {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
.about_b06_itm_img {
  flex-shrink: 0;
  width: 45%;
  margin: 0;
  border-radius: 50% 50% 50% 50% / 35% 35% 0% 0%;
  overflow: hidden;
}
.about_b06_itm_img img {
  width: 100%;
}
.about_b06_itm_main {
  width: 100%;
  padding-right: 30px;
}
.about_b06_itm_main > li > span {
  display: block;
  font-size: 60px;
  color: #5a3015;
  line-height: 1em;
  font-weight: 700;
  font-family: 'Merriweather', serif;
  margin-bottom: 35px;
}
.about_b06_itm_main > li {
  position: relative;
  padding-left: 60px;
}
.about_b06_itm_main > li:not(:last-child) {
  margin-bottom: 70px;
}
.about_b06_itm_main > li:before {
  content: '';
  position: absolute;
  background: url("/W_images/under_icon03.svg") no-repeat center center/100% auto;
  width: 38px;
  height: 38px;
  left: 0;
  top: 15px;
}
.about_b06_itm_txt li {
  font-size: 18px;
  position: relative;
  padding-left: 20px;
}
.about_b06_itm_txt li:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #5a3015;
  left: 0;
  top: 6px;
  border-radius: 50%;
}
.about_b06_itm_txt li:not(:last-child) {
  margin-bottom: 20px;
}
.about_b06_item:nth-child(2n) {
  flex-direction: row;
}
.about_b06_item:nth-child(2n) .about_b06_itm_main {
  padding: 0 0 0 85px;
}
.about_b06_item:not(:last-child) {
  margin-bottom: 70px;
}
.about_b06_item:nth-child(2) .about_b06_itm_img {
  border-radius: 50% 50% 50% 50% / 35% 35% 35% 35%;
}
.about_b06_item:nth-child(2):after {
  content: '';
  position: absolute;
  background: url("/W_images/under_icon02.png") no-repeat center center/100% auto;
  width: 432px;
  height: 324px;
  right: -207px;
  bottom: 160px;
  pointer-events: none;
}
.about_b06_item:nth-child(2) .about_b06_itm_txt li:not(:last-child) {
  margin-bottom: 50px;
}
.about_b06_item:nth-child(3) .about_b06_itm_img {
  border-radius: 50% 50% 50% 50% / 40% 40% 0% 0%;
}
.about_b06_item:nth-child(3) .about_b06_itm_main {
  padding-bottom: 100px;
}
.about_b06_item:nth-child(3):after {
  content: '';
  position: absolute;
  background: url("/W_images/under_icon05.png") no-repeat center center/100% auto;
  width: 432px;
  height: 324px;
  left: -107px;
  bottom: -197px;
  pointer-events: none;
}
.about_b06_item:nth-child(4) .about_b06_itm_txt li:not(:last-child), .about_b06_item:nth-child(5) .about_b06_itm_txt li:not(:last-child) {
  margin-bottom: 50px;
}
.about_b06_item:nth-child(4) .about_b06_itm_img {
  border-radius: 50% 50% 50% 50% / 40% 40% 0% 0%;
}
.about_b06_item:nth-child(5) .about_b06_itm_img {
  border-radius: 50% 50% 50% 50% / 30% 30% 0% 0%;
}
.about_box07:before {
    content: '';
    position: relative;
    display: block;
    background: url("/userfile/config/PageGioiThieuHanhTrinhBanner06.jpg") no-repeat center center/cover;
    width: 100%;
    height: 482px;
    margin-bottom: 40px;
}
.about_box07 {
  background: #5a3015;
  color: #e0a169;
  padding-bottom: 25px;
}
.about_b07_col {
  display: flex;
  justify-content: space-between;
  padding: 30px 0 75px;
  position: relative;
}
.about_b07_col ul {
  width: calc(50% - 70px);
}
.about_b07_col li {
  font-size: 18px;
  margin-bottom: 40px;
  position: relative;
  padding-left: 20px;
}
.about_b07_col li:last-child {
  margin-bottom: 0;
}
.about_b07_col li:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #e0a169;
  border-radius: 50%;
  left: 0;
  top: 7px;
}
.about_box07 .idx_h2 {
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
}
.about_box07 .idx_h2:after {
  content: '';
  position: relative;
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #e0a169;
  margin-left: 20px;
}
.about_box07 .idx_h2:before {
  content: '';
  position: absolute;
  background: url("/W_images/under_icon04.svg") no-repeat center center/100% auto;
  width: 38px;
  height: 38px;
  left: -60px;
  top: 32px;
}
.about_box08 {
  padding: 190px 0 100px;
  text-align: center;
  position: relative;
}
.about_box08 .idx_h2 {
  color: #5a3015;
  font-family: 'Montserrat', sans-serif;
  font-size: 80px;
}
.about_box08:before {
  content: '';
  position: absolute;
  background: url("/W_images/under_icon06.png") no-repeat center center/100% auto;
  width: 1344px;
  height: 102px;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
}
.about_box08 .form {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
}
.about_box08 .form input[type="text"] {
  width: 100%;
  border: none;
  color: #5a3015;
  border-bottom: 1px solid #5a3015;
  padding: 5px 0;
  margin-bottom: 30px;
}

.about_box08 .form input[type="text"]::-webkit-input-placeholder {
  color: #5a3015;
}
.about_box08 .form input[type="text"]::-moz-placeholder {
  color: #5a3015;
}
.about_box08 .form input[type="text"]:-ms-input-placeholder {
  color: #5a3015;
}
.about_box08 .form input[type="text"]:-moz-placeholder {
  color: #5a3015;
}
.about_b08_row {
  display: flex;
  text-align: left;
  margin-bottom: 25px;
}
.about_b08_row input#contact {
  border: 1px solid #5a3015;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-right: 30px;
}
.about_b08_row label {
  font-size: 16px;
}
.about_box08 button {
  color: #e0a169;
  font-size: 20px;
  background: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  padding: 10px 15px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid #e0a169;
}
.about_box08 button:hover {
  color: #fff;background: #e0a169;
}
#footer {
  background: #5a3015;
  padding: 50px 0;
  color: #e0a169;
  border-bottom: 20px solid #e0a169;
}
.f_col {
  display: flex;
  justify-content: space-between;
}
.f_mod:nth-child(2) {
  width: 35%;
}
.f_logo {
  margin-bottom: 60px;
}
.f_menu a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
}
.f_menu a:hover {
  text-decoration: underline;
}
.f_menu li:not(:last-child) {
  margin-bottom: 30px;
}
.f_info span {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}
.f_info {
  font-size: 20px;
  margin-bottom: 25px;
}
.f_info a {
  text-decoration: none;
  color: #e0a169;
}
.copyright {
  margin: 40px 0 0;
  font-size: 16px;
  font-style: italic;
}
.f_tel a {
    font-size: 180%;
    line-height: 1em;
  margin-top: 5px;
  display: inline-block;
}
.f_col:last-child {
    flex-direction: row-reverse;
  align-items: flex-end;
}
.f_col:last-child .f_mod:nth-child(2) {
  width: 65%;
}
.f_col:last-child .f_mod:nth-child(1) {
  width: 35%;
}
.f_social dt {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.f_social {
  border-top: 2px solid #e0a169;
  margin-top: 30px;
  padding-top: 40px;
}
.f_social dd {
  display: flex;
  justify-content: space-between;
}
.mimex_search {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.mimex_box02 .idx_h2 {
  background: url("/W_images/mimex_icon.png") no-repeat top center;
  padding-top: 100px;
}
.mimex_search input {
    width: 540px;
    border: 1px solid #e0a169;
    font-size: 18px;
    color: #5a3015;
    padding: 8px 40px;
    position: relative;
  background: url("/W_images/mimex_search.svg") no-repeat left 2px center/32px auto;
}
.mimex_search input::-webkit-input-placeholder {
  color: #5a3015;
}
.mimex_search input::-moz-placeholder {
  color: #5a3015;
}
.mimex_search input:-ms-input-placeholder {
  color: #5a3015;
}
.mimex_search input:-moz-placeholder {
  color: #5a3015;
}
.mimex_search button[type="reset"] {
    border: none;
    background: none;
    margin-left: -33px;
    cursor: pointer;
  position: relative;
  z-index: 2;
}
.mimex_search .button_search {
    text-decoration:none;
    border: 1px solid #e0a169;
    color: #e0a169;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    background: #fff;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s;
}
    .mimex_search .button_search:hover {
        background: #e0a169;
        color: #fff;
    }
.mimex_search select {
    border: 1px solid #e0a169;
    font-size: 18px;
    padding: 5px 20px;color: #5a3015;
}
.mimex_search option {
  background: #e0a169;
  padding: 5px;
}
.mimex_b02_list {
    display: flex;
    flex-wrap: wrap;
}
.mimex_b02_item {
    width: calc(33.33% - 16px);
    margin: 0 24px 34px 0;
  position: relative;
  z-index: 2;
    transition: all 0.3s;
}
.mimex_b02_item a {
    display: block;
    text-decoration: none;
    background: #5a3015;
    color: #fff;
    height: 100%;
}
.mimex_b02_item:hover {
  transform: translateY(-10px);
}
.mimex_b02_item:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 10px;
  left: -10px;
  border: 1px solid #e0a169;
  z-index: -2;
  pointer-events: none;
}
.mimex_b02_itm_img {
  margin: 0;
  position: relative;
}
.mimex_b02_itm_img:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(90,48,21);
background: linear-gradient(0deg, rgba(90,48,21,0.7) 0%, rgba(90,48,21,0.05) 67%);
}
.mimex_b02_itm_main {
    padding: 18px;
}
.mimex_b02_itm_ttl {
    font-size: 30px;
    color: #e0a169;
    font-weight: 700;
    line-height: 1.5em;
    margin-bottom: 10px;
  font-family: 'Merriweather', serif;
}
.mimex_b02_itm_txt {
    font-size: 16px;
  margin-bottom: 15px;
}
.mimex_b02_itm_btn {
    margin: 0;
    font-size: 20px;
    border: 1px solid #e0a169;
    display: inline-block;
    font-weight: 700;
    color: #e0a169;
    padding: 6px 15px;
}
.mimex_b02_item:nth-child(3n) {
  margin-right: 0;
}
/*.pager {
    display: flex;
    justify-content: center;
}
.pager a, .pager span {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #e0a169;
    transition: all 0.3s;
    font-size: 20px;
  position: relative;
}
.pager span, .pager a:hover {
  background: #5a3015;
  font-weight: 700;
}
.prev a, .next a {
  text-indent: -50000px;
}
.prev a:after, .next a:after {
  content: '';
  position: absolute;
  border: solid #5a3015;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: calc(50% - 4px);
  left: calc(50% - 7px);
}
.prev a:after {
  
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  left: calc(50% - 4px);
}
.prev {
  margin-right: 30px;
}
.next {
  margin-left: 30px;
}
.pager a:hover:after {
  border-color: #fff;
}*/
.pager {
    margin: 45px 0 0;
    text-align: center;
}

    .pager a {
        padding: 4px 11px;
        text-align: center;
        text-decoration: none;
        border: 1px solid #fff;
        color: #5a3015;
        transition: all 0.5s ease;
        background: #fff;
    }

        .pager a:hover {
            border: 1px solid #fff;
            color: #e0a169;
            background: #5a3015;
            box-shadow: 0px 0px 0px 1px #5a3015;
        }

    .pager strong {
        padding: 4px 11px;
        text-align: center;
        text-decoration: none;
        border: 1px solid #fff;
        color: #e0a169;
        font-weight: normal;
        background: #5a3015;
        box-shadow: 0px 0px 0px 1px #5a3015;
    }

    .pager a:first-child {
        padding: 4px 11px;
        background: #fff;
        color: #5a3015;
    }

        .pager a:first-child:hover {
            background: #5a3015;
            color: #fff;
            border-color: #fff;
            box-shadow: 0px 0px 0px 1px #5a3015;
        }

    .pager a:last-child {
        padding: 4px 11px;
        background: #e0a169;
    }

        .pager a:last-child:hover {
            background: #5a3015;
            color: #e0a169;
            border-color: #fff;
            box-shadow: 0px 0px 0px 1px #5a3015;
        }
.mimex_box02 {
  padding-bottom: 50px;
}
.mimex_b03_list {
    display: flex;
    justify-content: space-between;
}
.mimex_b03_img {
    margin: 0;
    flex-shrink: 0;
    width: 60%;
    border-radius: 30px;
    overflow: hidden;
}
.mimex_b03_main {
    width: calc(40% + 40px);
    margin-left: -40px;
    position: relative;
    background: #5a3015;
    color: #e0a169;
    display: flex;
    align-items: center;
    padding: 0 40px 0 120px;
}
.mimex_b03_main:before {
  content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: url(/W_images/under_icon06.svg) no-repeat center center #e0a169;
    border: 19px solid #5a3015;
    border-radius: 50%;
    left: -70px;
    top: calc(50% - 80px);
}
.mimex_b03_main p {
  font-size: 30px;
  margin: 0;
  font-family: 'Merriweather', serif;
  font-weight: 700;
}
.mimex_box03 {
  padding-bottom: 100px;
}
.mimex_box04 {
  background: #5a3015;
  padding-bottom: 120px;
  position: relative;
}
.mimex_box04:after {
  content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: url(/W_images/under_icon06.svg) no-repeat center center #e0a169;
    border: 19px solid #5a3015;
    border-radius: 50%;
  bottom: 30px;
  z-index: 5;
    left: calc(50% - 80px);
}
.mimex_b04_slide .slick-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #e0a169;
  border-radius: 50%;
  outline: none;
  border: none;
  top: calc(50% - 20px);
  z-index: 5;
  cursor: pointer;
  text-indent: -50000px;
  right: 10%;
  transition: all 0.3s;
}
.mimex_b04_slide .slick-arrow:hover {
  background: #5a3015;
}
.mimex_b04_slide .slick-prev {
  left: 10%;
  right: auto;
}
.mimex_b04_slide .slick-arrow:after {
  content: '';
  position: absolute;
  border: solid #5a3015;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: calc(50% - 5px);
  left: 13px;
  transition: all 0.3s;
}
.mimex_b04_slide .slick-prev:after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  left: 17px;
}
.mimex_b04_slide .slick-arrow:hover:after {
  border-color: #fff;
}

.mimex_b04_slide .slick-dots {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 80px;
}
.mimex_b04_slide .slick-dots button {
    width: 10px;
    height: 10px;
    background: #fff;
    border: none;
    border-radius: 50%;
    text-indent: -5000000px;
    cursor: pointer;
    margin: 0 5px;
  opacity: 0.5;
}
  .mimex_b04_slide .slick-dots li {
    line-height: 0;
  }
.mimex_b04_slide .slick-dots li.slick-active button {
  opacity: 1;
}
.mimex_box04.project_slide {
    background: none;
    padding: 0;
}
.mimex_box04.project_slide:after {
  display: none;
}
.project_slide .mimex_b04_slide .slick-dots {
  bottom: 30px;
}
.project_box01 {
    padding: 40px 0 115px;
}
.project_date {
    position: relative;
    margin: 0 0 10px;
}
.project_date:before {
  content: '';
  position: absolute;
  background: url("/W_images/under_icon03.svg") no-repeat center center/100% auto;
  width: 38px;
  height: 38px;
  top: -2px;
  left: -50px;
}
.project_ttl {
    font-size: 60px;
    color: #e0a169;
    line-height: 1.5em;
    font-weight: 700;
    margin: 0 0 10px;
  font-family: 'Merriweather', serif;
}
.project_txt {
    font-size: 20px;
    font-style: italic;
    max-width: 50%;
    margin: 0;
}
.project .b03_item:nth-child(1):after, .project .b03_item:nth-child(2):after {
  display: none;
}
.project .b03_item {
    flex-direction: row-reverse;
}
.project .b03_itm_img {
  margin: 0 0 0 30px;
}
.project .b03_itm_txt {
    font-size: 24px;
    margin: 0;
}
.project .b03_item:nth-child(2n) {
    flex-direction: row;
}
.project .b03_item:nth-child(2) .b03_itm_img {
  margin: 0 30px 0 0;
  border-radius: 30% 0% 0% 0% / 30% 0% 0% 0% ;
}
.project .b03_item:nth-child(2n) .b03_itm_main {
    width: 100%;
}
.vietnam_b01_cont {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.vietnam_b01_img {
    flex-shrink: 0;
    margin: 0 0 0 30px;
    border-radius: 0% 35% 0% 0% / 0% 35% 0% 0%;
    overflow: hidden;
}
.vietnam_b01_main {
    width: 100%;
}
.vietnam_b01_txt, .vietnam_b01_main p {
    position: relative;
}
.vietnam_b01_txt:before, .vietnam_b01_main p:before {
  content: '';
  position: absolute;
  background: url("/W_images/under_icon03.svg") no-repeat center center/100% auto;
  width: 38px;
  height: 38px;
  top: -2px;
  left: -55px;
}
.vietnam_b01_list li, .vietnam_b01_main li {
    font-size: 18px;
    position: relative;
    margin-bottom: 40px;
    padding-left: 20px;
}
.vietnam_b01_list li:before, .vietnam_b01_main li:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #5a3015;
  border-radius: 50%;
  left: 0;
  top: 6px;
}
.vietnam_b01_list li:last-child, .vietnam_b01_main li:last-child {
  margin-bottom: 0;
}
.vietnam_box01 {
  padding: 0 0 95px;
}
.premium_item {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-left: 70px;
  align-items: center;
  margin-bottom: 110px;
  position: relative;
}
.premium_itm_img {
    flex-shrink: 0;
    width: 55%;
    margin: 0 0 0 40px;
  border-radius: 30% 0% 0% 0% / 32% 0% 0% 0% ;
  overflow: hidden;
}
.premium_itm_img img {
  width: 100%;
}
.premium_item:last-child {
  margin-bottom: 0;
}
.premium_item:nth-child(1):before{
    content: '';
    position: absolute;
    background: url(/W_images/under_icon05.png) no-repeat center center/100% auto;
    width: 432px;
    height: 324px;
    left: -90px;
  top: -20px;
    pointer-events: none;
}
.premium_itm_main p {
    margin: 0;
}
.premium_item:nth-child(2n) {
  flex-direction: row;
}
.premium_item:nth-child(2n) .premium_itm_img {
  margin: 0 40px 0 0;
  border-radius: 0% 0% 0% 30% / 0% 0% 0% 30% ;
}
.premium_item:nth-child(3) .premium_itm_img {
  border-radius: 0% 0% 30% 0% / 0% 0% 30% 0% ;
  width: 40%;
}
.premium_item:nth-child(3) {
  padding: 0 100px;
}
.premium_itm_ttl {
    font-size: 60px;
    color: #e0a169;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 30px;
  font-family: 'Merriweather', serif;
}
.premium_item:nth-child(1) .premium_itm_main {
    padding-left: 30px;
    padding-top: 100px;
}

/*
  font-family: 'Merriweather', serif;
  font-family: 'Montserrat', sans-serif;
*/
@media screen and (max-width: 1400px) {
  .container {
    padding: 0 3%;
  }
  #index .mainvisual .container {
    padding: 0 15px;
  }
.main_item {
    margin-right: 20px;
}
.idx_logo img:first-child {
    width: 120px;
  margin-bottom: 15px;
}
.idx_logo img:last-child {
    width: 90px;
}
}
@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: 100px;
  }
  #main, #footer {
    min-width: 100%;
  }
  .container {
    padding: 0 3%;
    width: 100%;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon {
    width: 24px;
    height: 43px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    cursor: pointer;
    padding: 8px 0;
    z-index: 99999;
    background: transparent;
    position: absolute;
    top: 0;
    left: 4%;
  }
  .menu-icon span {
    display: block;
    margin: 0 auto 15px;
    width: 100%;
    height: 2px;
    background-color: #e0a169;
    -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: 100%;
    height: 2px;
    background-color: #e0a169;
    -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: -8px;
  }
  .menu-icon span::after {
    margin-top: 8px;
  }
  .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: 40px;
    position: absolute;
    background: rgba(255, 255, 255, 0);
    right: 0;
    top: 0 !important;
    transform: none !important;
    border: none !important;
  }
  .gnv-ico:before {
    content: '';
    position: absolute;
    border: solid #e0a169;
    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);
  }
  #totop {
    width: 40px;
    right: 3%;
    bottom: 50px;
    line-height: 0;
  }
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: none;
  }
.logo {
    margin: 0 auto;
    width: auto;
}
  .h_search {
    margin: 0 0 30px;
  }
.h_search_form {
    position: relative;
    display: block;
    background: transparent;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-bottom: 1px solid #e0a169;
}
  .h_search_form .button {
    background: url("/W_images/icon_search_sp.png") no-repeat center center/100% auto;
    width: 18px;
    height: 18px;
    text-indent: -50000px;
    padding: 0;
  }
.h_search_form input {
    padding: 3px;
  font-size: 12px;
}
.h_search_form input::-webkit-input-placeholder {
  color: #e0a169;
}
.h_search_form input::-moz-placeholder {
  color: #e0a169;
}
.h_search_form input:-ms-input-placeholder {
  color: #e0a169;
}
.h_search_form input:-moz-placeholder {
  color: #e0a169;
}
  .h_search_ttl {
    display: none;
  }
.h_right {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #5a3015;
    left: 0;
    top: 0;
    padding: 10px 4% 30px;
    overflow: auto;
  display: none;
}
.h_lang {
    justify-content: center;
}
.h_lang a {
  font-size: 14px;
}
.logo_gnv {
    text-align: center;
  margin-bottom: 60px;
}
.logo_gnv img:first-child {
    margin: 0 0 20px;
    width: 44px;
}
.logo_gnv img:last-child {
    width: 60px;
}
  .gnavi {
    display: block;
    margin-bottom: 60px;
  }
  .gnavi > li {
    width: 100%;
    margin: 0;
  }
  .gnavi > li > a {
    padding: 10px 20px;
    display: block;
    font-size: 16px;
  }
  .submenu {
    width: 100%;
    position: relative;
    padding: 0;
    background: none;
  }
  .submenu a {
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
    color: #fff;
  }
#index .mainvisual {
    height: auto;
    padding: 15px 0 40px;
}
  .logo .sp img {
    display: block;
    margin: 0 auto;
}
  .logo .sp img:not(:last-child) {
    margin-bottom: 10px;
  }
  .logo .sp img:nth-child(2) {
    width: 50px;
  }
.idx_logo {
  display: none;
}
.idx_logo img:last-child {
    width: 60px;
}
.main_list {
    flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 5px;
}
.main_item {
    width: calc(50% - 10px);
    margin: 0 0 20px!important;
}
.main_item a:after {
    left: -5px;
    top: -5px;
}
  .main_itm_img img {
    width: 100%;
  }
.b01_txt {
    font-size: 14px;
    max-width: 100%;
}
.box01 {
    padding: 30px 0;
}
.b02_txt:before {
    width: 100px;
    height: 100px;
    border-width: 10px;
    background-size: 55px auto;
    top: -40px;
    left: calc(50% - 50px);
}
.b02_txt {
    padding: 70px 0 30px;
}
.b02_txt_info {
    font-size: 14px;
    padding: 0;
  margin-bottom: 15px;
}
.box03 {
    padding: 30px 0;
}
.idx_btn a {
    font-size: 14px;
    padding: 5px 15px 6px;
}
.b03_txt {
    font-size: 14px;
    margin-bottom: 30px;
}
.b03_item {
    display: block;
  margin-bottom: 35px;
}
.b03_itm_img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
}
.idx_h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.b03_item:nth-child(1):after {
    width: 200px;
    right: -40px;
    bottom: -14px;
    height: 150px;
}
  .b03_item:nth-child(3):after {
    width: 200px;
    right: -40px;
    bottom: -72px;
    height: 150px;
}
.b03_item:nth-child(2):after {
    width: 200px;
    left: -40px;
    bottom: -74px;
    height: 150px;
}
.b03_item:nth-child(2n) .b03_itm_img {
    margin: 0 auto 20px;
}
  .b03_itm_main .b03_itm_txt {
    padding-right: 30%;
}
.b03_item:nth-child(2n) .b03_itm_main {
    width: 100%;
    text-align: right;
}
.b03_item:nth-child(2n) .b03_itm_main .b03_itm_txt {
    padding: 0 0 0 30%;
}
.b03_item:nth-child(2n) .idx_btn {
  text-align: right;
}
  .under .mainvisual {
    height: 55vw;
  }
  .about_main img {
    width: 25vw;
  }
  .about_box01 {
    padding: 40px 0;
  }
  .idx_h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .about_b01_txt {
    width: 100%;
    font-size: 14px;
    margin-bottom: 30px;
  }
  .about_b01_list:after {
    display: none;
  }
  .about_b01_list {
    display: block;
  }
  .about_b01_img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }
  .about_b01_info {
    width: 100%;
    text-align: center;
  }
.about_b02_main {
    flex-direction: column-reverse;
}
  .about_b02_img {
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0;
    padding: 0;
    border-top-right-radius: 35%;
}
  .about_b02_list {
    width: 100%;
    padding: 0;
  }
  .about_b02_list li:not(:last-child) {
    margin-bottom: 20px;
  }
  .about_b02_list li:before {
    width: 20px;
    height: 20px;
  }
  .about_b02_list li {
    padding-left: 30px;
  }
  .about_box02 {
    margin-bottom: 40px;
    background: url("/W_images/under_icon07.png") no-repeat top center;
    padding-top: 80px;
  }
  .about_box03 {
    padding: 40px 0 10px;
  }
  .about_b03_txt {
    width: 100%;
    font-size: 14px;
    margin-bottom: 30px;
  }
  .about_b03_list {
    flex-wrap: wrap;
    padding: 0 10px;
  }
  .about_b03_item {
    width: calc(50% - 7px);
    margin-bottom: 30px;
  }
  .about_b03_item a:after {
    top: 5px;
    left: -5px;
}
  .about_b04_item {
    display: block;
    margin-bottom: 40px !important;
  }
  .about_b04_itm_img {
    width: 90%;
    max-width: 400px;
    margin: 0 auto 20px;
  }
  .about_b04_itm_ttl {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 35px;
  }
.about_b04_itm_ttl span {
    font-size: 20px;
    margin-bottom: 0;
}
  .about_b04_itm_ttl:before {
    width: 20px;
    height: 20px;
    top: 6px;
  }
  .about_b04_itm_txt {
    margin: 0 0 0 35px;
  }
  .about_b04_item:nth-child(1):after, .about_b04_item:nth-child(3):after, .about_b04_item:nth-child(4):after {
    display: none;
  }
  .about_b04_itm_main {
    padding: 0;
  }
  .about_b04_item:nth-child(2n) .about_b04_itm_img {
    margin: 0 auto 20px;
  }
  .about_b05_txt p {
    font-size: 16px;
  }
.about_b05_txt:before {
    width: 100px;
    height: 100px;
    border-width: 10px;
    background-size: 55px auto;
    top: -40px;
    left: calc(50% - 50px);
}
  .about_b05_txt {
    padding: 80px 0 30px;
  }
  .about_box06 {
    padding: 40px 0 0;
  }
  .about_b06_txt {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .about_b06_item {
    display: block;
  }
  .about_b06_item:not(:last-child) .about_b06_itm_img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    display: none;
  }
  .about_b06_itm_main > li:before {
    width: 20px;
    height: 20px;
    top: 2px;
  }
  .about_b06_itm_main > li > span {
    font-size: 20px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    position: relative;
}
.about_b06_itm_txt {
    padding: 15px 0 0 38px;
  display: none;
}
.about_b06_itm_main > li > span:after {
    content: '';
    position: relative;
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #e0a169;
    margin-left: 15px;
}
  .about_b06_itm_main > li > span:before {
    content: '';
    position: absolute;
    border: solid #5a3015;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
    right: -20px;
    top: calc(50% - 7px);
    transition: all 0.3s;
}
  .about_b06_itm_main > li {
    padding-left: 26px;
  }
  .about_b06_itm_main {
    padding: 0 30px 0 0!important;
  }
  .about_b06_itm_txt li {
    font-size: 14px;
  }
  .about_b06_itm_txt li:before {
    width: 6px;
    height: 6px;
  }
  .about_b06_itm_main > li:not(:last-child) {
    margin-bottom: 30px;
  }
  .about_b06_itm_txt li:not(:last-child) {
    margin-bottom: 15px;
  }
  .about_b06_item:nth-child(2n) .about_b06_itm_main {
    padding: 0;
  }
  .about_b06_item:nth-child(2) .about_b06_itm_txt li:not(:last-child), .about_b06_item:nth-child(4) .about_b06_itm_txt li:not(:last-child), .about_b06_item:nth-child(5) .about_b06_itm_txt li:not(:last-child) {
    margin-bottom: 15px;
  }
  .about_b06_item:nth-child(2):after, .about_b06_item:nth-child(3):after, .about_box08:before {
    display: none;
  }
  .about_b06_item:not(:last-child) {
    margin-bottom: 30px !important;
  }
  .about_b06_item:nth-child(3) .about_b06_itm_main {
    padding: 0;
  }
  .about_b06_item:last-child {
    display: flex;
    flex-direction: column;
}
.about_b06_item:nth-child(5) .about_b06_itm_img {
    width: 100vw;
    margin: 60px -3vw 0 0;
  order: 2;
}
  .about_b06_itm_main:not(:last-child) {
    margin-bottom: 30px;
}
.about_box07 {
    display: none;
}
  .about_box07:before {
    height: 300px;
  }
  .about_b07_col {
    display: block;
    padding: 0;
  }
  .about_b07_col ul {
    width: 100%;
    margin-bottom: 20px;
  }
  .about_b07_col li {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .about_b07_col li:before {
    width: 6px;
    height: 6px;
    top: 5px;
  }
  .about_box08 {
    padding: 120px 0 40px;
    background: url("/W_images/under_icon08.png") no-repeat top 40px center;
  }
  .about_box08 button:after {
    width: 100%;
    left: 0;
}
  .about_box08 .idx_h2 {
    font-size: 24px;
  }
  .about_b08_row input#contact {
    width: 24px;
    height: 24px;
    margin-right: 20px;
  }
  .about_b08_row label {
    font-size: 12px;
  }
  .about_box08 button {
    font-size: 16px;
  }
  #footer {
    padding: 20px 0;
    border-bottom-width: 15px;
  }
  .f_info {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .f_info span {
    margin-bottom: 5px;
  }
.copyright {
    font-size: 10px;
    margin: 20px 0 0;
}
  .about_b03_itm_txt {
    font-size: 14px;
    margin: 0 0 0 10px;
  }
  .about_b03_itm_ttl {
    font-size: 16px;
    white-space: normal;
  }
  .about_b04_line {
    background: url("/W_images/under_icon07.png") no-repeat top center;
    height: 57px;
    margin-bottom: 30px;
  }
  .about_b04_line:before, .about_b04_line:after {
    display: none;
  }
.f_logo {
    margin-bottom: 30px;
}
.f_logo img {
    width: 130px;
}
.f_col {
    display: block;
}
.f_mod {
    width: 100%!important;
}
.f_menu li:not(:last-child) {
    margin-bottom: 15px;
}
.f_menu {
    border-bottom: 1px solid #e0a169;
    padding: 0 0 25px;
    margin-bottom: 20px;
}
.f_social {
    border: none;
    padding: 0;
    margin-top: 20px;
}
.f_social dt {
    font-size: 12px;
    margin-bottom: 10px;
}
.f_social img {
    width: 32px;
}
.about_box08 .form input[type="text"] {
    font-size: 16px;
}
  .mimex_box02 .idx_h2 {
    background-image: url("/W_images/under_icon07.png");
    padding-top: 70px;
  }
.mimex_search {
    flex-wrap: wrap;
}
.mimex_search select {
    width: 100%;
    max-width: 350px;
    margin: 10px auto 0 0;
  font-size: 14px;
}
.mimex_search .button_search {
    font-size: 14px;
}
.mimex_search input {
    width: calc(100% - 83px);
  font-size: 14px;
}
  .mimex_b02_item:nth-child(n+4) {
    display: none;
  }
.mimex_b02_item {
    width: 100%;
    margin: 0 0 30px;
}
  .mimex_b02_itm_img img {
    width: 100%;
  }
.mimex_b02_itm_ttl {
    font-size: 20px;
}
.mimex_b02_itm_txt {
    font-size: 14px;
}
.mimex_b02_itm_btn {
    font-size: 14px;
}
.pager a, .pager span {
    width: 26px;
    height: 26px;
    font-size: 14px;
}
.prev {
    margin-right: 10px;
}
.next {
    margin-left: 10px;
}
.mimex_b03_list {
    display: block;
}
.mimex_b03_img {
    border-radius: 6vw;
    width: 100%;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.mimex_b03_main {
    width: 100%;
    margin: 0;
    padding: 70px 20px 30px;
    border-bottom-left-radius: 6vw;
    border-bottom-right-radius: 6vw;
}
.mimex_b03_main:before {
    width: 100px;
    height: 100px;
    top: -40px;
    left: calc(50% - 50px);
    border-width: 10px;
    background-size: 50px auto;
}
.mimex_b03_main p {
    text-align: center;
    font-size: 14px;
}
.mimex_box03 {
    padding-bottom: 50px;
}
  .mimex_box04:after {
    display: none;
  }
.mimex_box04 {
    padding: 0 0 20px;
}
.mimex_b04_slide .slick-arrow {
    width: 26px;
    height: 26px;
    top: calc(50% - 13px);
  right: 5%;
}
.mimex_b04_slide .slick-arrow:after {
    border-width: 0 1px 1px 0;
    padding: 3px;
    top: calc(50% - 4px);
    left: 8px;
}
.mimex_b04_slide .slick-prev {
    left: 5%;
}
.mimex_b04_slide .slick-prev:after {
    left: 11px;
}
  .mimex_b04_slide .slick-dots {
    bottom: 10px;
  }
.mimex_b04_slide .slick-dots button {
    width: 8px;
    height: 8px;
    margin: 0 3px;
}
.project_date {
    padding-left: 30px;
}
.project_date:before {
    width: 20px;
    height: 20px;
    left: 0;
}
.project_ttl {
    font-size: 24px;
    padding-left: 30px;
}
.project_txt {
    font-size: 14px;
    max-width: 100%;
    padding-left: 30px;
    margin-bottom: 20px;
}
.project .b03_item {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}
.project .b03_itm_main .b03_itm_txt {
    padding: 0 0 0 30px;
    font-size: 14px;
}
.project .b03_item:nth-child(2n) {
    flex-direction: column-reverse;
}
.project .b03_item:nth-child(2n) .b03_itm_main .b03_itm_txt {
    padding: 0;
}
.project .b03_item:nth-child(2n) .b03_itm_main {
    text-align: left;
    padding-left: 30px;
    margin-bottom: 20px;
}
  .project .b03_item:nth-child(1) .b03_itm_main {
    padding-bottom: 20px;
}
.project_box01 {
    padding: 40px 0;
}
.project .b03_item:nth-child(2) .b03_itm_img, .project .b03_itm_img {
    margin: 0;
}
.vietnam_b01_cont {
    display: block;
}
.vietnam_b01_img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    border-radius: 0% 30% 0% 0% / 0% 30% 0% 0%;
}
.vietnam_b01_main {
    padding-left: 30px;
}
.vietnam_b01_txt:before,.vietnam_b01_main p:before {
    width: 20px;
    height: 20px;
    left: -31px;
}
.vietnam_b01_list li, .vietnam_b01_main li {
    font-size: 14px;
    margin-bottom: 15px;
  padding-left: 15px;
}
.vietnam_b01_list li:before, .vietnam_b01_main li:before {
    width: 6px;
    height: 6px;
    top: 5px;
}
.vietnam_box01 {
    padding: 0 0 40px;
}
.about_main.vietnam img {
    width: 40vw;
}
.about_main.mimex img {
    width: 35vw;
}
.premium_item {
    display: block;
    padding: 0;
    margin-bottom: 40px;
}
  .premium_item:nth-child(1):before {
    display: none;
  }
.premium_itm_img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
}
.premium_item:nth-child(1) .premium_itm_main {
    padding: 0;
}
.premium_itm_ttl {
    font-size: 22px;
    margin: 0 0 10px;
}
.premium_item:nth-child(2n) .premium_itm_img {
    margin: 0 0 20px;
}
.premium_item:nth-child(3) {
    padding: 0;
}
.premium_item:nth-child(3) .premium_itm_img {
    width: 100%;
}
}
@media screen and (max-width: 640px) {
.main_itm_info {
    padding: 5%;
}
.main_itm_info_txt {
    font-size: 12px;
    height: 47px;
}
.main_itm_info_ttl {
    font-size: 16px;
    margin-bottom: 5px;
}
.main_itm_info_img {
    padding: 0 20px 10px;
    margin-bottom: 7px;
}
}
@media screen and (max-width: 520px) {
.main_itm_info_txt {
    height: 64px;
}
}
@media screen and (max-width: 425px) {
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
    font-size: 12px;
  }
.about_b03_itm_main {
    padding: 10px 3vw;
}
.about_b03_itm_txt {
    margin: 0;
    font-size: 2.5vw;
}
.about_b03_itm_ttl {
    font-size: 2.7vw;
}
.about_b06_itm_txt li, .about_b03_txt, .about_b06_txt, .b01_txt, .b02_txt_info, .b03_txt, .b03_itm_txt {
    font-size: 12px;
}
.idx_h2 {
    font-size: 18px;
}
.main_itm_info_txt {
    font-size: 2.8vw;
    height: 16vw;
}
.main_itm_info_ttl {
    font-size: 4vw;
}
.main_item:last-child .main_itm_info_txt {
    height: 21vw;
}
.b02_txt:before {
    width: 80px;
    height: 80px;
    left: calc(50% - 40px);
    top: -30px;
    background-size: 45px auto;
}
.b02_txt {
    padding: 60px 0 30px;
}
.b03_itm_main {
    padding: 0;
}
.b03_item:nth-child(1) .b03_itm_main {
    padding-bottom: 0;
}
.b03_item:nth-child(1):after {
    width: 117px;
    right: -20px;
    bottom: -57px;
    height: 117px;
}
.b03_item:nth-child(2n) .b03_itm_main {
    padding: 0;
}
  .b03_itm_main .b03_itm_txt , .b03_item:nth-child(2n) .b03_itm_main .b03_itm_txt {
    padding: 0;
}
.mimex_b02_itm_ttl {
    font-size: 16px;
}
.mimex_b02_itm_txt, .mimex_b02_itm_btn, .project_txt, .project .b03_itm_main .b03_itm_txt, .vietnam_b01_list li, .vietnam_b01_main li {
    font-size: 12px;
}
.project_ttl {
    font-size: 18px;
}
}