﻿body {
  padding: 0;
  margin: 0;
  background-image: url(/cms/img/ziguzagu_bg.jpg?260120v9);
  background-size: 100%;
}
@media screen and (max-width: 710px) {
  body {
    padding: 0;
    margin: 0;
    background-image: url(/cms/img/ziguzagu_bg_sp.jpg);
    background-size: 100%;
  }
}
.br-sp {
  display: none;
}
@media screen and (max-width: 710px) {
  .br-sp {
    display: block;
  }
}

.section_btn {
  max-width: 740px;
  height: 64px;
  margin: 0 auto;
}
@media screen and (max-width: 710px) {
  .section_btn {
    padding: 0 20px;
  }
}
.section_btn a {
  width: 100%;
  height: 100%;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
  text-decoration: none;
  margin-top: 42px;
  transition: 0.4s;
}
.section_btn a span {
  position: relative;
  font-size: 14px;
}
@media screen and (max-width: 710px) {
  .section_btn a span {
    text-align: center;
  }
}
.section_btn a span:after {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  position: absolute;
  content: "";
  right: -32px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.4s;
}
.section_btn a:hover {
  background-color: #eee;
}
.section_btn a:hover span:after {
  transform: translate(50%, -50%) rotate(45deg);
}

.section_title {
  text-align: center;
  color: #666;
  padding-top: 74px;
  font-weight: normal;
  line-height: 1.8;
  font-size: 24px;
}
@media screen and (max-width: 710px) {
  .section_title {
    padding-top: 24px;
    font-size: 20px;
  }
}

.section_p {
  max-width: 740px;
  display: block;
  margin: 0 auto;
  color: #666;
  padding: 20px 0 0;
  line-height: 1.8;
}
@media screen and (max-width: 710px) {
  .section_p {
    padding: 12px 20px 0;
    font-size: 16px;
  }
}

.section_subtitle {
  border-bottom: 1px solid #eee;
  color: #666;
  font-size: 16px;
  font-weight: normal;
  padding-bottom: 8px;
  max-width: 740px;
}
@media screen and (max-width: 710px) {
  .section_subtitle {
    font-size: 18px;
    margin-block-start: 0;
    margin-block-end: 0;
  }
}

.section_item {
  max-width: 740px;
  margin: 140px auto 0;
}
@media screen and (max-width: 710px) {
  .section_item {
    margin: 80px 20px 0;
  }
}
.section_item .exp {
  margin-top: 42px;
  color: #666;
  line-height: 2;
}
@media screen and (max-width: 710px) {
  .section_item .exp {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 32px;
  }
}
.section_item .exp a {
  color: #666;
}

.faq_accordion {
  margin: 24px auto 0;
}
@media screen and (max-width: 710px) {
  .faq_accordion {
    margin: 24px 20px 0;
  }
}
.faq_accordion_list {
  margin: 0;
  padding: 0;
}
.faq_accordion_item {
  list-style: none;
  border-top: 1px solid #eee;
}
.faq_accordion_item:last-child {
  border-bottom: 1px solid #eee;
}
.faq_accordion_header {
  color: #666;
  font-size: 16px;
  font-weight: normal;
  position: relative;
  margin: 0;
  padding: 20px 0;
  cursor: pointer;
}
@media screen and (max-width: 710px) {
  .faq_accordion_header {
    font-size: 14px;
  }
}
.faq_accordion_header:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  transition: 0.4s;
}
@media screen and (max-width: 710px) {
  .faq_accordion_header:after {
    width: 6px;
    height: 6px;
  }
}
.faq_accordion_header.on:after {
  transform: translateY(-50%) rotate(-45deg);
}
.faq_accordion_contents {
  display: none;
}
.faq_accordion_contents.on {
  display: block !important;
}
.faq_accordion_contents_item {
  padding: 24px 0;
  border-top: 1px solid #eee;
  line-height: 1.8;
}
.faq_accordion_contents_item:first-child {
  border-top: 0;
}
.faq_accordion_contents_item-title {
  color: #666;
  font-weight: bold;
  font-size: 12px;
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 710px) {
  .faq_accordion_contents_item-title {
    font-size: 14px;
  }
}
.faq_accordion_contents_item-title::after {
  content: "Q.";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
}
.faq_accordion_contents_item-contents {
  color: #666;
  margin: 12px 0 0 0;
  font-size: 14px;
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 710px) {
  .faq_accordion_contents_item-contents {
    font-size: 14px;
  }
}
.faq_accordion_contents_item-contents::after {
  content: "A.";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  font-weight: bold;
}
.faq_accordion_contents_item-contents ol {
  padding: 0 0 0 20px;
}
.faq_accordion_contents_item-contents ol li {
  list-style-type: dicimal;
}
.faq_accordion_contents_item-contents ul {
  padding: 0 0 0 20px;
}
.faq_accordion_contents_item-contents ul li {
  list-style-type: disc;
}
.faq_accordion_contents_item-contents a {
  color: #666;
}

.contents_stj {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, sans-serif;
  padding-bottom: 142px;
}
.contents_stj .first_view {
  width: 100%;
}
.contents_stj .first_view_imgWrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}
.contents_stj .first_view_imgWrapper img {
  width: 100%;
}
.contents_stj .jamplist {
  max-width: 740px;
  margin: 0 auto 120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding-top: 42px;
  margin-block-start: 0;
  padding-inline-start: 0;
}
@media screen and (max-width: 740px) {
  .contents_stj .jamplist {
    margin: 0 20px 120px;
  }
}
@media screen and (max-width: 710px) {
  .contents_stj .jamplist {
    margin: 0 0 120px;
    gap: 12px;
    padding: 32px 10px 0;
  }
}
.contents_stj .jamplist .jampitem {
  width: 22%;
  max-width: 184px;
  list-style: none;
}
@media screen and (max-width: 710px) {
  .contents_stj .jamplist .jampitem {
    width: 45%;
  }
}
.contents_stj .jamplist .jampitem a {
  width: 100%;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
  background-color: #eee;
  text-decoration: none;
  position: relative;
  transition: 0.4s;
  font-size: 12px;
}
.contents_stj .jamplist .jampitem a::before {
  content: "";
  display: block;
  padding-top: 74.4%;
}
.contents_stj .jamplist .jampitem a::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  position: absolute;
  content: "";
  bottom: 32%;
  transform: rotate(135deg);
  transition: 0.4s;
}
.contents_stj .jamplist .jampitem a:hover {
  background-color: #ccc;
}
.contents_stj .jamplist .jampitem a:hover::after {
  transform: translateY(50%) rotate(135deg);
}
.contents_stj .jamplist .jampitem a span {
  padding-bottom: 12px;
  text-align: center;
}
.contents_stj .is {
  max-width: 740px;
  margin: 0 auto;
}
@media screen and (max-width: 740px) {
  .contents_stj .is {
    margin: 0 20px;
  }
}
.contents_stj .is_img {
  width: 100%;
}
.contents_stj .is_img img {
  width: 100%;
}
.contents_stj .is_caution {
  color: #ccc;
  font-size: 12px;
}
@media screen and (max-width: 710px) {
  .contents_stj .is_caution {
    font-size: 10px;
  }
}
.contents_stj .is_exp {
  max-width: 740px;
  background-color: #eee;
  padding: 6%;
  margin: 54px 0 0;
}
@media screen and (max-width: 740px) {
  .contents_stj .is_exp {
    margin: 54px 20px 0;
  }
}
@media screen and (max-width: 710px) {
  .contents_stj .is_exp {
    margin: 54px 0 0;
    padding: 12% 8% 16% 8%;
  }
}
.contents_stj .is_exp ol {
  list-style: none;
}
@media screen and (max-width: 710px) {
  .contents_stj .is_exp ol {
    padding: 0;
    margin: 0;
  }
}
.contents_stj .is_exp ol li {
  color: #666;
  padding-left: 42px;
  line-height: 1.6;
  position: relative;
  font-size: 13px;
}
@media screen and (max-width: 710px) {
  .contents_stj .is_exp ol li {
    padding-left: 0px;
    padding-top: 54px;
    font-size: 14px;
  }
}
.contents_stj .is_exp ol li:after {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 42px;
  height: 42px;
  left: -20px;
  background-color: #ECDADD;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 710px) {
  .contents_stj .is_exp ol li:after {
    left: 50%;
    transform: translate(-50%, 0) !important;
    top: 8px;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
.contents_stj .is_exp ol li:first-child {
  padding-bottom: 32px;
}
@media screen and (max-width: 710px) {
  .contents_stj .is_exp ol li:first-child {
    padding-bottom: 16px;
  }
}
.contents_stj .is_exp ol li:first-child:after {
  content: "1";
  transform: translateY(-38px);
}
.contents_stj .is_exp ol li:nth-child(2):after {
  content: "2";
  transform: translateY(-50%);
}
.contents_stj .fee {
  max-width: 740px;
  margin: 160px auto 0;
}
@media screen and (max-width: 710px) {
  .contents_stj .fee {
    margin: 120px 20px 0;
  }
}
.contents_stj .fee_exp {
  margin-top: 42px;
  color: #666;
  line-height: 2;
}
.contents_stj .fee_exp a {
  color: #666;
  transition: 0.4s;
}
.contents_stj .fee_exp a:hover {
  opacity: 0.8;
}
.contents_stj .faq.section_item {
  margin: 180px auto 0;
}
@media screen and (max-width: 710px) {
  .contents_stj .faq.section_item {
    margin: 120px auto 0;
  }
}
.contents_stj .faq .section_subtitle {
  text-align: center;
  font-size: 20px;
  padding-bottom: 18px;
  font-weight: bold;
  border-bottom: none;
}
@media screen and (max-width: 710px) {
  .contents_stj .faq .section_subtitle {
    font-size: 18px;
    padding-bottom: 0;
  }
}

.lang_tabs {
  width: 100%;
  margin-top: 100px;
}
.lang_tabs .lang_tab {
  width: 100%;
}
.lang_tabs .lang_tab_list {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0;
  gap: 4px;
  cursor: pointer;
  position: relative;
}
.lang_tabs .lang_tab_list::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100vw;
  height: 1px;
  margin: 0 calc(50% - 50vw);
  background-color: #eee;
  bottom: 0;
}
.lang_tabs .lang_tab_item {
  list-style: none;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  padding: 12px;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  font-size: 12px;
}
@media screen and (max-width: 710px) {
  .lang_tabs .lang_tab_item {
    padding: 16px 0;
    font-size: clamp(8px, 5.395px + 0.93vw, 12px);
  }
}
.lang_tabs .lang_tab_item.active {
  background-color: #eee;
}
.lang_tabs .lang_tab_panel {
  display: none;
}
.lang_tabs .lang_tab_panel.active {
  display: block;
}
.ham_header {
  height: 0!important;
}
.breadcrumbs {
  display: none;
}/*# sourceMappingURL=world_shopping_guide.css.map */