@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --color-red: #b81c1c;
  --color-red2: #df3b3b;
  --color-text: #aa8158;
  --color-text2: #9a6a4a;
  --color-text3: #81593f;
  --color-text-dark: #2a2a2a;
  --color-text-content: #606060;
  --color-text-content2: #363636;
  --color-text-content3: #5d5d5d;
  --color-text-content4: #444;
  --color-text-content5: #eaeaea;
  --color-text-content6: #ededed;
  --color-tabs: #c7a078;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Noto Serif TC", serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  outline: none;
  background: none;
  border: none;
}

.formb {
  display: none;
}

@media (max-width: 767px) {
  .forpc {
    display: none;
  }
  .formb {
    display: block;
  }
}
header {
  padding: 8px 0;
  background-color: #fff;
  border-bottom: 2px solid var(--color-text2);
}
header .container {
  max-width: 1500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
header .logo {
  width: min(15vw, 149px);
  padding-left: 16px;
}
header .btn_mobile {
  cursor: pointer;
  display: none;
}

nav {
  display: flex;
}
nav a {
  display: block;
  text-align: center;
  padding: 0 16px;
  color: var(--color-text-dark);
  position: relative;
  transition: 0.3s;
  font-size: min(2vw, 22px);
}
nav a.active, nav a:hover {
  color: var(--color-text);
}
nav a:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 60%;
  background-color: var(--color-text2);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
nav p {
  font-size: 0.6em;
  font-weight: bold;
}

footer .container {
  display: flex;
}
footer .container > div {
  flex: 1;
}
footer iframe {
  display: block;
  width: 100%;
  height: 100%;
}
footer .left_side {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 970/607;
  background: url(../images/footer/footer_bg.jpg) no-repeat top center;
  background-size: cover;
}
footer .logo {
  width: min(13vw, 240px);
}
footer .sns_lists {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .sns_lists a {
  width: min(3vw, 41px);
}
footer .contact_lists {
  font-size: min(1.6vw, 18px);
  margin: 1.2em 0;
}
footer .contact_lists .item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  color: #fff;
  font-weight: 600;
}
footer .contact_lists h4::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  background-color: #fff;
  margin: 0 0.5em;
  vertical-align: middle;
}

.sec_title {
  text-align: center;
  color: var(--color-text);
  font-size: min(3.6vw, 34px);
}
.sec_title::before, .sec_title::after {
  content: "";
  display: inline-block;
  width: 1.4em;
  aspect-ratio: 67/19;
  background: url(../images/icon/title_line.png) no-repeat center;
  background-size: contain;
  margin-right: 0.3em;
  vertical-align: middle;
}
.sec_title::after {
  margin-right: 0;
  margin-left: 0.3em;
  transform: scaleX(-1);
}

