@charset "Shift_JIS";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
/* CSS Document */
:root {
  --font-ja: 'Noto Sans JP', sans-serif;
  --font-en: 'Helvetica Neue', Arial, sans-serif;
  --font-zh: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
[lang='ja'],
[lang='ja'] * {
  font-family: var(--font-ja) !important;
}
[lang='en'],
[lang='en'] * {
  font-family: var(--font-en) !important;
}
[lang='zh'],
[lang='zh'] * {
  font-family: var(--font-zh) !important;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  position: relative;
  color: #333 !important;
  background: #fff !important;
  font-family: 'Noto Sans JP', sans-serif;
}
header {
  margin-bottom: 15px !important;
}

/*GLOBAL*/
#GLOBAL {
  max-width: 1024px;
  margin: 80px auto 50px;
  padding: 0 50px 50px;
}
#GLOBAL a {
  transition: 0.3s ease-in-out;
}
#GLOBAL section {
  margin: 0 auto 100px;
  padding: 0;
}
#GLOBAL section:last-child {
  margin: 0 auto;
}
#GLOBAL p {
  font-size: 18px;
  margin: 0 auto;
}
#GLOBAL h2 {
  font-size: 26px;
  margin: 0px auto 40px;
  text-align: center;
  width: 100%;
}
#GLOBAL h2::before {
  content: attr(data-ja);
  display: block;
  color: #666;
  font-size: 18px;
  font-weight: normal;
}
#GLOBAL h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: #ed7700;
  border-radius: 5px;
  margin: 10px auto 0;
}

#GLOBAL h3 {
  font-size: 24px;
  margin: 0 auto 30px;
  padding-left: 15px;
  position: relative;
}
#GLOBAL h3::before {
  content: '';
  background: url(../../images/static/global_shipping_guidance/h2before.svg);
  position: absolute;
  width: 5px;
  height: 24px;
  bottom: 4px;
  left: 0;
}
#GLOBAL h4 {
  font-size: 20px;
}
#GLOBAL nav ul {
  display: flex;
  column-gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 auto 30px;
}
#GLOBAL nav ul li {
  font-size: 20px;
  margin: 0;
  background: #f0f0f0;
  width: 180px;
  height: 60px;
  padding: 0;
  border: none;
}
#GLOBAL nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

/*section1*/
#section1 p {
  margin: 20px auto;
  line-height: 2;
}

/*tab*/
.tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.tab > label {
  order: -1;
  color: #333;
  font-size: 30px;
  text-align: center;
  cursor: pointer;
  width: auto;
  position: relative;
  margin: 0 30px;
  line-height: 1;
}
.tab > label::after {
  content: '/';
  position: absolute;
  top: -2px;
  right: -38px;
  bottom: 0;
  margin: auto;
  font-family: Arial, sans-serif;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1;
}
.tab > label#zhlabel::after {
  content: none;
}
.tab > label:hover {
  opacity: 0.8;
}
.tab input {
  display: none;
}
.tab > div {
  display: none;
  width: 100%;
  background-color: #fff;
  margin: 50px auto 0;
}
.tab label:has(:checked) span {
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  display: block;
}
.tab label:has(:checked) + div {
  display: block;
}
.tab p {
  margin: 0 auto 10px;
}
.tab p:last-child {
  margin: 0 auto;
}
.tab p span {
  font-weight: bold;
}

/*section2*/
#section2 article {
  margin: 100px auto;
  border: 1px solid #f0f0f0;
  padding: 30px;
  box-sizing: border-box;
}
#section2 article:last-child {
  margin: 100px auto 0;
}
#section2 article img {
  margin: 0 auto 30px;
  display: block;
}
#section2 article p {
  line-height: 2;
  margin: 0 auto 10px;
}
#section2 article p.number {
  text-indent: -1em;
  padding-left: 1em;
}
#section2 article p:last-child {
  margin: 0 auto;
}
#section2 article p a {
  border-bottom: 1px solid #333;
}
#section2 article h2[id] {
  margin-top: -130px;
  padding-top: 130px;
}

/*Categories*/
#GLOBAL #section2 article.Categories {
  margin: 50px auto !important;
  border: none !important;
}
#GLOBAL #section2 article.Categories h3 {
  padding-left: 0;
  text-align: center;
}
#GLOBAL #section2 article.Categories h3::before {
  content: none;
}
.Categories h4 {
  text-align: center;
  position: relative;
  margin: 0 auto 50px;
  padding-bottom: 10px;
  transition: 0.3s ease-in-out;
}
.Categories h4::before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 50px;
  height: 5px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #4d4d4d;
  border-radius: 2px;
}
.Categories ul li a:hover h4::before {
  background-color: #eaad00;
}
.Categories ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  width: 100%;
}
.Categories ul li {
  display: flex;
  flex-direction: column;
  border: 1px solid #aaa;
  border-radius: 5px;
}
.Categories ul li:hover {
  border: 1px solid #eaad00;
}
.Categories ul li a {
  padding: 20px;
}
.Categories ul li img {
  width: 400px;
  height: 140px;
  margin: 0 auto;
  display: block;
  transition: 0.3s ease-in-out;
}
.Categories ul li p {
  width: fit-content;
  margin: 20px auto 0;
}
.Categories ul li a:hover img {
  opacity: 0.8;
}
.Categories ul li.list1 {
  grid-area: 1 / 1 / 2 / 3;
}
.Categories ul li.list2 {
  grid-area: 1 / 3 / 2 / 5;
}
.Categories ul li.list3 {
  grid-area: 2 / 1 / 3 / 3;
}
.Categories ul li.list4 {
  grid-area: 2 / 3 / 3 / 5;
}
.Categories ul li.list5 {
  grid-area: 3 / 2 / 4 / 4;
}

/*WhatsWS*/
#section2 article.WhatsWS {
  margin: 0 auto 100px !important;
}
.WhatsWS div {
  width: 450px;
  margin: 30px auto 0;
}
.WhatsWS div a {
  display: grid;
  transition: 0.3s ease-in-out;
}
.WhatsWS div a img {
  border: 1px solid #ccc;
}
.WhatsWS div a:hover img {
  opacity: 0.8;
}
.WhatsWS div p {
  text-align: center;
  margin: 0 auto !important;
  line-height: 1.6 !important;
}

/*GuideDL*/
#GuideDL {
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
}
#GuideDL p {
  margin: 0 auto;
}
#GuideDL ul {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  margin: 0 auto 30px;
  font-size: 20px;
}
#GuideDL ul li {
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 200px;
  transition: 0.3s ease-in-out;
}
#GuideDL ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 20px;
}
#GuideDL ul li a svg.path {
  fill: #333;
  width: 22px;
  height: 20px;
  margin-right: 15px;
}
#GuideDL ul li:hover {
  border: 1px solid #eaad00;
  background: #fff1c9;
}
#GuideDL ul li:hover a svg.path {
  fill: #ee7700;
}

#GuideDL h3 {
  font-size: 24px;
  margin: 30px auto;
  text-align: center;
  width: 100%;
  padding-left: 0;
}
#GuideDL h3::before {
  content: attr(data-ja);
  background: none;
  display: block;
  color: #666;
  font-size: 18px;
  font-weight: normal;
  width: 100%;
  height: fit-content;
  position: relative;
  bottom: 0;
}
