body {
  margin: 0;
  overflow-x: hidden;
  overflow-y: visible;
}

.base_color_bg {
  background-color: #e5dcd0;
}

.w-main {
  padding: 0 20px;
}

.s-main {
  padding: 0 40px;
}

.pc,
.tb {
  display: none;
}

.sp {
  display: block;
}

.faricy_regular {
  font-family: "faricy-new-web", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.faricy_bold {
  font-family: "faricy-new-web", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.m-2p_bold {
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.figtree_regular {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.figtree_medium {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}


/* header */
header {
  background-color: #c1001c;
  display: flex;
  align-items: center;
}

.header_title {
  padding: 10px 20px;
  background-color: #e5dcd0;
  color: #c1001c;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.3;
}

.header_top_button {

  margin-left: 20px;
}

.header_top_button a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 20px;
  font-size: 1rem;
  background: #e5dcd0;
  border-radius: 50px;
}

/* 繝上Φ繝舌・繧ｬ繝ｼ繝｡繝九Η繝ｼ */
.hamburger {
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-right: 10px;
}

.hamburger-line {
  width: 35px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

/* 繝｡繝九Η繝ｼ縺碁幕縺・◆譎ゅワ繝ｳ繝舌・繧ｬ繝ｼ繧帝撼陦ｨ遉ｺ */
.menu-toggle-checkbox:checked~.hamburger {
  opacity: 0;
  pointer-events: none;
}

/* 繝√ぉ繝・け繝懊ャ繧ｯ繧ｹ繧帝撼陦ｨ遉ｺ */
.menu-toggle-checkbox {
  display: none;
}

/* 繝｡繝九Η繝ｼ縺碁幕縺・◆譎ゅ・body繧ｹ繧ｯ繝ｭ繝ｼ繝ｫ髦ｲ豁｢ */
.menu-toggle-checkbox:checked~body,
.menu-toggle-checkbox:checked~main {
  overflow: hidden;
}

/* 繧ｪ繝ｼ繝舌・繝ｬ繧､ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
  cursor: pointer;
}

.menu-toggle-checkbox:checked~.overlay {
  opacity: 1;
  visibility: visible;
}

/* 繧ｵ繧､繝峨Γ繝九Η繝ｼ */
.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: calc(100% - 60px);
  height: calc(100vh - 60px);
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  padding: 30px;
}

.menu-toggle-checkbox:checked~.side-menu {
  right: 0;
}

/* 繧ｵ繧､繝峨Γ繝九Η繝ｼ繝倥ャ繝繝ｼ */
.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.side-menu-title {
  color: #c1001c;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.3;
}

.close-menu {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
  display: block;
}

.close-line {
  position: absolute;
  width: 35px;
  height: 3px;
  background: black;
  top: 50%;
  left: 50%;
  display: block;
}

.close-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 繝｡繝九Η繝ｼ繝懊ち繝ｳ */
.side-menu-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.menu-button {
  flex: 1;
  border: 2px solid black;
  border-radius: 50px;
  padding: 3px 20px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.menu-button::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  transform: rotate(45deg);
}

.menu-button:hover {
  background: black;
  color: white;
}

.menu-button:hover::after {
  border-color: #fff;
}

.menu-button .arrow {
  font-size: 1.5rem;
  font-weight: normal;
}

/* 繝｡繝九Η繝ｼ繝ｪ繧ｹ繝・*/
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.menu-list li a {
  width: 90%;
  margin-left: auto;
  margin-right: 0;
  text-decoration: none;
  color: #000;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.menu-list li a:hover {
  color: #c41e3a;
}

.toggle-icon {
  width: 35px;
  height: 17px;
  border: 2px solid black;
  border-radius: 50px;
  position: relative;
  background: white;
  transition: background 0.3s ease;
  display: block;
}

.toggle-icon::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  top: 50%;
  right: 5px;
  transform: translateY(-50%) rotate(45deg);
  transition: left 0.3s ease;
}

.menu-list li a:hover .toggle-icon {
  background: #f0f0f0;
}

/* 繝｡繝九Η繝ｼ繝輔ャ繧ｿ繝ｼ */
.menu-footer {
  margin-top: 10px;
}

.about-link {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 15px;
  text-decoration: none;
  color: black;
  font-size: 1rem;
  font-weight: 500;
  padding: 15px 0;
}

.about-link-left {
  display: block;
  text-indent: -25px;
}

.info-icon {
  width: 20px;
  height: 20px;
}

.external-icon {
  width: 30px;
  height: 30px;
}

/* home */
.home_top_area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
}

.home_top_area .container {
  position: relative;
  width: 100%;
  max-width: 750px;
  aspect-ratio: 16 / 6;
}

.home_top_area .background-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home_top_area .red-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42%;
  aspect-ratio: 1 / 1;
  background: #c41e3a;
  border-radius: 50%;
  z-index: 1;
}

.home_top_area .text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 2;
}

.home_top_area .main-text {
  font-size: clamp(1rem, 5vw, 1.8rem);
  font-weight: bold;
  line-height: 1.2;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(0.5rem, 2vw, 1.5rem);
  color: white;
}

.home_top_area .subtitle {
  font-size: clamp(1rem, 2.8vw, 1rem);
  font-weight: bold;
  line-height: 1.4;
}

.home_top_area .subtitle-red {
  color: #c41e3a;
  position: relative;
}

.home_top_area .subtitle-white {
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  clip-path: circle(29.2% at 50% -35%);
}


.home_content_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3縺､蝮・ｭ牙ｹ・*/
  column-gap: 15px;
  /* 蛻励・髢馴囈 */
  row-gap: 10px;
  /* 陦後・髢馴囈 */
  padding-bottom: 30px;
}

.home_content_box a {
  text-decoration: none;
  color: #000;
}

.home_content_box p {
  font-size: 11px;
  text-align: center;
  margin-bottom: 0;
  margin-top: 5px;
}

.home_content_box_image {
  width: 100px;
  height: 97px;
  border-radius: 20px;
  position: relative;
  --base-color: #fff;
  background-color: var(--base-color);
  box-shadow:
    3px 3px 0px color-mix(in srgb, var(--base-color) 30%, black);
}

.home_content_box {
  position: relative;
}

.home_content_box::before {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  top: 3%;
  left: 5%;
  background-image: url('../images/box_light_blue.svg');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}

.home_content_box_green::before {
  background-image: url('../images/box_light_green.svg');
}

.home_content_box_orange::before {
  background-image: url('../images/box_light_orange.svg');
}

.home_content_box_yellow::before {
  background-image: url('../images/box_light_yellow.svg');
}

.home_content_box_none::before {
  content: none;
}

.home_content_box_blue .home_content_box_image {
  --base-color: #2274a5;
}

.home_content_box_green .home_content_box_image {
  --base-color: #44b764;
}

.home_content_box_orange .home_content_box_image {
  --base-color: #f15f24;
}

.home_content_box_yellow .home_content_box_image {
  --base-color: #fdd501;
}

.home_content_box_none .home_content_box_image {
  box-shadow: none;
  background: none;
  margin-top: 20px;
}

.home_shopping-dining img {
  width: 90px;
  height: 97px;
  padding-left: 5px;
}

.home_communication-interaction img {
  width: 80%;
  padding-top: 20%;
  padding-left: 15%;
}

.home_accommodation img {
  width: 100%;
  height: 100%;
}

.home_ex_basics img {
  width: 55%;
  padding-top: 22%;
  padding-left: 22.5%;
}

.home_ex_basics,
.home_ex_nature {
  position: relative;
}

.home_ex_basics::after {
  content: '';
  width: 35px;
  height: 50px;
  position: absolute;
  top: 10%;
  right: -3%;
  background-image: url('../images/ex-basics2.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.home_ex_nature img {
  width: 70%;
  padding-left: 17%;
  padding-top: 25%;
}

.home_ex_nature::after {
  content: '';
  width: 35px;
  height: 50px;
  position: absolute;
  bottom: 20%;
  right: -2%;
  background-image: url('../images/ex-nature2.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.home_ex_culture-history img {
  width: 70%;
  padding-top: 15%;
  padding-left: 15%;
}

.home_entering_japan img {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  padding-top: 8%;
}

.home_getting_around img {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  position: relative;
  top: 10%;
  right: 5%;
}

.home_footer_area {
  border-top: 1px solid #000;
  background-color: #fff;
  padding: 5px 0 0;
}

.home_footer_area a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
}

.home_footer_area img {
  width: 20px;
  height: 20px;
  padding: 8px;
}

.home_footer_area p {
  font-size: 13px;
  padding: 0 10px;
}

.home_footer_info {
  border: 1px solid #000;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}


/* before entering japan */
.wave-background-beige {
  background-image: url('../images/wave_background_beige.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.travel_care_content_title h1 {
  margin: 0;
  text-align: center;
  font-size: 27px;
  position: relative;
  z-index: 2;
}

.travel_care_content_title {
  position: relative;
  padding: 60px 0 100px;
}

.travel_care_content_title img {
  position: absolute;
  top: 5%;
  left: 0;
  width: 90px;
  height: 60px;
}

.travel_care_content_topbox {
  position: relative;
  top: -48px;
}

.travel_care_content_box_title {
  color: #c1001c;
  display: flex;
  align-items: center;
  position: relative;
}

.travel_care_content_box_title img {
  width: 125px;
  height: 110px;
  position: absolute;
  top: -38%;
  right: 0%;
  z-index: 2;
}

.travel_care_content_box_title h2 {
  font-size: 69px;
  margin: 0;
  line-height: 1;
}

.travel_care_content_box_title p {
  padding: 0px 20px 0 10px;
  font-size: 18px;
  margin: 0;
}

.travel_care_content_calendar {
  position: relative;
  margin-top: 10px;
}

.travel_care_content_calendar table {
  width: 100%;
  border: 1px solid #c1001c;
  border-collapse: collapse;
}

.travel_care_content_calendar table th {
  border-bottom: 1px solid #c1001c;
}

.travel_care_content_calendar table th,
.travel_care_content_calendar table td {
  border-right: 1px solid #c1001c;
  line-height: 1.2;
}

.travel_care_content_calendar table th:last-child,
.travel_care_content_calendar table td:last-child {
  border-right: none;
}

.travel_care_content_calendar table td {
  height: 30px;
  padding: 0;
}

.travel_care_content_calendar .month-number {
  font-size: 13px;
}

.travel_care_content_calendar .month-name {
  font-size: 11px;
}

.before_entering_japan_calendar_1 {
  width: 60px;
  height: 30px;
  object-fit: cover;
  position: absolute;
  bottom: 1px;
  left: 14%;
  transform: scale(1.04);
}

.before_entering_japan_calendar_2 {
  width: 47px;
  height: 30px;
  object-fit: cover;
  position: absolute;
  bottom: 1px;
  left: 46.3%;
  transform: scale(1.04);
}

.before_entering_japan_calendar_3 {
  width: 47px;
  height: 30px;
  object-fit: cover;
  position: absolute;
  bottom: 1px;
  right: 16.7%;
  transform: scale(1.04);
}

.before_entering_japan_calendar_4 {
  width: 10.5px;
  height: 30px;
  object-fit: cover;
  position: absolute;
  bottom: 1px;
  right: 6.7%;
  transform: scale(1.04);
}

.travel_care_content_box_content img {
  max-width: 160px;
  height: auto;
  display: block;
  margin: 10px 0;
}

.travel_care_content_box_content>img:first-child {
  float: right;
  margin: 0 0 10px 15px;
}

.travel_care_content_box_content p {
  font-size: 15px;
  line-height: 21px;
  text-indent: 1.5em;
  /* 蜈ｨ隗・譁・ｭ怜・ */
  margin-bottom: 1em;
}

.travel_care_content_box_content p:first-child {
  margin-bottom: 0;
  margin-top: 10px;
}

.travel_care_content_box_content p:not(:first-child) {
  margin-top: 0;
}

.travel_care_content_box_content p:not(:first-child):not(:last-child) {
  margin: 0;
}

.before_entering_japan .travel_care_content_box:nth-child(3) .travel_care_content_box_title img {
  width: 100px;
  height: 50px;
  top: 50%;
  transform: translatey(-50%);
}

.before_entering_japan .travel_care_content_box:nth-child(4) {
  padding-top: 20px;
  padding-bottom: 80px;
  position: relative;
}

.before_entering_japan .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
  width: 80px;
  height: 65px;
  top: 50%;
  transform: translatey(-50%);
}

.before_entering_japan .travel_care_content_box:nth-child(4)>img {
  position: absolute;
  bottom: 0;
  left: 3%;
  z-index: -1;
}

.before_entering_japan .travel_care_content_box:nth-child(5) {
  position: relative;
  padding-bottom: 40px;
}

.before_entering_japan .travel_care_content_box:nth-child(5) .travel_care_content_box_content p:nth-child(2) {
  width: 78%;
}

.before_entering_japan .travel_care_content_box:nth-child(5)>img {
  position: absolute;
  bottom: 12%;
  right: 5%;
  width: 80px;
  height: 100px;
}

.before_entering_japan .travel_care_content_box:nth-child(6) {
  position: relative;
}

.before_entering_japan .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
  width: 48px;
  height: 48px;
  top: 50%;
  right: 5%;
  transform: translatey(-50%);
}

.before_entering_japan .travel_care_content_box:nth-child(6)>img {
  position: absolute;
  bottom: -29%;
  left: 0%;
  width: 80px;
  height: 75px;
}


/* footer */
.wave_background_red {
  background-image: url('../images/wave_background_red.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.footer_nav {
  padding-top: 120px;
}

.footer_nav .menu-button {
  border-color: #fff;
  color: #fff;
  padding-right: 10px;
}

.footer_nav .menu-button:hover {
  background-color: #fff;
  color: #c1001c;
}

.footer_nav .menu-button:hover::after {
  border-color: #c1001c;
}

.footer_nav .menu-button::after {
  border-color: #fff;
  margin-left: 10px;
  width: 8px;
  height: 8px;
}

.footer_nav .menu-list li a {
  color: #fff;
  width: 85%;
}

.footer_nav .toggle-icon {
  border: none;
}

.footer_nav .toggle-icon::after {
  border-color: #c1001c;
}

.footer_nav .about-link-left {
  color: #fff;
}

.footer_banner {
  width: 90%;
  max-width: 650px;
  margin: 0 auto;
  padding: 30px 0;
}

.footer_banner img {
  width: 100%;
}


/* Getting Around */
.getting_around .travel_care_content_title img {
  top: auto;
  bottom: 10%;
  right: -10%;
  left: auto;
  width: 181px;
  height: 82px;
}

.getting_around .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
  width: 125px;
  height: 57px;
  right: -9%;
  top: 5%;
}

.getting_around .travel_care_content_box:nth-child(2) .travel_care_content_box_title img:last-child {
  right: auto;
  left: -10%;
  top: auto;
  bottom: -5%;
  width: 40px;
  height: 40px;
}

.getting_around .travel_care_content_box:nth-child(3) .travel_care_content_box_title img {
  width: 72px;
  height: 77px;
  top: -10%;
}

.getting_around .travel_care_content_box:nth-child(4),
.getting_around .travel_care_content_box:nth-child(5),
.getting_around .travel_care_content_box:nth-child(6),
.getting_around .travel_care_content_box:nth-child(7),
.getting_around .travel_care_content_box:nth-child(8),
.getting_around .travel_care_content_box:nth-child(9),
.experiences_basics .travel_care_content_box:nth-child(3),
.experiences_basics .travel_care_content_box:nth-child(4),
.experiences_basics .travel_care_content_box:nth-child(5),
.experiences_basics .travel_care_content_box:nth-child(6),
.experiences_basics .travel_care_content_box:nth-child(7),
.experiences_nature .travel_care_content_box:nth-child(3),
.experiences_nature .travel_care_content_box:nth-child(4),
.experiences_nature .travel_care_content_box:nth-child(5),
.experiences_nature .travel_care_content_box:nth-child(6),
.experiences_nature .travel_care_content_box:nth-child(7),
.experiences_culture_history .travel_care_content_box:nth-child(3),
.experiences_culture_history .travel_care_content_box:nth-child(4),
.experiences_culture_history .travel_care_content_box:nth-child(5),
.experiences_culture_history .travel_care_content_box:nth-child(6),
.experiences_culture_history .travel_care_content_box:nth-child(7),
.experiences_culture_history .travel_care_content_box:nth-child(8),
.shopping_dining .travel_care_content_box:nth-child(3),
.shopping_dining .travel_care_content_box:nth-child(4),
.shopping_dining .travel_care_content_box:nth-child(5),
.shopping_dining .travel_care_content_box:nth-child(6),
.shopping_dining .travel_care_content_box:nth-child(7),
.shopping_dining .travel_care_content_box:nth-child(8),
.communication_interaction .travel_care_content_box:nth-child(4),
.communication_interaction .travel_care_content_box:nth-child(5),
.communication_interaction .travel_care_content_box:nth-child(6),
.accommodation .travel_care_content_box:nth-child(3),
.accommodation .travel_care_content_box:nth-child(4),
.accommodation .travel_care_content_box:nth-child(5),
.accommodation .travel_care_content_box:nth-child(6) {
  padding-top: 30px;
}

.getting_around .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
  width: 111px;
  height: 74px;
  top: -50%;
  right: -8%;
}

.getting_around .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
  width: 111px;
  height: 74px;
  top: -50%;
  right: -8%;
}

.getting_around .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
  width: 116px;
  height: 78px;
  top: -10%;
  right: -10%;
}

.getting_around .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
  width: 73px;
  height: 40px;
  top: 25%;
  right: 0%;
}

.getting_around .travel_care_content_box:nth-child(8) .travel_care_content_box_title img {
  width: 66px;
  height: 109px;
  top: auto;
  bottom: 5%;
  right: -13%;
}

.getting_around .travel_care_content_box:nth-child(9) .travel_care_content_box_title img {
  width: 65px;
  height: 57px;
  top: 10%;
  right: 20%;
}

.getting_around .travel_care_content_box:nth-child(10) .travel_care_content_box_title img {
  width: 187px;
  height: 50px;
  top: -38%;
  right: -18%;
}

.getting_around .travel_care_content_box:nth-child(10) .travel_care_content_box_content {
  position: relative;
}

.getting_around .travel_care_content_box:nth-child(10) .travel_care_content_box_content img {
  position: absolute;
  bottom: -40%;
  left: 3%;
  width: 68px;
  height: 55px;
}


.getting_around_mark_area {
  padding-top: 20px;
}

.getting_around_mark_area h3 {
  font-size: 18px;
  color: #c1001c;
  text-align: center;
  margin: 0;
}

.getting_around_mark_part {
  background-color: #c1001c;
  color: #fff;
}

.getting_around_mark_content {
  display: flex;
  align-items: center;
}

.getting_around_mark_content_image {
  background-color: #fff;
  height: 176px;
  width: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.getting_around_mark_content:nth-child(2) .getting_around_mark_content_image {
  height: 212px;
}

.getting_around_mark_content:nth-child(1) .getting_around_mark_content_image img {
  width: 82px;
  height: 82px;
}

.getting_around_mark_content:nth-child(2) .getting_around_mark_content_image img {
  width: 61px;
  height: 96px;
}

.getting_around_mark_content_text {
  width: 60%;
  padding-left: 20px;
}

.getting_around_mark_content_text p {
  font-size: 12px;
}

.getting_around_mark_content_text .getting_around_mark_content_title {
  font-size: 15px;
  margin-bottom: 0;
}

.getting_around_mark_content_text p:last-child {
  margin-top: 0;
}


/* experience basics */
.experiences_basics .travel_care_content_box:nth-child(4) .travel_care_content_box_content p:last-child,
.experiences_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_content p:nth-child(3) {
  text-indent: 0;
}

.experiences_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_content p:nth-child(3) {
  width: 95%;
  margin-right: auto;
}

.travel_care_content_box_content ul {
  padding-inline-start: 10px;
  margin: 5px 0;
}

.travel_care_content_box_content ul li {
  list-style: none;
  padding-bottom: 5px;
  position: relative;
  font-size: 15px;
}

.travel_care_content_box_content ul li::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 20px;
  top: 5%;
  left: -5%;
  background-repeat: no-repeat;
}

.experiences_basics .travel_care_content_box:nth-child(4) .travel_care_content_box_content ul li::after {
  background-image: url("../images/ex_basics_3_item.svg");
}

.experiences_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_content ul li::after {
  background-image: url("../images/ex_basics_4_item.svg");
  width: 23px;
  height: 19px;
  left: -8%;
}

.experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li {
  text-indent: 1.5em;
  padding-bottom: 20px;
}

.experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(odd)::after {
  background-image: url("../images/ex_basics_5-right.svg");
  width: 11px;
  height: 21px;
  left: 2%;
  top: 1%;
}

.experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(even)::after {
  background-image: url("../images/ex_basics_5-left.svg");
  width: 11px;
  height: 21px;
  left: 2%;
  top: 1%;
}

.experiences_basics .travel_care_content_title img {
  width: 110px;
  height: 95px;
  top: 15%;
  left: -2%;
}

.experiences_basics .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
  width: 55px;
  height: 80px;
  top: -15%;
  right: 3%;
}

.experiences_basics .travel_care_content_box:nth-child(3) .travel_care_content_box_title img {
  width: 89px;
  height: 79px;
  top: -10%;
  right: -7%;
}

.experiences_basics .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
  width: 50px;
  height: 72px;
  top: -10%;
  right: 8%;
}

.experiences_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
  width: 109px;
  height: 94px;
  top: -30%;
  right: -5%;
}

.experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
  width: 79px;
  height: 47px;
  top: 20%;
  right: 5%;
}

.experiences_basics .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
  width: 78px;
  height: 63px;
  top: 5%;
  right: -3%;
}

.experiences_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_content,
.experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content {
  position: relative;
}

.experiences_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_content img {
  position: absolute;
  width: 53px;
  height: 89px;
  right: 10%;
  bottom: -15%;
}

.experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content img {
  position: absolute;
  width: 37px;
  height: 109px;
  left: -2%;
  bottom: -47%;
}

.experiences_basics .travel_care_content_box:nth-child(7) {
  padding-top: 80px;
}


/* experiences nature */
.experiences_nature .travel_care_content_title img {
  width: 171px;
  height: 114px;
  left: -5%;
  top: 12%;
}

.experiences_nature .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
  width: 67px;
  height: 68px;
  top: 20%;
  right: -3%;
}

.experiences_nature .travel_care_content_box:nth-child(3) .travel_care_content_box_title img {
  width: 141px;
  height: 85px;
  top: -30%;
  right: -17%;
}

.experiences_nature .travel_care_content_box:nth-child(3) .travel_care_content_box_title img:last-child {
  width: 22px;
  height: 9px;
  top: auto;
  right: auto;
  left: -9%;
  bottom: -5%;
}

.experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
  width: 113px;
  height: 90px;
  top: -40%;
  right: -15%;
}

.experiences_nature .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
  width: 117px;
  height: 92px;
  top: -35%;
  right: -5%;
}

.experiences_nature .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
  width: 98px;
  height: 94px;
  top: -35%;
  right: -3%;
}

.experiences_nature .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
  width: 137px;
  height: 47px;
  top: 0%;
  right: -12%;
}

.experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content,
.experiences_nature .travel_care_content_box:nth-child(7) .travel_care_content_box_content {
  position: relative;
}

.experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content img {
  position: absolute;
  width: 47px;
  height: 169px;
  top: 7%;
  right: -6%;
}

.experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content img:last-child {
  position: absolute;
  width: 35px;
  height: 47px;
  top: 100%;
  left: -1.5%;
}

.experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content ul li:nth-child(odd)::after {
  background-image: url("../images/ex_nature_3-big.svg");
  width: 12px;
  height: 20px;
}

.experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content ul li:nth-child(even)::after {
  background-image: url("../images/ex_nature_3-small.svg");
  width: 11px;
  height: 12px;
  top: 12%;
  left: -4.5%;
}

.experiences_nature .travel_care_content_box:nth-child(7) .travel_care_content_box_content {
  padding-bottom: 70px;
}

.experiences_nature .travel_care_content_box:nth-child(7) .travel_care_content_box_content img {
  position: absolute;
  width: 45px;
  height: 34px;
  top: 32%;
  left: 0%;
}

.experiences_nature .travel_care_content_box:nth-child(7) .travel_care_content_box_content img:last-child {
  position: absolute;
  width: 229px;
  height: 164px;
  top: 56%;
  left: 42%;
}


/* experiences culture history */
.experiences_culture_history .travel_care_content_title img {
  width: 98px;
  height: 77px;
  top: 20%;
  left: 3%;
}

.experiences_culture_history .travel_care_content_title {
  padding-bottom: 70px;
}

.experiences_culture_history .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
  width: 95px;
  height: 81px;
  top: -25%;
  right: -5%;
}

.experiences_culture_history .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
  width: 60px;
  height: 84px;
  top: -5%;
  right: -5%;
}

.experiences_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
  width: 96px;
  height: 74px;
  top: 0%;
  right: -5%;
}

.experiences_culture_history .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
  width: 144px;
  height: 77px;
  top: -20%;
  right: -16%;
}

.experiences_culture_history .travel_care_content_box:nth-child(8) .travel_care_content_box_title img {
  width: 45px;
  height: 71px;
  top: -5%;
  right: 0%;
}

.experiences_culture_history .travel_care_content_box:nth-child(3) .travel_care_content_box_title p {
  padding-right: 0;
}


.experiences_culture_history .travel_care_content_box:nth-child(3) .travel_care_content_box_content,
.experiences_culture_history .travel_care_content_box:nth-child(4) .travel_care_content_box_content {
  position: relative;
}

.experiences_culture_history .travel_care_content_box:nth-child(3) .travel_care_content_box_content p:nth-child(2) {
  text-indent: 0;
  width: 85%;
  margin-right: auto;
}

.experiences_culture_history .travel_care_content_box:nth-child(3) .travel_care_content_box_content img {
  position: absolute;
  width: 71px;
  height: 88px;
  bottom: -5%;
  right: 3%;
}

.experiences_culture_history .travel_care_content_box:nth-child(4) .travel_care_content_box_content img {
  position: absolute;
  width: 58px;
  height: 67px;
  top: 31%;
  right: 5%;
}

.experiences_culture_history .travel_care_content_box:nth-child(4) .travel_care_content_box_content ul li::after {
  background-image: url("../images/ex_culture_history3-list.svg");
  width: 12px;
  height: 12px;
  top: 8%;
}

.experiences_culture_history .travel_care_content_box:nth-child(4) .travel_care_content_box_content p:nth-child(2) {
  margin-top: 10px;
}

.experiences_culture_history .travel_care_content_box:nth-child(4) .travel_care_content_box_content p:nth-child(3),
.experiences_culture_history .travel_care_content_box:nth-child(4) .travel_care_content_box_content p:nth-child(4),
.experiences_culture_history .travel_care_content_box:nth-child(4) .travel_care_content_box_content p:nth-child(5),
.experiences_culture_history .travel_care_content_box:nth-child(4) .travel_care_content_box_content p:last-child {
  margin-top: 20px;
  text-indent: 0;
}

.experiences_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(odd)::after {
  background-image: url("../images/ex_culture_history_5-list_1.svg");
  width: 13px;
  height: 13px;
  top: 8%;
}

.experiences_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(2)::after {
  background-image: url("../images/ex_culture_history_5-list_2.svg");
  width: 18px;
  height: 12px;
  top: 12%;
  left: -6%;
}

.experiences_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(4)::after {
  background-image: url("../images/ex_culture_history_5-list_3.svg");
  width: 18px;
  height: 12px;
  top: 9%;
  left: -6%;
}

.experiences_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_content p:last-child,
.experiences_culture_history .travel_care_content_box:nth-child(8) .travel_care_content_box_content p:last-child {
  text-indent: 0;
}

.experiences_culture_history .travel_care_content_box:nth-child(8) .travel_care_content_box_content ul li:nth-child(odd)::after {
  background-image: url("../images/ex_culture_history_7-list_1.svg");
  width: 13px;
  height: 13px;
  top: 8%;
}

.experiences_culture_history .travel_care_content_box:nth-child(8) .travel_care_content_box_content ul li:nth-child(even)::after {
  background-image: url("../images/ex_culture_history_7-list_2.svg");
  width: 13px;
  height: 13px;
  top: 8%;
}


/* Shopping & Dining */
.shopping_dining_tradition_part {
  display: flex;
  gap: 25px;
  padding-top: 40px;
  padding-bottom: 30px;
  width: 90%;
  margin: 0 auto;
}

.shopping_dining_tradition_part img {
  width: 85px;
  height: 145px;
}

.shopping_dining_tradition_part p {
  text-indent: 0;
  font-size: 12px;
  line-height: 21px;
}

.shopping_dining_tradition_image p {
  text-align: center;
  line-height: 12px;
}

.shopping_dining_tradition_part p span {
  font-size: 15px;
}

.shopping_dining_extra_tips {
  background-color: #c1001c;
  color: #fff;
  padding: 15px 0 20px;
  margin: 20px 0 0;
}

.shopping_dining_extra_tips h3 {
  margin: 5px 0;
}

.shopping_dining_extra_tips ul {
  margin: 0;
  padding-inline-start: 10px;
}

.shopping_dining_extra_tips ul li {
  list-style: none;
  position: relative;
}

.shopping_dining_extra_tips ul li:first-child {
  margin-bottom: 25px;
}

.shopping_dining_extra_tips ul li::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  top: 9%;
  left: -10px;
  background-color: #fff;
  border-radius: 50%;
}

.shopping_dining .travel_care_content_title img {
  width: 179px;
  height: 31px;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
}

.shopping_dining .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
  width: 76px;
  height: 59px;
  top: 20%;
  right: 0%;
}

.shopping_dining .travel_care_content_box:nth-child(3) .travel_care_content_box_title img {
  width: 68px;
  height: 93px;
  top: -50%;
  right: -10%;
}

.shopping_dining .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
  width: 107px;
  height: 77px;
  top: -10%;
  right: -5%;
}

.shopping_dining .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
  width: 55px;
  height: 38px;
  top: 20%;
  right: 0%;
}

.shopping_dining .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
  width: 49px;
  height: 55px;
  top: 10%;
  right: 0%;
}

.shopping_dining .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
  width: 49px;
  height: 59px;
  top: 0%;
  right: 0%;
}

.shopping_dining .travel_care_content_box:nth-child(8) .travel_care_content_box_title img {
  width: 72px;
  height: 58px;
  top: 0%;
  right: 0%;
}


.shopping_dining .travel_care_content_box:nth-child(8) .travel_care_content_box_content {
  position: relative;
  margin-bottom: 30px;
}

.shopping_dining .travel_care_content_box:nth-child(8) .travel_care_content_box_content img {
  position: absolute;
  width: 41px;
  height: 44px;
  bottom: -22%;
  left: 2%;
}


/* communication & interaction */
.communication_interaction .travel_care_content_title img {
  width: 124px;
  height: 71px;
  top: 28%;
  left: 3%;
}

.communication_interaction .travel_care_content_title h1 {
  width: 80%;
  margin-right: 0;
  margin-left: auto;
}

.communication_interaction_tips {
  background-color: #c1001c;
  color: #fff;
  padding: 15px 0 20px;
  margin: 20px 0 0;
}

.communication_interaction_tips h3 {
  margin: 0;
  font-size: 15px;
}

.communication_interaction_tips p {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 17px;
}

.communication_interaction .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
  width: 99px;
  height: 72px;
  top: -25%;
  right: 0%;
}

.communication_interaction .travel_care_content_box:nth-child(3) .travel_care_content_box_title img {
  width: 88px;
  height: 118px;
  top: -80%;
  right: -5%;
}

.communication_interaction .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
  width: 60px;
  height: 70px;
  top: 5%;
  right: -5%;
}

.communication_interaction .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
  width: 50px;
  height: 62px;
  top: 0%;
  right: 0%;
}

.communication_interaction .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
  width: 60px;
  height: 38px;
  top: 40%;
  right: -5%;
}

.communication_interaction .travel_care_content_box:nth-child(6) .travel_care_content_box_content {
  position: relative;
}

.communication_interaction .travel_care_content_box:nth-child(6) .travel_care_content_box_content img {
  position: absolute;
  width: 59px;
  height: 24px;
  bottom: -18%;
  left: 5%;
}


/* Accommodation */
.accommodation .travel_care_content_title {
  padding: 80px 0 90px;
}

.accommodation .travel_care_content_title img {
  width: 97px;
  height: 54px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.accommodation .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
  width: 95px;
  height: 71px;
  top: -10%;
  right: 0%;
}

.accommodation .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
  width: 62px;
  height: 80px;
  top: -10%;
  right: 0%;
}

.accommodation .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
  width: 116px;
  height: 64px;
  top: -10%;
  right: 0%;
}


.accommodation .travel_care_content_box:nth-child(2) .travel_care_content_box_content ul li::after {
  background-image: url("../images/accommodation_1-list.svg");
  width: 19px;
  height: 19px;
  top: 3%;
  left: -7%;
}

.accommodation .travel_care_content_box:nth-child(2) .travel_care_content_box_content ul li:nth-child(2)::after,
.accommodation .travel_care_content_box:nth-child(2) .travel_care_content_box_content ul li:nth-child(5)::after {
  transform: rotate(-30deg);
}

.accommodation .travel_care_content_box:nth-child(2) .travel_care_content_box_content ul li:nth-child(3)::after {
  transform: rotate(40deg);
}

.accommodation .travel_care_content_box:nth-child(3) .travel_care_content_box_content ul {
  padding-inline-start: 20px;
}

.accommodation .travel_care_content_box:nth-child(3) .travel_care_content_box_content ul li {
  list-style-type: decimal;
}

.accommodation .travel_care_content_box:nth-child(3) .travel_care_content_box_content p:last-child,
.accommodation .travel_care_content_box:nth-child(5) .travel_care_content_box_content p:last-child {
  text-indent: 0;
}

.accommodation .travel_care_content_box:nth-child(3) .travel_care_content_box_content img {
  width: 167px;
  height: 114px;
  margin: 15px auto 10px;
  display: block;
}

.accommodation .travel_care_content_box:nth-child(5) .travel_care_content_box_content ul {
  margin-top: 40px;
}

.accommodation .travel_care_content_box:nth-child(5) .travel_care_content_box_content ul li::after {
  background-image: url("../images/blue_star.svg");
  width: 18px;
  height: 18px;
  top: 3%;
  left: -7%;
}

.accommodation .travel_care_content_box:nth-child(5) .travel_care_content_box_content ul li:nth-child(even)::after {
  background-image: url("../images/white_star.svg");
}


/* A message from us */
.message_from_us_part {
  margin: 0;
  padding: 50px 0;
}

.message_from_us_part h1 {
  font-size: 27px;
  text-align: center;
}

.message_from_us_part img {
  width: 74px;
  height: 95px;
  display: block;
  margin: 0 auto 50px;
}

.message_from_us_content p {
  font-size: 15px;
  line-height: 21px;
  margin: 0 0 25px;
}

.message_from_us_content p:first-child {
  text-align: center;
}

.message_from_us_content p:nth-child(2) {
  text-indent: 1em;
  /* 蜈ｨ隗・譁・ｭ怜・ */
}

.message_from_us_content p:nth-child(6) {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  margin-bottom: 15px;
}

.message_from_us_content p:nth-child(8) {
  padding-top: 50px;
  color: #c1001c;
  text-align: center;
  margin: 0;
  font-size: 12px;
}

.message_from_us_content .menu-button {
  width: 40%;
  margin: 0 auto;
  color: #c1001c;
  border-color: #c1001c;
}

.message_from_us_content .menu-button::after {
  border-color: #c1001c;
}

.message_from_us_link_box a {
  text-decoration: none;
  color: #c1001c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #c1001c;
  padding: 10px;
}

.message_from_us_link_box p {
  font-size: 16px;
  line-height: 16px;
  margin: 0;
}

.message_from_us_link_box img {
  width: 16px;
  height: 16px;
  margin: 0;
}


/* contact */
.contact_part {
  margin: 0;
  padding: 50px 0;
}

.contact_part h1 {
  font-size: 27px;
  text-align: center;
}

.contact_part img {
  width: 74px;
  height: 95px;
  display: block;
  margin: 0 auto 50px;
}

.Form-Item-Label {
  margin-bottom: 2px;
  font-size: 13px;
}

.Form-Item-Input,
.Form-Item-Textarea {
  border: 1px solid #c1001c;
  border-radius: 0;
  font-size: 15px;
  padding: 5px 10px;
  width: 93%;
}

.Form-Item-Input {
  margin-bottom: 10px;
}

.Form-Item-Textarea {
  height: 120px;
  overflow-y: auto;
  margin-bottom: 30px;
}

.Form-Btn {
  background-color: #c1001c;
  color: #fff;
  border: none;
  padding: 5px 40px;
  font-size: 13px;
  margin: 0 auto;
  text-align: center;
  border-radius: 50px;
  display: block;
}






/* tablet size */
@media (min-width: 481px) {

  .sp,
  .pc {
    display: none;
  }

  .tb {
    display: block;
  }

  /* Show PC top banner image on tablet size too */
  .background-box.pc {
    display: block;
    width: 80%;
  }

  .w-main {
    width: 85%;
    margin: 0 auto;
    padding: 0;
  }

  .s-main {
    width: 75%;
    margin: 0 auto;
    padding: 0;
  }

  .home_top_area {
    padding: 20px;
  }

  .home_top_area .container {
    aspect-ratio: 16 / 9;
  }

  .home_top_area .background-box {
    height: 90%;
  }

  .home_top_area .red-circle {
    width: 55%;
  }

  .home_top_area .main-text {
    font-size: clamp(3rem, 5vw, 3rem);
  }

  .home_top_area .subtitle {
    font-size: clamp(2rem, 2.8vw, 2rem);
  }

  .home_top_area .subtitle-white {
    clip-path: circle(39% at 50% -40%);
  }

  .home_content_box {
    display: flex;
    justify-content: center;
  }

  .home_ex_basics::after {
    right: 25%;
  }

  .home_ex_nature::after {
    right: 24%;
  }

  .home_content_box::before {
    left: 28%;
  }

  .footer_nav {
    padding: 180px 0 30px;
  }


  .shopping_dining .travel_care_content_box:nth-child(8) .travel_care_content_box_content img {
    bottom: -80%;
  }

  .shopping_dining_extra_tips ul li::after {
    top: 15%;
  }

  .shopping_dining .travel_care_content_box:nth-child(3) .travel_care_content_box_title img,
  .shopping_dining .travel_care_content_box:nth-child(5) .travel_care_content_box_title img,
  .shopping_dining .travel_care_content_box:nth-child(6) .travel_care_content_box_title img,
  .shopping_dining .travel_care_content_box:nth-child(7) .travel_care_content_box_title img,
  .communication_interaction .travel_care_content_box:nth-child(3) .travel_care_content_box_title img,
  .communication_interaction .travel_care_content_box:nth-child(4) .travel_care_content_box_title img,
  .communication_interaction .travel_care_content_box:nth-child(5) .travel_care_content_box_title img,
  .communication_interaction .travel_care_content_box:nth-child(6) .travel_care_content_box_title img,
  .accommodation .travel_care_content_box:nth-child(4) .travel_care_content_box_title img,
  .experiences_basics .travel_care_content_box:nth-child(2) .travel_care_content_box_title img,
  .experiences_basics .travel_care_content_box:nth-child(4) .travel_care_content_box_title img,
  .experiences_nature .travel_care_content_box:nth-child(2) .travel_care_content_box_title im,
  .experiences_nature .travel_care_content_box:nth-child(6) .travel_care_content_box_title img,
  .experiences_culture_history .travel_care_content_box:nth-child(2) .travel_care_content_box_title img,
  .experiences_culture_history .travel_care_content_box:nth-child(5) .travel_care_content_box_title img,
  .experiences_culture_history .travel_care_content_box:nth-child(8) .travel_care_content_box_title img,
  .before_entering_japan .travel_care_content_box:nth-child(4) .travel_care_content_box_title img,
  .getting_around .travel_care_content_box:nth-child(3) .travel_care_content_box_title img,
  .getting_around .travel_care_content_box:nth-child(6) .travel_care_content_box_title img,
  .getting_around .travel_care_content_box:nth-child(8) .travel_care_content_box_title img {
    right: 5%;
  }

  .shopping_dining .travel_care_content_box:nth-child(4) .travel_care_content_box_title img,
  .shopping_dining .travel_care_content_box:nth-child(8) .travel_care_content_box_title img,
  .communication_interaction .travel_care_content_box:nth-child(2) .travel_care_content_box_title img,
  .accommodation .travel_care_content_box:nth-child(2) .travel_care_content_box_title img,
  .experiences_basics .travel_care_content_box:nth-child(3) .travel_care_content_box_title img,
  .experiences_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_title img,
  .experiences_basics .travel_care_content_box:nth-child(7) .travel_care_content_box_title img,
  .experiences_nature .travel_care_content_box:nth-child(3) .travel_care_content_box_title img,
  .experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_title img,
  .experiences_nature .travel_care_content_box:nth-child(5) .travel_care_content_box_title img,
  .experiences_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_title img,
  .experiences_culture_history .travel_care_content_box:nth-child(7) .travel_care_content_box_title img,
  .before_entering_japan .travel_care_content_box:nth-child(3) .travel_care_content_box_title img,
  .getting_around .travel_care_content_box:nth-child(2) .travel_care_content_box_title img,
  .getting_around .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
    right: 3%;
  }

  .accommodation .travel_care_content_box:nth-child(2) .travel_care_content_box_content ul li::after,
  .accommodation .travel_care_content_box:nth-child(5) .travel_care_content_box_content ul li::after,
  .experiences_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_content ul li::after {
    left: -4%;
  }

  .travel_care_content_box_content ul li::after {
    left: -3%;
  }

  .shopping_dining .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
    width: 65px;
    height: 48px;
  }

  .shopping_dining .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
    width: 55px;
    height: 60px;
  }

  .communication_interaction .travel_care_content_box:nth-child(4) .travel_care_content_box_title img,
  .experiences_basics .travel_care_content_box:nth-child(3) .travel_care_content_box_title img {
    top: 0;
  }

  .communication_interaction .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
    width: 60px;
    height: 72px;
  }

  .communication_interaction .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
    width: 60px;
    height: 42px;
  }

  .communication_interaction .travel_care_content_box:nth-child(6) .travel_care_content_box_content img {
    bottom: -30%;
    left: 0;
  }

  .experiences_basics .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
    width: 60px;
    height: 82px;
  }

  .experiences_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_content img {
    right: -2%;
    bottom: -10%;
  }

  .experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(odd)::after,
  .experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(even)::after {
    left: 1%;
  }

  .experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content img {
    left: -2.2%;
    bottom: -45%;
  }

  .experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content img {
    right: -17.5%;
  }

  .experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content ul li:nth-child(even)::after {
    left: -3%;
  }

  .experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content img:last-child {
    left: -6%;
    top: auto;
    bottom: -27%;
  }

  .experiences_nature .travel_care_content_box:nth-child(7) .travel_care_content_box_content img {
    left: -10%;
  }

  .experiences_culture_history .travel_care_content_box:nth-child(4) .travel_care_content_box_content img {
    top: 26%;
  }

  .before_entering_japan .travel_care_content_box:nth-child(5)>img {
    width: 70px;
    height: 90px;
    right: 20%;
    bottom: 10%;
  }

  .before_entering_japan .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
    width: 60px;
    height: 60px;
  }

  .before_entering_japan .travel_care_content_box:nth-child(6)>img {
    width: 90px;
    height: 85px;
    bottom: -67%;
    left: 3%;
  }

  .getting_around .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
    width: 135px;
    height: 67px;
  }

  .getting_around .travel_care_content_box:nth-child(2) .travel_care_content_box_title img:last-child {
    left: -6%;
  }

  .getting_around .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
    top: -10%;
    right: 0;
  }

  .getting_around_mark_area h3 {
    margin: 0 auto;
  }

  .getting_around .travel_care_content_box:nth-child(9) .travel_care_content_box_title img {
    right: 0;
    top: 10%;
  }

  .getting_around .travel_care_content_box:nth-child(9) .travel_care_content_box_content img {
    left: 0;
    bottom: -60%;
  }

  .communication_interaction .travel_care_content_title img {
    left: 32%;
  }

  .experiences_basics .travel_care_content_title img,
  .experiences_nature .travel_care_content_title img {
    left: 5%;
  }

  .experiences_culture_history .travel_care_content_title img {
    left: 27%;
  }

  .travel_care_content_title img {
    left: 20%;
  }

  .getting_around .travel_care_content_title img {
    width: 200px;
    height: 100px;
    right: -1%;
  }

  .experiences_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(2)::after,
  .experiences_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(4)::after {
    left: -3.5%;
  }

  .home_message_from_us img {
    width: 100%;
  }

  .getting_around .travel_care_content_box:nth-child(10) {
    padding: 50px 0;
  }

  .getting_around .travel_care_content_box:nth-child(10) .travel_care_content_box_title img {
    top: -50%;
  }

  .getting_around .travel_care_content_box:nth-child(10) .travel_care_content_box_content img {
    bottom: -100%;
  }

}


/* sp size */
@media (max-width: 480px) {
  main {
    overflow-x: hidden;
  }

  .tb,
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .s-main {
    width: 80%;
    margin: 0 auto;
    padding: 0;
  }

  .footer_nav.s-main {
    width: 85%;
    padding-top: 120px;
  }

  .home_top_area {
    padding: 40px 0 30px;
  }

  .travel_care_content_box:nth-child(8) .travel_care_content_box_content img {
    bottom: -50%;
  }

  .shopping_dining .travel_care_content_box:nth-child(8) .travel_care_content_box_content img {
    bottom: -50%;
  }

  .communication_interaction .travel_care_content_box:nth-child(6) .travel_care_content_box_content img {
    bottom: -30%;
  }

  .experiences_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_content img {
    right: -10%;
    bottom: -20%;
  }

  .experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content img {
    left: -5.2%;
    bottom: -29%;
  }

  .lang-zh .experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content img,
  .lang-ko .experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content img,
  .lang-zh-tw .experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content img {
    bottom: -35%;
  }

  .experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content img {
    right: -13.5%;
  }

  .experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content img:last-child {
    left: -10%;
    bottom: 0%;
  }

  .experiences_nature .travel_care_content_box:nth-child(7) .travel_care_content_box_content img {
    left: -10%;
  }

  .experiences_culture_history .travel_care_content_box:nth-child(4) .travel_care_content_box_content img {
    top: 26%;
  }

  .before_entering_japan .travel_care_content_box:nth-child(5)>img {
    width: 70px;
    height: 90px;
    right: 8%;
    bottom: 15%;
  }

  .before_entering_japan .travel_care_content_box:nth-child(6)>img {
    width: 90px;
    height: 85px;
    bottom: -67%;
    left: 3%;
  }

  .getting_around .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
    width: 135px;
    height: 67px;
    right: -3%;
  }

  .getting_around .travel_care_content_box:nth-child(2) .travel_care_content_box_title img:last-child {
    left: -6%;
  }

  .getting_around .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
    right: -8%;
  }

  .getting_around_mark_area h3 {
    margin: 0 auto;
  }

  .getting_around .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
    top: 0;
  }

  .getting_around .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
    right: -5%;
  }

  .getting_around .travel_care_content_box:nth-child(8) .travel_care_content_box_title img {
    right: -10%;
  }

  .getting_around .travel_care_content_box:nth-child(9) .travel_care_content_box_title img {
    right: 0;
    top: 10%;
  }

  .getting_around .travel_care_content_box:nth-child(9) .travel_care_content_box_content img {
    left: 0;
    bottom: -60%;
  }

  .experiences_culture_history .travel_care_content_box:nth-child(3) .travel_care_content_box_content img {
    right: -9%;
  }

  .travel_care_content_title img {
    left: 20%;
  }

  .getting_around .travel_care_content_title img {
    width: 200px;
    height: 100px;
    right: -1%;
    bottom: 5%;
  }

  .getting_around .travel_care_content_box:nth-child(10) {
    padding: 50px 0;
  }

  .getting_around .travel_care_content_box:nth-child(10) .travel_care_content_box_title img {
    top: -50%;
  }

  .getting_around .travel_care_content_box:nth-child(10) .travel_care_content_box_content img {
    bottom: -50%;
  }

  .home_message_from_us img {
    width: 100%;
  }

}

/* pc size */
@media (min-width: 1024px) {

  .sp,
  .tb {
    display: none;
  }

  .pc {
    display: block;
  }

  .w-main {
    width: 1000px;
    margin: 0 auto;
    padding: 0;
  }

  .s-main {
    width: 900px;
    margin: 0 auto;
  }


  /* top page */
  .home_top_area .background-box {
    width: 670px;
    height: 325px;
  }

  .home_top_area .red-circle {
    width: 350px;
    height: 350px;
  }

  .home_content_container {
    width: 90%;
    margin: 0 auto;
    column-gap: 20px;
    row-gap: 20px;
    grid-template-columns: repeat(4, 1fr);
  }

  .home_top_area .main-text {
    font-size: clamp(2.5rem, 5vw, 2.5rem);
  }

  .home_top_area .subtitle {
    font-size: clamp(1.8rem, 2.8vw, 1.8rem);
  }

  .home_top_area .subtitle-white {
    clip-path: circle(33% at 50% -50%);
  }

  .home_message_from_us .home_content_box_image {
    height: auto;
  }

  .home_content_box::before {
    left: 5%;
  }

  .home_content_box_image {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .home_content_box p {
    font-size: 20px;
    margin-top: 10px;
  }

  .home_shopping-dining img {
    width: 180px;
    height: 65px;
    padding-left: 0;
  }

  .home_communication-interaction img {
    width: 75%;
    padding-top: 6%;
  }

  .home_entering_japan img {
    width: 140px;
    height: 95px;
  }

  .home_ex_basics img {
    width: 85px;
    height: 75px;
    padding: 0;
  }

  .home_ex_basics::after {
    width: 45px;
    height: 65px;
    right: -1%;
  }

  .home_ex_nature img {
    width: 120px;
    height: 80px;
    padding: 0;
  }

  .home_ex_nature::after {
    width: 45px;
    height: 45px;
    right: -2%;
    bottom: 39%;
  }

  .home_ex_culture-history img {
    width: 107px;
    height: 87px;
    padding: 0;
  }

  .home_getting_around img {
    width: 172px;
    height: 85px;
    top: 2%;
    right: -5%;
  }

  .home_message_from_us img {
    width: 130px;
    height: 140px;
  }

  /* header */
  .side-menu-buttons {
    gap: 40px;
    margin: 0 auto 20px;
    width: 90%;
  }

  .menu-list li a {
    width: 75%;
    margin-right: 5%;
  }

  .about-link {
    margin-right: 5%;
  }

  .menu-button {
    font-size: 18px;
  }

  .menu-list li a {
    font-size: 16px;
  }


  /* footer */
  .footer_nav {
    padding-top: 260px;
  }

  .footer_nav .menu-button:hover {
    background: #fff;
    color: #c1001c;
  }

  .footer_nav .menu-button:hover.menu-button::after {
    border-color: #c1001c;
  }

  .footer_nav .menu-list li a:hover {
    opacity: 0.8;
  }


  /* shopping & dining */
  .travel_care_content_title h1 {
    font-size: 33px;
  }

  .travel_care_content_box_title p {
    font-size: 24px;
    padding-left: 20px;
  }

  .travel_care_content_box_content p {
    font-size: 18px;
    line-height: 28px;
  }

  .shopping_dining .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
    width: 81px;
    height: 64px;
  }

  .shopping_dining .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
    width: 65px;
    height: 48px;
  }

  .shopping_dining .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
    width: 59px;
    height: 65px;
  }

  .shopping_dining .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
    width: 59px;
    height: 69px;
  }

  .shopping_dining .travel_care_content_box:nth-child(8) .travel_care_content_box_title img {
    width: 77px;
    height: 63px;
  }

  .shopping_dining .travel_care_content_box:nth-child(8) .travel_care_content_box_content img {
    width: 51px;
    height: 54px;
  }

  .shopping_dining .travel_care_content_box:nth-child(3) .travel_care_content_box_title img,
  .shopping_dining .travel_care_content_box:nth-child(5) .travel_care_content_box_title img,
  .shopping_dining .travel_care_content_box:nth-child(6) .travel_care_content_box_title img,
  .shopping_dining .travel_care_content_box:nth-child(7) .travel_care_content_box_title img,
  .communication_interaction .travel_care_content_box:nth-child(2) .travel_care_content_box_title img,
  .communication_interaction .travel_care_content_box:nth-child(3) .travel_care_content_box_title img,
  .communication_interaction .travel_care_content_box:nth-child(4) .travel_care_content_box_title img,
  .communication_interaction .travel_care_content_box:nth-child(5) .travel_care_content_box_title img,
  .communication_interaction .travel_care_content_box:nth-child(6) .travel_care_content_box_title img,
  .accommodation .travel_care_content_box:nth-child(2) .travel_care_content_box_title img,
  .accommodation .travel_care_content_box:nth-child(4) .travel_care_content_box_title img,
  .experiences_basics .travel_care_content_box:nth-child(2) .travel_care_content_box_title img,
  .experiences_basics .travel_care_content_box:nth-child(4) .travel_care_content_box_title img,
  .experiences_nature .travel_care_content_box:nth-child(2) .travel_care_content_box_title img,
  .experiences_nature .travel_care_content_box:nth-child(6) .travel_care_content_box_title img,
  .experiences_culture_history .travel_care_content_box:nth-child(5) .travel_care_content_box_title img,
  .experiences_culture_history .travel_care_content_box:nth-child(8) .travel_care_content_box_title img,
  .before_entering_japan .travel_care_content_box:nth-child(4) .travel_care_content_box_title img,
  .getting_around .travel_care_content_box:nth-child(3) .travel_care_content_box_title img,
  .getting_around .travel_care_content_box:nth-child(8) .travel_care_content_box_title img {
    right: 5%;
  }

  .shopping_dining .travel_care_content_box:nth-child(4) .travel_care_content_box_title img,
  .shopping_dining .travel_care_content_box:nth-child(8) .travel_care_content_box_title img,
  .accommodation .travel_care_content_box:nth-child(5) .travel_care_content_box_title img,
  .experiences_basics .travel_care_content_box:nth-child(3) .travel_care_content_box_title img,
  .experiences_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_title img,
  .experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_title img,
  .experiences_basics .travel_care_content_box:nth-child(7) .travel_care_content_box_title img,
  .experiences_nature .travel_care_content_box:nth-child(3) .travel_care_content_box_title img,
  .experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_title img,
  .experiences_nature .travel_care_content_box:nth-child(5) .travel_care_content_box_title img,
  .experiences_culture_history .travel_care_content_box:nth-child(2) .travel_care_content_box_title img,
  .experiences_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_title img,
  .experiences_culture_history .travel_care_content_box:nth-child(7) .travel_care_content_box_title img,
  .before_entering_japan .travel_care_content_box:nth-child(3) .travel_care_content_box_title img,
  .getting_around .travel_care_content_box:nth-child(2) .travel_care_content_box_title img,
  .getting_around .travel_care_content_box:nth-child(4) .travel_care_content_box_title img,
  .getting_around .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
    right: 3%;
  }

  .shopping_dining .travel_care_content_box:nth-child(8) .travel_care_content_box_content img {
    bottom: -80%;
  }


  /* communication & interaction */
  .communication_interaction_tips h3 {
    font-size: 24px;
  }

  .communication_interaction_tips p {
    font-size: 18px;
    line-height: 28px;
  }

  .communication_interaction .travel_care_content_title img {
    width: 170px;
    height: 100px;
    left: 20%;
    top: 25%;
  }

  .communication_interaction .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
    top: 15%;
  }

  .communication_interaction .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
    width: 60px;
    height: 72px;
  }

  .communication_interaction .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
    width: 70px;
    height: 48px;
  }

  .communication_interaction .travel_care_content_box:nth-child(6) .travel_care_content_box_content img {
    width: 70px;
    height: 34px;
    bottom: -40%;
    left: 3%;
  }


  /* Accommodation */
  .accommodation .travel_care_content_title img {
    width: 117px;
    height: 74px;
    top: 4%;
  }

  .travel_care_content_box_content ul {
    padding-inline-start: 30px;
  }

  .accommodation .travel_care_content_box:nth-child(2) .travel_care_content_box_content ul li::after,
  .accommodation .travel_care_content_box:nth-child(5) .travel_care_content_box_content ul li::after,
  .experiences_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_content ul li::after {
    left: -3%;
  }

  .accommodation .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
    width: 100px;
    height: 76px;
  }

  .accommodation .travel_care_content_box:nth-child(3) .travel_care_content_box_content img {
    width: 186px;
    height: 134px;
  }

  .accommodation .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
    width: 126px;
    height: 75px;
  }


  /* Experiences 窶・Basics */
  .experiences_basics .travel_care_content_title img {
    width: 120px;
    height: 105px;
    left: 5%;
  }

  .experiences_basics .travel_care_content_box:nth-child(3) .travel_care_content_box_title img {
    width: 100px;
    height: 90px;
    top: -20%;
  }

  .experiences_basics .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
    width: 70px;
    height: 92px;
  }

  .travel_care_content_box_content ul li {
    font-size: 16px;
    padding-bottom: 8px;
  }

  .experiences_basics .travel_care_content_box:nth-child(4) .travel_care_content_box_content ul li::after,
  .travel_care_content_box_content ul li::after,
  .experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content ul li:nth-child(even)::after {
    left: -2%;
  }

  .experiences_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
    top: -20%;
  }

  .experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
    width: 90px;
    height: 60px;
    top: 15%;
  }

  .experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(odd)::after,
  .experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(even)::after {
    left: 1%;
  }

  .experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content img {
    left: 2%;
    bottom: -52%;
  }

  .lang-ko .experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content img,
  .lang-zh-tw .experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content img {
    bottom: -57%;
  }

  .lang-zh .experiences_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content img {
    bottom: -65%;
  }

  .experiences_basics .travel_care_content_box:nth-child(7) {
    padding-top: 100px;
  }

  .experiences_basics .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
    width: 90px;
    height: 73px;
  }

  .experiences_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_content img {
    right: 10%;
    bottom: -17%;
  }


  /* Experiences 窶・Nature */
  .experiences_nature .travel_care_content_title img {
    left: 12%;
  }

  .experiences_nature .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
    width: 77px;
    height: 78px;
    top: 10%;
  }

  .experiences_nature .travel_care_content_box:nth-child(3) .travel_care_content_box_title img {
    width: 151px;
    height: 95px;
  }

  .experiences_nature .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
    width: 127px;
    height: 102px;
  }

  .experiences_nature .travel_care_content_box:nth-child(3) .travel_care_content_box_title img:last-child {
    width: 27px;
    height: 14px;
    left: -3%;
    bottom: -16%;
  }

  .experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
    width: 123px;
    height: 100px;
    top: -30%;
  }

  .experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content img {
    right: -6%;
  }

  .experiences_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content img:last-child {
    left: -1.5%;
  }

  .experiences_nature .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
    top: 20%;
    right: -10%;
  }

  .experiences_nature .travel_care_content_box:nth-child(7) .travel_care_content_box_content img {
    left: -5%;
  }

  .experiences_nature .travel_care_content_box:nth-child(7) .travel_care_content_box_content img:last-child {
    top: 40%;
    right: 15%;
    left: auto;
  }


  /* Experiences 窶・Culture & History */
  .experiences_culture_history .travel_care_content_title img {
    width: 108px;
    height: 87px;
    top: 20%;
    left: 32%;
  }

  .experiences_culture_history .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
    width: 105px;
    height: 91px;
  }

  .experiences_culture_history .travel_care_content_box:nth-child(3) .travel_care_content_box_content img {
    right: 8%;
    bottom: -10%;
  }

  .experiences_culture_history .travel_care_content_box:nth-child(4) .travel_care_content_box_content img {
    position: absolute;
    width: 73px;
    height: 83px;
    top: 25%;
    right: 8%;
  }

  .experiences_culture_history .travel_care_content_box:nth-child(4) .travel_care_content_box_content ul li::after {
    width: 14px;
    height: 14px;
    top: 15%;
  }

  .experiences_culture_history .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
    width: 70px;
    height: 94px;
    top: -15%;
  }

  .experiences_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
    width: 116px;
    height: 84px;
  }

  .experiences_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(odd)::after {
    width: 14px;
    height: 14px;
    top: 10%;
  }

  .experiences_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(2)::after,
  .experiences_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(4)::after {
    width: 20px;
    height: 14px;
    top: 13%;
    left: -2.5%;
  }

  .experiences_culture_history .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
    width: 154px;
    height: 87px;
  }

  .experiences_culture_history .travel_care_content_box:nth-child(8) .travel_care_content_box_title img {
    width: 60px;
    height: 80px;
    top: -10%;
  }

  .experiences_culture_history .travel_care_content_box:nth-child(8) .travel_care_content_box_content ul li:nth-child(odd)::after,
  .experiences_culture_history .travel_care_content_box:nth-child(8) .travel_care_content_box_content ul li:nth-child(even)::after {
    top: 13%;
  }


  /* Before Entering Japan */
  .travel_care_content_calendar .month-number {
    font-size: 20px;
  }

  .travel_care_content_calendar .month-name {
    font-size: 18px;
  }

  .travel_care_content_calendar table th {
    padding: 15px 0;
  }

  .travel_care_content_calendar table td {
    height: 85px;
  }

  .before_entering_japan_calendar_1 {
    width: 200px;
    height: 85px;
    left: 13%;
  }

  .before_entering_japan_calendar_2 {
    width: 140px;
    height: 85px;
    left: 46.5%;
  }

  .before_entering_japan_calendar_3 {
    width: 145px;
    height: 85px;
    right: 16.6%;
  }

  .before_entering_japan_calendar_4 {
    width: 27.5px;
    height: 85px;
  }

  .travel_care_content_title img {
    top: 8%;
    left: 5%;
    width: 110px;
    height: 80px;
  }

  .before_entering_japan .travel_care_content_box:nth-child(3) .travel_care_content_box_title img {
    width: 110px;
    height: 55px;
    top: 55%;
  }

  .before_entering_japan .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
    width: 90px;
    height: 75px;
  }

  .before_entering_japan .travel_care_content_box:nth-child(4)>img {
    bottom: -12%;
    left: 7%;
    width: 85%;
  }

  .before_entering_japan .travel_care_content_box:nth-child(5)>img {
    bottom: 10%;
    right: 20%;
    width: 90px;
    height: 110px;
  }

  .before_entering_japan .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
    width: 78px;
    height: 68px;
  }

  .before_entering_japan .travel_care_content_box:nth-child(6)>img {
    bottom: -80%;
    left: 5%;
    width: 100px;
    height: 93px;
  }


  /* a message from us */
  .message_from_us_content .menu-button:hover {
    background: #c1001c;
    color: #fff;
  }

  .message_from_us_content .menu-button:hover.menu-button::after {
    border-color: #fff;
  }

  .message_from_us_content {
    font-size: 18px;
    text-align: center;
  }

  .message_from_us_content p:nth-child(6) {
    font-size: 16px;
    line-height: 24px;
  }

  .message_from_us_content p:nth-child(8) {
    font-size: 16px;
  }

  .message_from_us_link_box p {
    font-size: 18px;
  }

  .message_from_us_link_box img {
    width: 18px;
    height: 18px;
  }

  .message_from_us_link_box a:hover {
    background-color: #c1001c;
    color: #fff;
  }

  .message_from_us_link_box a:hover img {
    filter: brightness(0) invert(1);
  }

  .message_from_us_link_box a {
    width: 80%;
    margin: 0 auto;
  }


  /* Getting Around */
  .getting_around .travel_care_content_title img {
    bottom: 0%;
    right: -1%;
    width: 240px;
    height: 140px;
  }

  .getting_around .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
    width: 140px;
    height: 67px;
    top: 15%;
  }

  .getting_around .travel_care_content_box:nth-child(2) .travel_care_content_box_title img:last-child {
    left: -5%;
    bottom: -25%;
    width: 50px;
    height: 50px;
  }

  .getting_around .travel_care_content_box:nth-child(3) .travel_care_content_box_title img {
    width: 82px;
    height: 87px;
  }

  .getting_around .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
    width: 121px;
    height: 82px;
    top: 0%;
  }

  .getting_around .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
    width: 121px;
    height: 82px;
    top: 0%;
  }

  .getting_around .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
    width: 93px;
    height: 60px;
    right: 4%;
  }

  .getting_around .travel_care_content_box:nth-child(8) .travel_care_content_box_title img {
    width: 76px;
    height: 119px;
    right: -10%;
  }

  .getting_around .travel_care_content_box:nth-child(9) .travel_care_content_box_title img {
    width: 75px;
    height: 67px;
  }

  .getting_around_mark_area h3 {
    font-size: 24px;
    margin: 0 auto;
  }

  .getting_around_mark_content:nth-child(1) .getting_around_mark_content_image img {
    width: 102px;
    height: 102px;
  }

  .getting_around_mark_content:nth-child(2) .getting_around_mark_content_image img {
    width: 71px;
    height: 106px;
  }

  .getting_around_mark_content_image {
    width: 140px;
  }

  .getting_around_mark_content_text {
    padding-left: 50px;
    width: 75%;
  }

  .getting_around_mark_content_text .getting_around_mark_content_title {
    font-size: 20px;
  }

  .getting_around_mark_content_text p:last-child {
    font-size: 16px;
    line-height: 24px;
  }

  .getting_around .travel_care_content_box:nth-child(10) .travel_care_content_box_title img {
    width: 197px;
    height: 60px;
    top: 20%;
    right: 0%;
  }

  .getting_around .travel_care_content_box:nth-child(10) .travel_care_content_box_content img {
    bottom: -154%;
    width: 78px;
    height: 65px;
  }


  /* contact form */
  .contact_form {
    width: 80%;
    margin: 0 auto;
  }

  .Form-Item-Label {
    font-size: 16px;
  }

  .Form-Item-Input,
  .Form-Item-Textarea {
    font-size: 18px;
    padding: 10px 20px;
  }

  .Form-Item-Textarea {
    line-height: 28px;
    height: 180px;
  }

  .Form-Btn {
    font-size: 18px;
    padding: 10px 60px;
  }

  .contact_part h1,
  .message_from_us_part h1 {
    font-size: 33px;
  }

}

@media (min-width: 1600px) {
  .footer_nav {
    padding-top: 300px;
  }
}

/* A message from us page */
.message_from_us_page {
  background-color: #e5dcd0;
  padding: 60px 0 60px;
  text-align: center;
}

.message_from_us_page .message_title {
  text-align: center;
  font-size: 27px;
  margin-bottom: 10px;
}

.message_from_us_page .message_character {
  text-align: center;
  margin-bottom: 30px;
}

.message_from_us_page .message_character img {
  width: 120px;
  height: auto;
}

.message_from_us_page .message_text {
  text-align: center;
  padding: 0 20px;
}

.message_from_us_page .message_text p {
  font-size: 15px;
  line-height: 2.2;
  margin: 0 0 15px;
}

.message_from_us_page .message_contact_btn {
  text-align: center;
  margin: 30px 0;
}

.message_from_us_page .message_contact_btn .menu-button {
  width: 40%;
  margin: 0 auto;
  color: #c1001c;
  border-color: #c1001c;
}

.message_from_us_page .message_contact_btn .menu-button:hover {
  background-color: #c1001c;
  color: #fff;
}

.message_from_us_page .message_contact_btn .menu-button:hover::after {
  border-color: #fff;
}

.message_from_us_page .menu-button::after {
  border-color: #c1001c;
}

.message_from_us_page .message_action_guide_box {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
}

.message_from_us_page .message_action_title {
  color: #c1272d;
  font-size: 17px;
  margin-bottom: 15px;
}

.message_from_us_page .message_action_link {
  text-decoration: none;
  color: #c1001c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #c1001c;
  padding: 10px;
}

.message_from_us_page .message_action_link:hover {
  background-color: #c1001c;
  color: #fff;
}

.message_from_us_page .message_action_link img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(90%) saturate(5341%) hue-rotate(347deg) brightness(88%) contrast(116%);
}

.message_from_us_page .message_action_link:hover img {
  filter: brightness(0) invert(1);
}

.message_from_us_page .message_action_link .action_link_icon {
  width: 20px;
  height: 20px;
}

/* Message page: footer wave background should be beige, not white */
.travel_care_content.message_from_us,
.travel_care_content.ja_message_from_us,
.travel_care_content.ko_message_from_us,
.travel_care_content.zh_message_from_us,
.travel_care_content.message_from_us_zh_tw {
  background-color: #e5dcd0;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Also set the body/main background for message page so gap above footer wave is beige */
body.page-id-62,
body.page-id-63,
body.page-id-172,
body.page-id-173,
body.page-id-184,
.page-id-62 main,
.page-id-63 main,
.page-id-172 main,
.page-id-173 main,
.page-id-184 main {
  background-color: #e5dcd0;
}

/* Also set background for contact page so gap above footer wave is beige */
body.page-id-17,
body.page-id-47,
body.page-id-170,
body.page-id-171,
body.page-id-183,
.page-id-17 main,
.page-id-47 main,
.page-id-170 main,
.page-id-171 main,
.page-id-183 main {
  background-color: #e5dcd0;
}

/* Contact Form Styles */
.contact_part {
  padding-bottom: 60px;
}

.contact_part h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.contact_part>.s-main>img {
  display: block;
  margin: 0 auto 30px;
  width: 120px;
}

.contact_form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.contact_form label,
.contact_form .contact_form_group,
.contact_form .wpcf7-form>p,
.contact_form .wpcf7-form>div:not(.contact_form_submit) {
  text-align: left;
}

/* CF7 form wrapper */
.contact_form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* CF7 form groups and paragraph wrappers */
.contact_form .wpcf7-form>p,
.contact_form .wpcf7-form>div:not(.contact_form_submit),
.contact_form_group,
.contact_form_group p {
  margin-bottom: 10px;
  width: 95%;
  margin: 0 auto;
}

.contact_form label {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  color: #333;
}

/* CF7 span wrapper - make inputs full width */
.contact_form .wpcf7-form-control-wrap,
.contact_form_group .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* Input fields */
.contact_form input[type="text"],
.contact_form input[type="email"],
.contact_form input[type="tel"],
.contact_form input[type="url"],
.contact_input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #c1001c;
  font-size: 1rem;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.contact_form input[type="text"]:focus,
.contact_form input[type="email"]:focus,
.contact_form input[type="tel"]:focus,
.contact_form input[type="url"]:focus,
.contact_input:focus {
  border-color: #c1001c;
  box-shadow: 0 0 0 2px rgba(193, 0, 28, 0.15);
}

/* Textarea */
.contact_form textarea,
.contact_textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #c1001c;
  font-size: 1rem;
  background: #fff;
  box-sizing: border-box;
  min-height: 250px;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.contact_form textarea:focus,
.contact_textarea:focus {
  border-color: #c1001c;
  box-shadow: 0 0 0 2px rgba(193, 0, 28, 0.15);
}

/* Submit button */
.contact_form_submit {
  width: 100%;
  margin-top: 15px;
  text-align: center;
  position: relative;
}

.contact_form_submit p {
  text-align: center;
  width: 100%;
}

.contact_form .wpcf7-spinner {
  position: absolute;
}

.contact_submit_button,
.contact_form input[type="submit"] {
  background-color: #c1001c;
  color: #fff;
  border: none;
  padding: 14px 60px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  letter-spacing: 1px;
}

.contact_submit_button:hover,
.contact_form input[type="submit"]:hover {
  background-color: #a00018;
  transform: translateY(-1px);
}

.contact_submit_button:active,
.contact_form input[type="submit"]:active {
  transform: translateY(0);
}

/* CF7 validation error styles */
.wpcf7-not-valid-tip {
  color: #c1001c;
  font-size: 0.85rem;
  margin-top: 4px;
}

.wpcf7-not-valid {
  border-color: #c1001c !important;
}

.wpcf7-response-output {
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
}