.wrap_index .main_visual {
  width: 100%;
  height: min(70vw, 773px);
  background: url(../images/index/main_visual.jpg) no-repeat 73% top;
  background-size: cover;
  position: relative;
}
.wrap_index .slogan {
  width: min(34vw, 400px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-120%, -50%);
  opacity: 0;
  animation: aniFadeIn 1.6s forwards ease-in-out;
}
.wrap_index .red_line {
  width: 3px;
  height: min(12vw, 226px);
  background-image: linear-gradient(to bottom, var(--color-red), transparent);
  margin: auto;
  translate: 0 -15%;
  scale: 1 0;
  transform-origin: top;
  animation: ainMove 1s ease-in-out forwards;
}
.wrap_index .sec1 .info_lists {
  margin: 6% auto;
  display: grid;
  gap: min(10vw, 9rem);
  width: fit-content;
}
.wrap_index .sec1 .info_item {
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px hsl(0, 0%, 65%);
  border-radius: 20px;
  margin: auto;
  font-size: min(3.2vw, 42px);
  width: min(80vw, 34em);
  aspect-ratio: 1554/580;
  position: relative;
  transition: 0.6s;
}
.wrap_index .sec1 .info_item_link .pic_side img {
  transition: 0.6s;
}
.wrap_index .sec1 .info_item_link:hover .pic_side img {
  scale: 1.1;
}
.wrap_index .sec1 .info_item_link:hover .info_item {
  transform: translateY(-10px);
}
.wrap_index .sec1 .text_side {
  padding: 3% 6%;
  width: 57%;
}
.wrap_index .sec1 .text_side h3 {
  font-size: 1em;
  color: var(--color-text);
  margin-bottom: 0.8em;
  font-weight: 900;
}
.wrap_index .sec1 .text_side h3::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  aspect-ratio: 70/58;
  background: url(../images/index/info1_num.png) no-repeat center;
  background-size: contain;
  margin-right: 0.5em;
  vertical-align: middle;
}
.wrap_index .sec1 .text_side .item2_title::before {
  width: 1.7em;
  aspect-ratio: 84/61;
  background-image: url(../images/index/info2_num.png);
}
.wrap_index .sec1 .text_side .item3_title::before {
  width: 2em;
  aspect-ratio: 85/58;
  background-image: url(../images/index/info3_num.png);
}
.wrap_index .sec1 .text_side .content {
  margin-bottom: 0.8em;
}
.wrap_index .sec1 .text_side h4 {
  font-size: 0.6em;
  margin-bottom: 0.5em;
  font-weight: 900;
  color: #040404;
}
.wrap_index .sec1 .text_side p {
  font-size: 0.45em;
  color: var(--color-text-content);
}
.wrap_index .sec1 .text_side .info3_pic2 {
  width: min(80%, 836px);
}
.wrap_index .sec1 .text_side .note {
  color: var(--color-red);
  font-weight: 900;
  font-size: 0.4em;
}
.wrap_index .sec1 .pic_side {
  position: absolute;
  width: min(42vw, 18em);
  right: -8%;
  top: -8%;
  overflow: hidden;
  border-radius: 20px;
}
.wrap_index .sec1 .item2 {
  padding-left: 0;
  padding-right: 10%;
}
.wrap_index .sec_btn {
  font-size: min(2.2vw, 24px);
  width: 12.5em;
  height: 3em;
  background-color: var(--color-text);
  clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0 70%);
  margin: auto;
  transition: 0.3s;
}
.wrap_index .sec_btn:hover {
  clip-path: polygon(0 0, 100% 0, 100% 30%, 100% 100%, 0 100%, 0% 70%);
  outline: 1px solid #fff;
  outline-offset: -5px;
}
.wrap_index .sec_btn a {
  display: block;
  height: 100%;
  color: #fff;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  align-content: center;
}
.wrap_index .sec2 {
  padding: 8% 0;
  width: 100%;
  background: url(../images/index/type_bg.jpg) no-repeat bottom center;
  background-size: 100% auto;
}
.wrap_index .sec2 .container {
  font-size: min(1.8vw, 20px);
}
.wrap_index .sec2 .subtitle {
  font-size: 1em;
  color: var(--color-text-content);
  text-align: center;
  margin-top: 1.3em;
  margin-bottom: 6em;
}
.wrap_index .sec2 .type_lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4vw 1vw;
  margin: auto;
  width: min(80vw, 1920px);
}
.wrap_index .sec2 .type_lists li {
  margin: auto;
  transition: 0.3s;
}
.wrap_index .sec2 .type_lists li:hover {
  transform: translateY(-10px);
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
}
.wrap_index .sec2 .type_lists li:nth-child(even) {
  position: relative;
  top: -10%;
}
.wrap_index .sec2 .sec_btn {
  margin-top: 2em;
}
.wrap_index .sec3 {
  padding-bottom: 8%;
}
.wrap_index .sec3 .name_lists {
  display: flex;
  justify-content: center;
  margin: 4% 0;
}
.wrap_index .sec3 .name_item {
  flex: 1;
  text-align: center;
  font-size: min(2.1vw, 26px);
}
.wrap_index .sec3 .name_item:hover img {
  scale: 1.1;
}
.wrap_index .sec3 .name_item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: 0.3s;
}
.wrap_index .sec3 .name_item .texts {
  padding: 0 0.5em;
}
.wrap_index .sec3 .name_item .pic {
  overflow: hidden;
}
.wrap_index .sec3 .name_item h3 {
  font-size: 1em;
  color: var(--color-text);
  margin: 0.7em 0;
}
.wrap_index .sec3 .name_item p {
  font-size: 0.7em;
  color: var(--color-text-content);
}
.wrap_index .sec3 .name_item span {
  color: var(--color-red);
  font-weight: bold;
}
.wrap_index .sec4 {
  background: url(../images/index/service_bg.png) no-repeat top center;
  background-size: cover;
  background-color: #f5f2ee;
}
.wrap_index .sec4 .container {
  padding: 6% 0;
}
.wrap_index .sec4 .service_lists {
  display: flex;
  justify-content: center;
  gap: min(3vw, 60px);
  margin: 6% 0 10%;
}
.wrap_index .sec4 .service_item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(68, 68, 68, 0.8);
  font-size: min(1.7vw, 22px);
}
.wrap_index .sec4 .service_item:hover img {
  scale: 1.1;
}
.wrap_index .sec4 .service_item:hover .text {
  height: calc-size(auto, size);
}
.wrap_index .sec4 .service_item:nth-child(even) {
  transform: translateY(15%);
}
.wrap_index .sec4 .service_item img {
  transition: 0.3s;
}
.wrap_index .sec4 .service_item .text {
  position: absolute;
  bottom: 0;
  height: 3.5454545455em;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: inherit;
  border-top-right-radius: 0;
  padding: 1em;
  transition: 0.3s;
}
.wrap_index .sec4 .service_item h4 {
  font-size: 1em;
  margin-bottom: 1em;
}
.wrap_index .sec4 .service_item p {
  font-size: 0.8em;
}

.cost_sec {
  padding: 6% 0;
  background: url(../images/index/cost_bg.jpg) no-repeat bottom center;
  background-size: cover;
}
.cost_sec .container {
  margin: 4% auto;
  max-width: 1100px;
  font-size: min(2vw, 20px);
  width: 85%;
}
.cost_sec .swiperBox {
  position: relative;
  margin-top: 6%;
  box-shadow: 0 0 6px rgba(68, 68, 68, 0.2);
  border-bottom: 10px solid var(--color-text);
}
.cost_sec .swiper-button-next {
  --swiper-theme-color: var(--color-text);
  right: -60px;
}
.cost_sec .swiper-button-prev {
  --swiper-theme-color: var(--color-text);
  left: -60px;
}
.cost_sec .cost_tabs {
  display: flex;
  justify-content: center;
  gap: 1em;
  border-bottom: 3px solid var(--color-tabs);
  padding: 0 2em;
  width: auto;
}
.cost_sec .cost_tabs button {
  width: 14.8em;
  height: 3.8em;
  flex: 1;
  border-radius: 20px 20px 0 0;
  border: 3px solid var(--color-tabs);
  border-bottom: none;
  font-size: 1.1em;
  background-color: #fff;
  color: var(--color-tabs);
  font-family: "Noto Serif TC", serif;
  font-weight: bold;
  cursor: pointer;
}
.cost_sec .cost_tabs button.swiper-slide-thumb-active {
  background-color: var(--color-tabs);
  color: #fff;
}
.cost_sec .cost_contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cost_sec .cost_contents .content {
  padding: 4% 8%;
}
.cost_sec .cost_contents .title {
  font-size: 1.25em;
  padding: 8px 0;
  color: var(--color-text);
  border-bottom: 3px solid var(--color-text);
  width: fit-content;
  margin: auto;
}
.cost_sec .cost_contents .texts {
  margin: 5% 0;
}
.cost_sec .cost_contents .texts p {
  color: var(--color-text-content);
  font-size: 1em;
  margin-bottom: 0.3em;
}
.cost_sec .cost_contents .texts p::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 1px;
  background-color: var(--color-text);
  vertical-align: middle;
  margin-right: 0.4em;
}
.cost_sec .cost_contents .texts span {
  color: var(--color-red);
  font-family: "Roboto";
  font-weight: 400;
  font-size: 1.1em;
}
.cost_sec .cost_contents .btns a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  border: 1px solid var(--color-text);
  border-radius: 100vmax;
  width: fit-content;
  font-size: 1em;
  color: var(--color-text);
  gap: 6px;
  font-weight: bold;
  margin: 10px auto;
  transition: 0.3s;
}
.cost_sec .cost_contents .btns a:hover {
  gap: 1em;
}
.cost_sec .cost_contents .notice {
  color: var(--color-text-content);
  margin-bottom: 5%;
  font-size: 0.8em;
}
.cost_sec .cost_contents .plan3 {
  text-align: center;
}
.cost_sec .cost_contents .plan3 p::before {
  display: none;
}
.cost_sec .cost_contents .plan3 .reserve {
  margin: 5% 0;
}
.cost_sec .cost_contents .plan3 .reserve p {
  color: var(--color-text-content2);
  font-weight: bold;
  font-size: 0.9em;
}
.cost_sec .cost_contents .plan3 .reserve .tel {
  color: var(--color-red);
}
.cost_sec .cost_contents .plan3 .btns a {
  border-color: var(--color-red);
}
.cost_sec .cost_contents .plan3 .btns p {
  color: var(--color-red);
  font-size: 1em;
  margin-bottom: 0;
}
.cost_sec .cost_contents .plan3 .notice {
  font-weight: bold;
  color: var(--color-text-content2);
  font-size: 0.9em;
}

@keyframes aniFadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes ainMove {
  100% {
    scale: 1;
  }
}
@media (max-width: 767px) {
  .wrap_index .main_visual {
    background-image: url(../images/index/main_visual_m.jpg);
    height: 66.511627907vw;
  }
  .wrap_index .slogan {
    width: 42vw;
    transform: translate(-90%, -50%);
  }
  .wrap_index .red_line {
    width: 2px;
    margin-bottom: 5%;
  }
  .wrap_index .sec_title {
    font-size: 5.2vw;
  }
  .wrap_index .sec1 .info_lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    gap: 0;
  }
  .wrap_index .sec1 .pic_side,
  .wrap_index .sec1 .item2 .pic_side {
    width: 100%;
    position: static;
    border-radius: 0;
  }
  .wrap_index .sec1 .container {
    width: 80%;
    margin: 8% auto 12%;
    box-shadow: 0 2px 8px hsl(0, 0%, 78%);
    position: relative;
  }
  .wrap_index .sec1 .info_item {
    flex-direction: column-reverse;
    padding-left: 0;
    width: 100%;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
  }
  .wrap_index .sec1 .item2 {
    padding-right: 0;
    flex-direction: column;
  }
  .wrap_index .sec1 .item1 .pic_side img {
    content: url(../images/index/info1_pic_m.png);
  }
  .wrap_index .sec1 .item2 .pic_side img {
    content: url(../images/index/info2_pic_m.png);
  }
  .wrap_index .sec1 .item3 .pic_side img {
    content: url(../images/index/info3_pic_m.png);
  }
  .wrap_index .sec1 .text_side {
    font-size: 5.6vw;
    padding: 0.8em;
    margin-bottom: auto;
    width: 100%;
  }
  .wrap_index .sec1 .text_side h3 {
    margin-bottom: 0.5em;
  }
  .wrap_index .sec1 .text_side h4 {
    font-size: 0.7em;
  }
  .wrap_index .sec1 .text_side p {
    font-size: 0.6em;
  }
  .wrap_index .sec1 .text_side .note {
    font-size: 0.5em;
  }
  .wrap_index .sec1 .text_side .info3_pic2 {
    width: auto;
  }
  .wrap_index .sec1 .swiper-pagination {
    bottom: -25px;
  }
  .cost_sec .swiper-pagination {
    bottom: -35px;
  }
  .wrap_index .sec_btn {
    font-size: 3.6vw;
  }
  .wrap_index .sec2 {
    background-image: url(../images/index/type_bg_m.jpg);
    padding: 15% 0;
  }
  .wrap_index .sec2 .container {
    width: 80%;
    margin: auto;
  }
  .wrap_index .sec2 .subtitle {
    font-size: 3.1vw;
    margin-bottom: 2em;
  }
  .wrap_index .sec2 .type_lists li:nth-child(even) {
    transform: initial;
    position: static;
  }
  .wrap_index .sec2 .type_lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
  }
  .wrap_index .sec2 .type_lists li {
    width: 100%;
  }
  .wrap_index .sec2 .type1 img {
    content: url(../images/index/type1_m.png);
  }
  .wrap_index .sec2 .type2 img {
    content: url(../images/index/type2_m.png);
  }
  .wrap_index .sec2 .type3 img {
    content: url(../images/index/type3_m.png);
  }
  .wrap_index .sec2 .type4 img {
    content: url(../images/index/type4_m.png);
  }
  .wrap_index .sec2 .type5 img {
    content: url(../images/index/type5_m.png);
  }
  .wrap_index .sec3 .container {
    width: 80%;
    margin: auto;
  }
  .wrap_index .sec3 .name_item {
    font-size: 4.5vw;
    text-align: left;
    margin-bottom: 0.6em;
  }
  .wrap_index .sec3 .name_item .pic {
    display: none;
  }
  .wrap_index .sec3 .name_lists {
    flex-direction: column;
  }
  .wrap_index .sec3 .name_item h3 {
    margin: 0.3em 0;
    font-size: 0.9em;
  }
  .wrap_index .sec4 {
    background-image: none;
    background-color: #f5f2ee;
    position: relative;
  }
  .wrap_index .sec4 .sec_btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .wrap_index .sec4 .container {
    width: 80%;
    margin: auto;
    padding: 8% 0;
  }
  .wrap_index .sec4 .service_lists {
    flex-direction: column;
    margin: 6% 0;
  }
  .wrap_index .sec4 .service_item {
    border-radius: 0;
    box-shadow: none;
    font-size: 4.4vw;
    margin-bottom: 1em;
  }
  .wrap_index .sec4 .service_item .text {
    position: static;
    height: auto;
    background-color: initial;
    color: #ab835c;
    text-align: center;
    padding: 0.6em 0;
  }
  .wrap_index .sec4 .service_item:nth-child(even) {
    transform: initial;
  }
  .wrap_index .sec4 .service_item h4 {
    margin-bottom: 0.5em;
    font-size: 0.9em;
  }
  .wrap_index .sec4 .service1 img {
    content: url(../images/index/service1_m.png);
  }
  .wrap_index .sec4 .service2 img {
    content: url(../images/index/service2_m.png);
  }
  .wrap_index .sec4 .service3 img {
    content: url(../images/index/service3_m.png);
  }
  .cost_sec {
    padding: 12% 0;
  }
  .cost_sec .container {
    width: 80%;
    font-size: 3.4vw;
    max-width: initial;
  }
  .cost_sec .cost_tabs {
    flex-direction: column;
    border: none;
    gap: 0.8em;
    width: 100%;
    padding: 0;
  }
  .cost_sec .cost_tabs button {
    width: 100% !important;
    border-radius: 5px;
    border: 1px solid var(--color-text-content5);
    box-shadow: 0 2px 2px hsl(0, 0%, 65%);
    height: 2.8em;
    padding: 0 1em;
    text-align: left;
    flex: initial;
  }
  .cost_sec .cost_tabs button.swiper-slide-thumb-active {
    border-color: #9a6a4a;
    background-color: var(--color-text);
    display: flex;
    align-items: center;
  }
  .cost_sec .cost_contents .texts span {
    font-size: 1em;
  }
  .cost_sec .cost_tabs button.swiper-slide-thumb-active::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border: 0.4em solid;
    border-color: transparent transparent transparent #fff;
  }
  .cost_sec .swiper.thumbnail {
    overflow: initial;
  }
  .cost_sec .swiperBox {
    border-radius: 5px;
    position: relative;
  }
  .cost_sec .cost_contents .content {
    padding: 4% 6%;
  }
  .cost_sec .cost_contents .content:first-child .btns a {
    justify-content: flex-start;
  }
  .cost_sec .cost_contents .btns a {
    width: 100%;
    font-size: 0.9em;
  }
  .cost_sec .cost_contents .btns a img {
    width: 0.5em;
    aspect-ratio: 12/23;
  }
  .cost_sec .cost_contents .title {
    border-bottom: none;
  }
  .cost_sec .cost_contents .texts {
    margin: 8% 0;
  }
}
.wrap_origin .main_visual {
  width: 100%;
  height: 40.2604166667vw;
  background: url(../images/origin/main_visual.jpg) no-repeat top center;
  background-size: cover;
  position: relative;
}
.wrap_origin .main_visual .text {
  font-size: min(3vw, 60px);
  color: #fff;
  text-shadow: 0 4px 10px rgba(74, 66, 69, 0.6);
  font-family: "Noto Sans TC";
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  text-align: center;
  opacity: 0;
  animation: aniFadeIn 1.6s forwards ease-in-out;
}
.wrap_origin .main_visual .text h3 {
  font-weight: 500;
}
.wrap_origin .sec {
  font-size: min(3.6vw, 36px);
}
.wrap_origin .row_box {
  display: flex;
  justify-content: center;
  gap: 1.6666666667em;
  position: relative;
  padding-top: 3%;
}
.wrap_origin .row_box .item {
  margin-bottom: 1.2em;
}
.wrap_origin .row_box::before {
  content: "";
  display: block;
  position: absolute;
  width: min(32vw, 11em);
  aspect-ratio: 374/261;
  background: url(../images/origin/info1_num.png) no-repeat top center;
  background-size: cover;
  left: 0;
  top: 0;
  z-index: -1;
}
.wrap_origin .text_side .title {
  margin-bottom: 1em;
  font-size: 1em;
}
.wrap_origin .text_side .contents h3 {
  color: var(--color-text2);
  font-size: 0.6111111111em;
  margin-bottom: 0.4em;
}
.wrap_origin .text_side .contents p {
  color: var(--color-text-content);
  font-size: 0.5em;
  line-height: 1.8;
}
.wrap_origin .sec1 .container {
  padding-top: 3%;
}
.wrap_origin .sec1 .text_side {
  flex: 1;
  margin-left: 5%;
}
.wrap_origin .sec1 .pic_side {
  flex: 0.8;
}
.wrap_origin .sec1 .info1_note {
  margin-bottom: 10px;
}
.wrap_origin .sec2 .container {
  padding-top: 3%;
}
.wrap_origin .sec2 .row_box::before {
  width: min(32vw, 13em);
  aspect-ratio: 464/261;
  background-image: url(../images/origin/info2_num.png);
  left: initial;
  right: 0;
}
.wrap_origin .sec2 .text_side {
  flex: 1;
  margin-right: 5%;
}
.wrap_origin .sec2 .pic_side {
  flex: 0.8;
}
.wrap_origin .sec2 .info2_note img {
  margin-left: auto;
}
.wrap_origin .sec2 .info2_note {
  margin-top: 10px;
}
.wrap_origin .sec4 .container {
  padding: 3% 0;
}
.wrap_origin .sec4 .row_box::before {
  width: min(32vw, 13em);
  aspect-ratio: 467/261;
  background-image: url(../images/origin/info4_num.png);
  left: initial;
  right: 0;
}
.wrap_origin .sec4 .text_side {
  flex: 1;
  margin-right: 5%;
}
.wrap_origin .sec4 .pic_side {
  flex: 0.8;
}
.wrap_origin .sec4 .info4_note img {
  margin-left: auto;
}
.wrap_origin .sec4 .info4_note {
  margin-top: 10px;
}
.wrap_origin .sec3 {
  background-color: #f5f2ee;
  padding: 5% 2%;
  margin-top: 3%;
  position: relative;
}
.wrap_origin .sec3::before {
  content: "";
  display: block;
  position: absolute;
  width: min(32vw, 13em);
  aspect-ratio: 474/261;
  background-image: url(../images/origin/info3_num.png);
  background-size: cover;
  left: 0;
  top: 10px;
  z-index: 0;
  mix-blend-mode: multiply;
}
.wrap_origin .sec3 .title {
  margin-bottom: 5%;
  font-size: 1em;
  text-align: center;
}
.wrap_origin .sec3 .intro_lists {
  max-width: 1720px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: auto;
}
.wrap_origin .sec3 .item {
  padding: 0 10%;
}
.wrap_origin .sec3 .item h3 {
  color: var(--color-text2);
  font-size: 0.6111111111em;
  margin-bottom: 0.4em;
}
.wrap_origin .sec3 .item p {
  color: var(--color-text-content);
  font-size: 0.5em;
  line-height: 1.8;
}
.wrap_origin .sec3 .item .note p {
  font-weight: bold;
  color: var(--color-red);
}
.wrap_origin .sec3 .item:not(:last-child) {
  border-right: 1px solid var(--color-text-content);
}

@media (max-width: 767px) {
  .wrap_origin .main_visual {
    background-image: url(../images/origin/main_visual_m.jpg);
    height: 115.8139534884vw;
  }
  .wrap_origin .main_visual .text {
    width: 15em;
    height: 3.6em;
    font-size: 5vw;
    top: initial;
    transform: translateY(0);
    bottom: 10%;
    left: 0;
    background-image: linear-gradient(to right, var(--color-text3) 70%, transparent);
    align-content: center;
  }
  .wrap_origin .main_visual .text h3 {
    padding-left: 0.5em;
    width: fit-content;
    font-weight: normal;
    line-height: 1.2;
  }
  .wrap_origin .sec {
    font-size: 3.6vw;
  }
  .wrap_origin .title,
  .wrap_origin .sec3 .title {
    text-align: center;
    font-size: 1.5em;
  }
  .wrap_origin .row_box .item {
    background-color: var(--color-text-content6);
    border-radius: 5px;
    margin-bottom: 0;
  }
  .wrap_origin .text_side .contents {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  .wrap_origin .text_side .contents h3 {
    font-size: 1.2em;
    padding: 0.5em 0.8em;
    margin: 0;
    background-color: var(--color-text-content6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: inherit;
  }
  .wrap_origin .text_side .contents h3::after {
    content: "";
    display: block;
    width: 1em;
    aspect-ratio: 19/12;
    background: url(../images/icon/btn_arrow_down.png) no-repeat top center;
    background-size: contain;
    transition: 0.3s;
  }
  .wrap_origin .text_side .contents h3.active::after {
    transform: rotate(-180deg);
  }
  .wrap_origin .text_side .contents p {
    font-size: 1em;
    padding: 0.5em 0.8em;
    background-color: var(--color-text-content6);
    border-radius: inherit;
    display: none;
  }
  .wrap_origin .row_box::before,
  .wrap_origin .sec3::before {
    display: none;
  }
  .wrap_origin .row_box {
    flex-direction: column;
    gap: 1em;
  }
  .wrap_origin .sec .container {
    width: 90%;
    margin: auto;
    padding-top: 8%;
  }
  .wrap_origin .text_side {
    flex: initial;
    order: 2;
  }
  .wrap_origin .sec1 .pic_side {
    flex: initial;
    order: 1;
  }
  .wrap_origin .sec2 .pic_side {
    flex: initial;
  }
  .wrap_origin .sec4 .pic_side {
    flex: initial;
  }
  .wrap_origin .sec1 .text_side {
    margin: 0;
  }
  .wrap_origin .sec1 .pic_side .img_box {
    display: flex;
    flex-direction: column-reverse;
  }
  .wrap_origin .sec2 .text_side,
  .wrap_origin .sec4 .text_side {
    margin: 0;
  }
  .info1_pic {
    margin-inline: calc(50% - 50vw);
  }
  .info1_pic img {
    content: url(../images/origin/info1_pic_m.png);
  }
  .wrap_origin .sec1 .info1_note {
    margin-bottom: 0px;
    margin-top: 10px;
  }
  .wrap_origin .sec1 .info1_note img {
    content: url(../images/origin/info1_note_m.png);
  }
  .info2_pic {
    margin-inline: calc(50% - 50vw);
  }
  .info2_pic img {
    content: url(../images/origin/info2_pic_m.png);
  }
  .info2_note img {
    content: url(../images/origin/info2_note_m.png);
  }
  .info4_pic {
    margin-inline: calc(50% - 50vw);
  }
  .info4_pic img {
    content: url(../images/origin/info4_pic_m.png);
  }
  .info4_note img {
    content: url(../images/origin/info4_note_m.png);
  }
  .wrap_origin .sec3 {
    padding: 0;
    margin: 0;
  }
  .wrap_origin .sec3 .intro_lists {
    margin: 0 auto 12%;
  }
  .wrap_origin .sec3 .item {
    padding: 5%;
    background-color: #fff;
  }
  .wrap_origin .sec3 .item:not(:last-child) {
    border: none;
  }
  .wrap_origin .sec3 .item h3 {
    font-size: 1.2em;
  }
  .wrap_origin .sec3 .item p {
    font-size: 1em;
  }
  .swiper-pagination-bullet-active {
    --swiper-theme-color: #be9f7f;
  }
  .wrap_origin .swiper-horizontal > .swiper-pagination-bullets {
    bottom: 8px;
  }
  .wrap_origin .sec2 .container {
    padding: 8% 0;
  }
  .wrap_origin .sec3 .container {
    padding: 8% 0;
  }
  .wrap_origin .sec4 .container {
    padding: 8% 0;
  }
}
.wrap_service .main_visual {
  width: 100%;
  height: 40.2604166667vw;
  background: url(../images/service/main_visual.jpg) no-repeat top center;
  background-size: cover;
  position: relative;
}
.wrap_service .main_visual .text {
  font-size: min(3vw, 60px);
  color: #fff;
  text-shadow: 0 4px 10px rgba(74, 66, 69, 0.6);
  font-family: "Noto Sans TC";
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  text-shadow: 0 4px 10px hsl(338, 6%, 27%);
  opacity: 0;
  animation: aniFadeIn 1.6s forwards ease-in-out;
}
.wrap_service .main_visual h3 {
  font-weight: 500;
}
.wrap_service .sec_text {
  margin: 5% 0;
}
.wrap_service .sec_text p {
  font-size: min(1.7vw, 22px);
  font-weight: 600;
  color: var(--color-text-content3);
  text-align: center;
  line-height: 1.8;
}
.wrap_service .sec_text .container {
  max-width: 1560px;
  margin: auto;
  padding: 16px;
}
.wrap_service .row_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  max-width: 1660px;
  margin: auto;
  gap: 5%;
}
.wrap_service .row_box .text_side,
.wrap_service .row_box .pic_side {
  flex: 1;
}
.wrap_service .row_box .text_side {
  font-size: min(2.3vw, 36px);
}
.wrap_service .row_box .text_side h3 {
  font-size: 1em;
  color: var(--color-text-content4);
  display: flex;
  align-items: center;
}
.wrap_service .row_box .text_side h3::before {
  content: "";
  display: block;
  width: 0.2777777778em;
  aspect-ratio: 1;
  background-color: var(--color-text2);
  margin-right: 0.2777777778em;
}
.wrap_service .row_box .text_side h4 {
  font-size: 1em;
  color: var(--color-text);
  margin-left: 0.5em;
  margin-top: 0.2em;
}
.wrap_service .row_box .text_side .titles::after {
  content: "";
  display: block;
  width: 1.9444444444em;
  height: 2px;
  background-color: var(--color-text-content4);
  margin: 1em 0.5em;
}
.wrap_service .row_box .text_side p {
  color: var(--color-text-dark);
  font-size: 0.6em;
  line-height: 2;
  font-weight: 600;
  margin-left: 0.5em;
}
.wrap_service .row_box .text_side span {
  color: var(--color-red);
}
.wrap_service .sec1 .sec_title {
  margin-bottom: 1.5em;
  font-size: min(3.6vw, 38px);
}
.wrap_service .sec1 .container {
  width: 100%;
  height: 40.1041666667vw;
  background: url(../images/service/info1_bg.jpg) no-repeat top center;
  background-size: cover;
  display: flex;
  align-items: center;
}
.wrap_service .sec2 .container {
  width: 100%;
  height: 48.125vw;
  background: url(../images/service/info2_bg.jpg) no-repeat top center;
  background-size: cover;
  aspect-ratio: 1920/924;
  display: flex;
  align-items: center;
}
.wrap_service .sec3 .container {
  width: 100%;
  height: 39.8958333333vw;
  background: url(../images/service/info3_bg.jpg) no-repeat top center;
  background-size: cover;
  aspect-ratio: 1920/766;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  header {
    position: relative;
    position: sticky;
    top: 0;
    z-index: 199;
  }
  header .logo {
    width: 22vw;
  }
  nav {
    flex-direction: column;
    justify-content: center;
    gap: 5vw;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    border-bottom: 6px solid var(--color-text2);
    z-index: 29;
    clip-path: circle(0% at 100% 0);
    transition: 0.5s ease-in-out;
  }
  nav a {
    font-size: 4.8vw;
  }
  nav a:not(:last-child)::after {
    display: none;
  }
  header.active nav {
    clip-path: circle(141.2% at 100% 0);
  }
  header.active .btn_mobile img {
    transition: 0.6s;
  }
  header.active .btn_mobile img {
    transform: rotate(180deg);
    content: url(../images/icon/close.png);
  }
  header .btn_mobile {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    z-index: 39;
  }
  footer .container {
    flex-direction: column-reverse;
  }
  footer .container > div {
    flex: initial;
  }
  footer .contact_lists {
    font-size: 2.8vw;
  }
  footer .logo {
    width: 20vw;
  }
  footer .sns_lists a {
    width: 5.5vw;
  }
  .sec_title {
    font-size: 6vw;
  }
  .wrap_service .sec1 .sec_title {
    margin-bottom: 1em;
    font-size: 6vw;
  }
  .wrap_service .main_visual {
    background-image: url(../images/service/main_visual_m.jpg);
    height: 115.5813953488vw;
  }
  .wrap_service .main_visual .text {
    width: 15em;
    height: 3.6em;
    font-size: 5vw;
    top: initial;
    transform: translateY(0);
    bottom: 10%;
    left: 0;
    background-image: linear-gradient(to right, var(--color-text3) 70%, transparent);
    align-content: center;
  }
  .wrap_service .main_visual .text h3 {
    padding-left: 0.5em;
  }
  .wrap_service .sec_text p {
    font-size: 3.6vw;
  }
  .wrap_service .row_box {
    flex-direction: column-reverse;
    gap: 6vw;
    width: 80%;
  }
  .wrap_service .sec2 .row_box {
    flex-direction: column;
  }
  .wrap_service .sec1 .container {
    background-image: url(../images/service/info1_bg_m.jpg);
    height: 157.2093023256vw;
  }
  .wrap_service .row_box .text_side {
    font-size: 4.7vw;
  }
  .wrap_service .row_box .text_side p {
    font-size: 0.7em;
  }
  .wrap_service .sec2 .container {
    background-image: url(../images/service/info2_bg_m.jpg);
    height: 186.976744186vw;
  }
  .wrap_service .sec3 .container {
    background-image: url(../images/service/info3_bg_m.jpg);
    height: 165.1162790698vw;
  }
  .wrap_service .sec4 .sec_title {
    font-size: 5.6vw;
  }
}
.wrap_homeTen .sec_title {
  text-align: left;
  font-size: min(2.4vw, 34px);
  color: var(--color-text2);
}
.wrap_homeTen .main_visual {
  width: 100%;
  height: 40.2604166667vw;
  background: url(../images/homeTen/main_visual.jpg) no-repeat top center;
  background-size: cover;
  position: relative;
}
.wrap_homeTen .main_visual .text {
  font-size: min(3vw, 60px);
  color: #fff;
  text-shadow: 0 4px 10px rgba(74, 66, 69, 0.6);
  font-family: "Noto Sans TC";
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  opacity: 0;
  animation: aniFadeIn 1.6s forwards ease-in-out;
}
.wrap_homeTen .main_visual .text h3 {
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
}
.wrap_homeTen .row_box {
  display: flex;
  align-items: center;
  gap: 1em;
}
.wrap_homeTen .row_box .text_side,
.wrap_homeTen .row_box .pic_side {
  flex: 1;
}
.wrap_homeTen .row_box .pic_side {
  position: relative;
}
.wrap_homeTen .row_box .pic_side::after {
  content: "";
  display: block;
  background: url(../images/homeTen/info1_icon.png) no-repeat top center;
  background-size: contain;
  width: 22%;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(45%, -50%);
}
.wrap_homeTen .row_box .text_side {
  margin: 0 6%;
}
.wrap_homeTen .row_box .texts {
  font-size: min(1.8vw, 18px);
  margin-top: 1.2em;
}
.wrap_homeTen .row_box .texts p {
  line-height: 1.8;
  color: var(--color-text-content3);
  margin-bottom: 1.5em;
}
.wrap_homeTen .row_box .texts span {
  color: var(--color-red2);
  font-weight: bold;
}
.wrap_homeTen .row_box .btn {
  display: block;
  width: fit-content;
  margin-left: auto;
  font-size: min(2vw, 24px);
  transition: 0.3s ease-in;
}
.wrap_homeTen .row_box .btn:hover {
  transform: translateX(10px);
}
.wrap_homeTen .row_box .btn p {
  font-size: 0.75em;
  color: var(--color-text2);
  text-align: right;
}
.wrap_homeTen .row_box .btn h4 {
  color: var(--color-text-content3);
  font-size: 1em;
}
.wrap_homeTen .row_box .btn .text {
  width: fit-content;
  margin: auto;
}
.wrap_homeTen .row_box .btn .line {
  width: 15em;
  height: 2px;
  background-color: var(--color-text);
  position: relative;
  left: 50%;
  transform: translateX(-47%);
  top: 4px;
  transition: 0.3s;
}
.wrap_homeTen .row_box .btn .line::after {
  content: "";
  display: block;
  width: 1em;
  height: 2px;
  background-color: var(--color-text);
  rotate: 30deg;
  position: absolute;
  right: 0%;
  top: -0.27em;
}
.wrap_homeTen .sec .container {
  padding: 3% 0;
}
.wrap_homeTen .sec:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 95%;
  height: 2px;
  background-image: linear-gradient(to right, transparent, #b9b8b8, transparent);
  margin: auto;
}
.wrap_homeTen .sec6 {
  padding: 4% 0;
}
.wrap_homeTen .sec6 p {
  font-size: min(1.8vw, 20px);
  text-align: center;
  color: var(--color-text-content3);
}
.wrap_homeTen .sec6 a {
  color: var(--color-text2);
  text-decoration: underline;
  text-underline-offset: 6px;
  font-weight: 600;
  transition: 0.3s;
}
.wrap_homeTen .sec6 a:hover {
  text-underline-offset: 3px;
}
.wrap_homeTen :where(.sec2, .sec3, .sec5) .row_box .texts p:last-child {
  margin-bottom: 0;
}
.wrap_homeTen .sec2 .pic_side::after {
  background-image: url(../images/homeTen/info2_icon.png);
}
.wrap_homeTen .sec3 .pic_side::after {
  background-image: url(../images/homeTen/info3_icon.png);
}
.wrap_homeTen .sec4 .pic_side::after {
  background-image: url(../images/homeTen/info4_icon.png);
}
.wrap_homeTen .sec4 .row_box .btn .line {
  width: 11em;
}
.wrap_homeTen .sec5 .pic_side::after {
  background-image: url(../images/homeTen/info5_icon.png);
}
.wrap_homeTen .sec2 .pic_side img {
  object-fit: contain;
}
.wrap_homeTen .sec4 .sec_title {
  font-size: min(2.1vw, 34px);
}

@media (max-width: 767px) {
  .wrap_homeTen .main_visual {
    background-image: url(../images/homeTen/main_visual_m.jpg);
    height: 115.8139534884vw;
  }
  .wrap_homeTen .main_visual .text {
    width: 15em;
    height: 3.6em;
    font-size: 5vw;
    top: initial;
    transform: translateY(0);
    bottom: 10%;
    left: 0;
    background-image: linear-gradient(to right, var(--color-text3) 70%, transparent);
    align-content: center;
  }
  .wrap_homeTen .main_visual .text h3 {
    padding-left: 0.5em;
    width: fit-content;
    font-weight: normal;
    line-height: 1.2;
  }
  .wrap_homeTen .sec .container {
    padding: 10% 0;
  }
  .wrap_homeTen .row_box .pic_side::after {
    display: none;
  }
  .wrap_homeTen .row_box {
    flex-direction: column;
    width: 90%;
    margin: auto;
  }
  .wrap_homeTen .sec1 .row_box .pic_side img {
    content: url(../images/homeTen/info1_pic_m.png);
  }
  .wrap_homeTen .sec2 .row_box .pic_side img {
    content: url(../images/homeTen/info2_pic_m.png);
  }
  .wrap_homeTen .sec3 .row_box .pic_side img {
    content: url(../images/homeTen/info3_pic_m.png);
  }
  .wrap_homeTen .sec4 .row_box .pic_side img {
    content: url(../images/homeTen/info4_pic_m.png);
  }
  .wrap_homeTen .sec5 .row_box .pic_side img {
    content: url(../images/homeTen/info5_pic_m.png);
  }
  .wrap_homeTen .row_box .text_side {
    margin: 0;
  }
  .wrap_homeTen .sec_title {
    font-size: 5.2vw;
    margin: 0.6em 0;
  }
  .wrap_homeTen .sec4 .sec_title,
  .wrap_homeTen .sec5 .sec_title {
    font-size: 4.8vw;
  }
  .wrap_homeTen .row_box .texts {
    font-size: 3.6vw;
    margin-top: 0;
  }
  .wrap_homeTen .row_box .btn {
    font-size: 4vw;
  }
  .wrap_homeTen .sec6 {
    padding: 8% 0;
  }
  .wrap_homeTen .sec6 p {
    font-size: 3.4vw;
  }
}
.wrap_descript .main_visual {
  width: 100%;
  height: 40.2604166667vw;
  background: url(../images/descript/main_visual.jpg) no-repeat top center;
  background-size: cover;
  position: relative;
}
.wrap_descript .main_visual .text {
  font-size: min(3vw, 60px);
  color: #fff;
  text-shadow: 0 4px 10px rgba(74, 66, 69, 0.6);
  font-family: "Noto Sans TC";
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  text-align: center;
  opacity: 0;
  animation: aniFadeIn 1.6s forwards ease-in-out;
}
.wrap_descript .main_visual .text h3 {
  font-weight: 500;
  line-height: 1.3;
}
.wrap_descript .sec_title {
  margin-bottom: 0.7em;
  color: var(--color-text2);
}
.wrap_descript .sec {
  padding: 6% 0;
}
.wrap_descript .sec .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.wrap_descript .sec p {
  font-size: min(1.8vw, 18px);
  color: var(--color-text-content3);
  line-height: 1.8;
}
.wrap_descript .sec1 .intro_lists {
  display: flex;
  gap: min(3vw, 20px);
  margin-top: 3%;
}
.wrap_descript .sec1 .intro_lists li {
  overflow: hidden;
}
.wrap_descript .sec1 .intro_lists li img {
  transition: 0.3s;
}
.wrap_descript .sec1 .intro_lists li:hover img {
  scale: 1.02;
  transform-origin: bottom left;
}
.wrap_descript .sec2 {
  background-color: var(--color-text-content5);
  border-bottom: 10px solid var(--color-text2);
}
.wrap_descript .sec2 .pic_box {
  display: flex;
  gap: 20px;
  margin-top: 3%;
}
.wrap_descript .sec2 .pic_box li {
  overflow: hidden;
}
.wrap_descript .sec2 .pic_box li img {
  transition: 0.3s;
}
.wrap_descript .sec2 .pic_box li:hover img {
  scale: 1.02;
  transform-origin: bottom left;
}
.wrap_descript .sec2 p {
  text-align: center;
  margin-bottom: 20px;
}
.wrap_descript .sec2 .btn {
  width: 6em;
  height: 2em;
  border: 1px solid var(--color-text2);
  margin: 5% auto 0;
  position: relative;
  z-index: 1;
  font-size: min(2.6vw, 24px);
}
.wrap_descript .sec2 .btn::before, .wrap_descript .sec2 .btn::after {
  content: "";
  display: block;
  width: 120%;
  height: 50%;
  background-color: var(--color-text-content5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.5s;
}
.wrap_descript .sec2 .btn::after {
  width: 80%;
  height: 120%;
}
.wrap_descript .sec2 .btn a {
  display: block;
  height: 100%;
  text-align: center;
  align-content: center;
  color: var(--color-text2);
  font-size: 1em;
  font-weight: 600;
}
.wrap_descript .sec2 .btn:hover::before, .wrap_descript .sec2 .btn:hover::after {
  width: 0;
  height: 0;
}
.wrap_descript .sec3 p {
  text-align: center;
}
.wrap_descript .sec3 .area_lists {
  display: flex;
  gap: min(3vw, 20px);
  margin-top: 3%;
  font-size: min(3vw, 22px);
}
.wrap_descript .sec3 .area_lists h3 {
  color: var(--color-text2);
  text-align: center;
  margin-bottom: 0.8em;
  font-size: 1em;
}
.wrap_descript .sec3 .area_lists li {
  border: 1px solid var(--color-text-content5);
  padding: 1.8em 0.8em;
  flex: 1;
  position: relative;
}
.wrap_descript .sec3 .area_lists li::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: 1.8em solid var(--color-text2);
  border-right: 1.8em solid transparent;
  position: absolute;
  bottom: 0;
  left: 0;
}
.wrap_descript .sec4 .sec_title {
  text-align: left;
  margin-left: -1.7em;
}
.wrap_descript .sec4 .type_lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(6vw, 6rem);
}
.wrap_descript .sec4 .type_lists .factory {
  grid-row: span 2;
}
.wrap_descript .sec4 .type_lists .factory .pic_side {
  margin-top: 20px;
  overflow: hidden;
}
.wrap_descript .sec4 .type_lists .factory .pic_side img {
  transition: 0.3s;
}
.wrap_descript .sec4 .type_lists .factory .pic_side:hover img {
  scale: 1.02;
  transform-origin: bottom left;
}
.wrap_descript .sec4 .type_lists .grave {
  grid-column: span 2;
  display: flex;
  align-items: center;
  position: relative;
  gap: 1em;
}
.wrap_descript .sec4 .type_lists .grave::after {
  content: "";
  display: block;
  width: 100%;
  height: 36px;
  background-color: var(--color-text-content5);
  position: absolute;
  bottom: 5%;
  z-index: -1;
}
.wrap_descript .sec4 .type_lists .grave > div {
  flex: 1;
}
.wrap_descript .sec4 .type_lists .grave .pic_side img {
  box-shadow: -12px -12px var(--color-tabs);
}

@media (max-width: 767px) {
  .wrap_descript .main_visual {
    background-image: url(../images/descript/main_visual_m.jpg);
    height: 115.8139534884vw;
  }
  .wrap_descript .main_visual .text {
    width: 15em;
    height: 3.6em;
    font-size: 5vw;
    top: initial;
    transform: translateY(0);
    bottom: 10%;
    left: 0;
    background-image: linear-gradient(to right, var(--color-text3) 70%, transparent);
    align-content: center;
  }
  .wrap_descript .main_visual .text h3 {
    padding-left: 0.5em;
    width: fit-content;
    font-weight: normal;
    line-height: 1.2;
  }
  .wrap_descript .sec_title {
    font-size: 5.2vw;
  }
  .wrap_descript .sec p {
    font-size: 3.6vw;
  }
  .wrap_descript .sec1 .intro_lists {
    margin-right: calc(50% - 50vw);
    overflow-x: auto;
  }
  .wrap_descript .sec1 .intro_lists li {
    flex-shrink: 0;
    width: 240px;
  }
  .wrap_descript .sec {
    padding: 8% 0;
  }
  .wrap_descript .sec2 {
    border-bottom: none;
  }
  .wrap_descript .sec2 .pic_box {
    flex-direction: column;
    gap: min(3vw, 20px);
  }
  .wrap_descript .sec2 .btn {
    font-size: 4.2vw;
    margin: 8% auto 0;
  }
  .wrap_descript .sec3 .area_lists {
    flex-direction: column;
    font-size: 5vw;
  }
  .wrap_descript .sec3 .area_lists li {
    padding: 1em;
  }
  .wrap_descript .sec4 .type_lists {
    grid-template-columns: 1fr;
  }
  .wrap_descript .sec4 .type_lists .factory {
    grid-row: initial;
  }
  .wrap_descript .sec4 .type_lists .grave {
    grid-column: initial;
    flex-direction: column-reverse;
    gap: 6vw;
  }
  .wrap_descript .sec4 .sec_title {
    width: fit-content;
    margin-inline: auto;
  }
  .wrap_descript .sec4 .type_lists .grave::after {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */