@charset "UTF-8";
/* ==========================================================================
	SCSS Extend & Mixin
========================================================================== */
footer, .topBar .sp span {
  font-family: Arial, sans-serif;
}

footer, .welfare .info .item li, header .menu a, .project .btn_more, .job .btn_more {
  display: flex;
  justify-content: center;
  align-items: center;
}

.project .swiper, .project, .about .info, .welfare .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.welfare .info .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

header .menu, header .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.project, .welfare {
  background-image: url(../img/bg_cover.jpg);
  background-position: center;
  background-repeat: repeat;
}

.about .info, .welfare .info {
  width: 100%;
}
.about .info img, .welfare .info img {
  width: 550px;
}

.project .btn_more, .job .btn_more {
  margin: 30px auto 0;
  padding-bottom: 2px;
  width: 250px;
  height: 45px;
  font-size: 18px;
  color: #ffffff;
  line-height: 1;
  background-color: #a48b78;
  border-radius: 4px;
}
.project .btn_more:hover, .job .btn_more:hover {
  background-color: #8c7664;
}

/* ==========================================================================
	Wrap
========================================================================== */
a, a > *, a::before, button, button > * {
  display: inline-table;
  transition: 0.3s;
}

.topBar {
  position: fixed;
  z-index: 1000;
  top: 0;
  padding: 0 10px;
  width: 100%;
  height: 30px;
  background-color: #000000;
}
.topBar > * {
  font-size: 12px;
  color: #ffffff;
  line-height: 29px;
  letter-spacing: 2px;
}
.topBar .btn_back {
  float: left;
}
.topBar .btn_back img {
  display: inline;
  width: 10px;
  height: 10px;
  margin: 0 8px 2px 0;
}
.topBar .sp {
  float: right;
  color: #ffffff;
}
.topBar .sp span {
  margin-right: 4px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}

.wrap {
  position: relative;
  min-width: 1180px;
  color: #333333;
  overflow: hidden;
  font-family: "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "PingFang TC", "儷黑 Pro", "LiHei Pro", "文泉驛正黑", "WenQuanYi Zen Hei", Helvetica, Arial, sans-serif;
}

header {
  position: fixed;
  z-index: 99;
  top: 30px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 3px 5px 0 rgba(57, 68, 79, 0.1);
}
header .head {
  margin: 0 auto;
  padding: 0 40px;
  max-width: 1180px;
  min-width: 900px;
  height: 100px;
}
header .head_m {
  display: none;
}
header .logo {
  margin-bottom: 15px;
  width: 160px;
}
header .menu a {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 2px;
  width: 120px;
  height: 30px;
  font-size: 16px;
  color: #333333;
  line-height: 1;
}
header .menu a:hover {
  color: #ffffff;
}
header .menu a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
header .menu a:hover::before {
  background-color: #a48b78;
}

section {
  position: relative;
}
section .content {
  position: relative;
  padding: 90px 40px;
  margin: 0 auto;
  width: 100%;
  max-width: 1180px;
}
section .content h1 {
  margin-bottom: 60px;
  font-size: 36px;
  color: #a48b78;
  line-height: 1;
  text-align: center;
  font-weight: 500;
}

