:root {
  --gold: #f2af2b;
  --purple: #5b3e90;
  --lightpurple: #b899e7;
  --lightsky: #dbe9ff;
  --sky: #5ea1d4;
  --deepsky: #276493;
  --blue: #22408f;
  --redp: #7f3e97;
  --grey: #57565e;
  --deepgrey: #2f3144;
  --black: #041729;
  --lightpurple_rgb: 184, 153, 231;
  --lightsky_rgb: 219, 233, 255;
  --blue_rgb: 33, 64, 143;
  --redp_rgb: 127, 62, 151;
  --ff_zh: "Noto Sans TC", sans-serif;
  --sec_padding: 60px;
}

html {
  font-size: 18px;
}

body {
  padding-top: 59px;
  font-family: var(--ff_zh);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 1rem;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: -webkit-transform 600ms;
  transition: -webkit-transform 600ms;
  transition: transform 600ms;
  transition: transform 600ms, -webkit-transform 600ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fix_aside.is_active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.fix_aside .fx_item {
  display: block;
  cursor: pointer;
  border-radius: 5px;
  width: 56px;
  line-height: 1;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  -webkit-box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.2);
}
.fix_aside .fx_item.ic_calendar {
  border-radius: 50%;
}
.fix_aside .fx_item.is_primary {
  padding: 10px;
  font-size: 0.75em;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-weight: 400;
  line-height: 1;
}
.fix_aside .fx_item.ic_top {
  padding: 10px;
  background-color: #fff;
}
.fix_aside .fx_item.ic_top img {
  width: 36px;
}
.fix_aside .fx_item:nth-child(n+2) {
  margin-top: 10px;
}
.fix_aside .fx_item:hover {
  text-decoration: none;
  -webkit-transform: translate(-3px, -3px);
          transform: translate(-3px, -3px);
  -webkit-box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.2);
}

.g_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: var(--black);
}
.g_header.is_active {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}

@-webkit-keyframes underline {
  from {
    left: 0;
  }
  to {
    left: -100%;
  }
}

@keyframes underline {
  from {
    left: 0;
  }
  to {
    left: -100%;
  }
}
.header_wrap {
  position: relative;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.header_wrap .head_topic {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.header_wrap .nav_cnt {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header_wrap .nav_link {
  display: block;
  padding: 16px;
  background-color: rgba(var(--black_rgb), 0);
}
.header_wrap .nav_link:hover {
  background-color: rgba(var(--lightpurple), 0.5);
  text-decoration: none;
  color: var(--gold);
}
.header_wrap .sign_item .nav_link {
  position: relative;
  overflow: hidden;
}
.header_wrap .sign_item .nav_link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 2px;
  width: 200%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, var(--gold)), color-stop(var(--purple)), color-stop(90%, var(--blue)));
  background: linear-gradient(90deg, var(--gold) 10%, var(--purple), var(--blue) 90%);
  -webkit-animation: underline 1.5s linear 0s infinite alternate;
          animation: underline 1.5s linear 0s infinite alternate;
}

.header_sns {
  position: absolute;
  right: 20px;
  top: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  height: 100%;
}
.header_sns .hover {
  position: relative;
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header_sns .hover img {
  width: 40px;
  line-height: 0;
}
.header_sns .hover:hover .hover_menu {
  display: block;
}
.header_sns .hover_holder {
  cursor: pointer;
}
.header_sns .hover_menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 6px;
}
.header_sns .hover_menu .hover_item {
  cursor: pointer;
  display: block;
  overflow: hidden;
  border-radius: 11px;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
}
.header_sns .hover_menu .hover_item:nth-child(n+2) {
  margin-top: 6px;
}

.g_kv {
  position: relative;
  height: min(56.25vw, 100vh - 59px);
  background: url(img/kv/bg.jpg) center/cover no-repeat;
  overflow: hidden;
  padding: 5vh 6.25vw 7vh;
}
.g_kv .wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.g_kv .wrapper img {
  width: 100%;
}
.g_kv .wrapper .logo {
  width: 16.6666666667vw;
}
.g_kv .wrapper .title {
  color: #fff;
  font-weight: 900;
  font-size: 3.15vw;
  line-height: 1;
  padding-bottom: 2vw;
}
.g_kv .wrapper .t1 span,
.g_kv .wrapper .t2 span,
.g_kv .wrapper .date span {
  display: block;
}
.g_kv .wrapper .t1 {
  font-size: 1.45em;
  height: 1.4em;
}
.g_kv .wrapper .space {
  margin: 2.3958333333vw 0 3.6458333333vw;
  background: -webkit-gradient(linear, left top, right top, from(var(--blue)), to(var(--redp)));
  background: linear-gradient(90deg, var(--blue), var(--redp));
  height: 0.4166666667vw;
}
.g_kv .wrapper .t2 {
  white-space: nowrap;
}
.g_kv .wrapper .date {
  width: 60.4166666667vw;
}

.g_main {
  position: relative;
}
.g_main .sec_title {
  margin-bottom: 30px;
  text-align: center;
}
.g_main .sec_title .tit {
  display: inline-block;
  padding-bottom: 0.5em;
  font-size: 1.75em;
  font-weight: 300;
  line-height: 1;
  color: var(--blue);
  border-bottom: 1px solid currentColor;
}

.sec_intro {
  background-color: #fff;
  padding-top: var(--sec_padding);
  padding-bottom: calc(var(--sec_padding) * 1.25);
  color: var(--black);
}

.intro_cnt {
  margin: 0 auto;
  max-width: 55em;
  line-height: 1.67;
  color: var(--deepgrey);
}
.intro_cnt p:last-child {
  margin-bottom: 0;
}

.intro_cta {
  margin-top: 40px;
  padding: 30px 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px 4px 40px 4px;
  background: url(img/kv/bg.jpg) center/cover;
}
.intro_cta .left {
  padding: 0 4em;
  line-height: 1;
}
.intro_cta .date {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
}
.intro_cta .time {
  margin-top: 0.4em;
  font-size: 1.5em;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
.intro_cta .right {
  text-align: center;
}
.intro_cta .cta {
  position: relative;
  display: inline-block;
  font-size: 1.5em;
}
.intro_cta .cta .wrapper {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  padding: 0.8em 2.5em;
  color: var(--blue);
  line-height: 1;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.intro_cta .cta::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, var(--lightsky), var(--gold), #ffde9b);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.intro_cta .cta span {
  position: relative;
  z-index: 2;
  font-weight: 700;
}
.intro_cta .cta .icon {
  margin-left: 0.5em;
  font-size: 1em;
  width: 1em;
  background: url(img/ui/arr_blue.svg) center/cover;
  -webkit-animation: ctaArr 500ms linear infinite alternate;
          animation: ctaArr 500ms linear infinite alternate;
}
.intro_cta .cta:hover {
  text-decoration: none;
}
.intro_cta .cta:hover::after {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@-webkit-keyframes ctaArr {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(10px);
            transform: translate(10px);
  }
}

@keyframes ctaArr {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(10px);
            transform: translate(10px);
  }
}
.sec_agenda {
  padding-top: var(--sec_padding);
  padding-bottom: calc(var(--sec_padding) * 1.25);
  background: -webkit-gradient(linear, left top, right top, from(var(--lightsky)), color-stop(#fff), to(var(--lightsky)));
  background: linear-gradient(90deg, var(--lightsky), #fff, var(--lightsky));
}

.agenda_cnt {
  padding: 0 15px;
}
.agenda_cnt .cta_row {
  margin-top: 40px;
}

.ag_table {
  margin-top: 20px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  font-size: 1em;
  color: #000;
}
.ag_table .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--purple);
}
.ag_table .tr.title_bg {
  background: var(--blue);
  color: #fff;
  border-bottom-width: 0;
}
.ag_table .tr.soft_bg {
  background-color: rgba(var(--lightpurple_rgb), 0.3);
}
.ag_table .tr:last-child {
  border-bottom-width: 0;
}
.ag_table .td {
  padding: 8px 16px;
  line-height: 1;
}
.ag_table .td_time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(6em + 32px);
          flex: 0 0 calc(6em + 32px);
}
.ag_table .td_time .tm {
  color: var(--blue);
}
.ag_table .td_topic {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.ag_table .td_topic .tp {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.3;
  color: var(--blue);
}
.ag_table .td_topic .tp + .outline {
  margin-top: 6px;
}
.ag_table .td_topic .outline {
  line-height: 1.3;
}
.ag_table .td_spk {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 34%;
          flex: 0 0 34%;
}
.ag_table .td_spk .spk_tit:nth-child(n+2) {
  margin-top: 24px;
}
.ag_table .td_spk .spk:nth-child(n+2) {
  margin-top: 16px;
}
.ag_table .td_spk .name {
  font-weight: 700;
  font-size: 1.25em;
  color: var(--purple);
}
.ag_table .td_spk .cpy,
.ag_table .td_spk .job {
  font-size: 0.875em;
}
.ag_table .td_spk .cpy:nth-child(n+2),
.ag_table .td_spk .job:nth-child(n+2) {
  margin-top: 6px;
}

.sec_speaker {
  padding-top: var(--sec_padding);
  padding-bottom: calc(var(--sec_padding) * 1.25);
  background-color: #fff;
}

.spk_cnt {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.spk_item {
  padding: 0 15px;
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 360px;
          flex: 0 1 360px;
  font-size: 1.25em;
}
.spk_item .pic {
  max-width: 360px;
  margin: 0 auto;
}
.spk_item .pic img {
  border-radius: 20px;
  width: 100%;
}
.spk_item .name {
  margin-top: 0.33em;
  font-size: 1.5em;
  font-weight: 700;
  color: var(--blue);
}
.spk_item .job {
  line-height: 1.3;
}

.sec_location {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5))), url(img/kv/bg.jpg) center/cover fixed;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url(img/kv/bg.jpg) center/cover fixed;
  padding-top: var(--sec_padding);
  padding-bottom: var(--sec_padding);
  color: #fff;
}

.loc_cnt {
  margin: 0 auto;
  padding: 0 3%;
  max-width: 1600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.loc_cnt .info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  padding: 40px 30px;
  padding-right: 0;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.loc_cnt .info .sec_title {
  font-weight: 300;
  text-align: left;
}
.loc_cnt .info .sec_title .tit {
  color: var(--gold);
}
.loc_cnt .info .loc {
  margin-bottom: 0.33em;
  font-size: 1.5em;
}
.loc_cnt .info .addr {
  font-size: 1.125em;
  line-height: 1.2;
  color: var(--sky);
}
.loc_cnt .map {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 60%;
          flex: 1 0 60%;
  position: relative;
  line-height: 0;
  min-height: 400px;
  -webkit-box-shadow: 0 0 30px 0 rgba(var(--black), 0.33);
          box-shadow: 0 0 30px 0 rgba(var(--black), 0.33);
}
.loc_cnt .map iframe {
  width: 100%;
  height: 100%;
}

.sec_company {
  padding-top: var(--sec_padding);
  padding-bottom: calc(var(--sec_padding) * 1.25);
  background-color: rgba(var(--lightsky_rgb), 0.3);
  color: #000;
}

.company_cnt {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.company_cnt .logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 240px;
}
.company_cnt .intro {
  padding-left: 60px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
.company_cnt .intro a {
  color: var(--blue);
  text-decoration: underline;
}
.company_cnt .intro a:hover {
  color: var(--lightpurple);
}

.sec_detail {
  padding-top: var(--sec_padding);
  padding-bottom: calc(var(--sec_padding) * 1.25);
  background-color: #fff;
  color: var(--black);
}

.detail_cnt {
  margin: 0 auto;
  font-size: 1em;
}
.detail_cnt .list {
  padding-left: 1.65em;
  margin-bottom: 0;
}
.detail_cnt .list li {
  padding: 6px 0;
  line-height: 1.4;
}
.detail_cnt .tip {
  margin-top: 20px;
  text-align: center;
}
.detail_cnt .tip a {
  display: inline-block;
  padding: 0.65em 1.5em 0.6em;
  border: 1px solid var(--blue);
  border-radius: 2em;
  color: var(--blue);
}
.detail_cnt .tip a:hover {
  color: #fff;
  background-color: var(--blue);
}

@media (max-width: 767px) {
  :root {
    --sec_padding: 40px;
  }
  html {
    font-size: 16px;
  }
  body {
    padding-top: 64px;
  }
  .fix_aside {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .fix_aside .fx_item:nth-child(n+2) {
    margin-top: 0;
    margin-left: 10px;
  }
  .g_header {
    background: var(--black);
  }
  .header_wrap {
    display: block;
    padding: 0;
  }
  .header_wrap .head_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header_wrap .menu_trigger {
    padding: 8px;
  }
  .header_wrap .menu_trigger .icon {
    padding: 22px 10px;
  }
  .header_wrap .menu_trigger .icon span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 300ms;
    transition: all 300ms;
  }
  .header_wrap .menu_trigger .icon span:nth-child(2) {
    -webkit-transform: translateY(-2px) rotate(-45deg);
            transform: translateY(-2px) rotate(-45deg);
  }
  .header_wrap .menu_trigger .icon span:first-child {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header_wrap .menu_trigger .icon span:last-child {
    display: none;
  }
  .header_wrap .menu_trigger .collapsed .icon {
    padding: 15px 10px;
  }
  .header_wrap .menu_trigger .collapsed .icon span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #fff;
  }
  .header_wrap .menu_trigger .collapsed .icon span:nth-child(2) {
    margin: 6px 0;
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
  }
  .header_wrap .menu_trigger .collapsed .icon span:first-child {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .header_wrap .menu_trigger .collapsed .icon span:last-child {
    display: block;
    width: 18px;
  }
  .header_wrap .head_topic {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    padding-right: 16px;
  }
  .header_wrap .nav_cnt {
    padding: 0 10px 10px;
  }
  .header_wrap .nav_link {
    padding: 12px 16px;
  }
  .header_wrap .sign_item {
    text-align: right;
    height: 64px;
    line-height: 1;
  }
  .header_wrap .sign_item.nav_item {
    display: none;
  }
  .header_wrap .sign_item .nav_link {
    display: inline-block;
    padding: 22px 20px;
  }
  .header_wrap .sign_item .nav_link::after {
    -ms-grid-column-align: start;
        justify-self: start;
  }
  .g_kv {
    height: max(100vw, 60vh);
    padding: 8vw 5vw;
  }
  .g_kv .wrapper .logo {
    width: 40%;
  }
  .g_kv .wrapper .title {
    font-size: 6.2vw;
    line-height: 1.4;
  }
  .g_kv .wrapper .title .t1 {
    height: auto;
    white-space: nowrap;
  }
  .g_kv .wrapper .title .space {
    margin: 6vw 0 5vw;
    height: 4px;
  }
  .g_kv .wrapper .title .t2 {
    white-space: normal;
  }
  .g_kv .wrapper .date {
    width: 100%;
  }
  .sec_intro .container {
    padding: 0 30px;
  }
  .intro_cnt {
    line-height: 1.5;
    font-size: 0.875em;
  }
  .intro_cnt .strong {
    line-height: 1.3;
  }
  .intro_cta {
    margin: 30px -10px 0;
    padding: 30px;
  }
  .intro_cta .left {
    padding: 0;
    text-align: center;
  }
  .intro_cta .right {
    margin-top: 20px;
    font-size: 1em;
  }
  .intro_cta .right .cta {
    display: block;
  }
  .intro_cta .right .cta .wrapper {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
  .sec_agenda {
    background-position: center bottom;
  }
  .sec_agenda .container {
    padding: 0 20px;
  }
  .agenda_cnt {
    padding: 0;
  }
  .ag_table .tr {
    display: block;
    padding: 12px 16px 10px;
  }
  .ag_table .tr.title_bg {
    display: none;
  }
  .ag_table .td {
    padding: 4px 0;
  }
  .ag_table .td_time {
    text-align: left;
  }
  .ag_table .td_topic,
.ag_table .td_spk {
    padding-left: 10px;
    padding-right: 10px;
  }
  .ag_table .td_topic {
    line-height: 1.3;
  }
  .ag_table .td_topic .tp_tit {
    margin-top: 6px;
  }
  .ag_table .td_spk .spk_tit:nth-child(1) {
    margin-top: 8px;
  }
  .ag_table .td_spk .spk_tit:nth-child(n+2) {
    margin-top: 16px;
  }
  .spk_item {
    padding: 20px 15px;
  }
  .spk_item .pic {
    width: max(60%, 240px);
  }
  .sps_categ:nth-child(1) {
    padding-top: 40px;
  }
  .sps_categ .sec_title {
    margin-bottom: 15px;
  }
  .sps_categ .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sps_categ .item {
    text-align: center;
    margin: 0 auto;
    padding: 30px;
  }
  .sps_categ .item.it0 {
    width: 275px;
  }
  .sps_categ .item.it4 {
    width: 260px;
  }
  .giveaway_cnt {
    padding-bottom: 0;
  }
  .gift_categ:nth-child(n+2) {
    margin-top: 30px;
  }
  .gift_categ .item .pic {
    margin: 0 auto;
    padding: 0 30px;
    background-color: #fff;
    border-radius: 8px;
  }
  .gift_categ .item:nth-child(n+2) {
    padding-top: 20px;
  }
  .loc_cnt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 30px;
  }
  .loc_cnt .info {
    padding-left: 0;
    padding-bottom: 0;
  }
  .loc_cnt .info .sec_title {
    text-align: center;
  }
  .loc_cnt .info .addr {
    font-size: 1.125em;
    color: var(--lightsky);
  }
  .loc_cnt .map {
    margin-top: 20px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    min-height: initial;
    padding-top: 100%;
  }
  .loc_cnt .map iframe {
    position: absolute;
    left: 0;
    top: 0;
  }
  .company_cnt .logo {
    margin: 0 auto 20px;
  }
  .company_cnt .intro {
    padding: 0 25px;
  }
  .company_cnt .intro a {
    color: var(--blue);
    text-decoration: underline;
  }
  .company_cnt .intro a:hover {
    color: var(--lightpurple);
  }
  .detail_cnt {
    padding-right: 4px;
    padding-bottom: calc(var(--sec_padding) * 1.5);
  }
  .detail_cnt .tip {
    padding: 0 2em;
  }
}