@charset "UTF-8";
/* global */
:root {
  --blue: #1e90ff;
  --white: #ffffff;
    /* color: var(--blue); */
}
body {
    font-family: "Noto Sans TC", sans-serif;
    color: #434343;
    font-size: 0.875rem;
    /*	line-height: 1.8;*/
    overflow-x: hidden;
}
*, *:before, *:after {
    box-sizing: border-box;
	 -webkit-box-sizing: border-box;
}
*:focus { 
    outline: none; 
}
table {
    width: 100%;
}
a {
    text-decoration: none;
    color: currentColor;
}
a:hover {
/*    text-decoration: underline;*/
}
.link {
    color: #007dc5;
    display: inline-block;
}
.link:hover {
    text-decoration: underline;
}
p, .p {
    margin: 0.5rem 0;
	line-height: 1.5;
}
.clear:after {
	content: '';
	display: table;
	clear: both;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.tl {
    text-align: left;
}
.tc {
    text-align: center;
}
.tr {
    text-align: right;
}
.inner {
	max-width: 1366px;
	margin: auto;
}
main {
	
}
section {
	
}
.video_wrap {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.video_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	max-height: 100%;
	max-width: 100%;
	min-height: 100%;
	min-width: 100%;
	width: 0;
    border-radius: 10px;
    overflow: hidden;
}
.map_wrap {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
    
}
.map_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	max-height: 100%;
	max-width: 100%;
	min-height: 100%;
	min-width: 100%;
	width: 0;
    border: 1px solid #999999;
}
.max100 {
    max-width: 100%;
}
.full {
    width: 100%;
}
.r {
    position: relative;
}
.flex {
    display: flex;
}
.flex_1 {
    flex: 1;
}
.grid {
    display: grid;
}

/* list */
.no_list {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.list1 {
    background: #ffffff;
    border-radius: 10px;
}
.list1 li {
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}
.list1 li:before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: #c4709b;
    left: 4px;
    top: 7px;
}

/* title & font-size */
h2 {
    color: #727171;
    margin: 0 0 1.5rem;
    font-size: 30px;
    text-align: center;
    letter-spacing: 6px;
    font-weight: 400;
}
h3 {
    color: #727171;
    margin: 0 0 1.5rem;
    font-size: 24px;
    text-align: center;
    letter-spacing: 6px;
    font-weight: 400;
    border-bottom: 2px solid #c4709b;
    width: fit-content;
    margin: 0 auto 2rem;
    padding: 1rem 0 0.5rem;
}
h4 {
/*    color: #259bb1;*/
}
h5 {
/*    color: #ffffff;*/
}
big {
	
}
small {
    font-size: 20px;
}

/* acc */
.acc_con {
    display: none;
}
.acc_con1 {
    display: block;
}
/* breed */
.bread {
    /* margin-bottom: 40px; */
    padding: 1rem;
    line-height: 1.2;
}
.bread a {
    position: relative;
    padding-right: 0.5rem;
}
.bread a:hover {
    text-decoration: underline;
}
.bread a:not(:last-of-type):after {
    content: '>';
    /* position: absolute; */
    /* right: 10px; */
    top: 50%;
    /* margin-top: -1px; */
    /* width: 0; */
    /* height: 0; */
    /* border-style: solid; */
    /* border-width: 3px 0 3px 6px; */
    /* border-color: transparent transparent transparent #EEA71B; */
    /* transform: translateY(-50%); */
    margin-left: 0.5rem;
}

/* btn */
button {
    appearance: none;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    border: none;
    cursor: pointer;
    background: transparent;
}
.btns > *[class^='btn'] {
    float: none;
    margin-right: 20px;
    width: 180px;
}
.btns > *[class^='btn']:last-child {
    margin-right: 0;
}
.align_center .btn1 {
    margin-top: 15px;
}
.btn {
	background-color: transparent;
	padding: 0;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}
.btn1 {
    display: block;
    background: #bbbbbb;
    color: #ffffff;
    border-bottom: 2px solid #999999;
    padding: 0.5rem;
    position: relative;
    line-height: 1;
    min-width: 110px;
    font-size: 14px;
    font-weight: 500;
    margin: 0.5rem auto;
}
.btn1:hover {
/*    background: #1c7c8e;*/
}

/* form */
.form_wrap {
    margin-bottom: 0.5vw;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}
label {
    position: relative;
    color: #c4709b;
    font-size: 18px;
    white-space: nowrap;
    margin: 0.5rem 0;
    display: block;
}
.form_wrap small {
    font-size: 77%;
}
/*
.form_wrap > label:before {
    content: '*';
    color: #ff0000;
}
*/
.form_red {
    color: #ff0000;
}
textarea.input {
	width: 100%;
	resize: none;
	padding: 10px;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	height: 100px;
}

/* input */
.input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0; /* must! */
    width: 100%;
    padding: 0 10px;
    border: 1px solid #b5b5b5;
    min-height: 40px;
    box-shadow: none;
    margin: 0;
    color: #333333;
    background: #eeeeee;
}
.input::-moz-placeholder {
  color: #434343;
  opacity: 1;
}
.input:-ms-input-placeholder {
  color: #434343;
}
.input::-webkit-input-placeholder {
  color: #434343;
}
.input[disabled] {
    background: #D1D1D1;
    -webkit-text-fill-color: #acacac;
    color: #acacac;
    opacity: 1;
}
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    width: 100%;
}
.input-group > * {
    display: table-cell;
    vertical-align: top;
}
.input-group input {
/*    color: #999999;*/
}

/* select */
select::-ms-expand {
    display: none;
}
.select1 {
    position: relative;
    text-align-last: center;
}
.select1 select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    width: 100%;
    border: 1px solid #b5b5b5;
    min-height: 40px;
    box-shadow: none;
    margin: 0;
    color: #333333;
    background: #eeeeee;
    min-width: 220px;
    padding: 0 10px;
    padding-right: 40px;
}
.select1 .arrow {
/*    border-radius: 0 3px 3px 0;*/
    position: absolute;
    right: 0;
    top: 0;
    height: 30px;
    line-height: 30px;
    pointer-events: none;
}
.select1 .arrow:before {
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    content: " ";
    display: block;
    border: 6px solid transparent;
    position: absolute;
    right: 1rem;
    top: 15px;
    border-top: 10px solid #333;
}

/* radio */
.radio_wrap {
    position: relative;
    padding: 0 25px;
    padding-bottom: 30px;
    font-size: 18px;
}
.radio_wrap input[type='radio'] {
    display: none;
}
.radio_wrap input[type='radio'] + label {
    height: 20px;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    display: inline-block;
} 
.radio_wrap input[type='radio'] + label:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100px;
    border: 2px solid #555555;
    top: 8px;
    left: 0;
}
.radio_wrap input[type='radio']:checked + label {
    color: #259bb1;
}
.radio_wrap input[type='radio']:checked + label:before {
    border-color: #259bb1;
}
.radio_wrap input[type='radio']:checked + label:after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 100px;
    background: #259bb1;
    top: 12px;
    left: 4px;
}

/* checkbox */
.checkbox_wrap {
    margin-bottom: 0.5vw;
    display: flex;
    gap: 0.5vw;
    align-items: center;
    font-size: 1.25vw;
    margin: 1.5vw 0;
}
.checkbox_wrap input[type='checkbox'] {
    display: none;
}
.checkbox_wrap input[type='checkbox'] + label {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5vw;
}
.checkbox_wrap input[type='checkbox'] + label:before {
    content: "";
    width: 2vw;
    height: 2vw;
    border-radius: 5px;
    border: 1px solid #555;
    left: 2px;
    display: inline-block;
}
.checkbox_wrap input[type='checkbox'] + label:before {
    border-radius: 0.5vw;
}
.checkbox_wrap input[type='checkbox']:checked + label:before {
    background: #555;
}

/* elements */
.box1 {
    border-radius: 40px 0 40px 0;
    padding: 2rem 3rem;
    background: #ffffff;
    color: #333;
}
.box1 .flex {
    gap: 1rem;
}
.bar1 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#259bb1+0,01b6ad+83,01b6ad+100 */
    background: #259bb1;
    /* Old browsers */
    background: -moz-linear-gradient(left, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#259bb1', endColorstr='#01b6ad', GradientType=1);
    /* IE6-9 */
    color: #ffffff;
    padding: 15px;
    position: relative;
}

/* tab */
.tab_btn {
	display: flex;
    justify-content: center;
    gap: 6%;
}
.tab_btn > * {
	position: relative;
	z-index: 2;
	text-align: center;
	cursor: pointer; 
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
}
.tab_btn .acc_btn {
    background: #f3edf9;
    color: #713b93;
    /* border-radius: 25px 25px 0 0; */
}
.tab_main .tab_menu0 {
    border-radius: 100px 100px 0 0;
    min-width: 220px;
    padding: 0.5rem 1.5rem;
    background: #c2b3d4;
    color: #fff;
    display: block;
    white-space: nowrap;
}
.acc_wrap.show .tab_menu0 {
    background: #f3edf9;
    color: #713b93;
}
.tab_con {
    background: #f3edf9;
    padding: 1rem 0 7rem;
    /* margin-bottom: 5rem; */
}
.tab_con > div {
	opacity: 0;
	transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
	display: none;
/*	padding: 10px;*/
}
.tab_con > div.show {
	display: block;
}
.tab_con > div.fade {
	opacity: 1;
}

/* pagers */
.pagers {
    text-align: center;
    margin: 50px auto 0;
}
.pagers .num {
    color: #666666;
    margin: 0 3px;
    width: 8px;
    display: inline-block;
    box-sizing: border-box;
    text-indent: -999px;
    overflow: hidden;
    border-radius: 1000px;
    background: #c9caca;
    height: 8px;
}
.pagers .num.cur,
.pagers .num:hover {
    background: #ed94b8;
}
.pagers .btn {
    padding: 6px;
    min-width: 30px;
    display: inline-block;
    box-sizing: border-box;
}

/* owl-carousel */
.banner .owl-carousel:before {
    position: absolute;
    content: '';
    background-image: url(../img/img-wave.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 5.2vw;
    left: 0;
    bottom: -1px;
    z-index: 1;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    font-size: 0px;
    background: url(../img/icon-arrow-01.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    aspect-ratio: 1 / 1;
    width: 50px;
    position: absolute;
    top: 50%;
    margin-top: -60px;
}
.owl-carousel .owl-nav button.owl-prev {
    left: 30px;
}
.owl-carousel .owl-nav button.owl-next {
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    /*IE*/
    filter: FlipH;
    right: 30px;
}
.owl-carousel .owl-dots {
    text-align: center;
    margin: 2rem 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 100%;
}
.banner .owl-carousel .owl-dots {
    bottom: 2rem;
    margin: 0;
}
.owl-carousel .owl-dots button.owl-dot {
    width: 8px;
    height: 8px;
    background: #c9caca;
    display: inline-block;
    border-radius: 100px;
    margin: 0 5px;
}
.owl-carousel .owl-dots button.owl-dot {
    transition: background .3s;
}
.owl-carousel .owl-dots button.owl-dot.active, .owl-carousel .owl-dots button.owl-dot:hover {
	background: #c4709b;
}

/* popup */
.p_layout {
    position: relative;
    background: #fff;
    padding: 1rem;
    background-size: cover;
    min-height: 50vh;
    margin: 1rem auto;
    color: #c4709b;
    text-align: center;
    max-width: 650px;
}
.mfp-container {
    padding: 0;
}
.mfp-bg {
    background: rgba(0,0,0,.75);
}
button.mfp-close {
    background-image: url(../img/icon-close-02.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 1;
    font-size: 0px;
    width: 32px;
    height: 32px;
    right: 1rem;
    top: 1rem;
}
.mfp-close:active {
    top: 1rem;
}
#finished {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* scrollbar */
.scroll_con {
    width: 960px;
/*    height: 150px;*/
    max-width: 100%;
}
.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: rgba(0, 0, 0, 0.4);
}
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ 
   background-color: rgba(0, 0, 0, 0.4);
}
.mCustomScrollBox {
    height: auto;
}
@media only screen and (min-width: 769px) {
    .mCSB_container {
    width: 960px !important;
}
}


/* header */
header {
    /* padding: 0 0 1rem; */
    font-size: 16px;
}
header .flex {
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}
nav {
    display: flex;
}
nav a {
    color: #434343;
    position: relative;
    padding: 40px 1rem 1rem;
    letter-spacing: 2px;
    font-weight: 500;
    position: relative;
    /* margin: 0 1rem; */
}
nav a:before {
    position: absolute;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../img/icon-leaf.svg);
    background-size: cover;
    width: 28px;
    aspect-ratio: 63 / 56;
    transition: all .3s;
    opacity: 0;
    top: 5px;
}
nav a:hover:before, nav a.cur:before {
    opacity: 1;
    top: 0px;
}
.logo {
    width: 285px;
    display: block;
    position: relative;
    top: 10px;
    font-size: 0px;
}
.input2 {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0; /* must! */
    width: 100%;
    padding: 0 1rem;
    border: 1px solid #999999;
    min-height: 32px;
    box-shadow: none;
    margin: 0;
    color: #434343;
    border-radius: 20px;
    font-size: 16px;
}
.input2::-moz-placeholder {
    color: #434343;
    opacity: 1;
    letter-spacing: 1px;
}

.input2:-ms-input-placeholder {
    color: #434343;
    letter-spacing: 1px;
}

.input2::-webkit-input-placeholder {
    color: #434343;
    letter-spacing: 1px;
}
.btn-search {
    background-image: url(../img/icon-search.png);
    background-size: 100% auto;
    width: 20px;
    aspect-ratio: 1 / 1;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background-position: center;
}
.search_box {
    max-width: 180px;
    min-width: 150px;
}
.search_box label {
    display: none;
}
.sub_menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #713b93;
    color: #fff;
    z-index: 3;
    letter-spacing: 1px;
    display: none;
    
/*    display: block !important;*/
}
.sub_menu.show {
    display: block;
}
.sub_menu .acc_con {
    display: block;
}
.sub_menu .inner {
    max-width: 1024px;
}
.sub_menu_tit {
    display: flex;
}
.sub_menu_tit > li {
/*    transition: all .3s;*/
}
.sub_menu_tit > li:hover {
    color: #713b93;
    background: #f3edf9;
}
.sub_menu_tit > li:hover > a {
    border-bottom: 2px solid #713b93;
}
.sub_menu_tit > li:hover .menu_tit1 {
    font-weight: 700;
}
.sub_menu_tit > li:hover .menu_tit2 {
    font-weight: 700;
}
.sub_menu_tit > li:first-of-type > a {
    padding-left: 4rem;
}
.sub_menu_tit > li:first-of-type .acc_con a {
/*    border: 1px solid red;*/
    padding-left: 4rem;
}
.sub_menu_tit > li:last-of-type > a {
    padding-right: 4rem;
}
.menu_tit1 {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 20px;
    border-bottom: 2px solid #fff;
    min-width: 150px;
    white-space: nowrap;
}
.menu_tit2 {
    font-size: 18px;
    padding: .5rem 1.5rem 1rem;
    white-space: nowrap;
}
.multi_line .menu_tit2 {
    width: 170px;
}
.sub_menu_tit ul li:has(.menu_tit2) {
    display: flex;
    padding-bottom: .5rem;
    align-items: flex-start;
}
.menu_tit3 {
    position: relative;
    display: block;
    padding: 0 1rem;
    font-weight: 400;
    margin: .5rem 0;
    /* padding: 1rem 1rem 0.5rem; */
    white-space: nowrap;
}
.menu_tit3:before {
    position: absolute;
    content: '';
    width: 8px;
    /* height: 8px; */
    border-radius: 100px;
    background: #713b93;
    transition: all .3s;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    aspect-ratio: 1/1;
    opacity: 0;
}
.menu_tit3:hover:before {
    opacity: 1;
}
.menu_tit3 ~ ul {
    margin-left: 2ch;
}
.menu_tit1 ~ ul {
    min-height: 70px;
}

/* footer */
footer {
	background: #c2b2d3;
    padding: 3rem 0;
    color: #fff;
}
footer h2 {
    color: #fff;
    margin-bottom: 2rem;
}
footer .flex {
    gap: 3rem;
}
footer a {
/*    color: currentColor;*/
}
.links_wrap {
    /* padding-left: 2rem; */
}
.links_wrap a {
    display: flex;
    font-size: 20px;
    gap: 0.5rem;
    align-items: baseline;
    margin-bottom: 0.5rem;
}
.item:has(.links_wrap) {
    align-self: flex-end;
}
.copy {
    font-size: 14px;
    /* padding-left: 2rem; */
    margin: 2rem 0 0;
}
.info_list {
    display: flex;
    flex-wrap: wrap;
    line-height: 1.5;
    /* gap: 2rem; */
}
.info_list li {
    display: flex;
    gap: 0.5rem;
    margin-right: 4rem;
    /* margin-bottom: 0.5rem; */
}
.info_list span {
    white-space: nowrap;
}
.box1 .other_flex {
    gap: 3rem;
}

/* 首頁 */
.service_list {
/*    background: #f8f6e3;*/
    padding-bottom: 3rem;
}
main.home .service_list {
    background: #f8f6e3;
}
.service_list .inner {
    max-width: 1200px;
}
.service_list .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.service_list .grid .item {
    position: relative;
    padding-top: 85px;
    display: flex;
}
.service_list .grid .img {
    width: 128px;
    /* height: 78px; */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
/*    border: 1px solid red;*/
    aspect-ratio: 95/78;
}
.service_list .grid .img img {
    object-fit: contain;
    object-position: center bottom;
    width: 100%;
    height: 100%;
    display: block;
}
.service_list .grid .box1 {
    position: relative;
    padding: 4rem 2rem 2rem;
/*    min-height: 190px;*/
    flex: 1;
}
.service_list .grid .box1:before {
    position: absolute;
    content: '';
    left: 0;
    transform: translateX(-50%);
    background-image: url(../img/icon-leaf.svg);
    background-size: cover;
    width: 50px;
    aspect-ratio: 63 / 56;
    transition: all .3s;
    /* opacity: 0; */
    top: -10px;
    left: 15px;
}
.service_list .grid .tit {
    position: relative;
    margin-bottom: 0.5rem;
}
.service_list .grid .ch {
    font-size: 18px;
    color: #c4709b;
    position: relative;
    z-index: 1;
    font-weight: 500;
}
.service_list .grid .en {
    font-family: "Noto Serif TC", serif;
    font-size: 40px;
    color: #eac8ed;
    position: absolute;
    left: 0;
    bottom: 4px;
    z-index: 0;
    opacity: .5;
}
.service_list li {
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}
.service_list li:before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: #c4709b;
    left: 4px;
    top: 7px;
}
.news_list {
    background: #f3edf9;
    padding: 3rem 0;
}
.news_list .box1 {
    padding: 2rem 2rem 3rem;
}
.news_tit {
    color: #c4709b;
    font-size: 18px;
    margin: .5rem 0;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    visibility: visible;
}
.news_desc p {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    visibility: visible;
    min-height: 85px;
}
.btn-more {
    font-size: 16px;
    text-decoration: underline;
    color: #727171;
    float: right;
}
.news_list .owl-carousel {
    max-width: 1122px;
    margin: auto;
    padding: 0 115px 80px;
}
.mobile_btn {
    display: none;
}

/* page */
main.page {
    background-color: rgb(249, 246, 228);
}
.banner_page .item {
    /* height: 200px; */
    position: relative;
}
.banner_page img {
    /* object-fit: cover; */
    /* object-position: top center; */
    /* height: 100%; */
}
.top_tab {
    font-size: 1.5vw;
    font-weight: 700;
    max-width: 26vw;
    width: 26vw;
    border-radius: 2.6vw 2.6vw 0 0;
    background-color: rgb(249, 246, 228);
    color: rgb(113, 59, 147);
    line-height: 1;
    letter-spacing: 0.3vw;
    margin: auto;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    padding: 0.8vw 0.8vw 0;
}
.inner2 {
    max-width: 1024px;
    margin: auto;
}

/* news */
.news_grid {
    /*    grid-template-columns: repeat(2, 1fr);*/
    gap: 2rem;
    margin-bottom: 1rem;
}
.news_grid .img {
    width: 200px;
}
.news_grid .news_tit {
    /* width: 210px; */
}
.box1.all_r {
    border-radius: 20px;
    padding: 2rem;
}
.box1.flex {
    gap: 1rem;
    align-items: center;
}
.news_grid p {
    -webkit-line-clamp: 4;
    min-height: 65px;
}
.tab_menu0 + .acc_con {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 1;
    top: 100%;
    background: rgba(255,255,255,.9);
    
/*    display: block;*/
}
.tab_link {
    font-weight: 500;
}
.tab_main .tab_menu1 {
    background: #9b75b3;
    color: #fff;
    font-size: 18px;
    display: block;
    padding: .8rem;
    border-radius: 0;
}
.tab_main .tab_menu2 {
    padding: .5rem 0;
    font-size: 14px;
    display: inline-block;
    font-weight: 500;
    color: #666666;
    position: relative;
}
.tab_main .tab_menu2:hover:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: #c4709b;
    left: 0;
    bottom: 5px;
}
.tab_menu_list {
    padding: .5rem 0;
    border-bottom: 10px solid #c2b3d4;
}

/* 消息列表 */
.grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.news_grid.type2 {
    gap: 1rem;
}
.news_grid.type2 .flex {
    flex-direction: column;
    gap: 0;
}
.news_grid.type2 .news_desc {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    width: 100%;
}
.btn-link {
    background-image: url(../img/icon-link-01.png);
    aspect-ratio: 1 / 1;
    width: 37px;
}
.news_grid.type2 .news_tit {
    -webkit-line-clamp: 2;
    min-height: 40px;
    flex: 1;
}
.news_grid.type2 .box1.all_r {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
}
.article_wrap {
    padding: 0 4rem;
    margin-bottom: 2rem;
}
.a_tit {
    text-align: center;
    font-weight: 500;
    color: #c4709b;
    font-size: 18px;
    margin: 1rem 0;
}
.a_date {
    text-align: center;
    margin: 1rem 0;
}
.thumb-carousel {
    margin: 2rem 0;
}
.thumb-carousel .owl-nav button.owl-prev, .thumb-carousel .owl-nav button.owl-next {
    width: 36px;
    margin-top: -18px;
}
.thumb-carousel .owl-nav button.owl-prev {
    left: -60px;
}
.thumb-carousel .owl-nav button.owl-next {
    right: -60px;
}
.news_desc p.all_show {
    -webkit-line-clamp: initial;
    min-height: auto;
}
.news_detail .news_grid .img {
    width: 260px;
}
.news_detail .news_grid .flex {
    align-items: center;
    gap: 25px;
}
.news_detail .news_grid.reverse .flex {
    flex-direction: row-reverse;
}
.grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.news_grid.grid-3 {
    gap: 25px;
}
.pic-carousel {
    padding-bottom: 3rem;
}
.pic-carousel .owl-dots button.owl-dot.active, .pic-carousel .owl-dots button.owl-dot:hover {
    background: #ed94b8;
}
.pic-carousel .owl-nav button.owl-prev, .pic-carousel .owl-nav button.owl-next {
    width: 36px;
    margin-top: -18px;
}
.pic-carousel .owl-nav button.owl-prev {
    left: -60px;
}
.pic-carousel .owl-nav button.owl-next {
    right: -60px;
}
.pic-carousel .owl-dots {
    margin-top: 1rem;
}

/* 資料庫 */
.scroll_x {
    overflow-x: auto;
}
.sorts {
    font-size: 16px;
    display: inline-block;
    margin-left: 5px;
    cursor: pointer;
}
.sorts.asc {
    transform: scaleY(-1);
}
.table1 {
    border-collapse: collapse;
}
.table1 th {
    padding: 10px;
    text-align: left;
    font-size: 18px;
    color: #c4709b;
    font-weight: 400;
    border-bottom: 1px solid #c4709b;
    white-space: nowrap;
}
.table1 td {
    padding: 10px 10px 5px;
    white-space: nowrap;
}
.table1 .tc {
    text-align: center;
}
.btn-link2 {
    background-image: url(../img/icon-link-02.png);
    aspect-ratio: 1 / 1;
    width: 33px;
    font-size: 0;
}
.btn-download {
    background-image: url(../img/icon-dl-01.png);
    aspect-ratio: 1 / 1;
    width: 33px;
    font-size: 0;
}

/* 關於我們 */
.about_area {
/*    min-height: 500px;*/
/*    padding: 3rem 0;*/
}
.news_grid.type3 {
    max-width: 750px;
    margin: auto;
}
.news_grid.type3 .flex {
    gap: 2rem;
    align-items: center;
}
.news_grid.type3 .img {
/*    width: 300px;*/
}
.service_list.type2 .grid .item {
    padding-top: 115px;
}
.service_list.type2 .box1 {
    padding: 1.8rem 1.2rem 1.5rem;
}
.service_list.type2 .box1:before {
    opacity: 0;
}
.service_list.type2 .grid {
    gap: 1rem;
}
.service_list.type2 .grid .tit {
    text-align: center;
}
.service_list.type2 .grid .img {
    aspect-ratio: 144 / 140;
    width: 144px;
}
.bg_white {
    background: #fff;
}
.service_list.type3 .grid .item {
    padding-top: 0;
    margin-top: 2rem;
}
.service_list.type3 .box1 {
    border: 1px solid #c4709b;
    padding: 1.5rem 1rem 0;
}
.service_list.type3 .grid .img {
    position: relative;
/*    margin-top: 2rem;*/
}
.service_list.type3 .grid .box1:before {
    background-image: url(../img/a-deco-01.png);
    width: 110px;
    aspect-ratio: 120 / 107;
    right: 0;
    left: initial;
    top: 0;
    transform: none;
}
.service_list.type3 .grid {
    gap: 1rem;
}
.service_list.type3 .grid .ch {
    min-height: 45px;
    display: flex;
    align-items: flex-end;
}
.service_list.type3 ul {
    min-height: 65px;
}
.flex.news_grid.grid-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0;
}
.flex.news_grid.grid-3 .item {
    flex-basis: 30%;
    /* max-width: 33.33%; */
}
.flex.news_grid.grid-3 .box1 {
    padding: 2rem 1.5rem;
}
.flex.news_grid.grid-3 .img {
    width: 100%;
}
.about_index .tab_con {
    padding-bottom: 0;
}
.btn_wrap {
    text-align: center;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.traffic_list {
    gap: 2rem;
/*    align-items: center;*/
    margin-bottom: 2rem;
}
.traffic_list .con {
    padding-top: 1rem;
}
.traffic_list .list1 {
    margin-bottom: 1.5rem;
}

/* 場地預約 */
.select_wrap {
    justify-content: space-around;
/*    max-width: 520px;*/
    max-width: 600px;
    margin: 0 auto 2rem;
}
.travel .news_grid {
    margin: 4rem 0;
    justify-content: center;
    align-items: center;
}
.travel .news_grid .img {
    width: 250px;
}
.table2 {
    border-spacing: 6px;
}
.table2 th {
    padding: 10px;
    font-size: 18px;
    color: #c4709b;
    font-weight: 500;
    white-space: nowrap;
    background: #ffdbdb;
    text-align: center;
    width: 16.66%;
}
.table2 td {
    padding: 10px;
    background: #fff0f0;
    color: #666666;
}
.table2 .a_tit {
    margin-top: 0;
    font-size: 16px;
}
.btn2 {
    display: block;
    background: #c4709b;
    color: #ffffff;
    padding: 0.8rem;
    position: relative;
    line-height: 1;
    width: 220px;
    font-size: 18px;
    font-weight: 500;
    /* margin: auto; */
    text-align: center;
}
.date_table2 {
    font-size: 18px;
}
.date_table2 th {
    padding: 20px 10px;
}
.t_full {
   color: #999999; 
}
.t_nofull {
   color: #cc0000; 
}
.btn2.rounded {
    border-radius: 50px;
    max-width: 115px;
    padding: 0.5rem;
    margin: 1rem auto 0;
}
.btn2.disabled {
    background: #cccccc;
}
.agree_txt {
    max-width: 450px;
    margin: 2rem auto;
}
.place4 .tab_con {
    background: #fff;
}
.apply-date {
    text-align: right;
}
.alert-text {
    color: #cc0000;
}
.place-apply-2 {
    align-items: center;
    justify-content: space-between;
}
.visually-hidden {
    display: none;
}
fieldset {
    border: none;
    padding: 0;
}
.apply-form {
    font-size: 14px;
}
.apply-form label {
    color: #434343;
    font-size: 14px;
    white-space: inherit;
}
.apply-people {
    display: inline-block;
}
.apply-form select {
    min-width: inherit;
}
.date-select-group.hidden {
    display: none;
}
.check-group {
/*    display: flex;*/
}
.date-select-group .year-select {
    width: auto;
}
.apply-form-item .short {
    width: 50px;
    text-align: center;
}
.apply-form-item .short-2 {
    width: 120px;
}
.go-back-btn.plus.disabled {
    opacity: .3;
    pointer-events: none;
}
.place2 .select_wrap .item {
    display: flex;
    gap: 1rem;
}

/* 女路預約 */
.travel3 .tab_con {
    background: #fff;
}
.apply-form-group-subtitle {
    font-size: 16px;
}
.radio-item .apply-form-title {
    margin-top: 6px;
}
.radio-item .apply-form-necessary {
    margin-top: 6px;
}
.apply-form-item {
    margin-bottom: 20px;
}
.hr1 {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

/* 網站導覽 */
.sub_menu2 .sub_menu_tit {
    justify-content: center;
    flex-wrap: wrap;
}
.sub_menu2 .sub_menu_tit > li:hover {
    color: currentColor;
    background: none;
    border-width: 1px;
}
.sub_menu2 .menu_tit1 {
    border-bottom: 1px solid #434343;
}
.sub_menu2 .sub_menu_tit > li:hover .menu_tit1 {
    font-weight: 400;
}
.sub_menu2 .sub_menu_tit > li:hover .menu_tit2 {
    font-weight: 400;
}
.sub_menu2 .sub_menu_tit > li:hover > a {
    border-bottom: 1px solid #434343;
}

/* 站內搜尋 */
.sreach_list {
    margin-bottom: 2rem;
}
.search_box2 {
    max-width: 26vw;
    margin: 0 auto 2rem;
}

/* pc & mobile */
.pc {
	display: initial;
}
.mo {
	display: none;
}

@media only screen and (max-width: 1366px) {
    .inner {
        padding: 0 2rem;
    }
    .links_wrap {
        padding-left: 0;
    }
    .copy {
        padding-left: 0;
    }
    footer .flex {
/*        flex-direction: column;*/
    }
    footer .box1 {
/*        padding: 1rem 1.5rem;*/
    }
    footer .flex_1:has(.box1) {
        flex: none;
        max-width: 60%;
    }
    footer .box1 form .flex {
        flex-direction: column;
        gap: 0;
    }
    .box1 .other_flex {
        flex-direction: column;
        gap: 0;
    }
    footer .inner > .flex {
/*        flex-direction: column-reverse;*/
        gap: 1rem;
    }
    .links_wrap a {
        font-size: 16px;
        align-items: flex-start;
    }
    nav a {
        padding: 40px 0.2rem 1rem;
        margin: 0 0.5rem;
    }
    .sub_menu .inner {
        max-width: inherit;
        padding: 0 1rem;
    }
    .sub_menu_tit {
        justify-content: center;
    }
    .sub_menu_tit > li {
/*        flex: 1;*/
    }
    .sub_menu_tit ul li:has(.menu_tit2) {
        /* flex-direction: column; */
    }
    .menu_tit2 ~ ul .menu_tit3 {
        margin-left: 1.8rem;
    }
    .menu_tit1 {
        min-width: inherit;
    }
    .sub_menu_tit > li:first-of-type > a {
        padding-left: 1.5rem;
    }
    .sub_menu_tit > li:first-of-type .acc_con a {
/*    border: 1px solid red;*/
    padding-left: 1.5rem;
}
    .sub_menu_tit > li:last-of-type > a {
        padding-right: 1.5rem;
    }
    .logo {
        width: 200px;
        /* flex-basis: 100%; */
    }
    nav a:before {
        width: 20px;
        top: 5px;
    }
    nav a:hover:before, nav a.cur:before {
        top: 10px;
    }
    header .inner {
        padding: 0 1rem;
    }
    .search_box {
        /* flex: 1; */
    }
    .service_list .inner {
        max-width: inherit;
    }
    .news_list .owl-carousel {
        max-width: inherit;
        padding: 0 80px 80px;
    }
    .owl-carousel .owl-nav button.owl-prev {
        left: 0;
    }
    .owl-carousel .owl-nav button.owl-next {
        right: 0;
    }
}

@media only screen and (max-width: 1024px) {
    .service_list .grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 80%;
        margin: auto;
    }
    .banner .owl-carousel .owl-dots {
        bottom: 1.5vw;
    }
    .tab_con .inner2 {
        padding: 0 1.5rem;
    }
}

@media only screen and (max-width: 1000px) {
    header .flex {
        flex-wrap: wrap;
    }
    nav {
/*        flex-basis: 75%;*/
        /* flex: 1; */
    }
    .search_box {
        flex-basis: 22%;
        justify-items: flex-end;
        margin-left: auto;
        margin-bottom: 1rem;
    }
    .menu_tit1 {
/*        min-width: inherit;*/
    }
    
    
    /* mobile menu... */
    .inner {
        padding: 0 1.5rem;
    }
    .sub_menu_tit ul li:has(.menu_tit2) {
         flex-direction: column;
         padding-bottom: 0;
    }
    
    .box1 {
        padding: 1rem 1.5rem;
        border-radius: 20px 0 20px 0;
    }
    nav {
        display: none;
    }
    .sub_menu_tit {
        display: block;
    }
    .sub_menu .inner {
        padding: 0;
    }
    .multi_line .menu_tit2 {
        width: 100%;
    }
    .menu_tit2 {
        padding: 1rem 1.5rem;
        position: relative;
/*        border: 1px solid red;*/
        width: 100%;
    }
    .menu_tit2.acc_btn:before, .menu_tit2.acc_btn:after {
        position: absolute;
        content: '';
        width: 18px;
        height: 3px;
        right: 1.5rem;
        background: #713b93;
        top: 50%;
        margin-top: -2px;
        transition: all .3s;
    }
    .menu_tit2:after {
        transform: rotate(-90deg);
    }
    .sub_menu_tit > li:last-of-type > a {
        border: none;
    }
    .acc_wrap.open > .acc_btn {
        color: #713b93;
        background: #f3edf9;
    }
    .acc_wrap.open > .menu_tit2:after {
        transform: none;
    }
    .menu_tit2 ~ .acc_con > ul {
/*        background: red;*/
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem .5rem;
    }
    .search_box {
        width: 100%;
        /* height: 50px; */
        margin-left: 0;
        flex-basis: inherit;
        max-width: none;
        /* position: static; */
        background: #fff;
        padding: 0 1rem 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 2;
/*        border-top: 1px solid #999999;*/
        
        display: none;
    }
    .search_box.show {
        display: block;
    }
    .search_box .input2 {
        /* position: absolute; */
        width: 100%;
        left: 0;
        border-radius: 100px;
        z-index: 2;
        height: 50px;
        top: 100%;
    }
    .search_box .btn-search {
        display: none;
    }
    .btn-search {
        width: 30px;
        position: static;
        transform: none;
    }
    .btn-menu {
        background-image: url(../img/icon-menu.png);
        background-size: 100% auto;
        background-repeat: no-repeat;
        width: 30px;
        aspect-ratio: 59 / 50;
        background-position: center;
    }
    .btn-menu.show {
        background-image: url(../img/icon-close.png);
        aspect-ratio: 1 / 1;
    }
    .mobile_btn {
        display: flex;
        gap: 0.5rem;
        align-self: center;
    }
    .logo {
        top: inherit;
        /* width: 150px; */
    }
    header {
        padding: 0.5rem 0 0;
    }
    header.show {
        background: #713b93;
    }
    header.show .st9, header.show .st0 {
        fill: #fff;
    }
    header.show .btn-search {
        display: none;
    }
    header .inner {
        padding: 0 1rem 0.5rem;
    }
    .menu_tit1 {
        padding: 1.5rem;
    }
    .sub_menu .acc_con {
        display: none;
    }
    
    /* end of mobile menu... */
    
    /* tab menu 不換行... */
    .tab_btn {
        overflow-x: auto;
        justify-content: start;
    }
    .tab_btn > .acc_wrap {
        position: static;
    }
    .tab_main .inner2 {
        position: relative;
    }
    .tab_close {
        background-color: #713b93;
        padding: .5rem;
        background-image: url(../img/icon-close.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 17px;
        min-height: 34px;
    }
    /* end of tab menu 不換行... */
    
    .tab_menu_list {
        border: none;
    }
    
    .search_box2 {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    .search_box2 .btn-search {
        position: absolute;
        transform: translateY(-50%);
        width: 20px;
    }
}

@media only screen and (max-width: 769px) {
    .inner {
        padding: 0 1.5rem;
    }
    .sub_menu_tit ul li:has(.menu_tit2) {
         flex-direction: column;
         padding-bottom: 0;
    }
    
    .box1 {
        padding: 1rem 1.5rem;
        border-radius: 20px 0 20px 0;
    }
    .form_wrap {
        flex-direction: column;
        gap: 0;
    }
    .form_wrap .flex_1 {
        width: 100%;
    }
    .box1 .other_flex {
        gap: 0;
    }
    .info_list {
        flex-direction: column;
    }
    .info_list li {
        margin-right: 0;
    }
    .info_list span {
        white-space: nowrap;
    }
    .links_wrap a {
        font-size: 16px;
        margin-bottom: 1.5rem;
    }
    .links_wrap .icon img {
        height: 20px;
        width: auto;
    }
    .copy {
        font-size: 12px;
        text-align: center;
        line-height: 1.5;
        margin: 0;
    }
    footer {
        padding: 2rem 0;
    }
    nav {
        display: none;
    }
    .sub_menu_tit {
        display: block;
    }
    .sub_menu .inner {
        padding: 0;
    }
    .multi_line .menu_tit2 {
        width: 100%;
    }
    .menu_tit2 {
        padding: 1rem 1.5rem;
        position: relative;
/*        border: 1px solid red;*/
    }
    .menu_tit2.acc_btn:before, .menu_tit2.acc_btn:after {
        position: absolute;
        content: '';
        width: 18px;
        height: 3px;
        right: 1.5rem;
        background: #713b93;
        top: 50%;
        margin-top: -2px;
        transition: all .3s;
    }
    .menu_tit2:after {
        transform: rotate(-90deg);
    }
    .sub_menu_tit > li:last-of-type > a {
        border: none;
    }
    .acc_wrap.open > .acc_btn {
        color: #713b93;
        background: #f3edf9;
    }
    .acc_wrap.open > .menu_tit2:after {
        transform: none;
    }
    .menu_tit2 ~ .acc_con > ul {
/*        background: red;*/
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem .5rem;
    }
    .search_box {
        width: 100%;
        /* height: 50px; */
        margin-left: 0;
        flex-basis: inherit;
        max-width: none;
        /* position: static; */
        background: #fff;
        padding: 0 1rem 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 2;
/*        border-top: 1px solid #999999;*/
        
        display: none;
    }
    .search_box.show {
        display: block;
    }
    .search_box .input2 {
        /* position: absolute; */
        width: 100%;
        left: 0;
        border-radius: 100px;
        z-index: 2;
        height: 50px;
        top: 100%;
    }
    .search_box .btn-search {
        display: none;
    }
    .btn-search {
        width: 30px;
        position: static;
        transform: none;
    }
    .btn-menu {
        background-image: url(../img/icon-menu.png);
        background-size: 100% auto;
        background-repeat: no-repeat;
        width: 30px;
        aspect-ratio: 59 / 50;
        background-position: center;
    }
    .btn-menu.show {
        background-image: url(../img/icon-close.png);
        aspect-ratio: 1 / 1;
    }
    .mobile_btn {
        display: flex;
        gap: 0.5rem;
        align-self: center;
    }
    .logo {
        top: inherit;
        /* width: 150px; */
    }
    header {
        padding: 0.5rem 0 0;
    }
    header.show {
        background: #713b93;
    }
    header.show .st9, header.show .st0 {
        fill: #fff;
    }
    header.show .btn-search {
        display: none;
    }
    header .inner {
        padding: 0 1rem 0.5rem;
    }
    .menu_tit1 {
        padding: 1.5rem;
    }
    .sub_menu .acc_con {
        display: none;
    }
    .banner .owl-carousel:before {
        background-image: url(../img/img-wave-m.png);
        height: 13.33vw;
    }
    .banner .owl-carousel .owl-dots {
        bottom: 4vw;
    }
    .service_list .grid {
        max-width: inherit;
        gap: 4vw;
        margin-top: -0.5rem;
    }
    .service_list .grid .img {
        width: 22.6vw;
    }
    .service_list .grid .box1:before {
        width: 6.6vw;
        left: 1.8vw;
        top: -1.3vw;
    }
    .service_list .grid .box1 {
        padding: 4vw 2vw 4vw;
        min-height: 40vw;
    }
    .service_list .grid .item {
        padding-top: 16vw;
    }
    .service_list .grid .tit {
        padding-top: 5vw;
        min-height: 15vw;
    }
    .service_list .grid .ch {
        font-size: 4vw;
    }
    .service_list .grid .en {
        font-size: 7vw;
        bottom: inherit;
        top: 0;
    }
    .service_list li {
        font-size: 3vw;
        padding-left: 4vw;
    }
    .service_list li:before {
        width: 1vw;
        height: 1vw;
        left: 1.5vw;
        top: 1.8vw;
    }
    .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
        width: 24px;
        height: 24px;
    }
    .news_list .owl-carousel {
        padding: 0 0 40px;
    }
    .owl-carousel .owl-nav button.owl-prev {
        left: -12px;
    }
    .owl-carousel .owl-nav button.owl-next {
        right: -12px;
    }
    .owl-carousel .owl-dots {
        margin: 1rem 0;
    }
    .news_list .box1 {
        padding: 1rem 1rem 2.5rem;
    }
    .btn-more {
        font-size: 14px;
    }
    .news_grid {
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
    .news_grid .img {
        width: 40%;
    }
    .news_grid .news_tit {
        /* width: 85%; */
    }
    .tab_btn {
        gap: 0%;
    }
    .tab_btn .acc_btn {
/*        min-width: 125px;*/
        min-width: 33.33vw;
        border-radius: 25px 25px 0 0;
        font-size: 16px;
        white-space: nowrap;
    }
    .tab_main .tab_menu1 {
        border-radius: 0;
    }
    .box1.all_r {
        border-radius: 10px;
        padding: 1rem;
        gap: 3%;
    }
    .top_tab {
        font-size: 5.2vw;
        max-width: 66.66vw;

        width: 66.66vw;
        border-radius: 6vw 6vw 0 0;
        letter-spacing: 1.6vw;
        padding: 4vw 4vw 0;
    }
    .tab_con {
        padding-bottom: 5rem;
    }
    .news_grid p {
        -webkit-line-clamp: 2;
        min-height: inherit;
/*        font-size: 12px;*/
    }
    .bread_wrap .inner {
        padding: 0 1rem;
    }
    .bread {
        padding: 1rem 0;
        font-size: 12px;
    }
    .bread a:not(:last-of-type):after {
        margin-left: 0.3rem;
    }
    .bread a {
        padding-right: 0.3rem;
    }
    .tab_btn > .acc_wrap > .acc_con {
        width: 100vw;
    }
    .tab_btn > .acc_wrap {
        position: static;
    }
    .tab_main .inner2 {
        position: relative;
    }
    .grid.grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }
    .news_grid.type2 {
        grid-template-columns: repeat(1, 1fr);
    }
    .news_grid.type2 .img {
        width: 100%;
    }
    .banner_page .item {
        height: 55.55vw;
    }
    .article_wrap {
        padding: 0;
    }
    .thumb-carousel {
        margin: 1rem 0;
    }
    .news_detail .news_grid .flex {
        flex-direction: column;
        gap: 0;
    }
    .news_detail .news_grid.reverse .flex {
        flex-direction: column;
    }
    .article_wrap {
        margin-bottom: 1rem;
    }
    .news_detail .news_grid .img {
        width: 100%;
    }
    .news_grid.grid-3 {
        grid-template-columns: repeat(1, 1fr);
    }
    .pic-carousel .owl-nav button.owl-prev, .pic-carousel .owl-nav button.owl-next {
        margin-top: -40px;
    }
    .about_area {
/*        padding: 2rem 0;*/
    }
    .news_grid.type3 .flex {
        flex-direction: column;
        gap: 0;
    }
    .service_list.type2 .grid .img {
        width: 20vw;
    }
    .service_list.type2 .grid .item {
        padding-top: 12vw;
    }
    .news_grid.type3 .img {
        width: 100%;
    }
    .service_list.type2 .grid .tit {
        min-height: inherit;
    }
    .service_list.type3 .grid .item {
        margin-top: 0;
    }
    .service_list.type3 .grid .box1:before {
        width: 50%;
    }
    .service_list.type3 .grid {
        margin-top: 0;
    }
    .service_list.type3 .box1 {
        padding: 9vw 2vw 0;
/*        min-height: 40vw;*/
    }
    .service_list.type3 .grid .ch {
        min-height: 9vw;
    }
    .service_list.type3 .grid .tit {
        padding-top: 0;
        min-height: 9vw;
    }
    .service_list.type3 ul {
        min-height: 14vw;
        margin-left: -1vw;
    }
    .service_list.type3 .inner {
        padding: 0;
    }
    .flex.news_grid.grid-3 {
        display: grid;
    }
    .btn-reserve {
        max-width: 200px;
    }
    .traffic_list {
        flex-direction: column;
        gap: 0;
    }
    .traffic_list .img {
        text-align: center;
    }
    .select_wrap {
        flex-direction: column;
    }
    .travel .news_grid {
        flex-direction: column;
        gap: 0;
        margin: 2rem 0;
    }
    .travel .news_grid .img {
        width: 100%;
    }
    .travel .news_desc {
        width: 100%;
    }
    .date_table2 td {
        white-space: nowrap;
        font-size: 14px;
    }
    .reserve .tab_btn {
        justify-content: center;
/*        gap: 1rem;*/
    }
    .btn_wrap {
        gap: 1rem;
    }
    .place4 .box1 {
        padding-left: 0;
        padding-right: 0;
    }
    .place4 .box1 .flex.place-apply-2 {
        flex-direction: column;
        gap: 0;
    }
    .apply-alert {
        align-self: flex-start;
    }
    .apply-date {
        align-self: flex-end;
    }
    .apply-form-item .short-2 {
        width: calc(100% - 16px);
    }
    .apply-form label {
        margin-bottom: 0;
    }
    .apply-form-item .txt {
        margin-top: 10px;
    }
    .append-btn-block {
        margin-top: 10px;
    }
    .sub_menu2 .sub_menu_tit > li:first-of-type > a {
        padding: 1rem;
    }
    .sub_menu2 .menu_tit1 {
        padding: 1rem;
    }
    .sub_menu2 .menu_tit2 {
        padding: 1rem;
        font-size: 16px;
    }
    .sub_menu2 .menu_tit3 {
        margin-left: 1.2rem;
    }
    .sub_menu2 .menu_tit2 + div {
        margin-top: -0.5rem;
    }
    .sub_menu2 .menu_tit1 + div .menu_tit2 {
        padding-bottom: 0.5rem;
    }
    .sub_menu2 .sub_menu_tit > li:last-of-type > a {
        border: none;
    }
    footer .inner > .flex {
        flex-direction: column-reverse;
    }
    footer .flex_1:has(.box1) {
        max-width: none;
    }
    .banner_page img {
         object-fit: cover; 
         object-position: top center; 
         height: 100%; 
    }
    .item:has(.links_wrap) {
        text-align: center;
        width: 100%;
    }
    .links_wrap {
        display: inline-block;
        margin-top: 2rem;
    }
    .p_layout {
        max-width: inherit;
        margin: 1rem;
    }
    .place2 .select_wrap .item {
        display: block;
    }
    
    .pc {
    	display: none;
    }
    .mo {
    	display: initial;
    }
}

/* 無障礙A */
:root {
  --focus: #713b93;
}
.sub_menu {
/*    display: block !important;*/
}
.sub_menu a:focus {
    outline-color: #fff;
}
.sub_menu_tit > li:hover a:focus {
    outline-color: var(--focus);
}
a:focus {
    outline: 3px dashed var(--focus);
}
input:focus, select:focus, textarea:focus {
    outline: 3px dashed var(--focus);
}
button:focus {
   outline: 3px dashed var(--focus);
}
.owl-carousel a {
    display: block;
}
.home_slider a:focus {
    border: 3px dashed var(--focus);
}
.owl-carousel button:focus {
    outline: 3px dashed var(--focus);
}
.pagers .num:focus {
    outline: 3px dashed var(--focus);
}
.btn:focus {
    outline: 3px dashed var(--focus);
}
.check-type:focus, .radio-type:focus {
    outline: 3px dashed var(--focus);
    display: inline-block;
}
.control_wrap {
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 2;
    display: flex;
    gap: 5px;
}
.control_wrap button {
    aspect-ratio: 1;
    width: 24px;
    display: inline-block;
    cursor: pointer;
}
.btn_play {
    background-image: url(../img/play_icon.svg);
}
.btn_pause {
    background-image: url(../img/pause_icon.svg);
}
.for_accessibility a {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 99;
    width: 1px;
    height: 1px;
    white-space: nowrap;
    overflow: hidden;
    color: #000;
}
.for_accessibility a:focus {
    width: auto;
    height: auto;
    padding: 6px;
    background-color: #fff;
}
.for_accessibility div {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: transparent;
    opacity: .1
}
*:focus {
/*    outline: 3px dashed red;*/
}
.sitemap_info {
    line-height: 1.5;
    font-size: 16px;
}
.simple-text.accesskey .ct {
    height: 0
}

.simple-text.accesskey .ct > .in {
    color: #b6b6b6
}

.simple-text.accesskey .ct span {
    color: inherit
}

.simple-text.accesskey .ct a {
    color: inherit;
    display: block;
    text-align: center;
    font-size: 1.2em;
    font-weight: 700;
    border-radius: 50%;
    height: 32px;
    width: 32px;
    line-height: 28px;
    opacity: 0.1;
    color: #b6b6b6;
    position: relative;
    z-index: -1
}

.simple-text.accesskey .ct a:focus {
    opacity: 0.9;
    color: #fff;
    background-color: #1a1a1a;
    z-index: 3
}
header .simple-text.accesskey {
    justify-items: flex-end;
    margin-left: auto;
}
#Accesskey_C {
    left: -1rem;
}
#CCMS_Content #Accesskey_C {
    left: 0;
}

/* 2025-04-25 renew */
h3 + .ps {
    margin: -1rem auto 1rem;
}