.home {
  height: 950px;
}
.home .bgSlide {
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 820px;
}
.home .bgSlide:before, .home .bgSlide:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home .bgSlide:before {
  background-image: url(../img/bg_1.jpg);
}
.home .bgSlide:after {
  background-image: url(../img/bg_2.jpg);
  animation: bgSlide 15s ease 0s infinite;
}
@keyframes bgSlide {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 100;
  }
  90% {
    opacity: 100;
  }
  100% {
    opacity: 0;
  }
}
.home .content {
  padding: 270px 40px 0;
}
.home .txt {
  padding: 35px 50px;
  width: 550px;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.home .txt h1 {
  margin-bottom: 25px;
  font-size: 50px;
  color: #333333;
}
.home .txt p {
  font-size: 18px;
  color: #333333;
  line-height: 1.8;
  text-align: justify;
}

.job .table {
  width: 100%;
  border: #888888 1px solid;
}
.job .table th, .job .table td {
  font-size: 18px;
  text-align: center;
}
.job .table th {
  padding: 13px 5px 15px;
  color: #ffffff;
  font-weight: 400;
  background-color: #a48b78;
  border-right: #c6a993 1px solid;
}
.job .table th:last-child {
  border-right: none;
}
.job .table th:nth-child(1) {
  width: 18%;
}
.job .table th:nth-child(2) {
  width: 20%;
}
.job .table th:nth-child(3) {
  width: 37%;
}
.job .table th:nth-child(4) {
  width: 25%;
}
.job .table td {
  padding: 15px 5px;
  color: #333333;
  background-color: #ffffff;
  border-right: #e3e2df 1px solid;
}
.job .table td:last-child {
  border-right: none;
}
.job .table tr:nth-child(odd) td {
  background-color: #fcf9ed;
}
.job .btn_job {
  padding-bottom: 2px;
  width: 160px;
  height: 36px;
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  background-color: #3b4578;
  border-radius: 4px;
}
.job .btn_job:hover {
  background-color: #5365c3;
}
.welfare .info .item {
  margin-left: 35px;
  width: calc(100% - 585px);
}
.welfare .info .item li {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 2px;
  width: 48%;
  height: 60px;
  font-size: 20px;
  color: #333333;
  line-height: 1;
  background-color: #ffffff;
  border: #dedede 1px solid;
}
.welfare .info .item li:before, .welfare .info .item li:after {
  content: "";
  position: absolute;
  top: 0;
  width: 12px;
  height: 100%;
  background-color: #f2e9d1;
}
.welfare .info .item li:before {
  left: 0;
}
.welfare .info .item li:after {
  right: 0;
}
.welfare .info .item li:nth-last-of-type(1), .welfare .info .item li:nth-last-of-type(2) {
  margin-bottom: 0;
}
.welfare .info .item p {
  margin-top: 20px;
  width: 100%;
  font-size: 14px;
  color: #333333;
  line-height: 1.4;
  text-align: center;
}

.about .info .txt {
  margin-right: 35px;
  width: calc(100% - 585px);
}
.about .info .txt h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #a48b78;
  line-height: 1;
  font-weight: 400;
}
.about .info .txt p {
  font-size: 16px;
  color: #333333;
  line-height: 1.65;
  text-align: justify;
}
.about .info .txt p:nth-of-type(1) {
  margin-bottom: 30px;
}

.project .swiper {
  position: relative;
  width: 100%;
}
.project .swiper .swiperBox {
  position: relative;
  margin: 0 auto;
  width: 940px;
  overflow: hidden;
}
.project .swiper .swiper-slide {
  position: relative;
  width: 100%;
}
.project .swiper .swiper-slide .photo img {
  width: 800px;
}
.project .swiper .swiper-slide .photo p {
  margin-top: 12px;
  font-size: 14px;
  color: #333333;
  line-height: 1.4;
}
.project .swiper .swiper-slide .txt {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding: 25px 25px 20px;
  max-width: 370px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.project .swiper .swiper-slide .txt h2 {
  font-size: 20px;
  color: #a48b78;
  line-height: 1;
  font-weight: 400;
}
.project .swiper .swiper-slide .txt p {
  margin-top: 13px;
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  text-align: justify;
}
.project .swiper .swiper-slide:last-child .txt {
  top: auto;
  bottom: 22%;
}
.project .swiper-button {
  position: absolute;
  z-index: 3;
  width: 50px;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s;
}
.project .swiper-button img {
  width: 100%;
}
.project .swiper-button:hover {
  opacity: 1;
}
.project .swiper-button.btn_prev {
  left: 0;
}
.project .swiper-button.btn_next {
  right: 0;
}
.project .swiper-button.swiper-button-disabled {
  opacity: 0.2;
  cursor: default;
}
footer {
  position: relative;
  padding: 50px 15px 45px;
  text-align: center;
  background-color: #ffffff;
  flex-direction: column;
}
footer img {
  width: 160px;
}
footer p {
  margin-top: 22px;
  font-size: 15px;
  color: #333333;
  line-height: 1.6;
}

@media screen and (max-width: 1440px) {
  header .head {
    height: 80px;
  }
  header .logo {
    margin-bottom: 13px;
    width: 150px;
  }
  header .menu a {
    margin-bottom: 22px;
    padding-bottom: 2px;
    height: 30px;
  }
  .home {
    height: 780px;
  }
  .home .bgSlide {
    top: 110px;
    height: 670px;
  }
  .home .content {
    padding: 240px 40px 0;
  }
  .home .txt {
    padding: 30px 40px;
    width: 490px;
  }
  .home .txt h1 {
    margin-bottom: 20px;
    font-size: 45px;
  }
  .home .txt p {
    font-size: 17px;
  }
}
@media screen and (max-width: 1024px) {
  body.fixed {
    overflow: hidden;
  }
  .wrap {
    min-width: auto;
  }
  header .head {
    display: none;
  }
  header .head_m {
    display: block;
    height: 80px;
  }
  header .head_m .headBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px 0 30px;
    height: 100%;
  }
  header .head_m .headBox .logo {
    margin-bottom: 0;
    width: 150px;
  }
  header .head_m .headBox .logo img {
    width: 100%;
  }
  header .head_m .headBox .btn_menu {
    position: relative;
    z-index: 100;
    width: 40px;
    height: 40px;
  }
  header .head_m .headBox .btn_menu em {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 26px;
    height: 3px;
    background: #777777;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  header .head_m .headBox .btn_menu em:first-child {
    top: 9px;
  }
  header .head_m .headBox .btn_menu em:nth-child(2), header .head_m .headBox .btn_menu em:nth-child(3) {
    top: 18px;
  }
  header .head_m .headBox .btn_menu em:last-child {
    top: 27px;
  }
  header .head_m .headBox .btn_menu.open {
    position: fixed;
    top: 22px;
    right: 16px;
  }
  header .head_m .headBox .btn_menu.open em:first-child, header .head_m .headBox .btn_menu.open em:last-child {
    top: 19px;
    width: 0%;
  }
  header .head_m .headBox .btn_menu.open em:nth-child(2) {
    transform: rotate(45deg);
  }
  header .head_m .headBox .btn_menu.open em:nth-child(3) {
    transform: rotate(-45deg);
  }
  header .head_m .menu_m {
    display: none;
    position: fixed;
    z-index: 99;
    top: 80px;
    right: -100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10vw 0;
    width: 100vw;
    height: calc(100vh - 80px);
    overflow: auto;
    background-color: #ffffff;
    transition: 0.3s cubic-bezier(0.06, 1.09, 1, 1);
  }
  header .head_m .menu_m.open {
    right: 0;
  }
  header .head_m .menu_m .menuBox {
    margin-bottom: 100px;
    width: 60vw;
    max-width: 300px;
  }
  header .head_m .menu_m .menuBox a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
    height: 60px;
    font-size: 21px;
    color: #333333;
    line-height: 1;
    border: #dddddd 1px solid;
    border-radius: 6px;
  }
  header .head_m .menu_m .menuBox a:last-child {
    margin-bottom: 0;
  }
  header.open {
    background-color: rgb(255, 255, 255);
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    box-shadow: 0 0 rgba(57, 68, 79, 0);
  }
  section .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 90px 60px;
    width: 100%;
    height: 100%;
  }
  .home {
    height: 100vh;
  }
  .home .bgSlide {
    top: 110px;
    bottom: auto;
    height: calc(100% - 110px);
  }
  .home .bgSlide::before, .home .bgSlide::after {
    background-position: left;
  }
  .home .bgSlide::before {
    background-image: url(../img/bg_1m.jpg);
  }
  .home .bgSlide::after {
    background-image: url(../img/bg_2m.jpg);
  }
  .home .content {
    justify-content: center;
    padding: 0 0 35vh;
  }
  .job .table td {
    line-height: 1.3;
  }
  .job .btn_job {
    width: 70%;
    max-width: 160px;
  }
  .welfare .info {
    flex-direction: column;
  }
  .welfare .info img {
    width: 100%;
  }
  .welfare .info .item {
    margin: 40px 0 0;
    width: 100%;
  }
  .about .info {
    flex-direction: column;
  }
  .about .info img {
    width: 100%;
  }
  .about .info .txt {
    order: 2;
    margin: 40px 0 0;
    width: 100%;
  }
  .project .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .project .swiper .swiperBox {
    width: calc(96% - 100px);
  }
  .project .swiper .swiper-slide {
    padding: 20px 20px 30px;
    background-color: #ffffff;
  }
  .project .swiper .swiper-slide .photo img {
    width: 100%;
  }
  .project .swiper .swiper-slide .txt {
    position: relative;
    margin-top: 30px;
    padding: 0 15px;
    max-width: none;
  }
  .project .swiper-button:hover {
    opacity: 0.5;
  }
  .project .swiper-button:hover.swiper-button-disabled {
    opacity: 0.2;
  }
}
@media screen and (max-width: 768px) {
  .project .btn_more, .job .btn_more {
    width: 200px;
    height: 40px;
    font-size: 16px;
  }
  section .content {
    padding: 10vw 8vw;
  }
  section .content h1 {
    margin-bottom: 40px;
    font-size: 28px;
  }
  .job .table tr:first-child {
    display: none;
  }
  .job .table tr:nth-child(odd) td:first-child {
    background-color: #a48b78;
  }
  .job .table td {
    display: block;
    width: 100%;
    border-right-width: 0;
  }
  .job .table td:first-child {
    padding: 10px;
    font-size: 20px;
    color: #ffffff;
    background-color: #a48b78;
  }
  .job .table td:nth-child(2) {
    padding: 20px 30px 10px;
    text-align: left;
  }
  .job .table td:nth-child(2):before {
    content: "職務名稱：";
    display: inline;
  }
  .job .table td:nth-child(3) {
    padding: 0 30px 20px;
    text-align: left;
  }
  .job .table td:nth-child(3):before {
    content: "薪資待遇：";
    display: inline;
  }
  .job .table td:last-child {
    padding: 0 30px 25px;
  }
  .job .btn_job {
    width: 60%;
    max-width: none;
    height: 40px;
  }
}
@media screen and (max-width: 600px) {
  .home .txt {
    padding: 25px 35px;
    width: 405px;
  }
  .home .txt h1 {
    margin-bottom: 20px;
    font-size: 36px;
  }
  .welfare .info .item li {
    margin-bottom: 15px;
    height: 54px;
    font-size: 18px;
  }
  .project .swiper .swiper-slide {
    padding: 10px 10px 25px;
  }
  .project .swiper .swiper-slide .txt {
    margin-top: 25px;
    padding: 0 10px;
  }
  footer img {
    width: 130px;
  }
}
@media screen and (max-width: 480px) {
  .project .btn_more, .job .btn_more {
    margin-top: 25px;
    width: 180px;
    height: 34px;
    font-size: 15px;
  }
  header .head_m {
    height: 60px;
  }
  header .head_m .headBox {
    padding: 0 8px 0 15px;
  }
  header .head_m .headBox .logo {
    width: 120px;
  }
  header .head_m .headBox .btn_menu {
    width: 34px;
    height: 34px;
  }
  header .head_m .headBox .btn_menu em {
    width: 22px;
  }
  header .head_m .headBox .btn_menu em:first-child {
    top: 7px;
  }
  header .head_m .headBox .btn_menu em:nth-child(2), header .head_m .headBox .btn_menu em:nth-child(3) {
    top: 15px;
  }
  header .head_m .headBox .btn_menu em:last-child {
    top: 23px;
  }
  header .head_m .headBox .btn_menu.open {
    top: 13px;
    right: 8px;
  }
  header .head_m .menu_m {
    top: 60px;
    height: calc(100vh - 60px);
  }
  header .head_m .menu_m .menuBox a {
    margin-bottom: 15px;
    font-size: 18px;
  }
  section .content {
    padding: 14vw 6vw;
  }
  section .content h1 {
    margin-bottom: 6.5vw;
    font-size: 24px;
  }
  .home {
    padding-top: 90px;
  }
  .home .bgSlide {
    top: 90px;
  }
  .home .bgSlide::before, .home .bgSlide::after {
    background-position: right;
  }
  .home .txt {
    padding: 25px 35px;
    width: 315px;
  }
  .home .txt h1 {
    margin-bottom: 15px;
    font-size: 27px;
  }
  .home .txt p {
    font-size: 16px;
    line-height: 1.7;
  }
  .job .table td {
    font-size: 16px;
    line-height: 1.4;
  }
  .job .table td:first-child {
    padding: 8px;
    font-size: 18px;
  }
  .job .table td:nth-child(2) {
    padding: 15px 25px 6px;
  }
  .job .table td:nth-child(3) {
    padding: 0 25px 15px;
  }
  .job .table td:last-child {
    padding: 0 25px 20px;
  }
  .job .btn_job {
    min-width: 180px;
    height: 34px;
    font-size: 15px;
  }
  .welfare .info .item li {
    margin-bottom: 15px;
    height: 50px;
    font-size: 16px;
  }
  .welfare .info .item li::before, .welfare .info .item li::after {
    width: 8px;
  }
  .welfare .info .item p {
    font-size: 12px;
  }
  .about .info .txt h2 {
    font-size: 18px;
  }
  .about .info .txt p {
    font-size: 15px;
  }
  .project .content {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .project .swiper {
    flex-wrap: wrap;
    justify-content: center;
  }
  .project .swiper .swiperBox {
    margin-bottom: 15px;
    width: 100%;
  }
  .project .swiper .swiper-slide {
    padding-bottom: 20px;
  }
  .project .swiper .swiper-slide .photo p {
    margin-top: 8px;
    font-size: 12px;
  }
  .project .swiper .swiper-slide .txt {
    margin-top: 20px;
  }
  .project .swiper .swiper-slide .txt h2 {
    font-size: 18px;
  }
  .project .swiper .swiper-slide .txt p {
    font-size: 15px;
  }
  .project .swiper-button {
    position: relative;
    width: 30px;
  }
  .project .swiper-button.btn_prev {
    left: auto;
    margin-right: 15px;
  }
  .project .swiper-button.btn_next {
    right: auto;
  }
  footer {
    padding: 40px 15px;
  }
  footer img {
    width: 120px;
  }
  footer p {
    font-size: 14px;
  }
}
@media screen and (max-width: 430px) {
  header .head_m .menu_m .menuBox a {
    height: 50px;
  }
  .home .content {
    padding: 0 0 25vh;
  }
  .welfare .info .item p {
    margin-top: 15px;
  }
}
@media screen and (max-width: 375px) {
  .project .btn_more, .job .btn_more {
    margin-top: 20px;
    width: 160px;
    height: 30px;
    font-size: 14px;
  }
  section .content h1 {
    font-size: 19px;
  }
  .home .content {
    padding: 0 0 20vh;
  }
  .home .txt {
    padding: 25px 30px;
    width: 280px;
  }
  .home .txt h1 {
    font-size: 24px;
  }
  .home .txt p {
    font-size: 15px;
  }
  .job .table td {
    font-size: 15px;
  }
  .job .table td:first-child {
    padding: 6px;
    font-size: 16px;
  }
  .job .btn_job {
    min-width: 160px;
    height: 30px;
    font-size: 14px;
  }
  .welfare .info .item {
    margin-top: 30px;
  }
  .welfare .info .item li {
    margin-bottom: 10px;
    width: 48.5%;
    height: 46px;
    font-size: 15px;
  }
  .welfare .info .item li::before, .welfare .info .item li::after {
    width: 6px;
  }
  .about .info .txt {
    margin-top: 30px;
  }
  .about .info .txt h2 {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .about .info .txt p {
    font-size: 14px;
  }
  .about .info .txt p:nth-of-type(1) {
    margin-bottom: 25px;
  }
  .project .swiper .swiper-slide {
    padding: 7px 7px 25px;
  }
  .project .swiper .swiper-slide .txt h2 {
    font-size: 16px;
  }
  .project .swiper .swiper-slide .txt p {
    font-size: 14px;
  }
  footer p {
    font-size: 13px;
  }
}
@media screen and (max-width: 1024px) and (max-height: 768px) and (orientation: landscape) {
  header .head {
    display: none;
  }
  header .head_m {
    height: 45px;
  }
  header .head_m .headBox {
    padding: 0 10px 0 20px;
  }
  header .head_m .headBox .logo {
    width: 90px;
  }
  header .head_m .headBox .btn_menu.open {
    top: 3px;
    right: 10px;
  }
  header .head_m .headBox .btn_menu em {
    width: 20px;
    height: 2px;
  }
  header .head_m .headBox .btn_menu em:first-child {
    top: 12px;
  }
  header .head_m .headBox .btn_menu em:nth-child(2), header .head_m .headBox .btn_menu em:nth-child(3) {
    top: 19px;
  }
  header .head_m .headBox .btn_menu em:last-child {
    top: 26px;
  }
  header .head_m .menu_m {
    top: 45px;
    height: calc(100vh - 45px);
  }
  header .head_m .menu_m .menuBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 75px;
  }
  header .head_m .menu_m .menuBox a {
    margin-bottom: 12px;
    height: 50px;
    font-size: 18px;
    border-radius: 6px;
  }
  section .content {
    padding: 12vh 20px;
    width: 80%;
  }
  section .content h1 {
    margin-bottom: 5vh;
    font-size: 27px;
  }
  .home .content {
    padding-bottom: 20vh;
  }
  .home .bgSlide {
    top: 75px;
    height: 100%;
  }
  .home .bgSlide:before, .home .bgSlide:after {
    background-position: center;
  }
  .home .bgSlide:before {
    background-image: url(../img/bg_1.jpg);
  }
  .home .bgSlide:after {
    background-image: url(../img/bg_2.jpg);
  }
  .job .table th, .job .table td {
    font-size: 16px;
  }
  .job .table th {
    padding: 8px 5px 10px;
  }
  .job .table td {
    padding: 10px 5px;
  }
  .job .btn_job {
    height: 32px;
    font-size: 14px;
  }
  .job .btn_more {
    width: 250px;
    height: 40px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) and (max-height: 480px) and (orientation: landscape) {
  header .head_m .menu_m .menuBox {
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    max-width: none;
  }
  header .head_m .menu_m .menuBox a {
    margin: 0;
    width: 23.5%;
    font-size: 16px;
  }
  section .content {
    padding: 60px 20px;
  }
  section .content h1 {
    margin-bottom: 40px;
  }
  .home .content {
    padding-bottom: 13vh;
  }
  .home .content h1 {
    margin-bottom: 40px;
  }
  .home .txt {
    padding: 20px 30px;
    width: 385px;
  }
  .home .txt h1 {
    margin-bottom: 15px;
    font-size: 36px;
  }
  .home .txt p {
    font-size: 15px;
    line-height: 1.5;
  }
  .welfare .info .item {
    margin-top: 30px;
  }
  .welfare .info .item li {
    margin-bottom: 10px;
    width: 48.5%;
    height: 50px;
    font-size: 18px;
  }
  .about .info .txt {
    margin-top: 30px;
  }
  .project .content {
    width: 90%;
  }
  .project .swiper .swiper-slide {
    padding: 10px 10px 20px;
  }
  .project .swiper .swiper-slide .txt {
    margin-top: 22px;
  }
  .project .swiper-button {
    width: 40px;
  }
  footer img {
    width: 130px;
  }
  footer p {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */