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

main {
  overflow-x: hidden;
}

.base_color_bg {
  background-color: #e5dcd0;
}

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

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

.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 {
  position: fixed;
  top: 5px;
  right: 10px;
  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;
}

.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: flex;
  align-items: start;
  gap: 5px;
}

.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: 30px 20px;
}

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

.home_top_area .background-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 90%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
}

.home_top_area .red-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  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(1.5rem, 5vw, 1.8rem);
  font-weight: bold;
  line-height: 1.2;
  margin-top: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: clamp(1rem, 3vw, 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(37% at 50% -50%);
}


.home_content_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3つ均等幅 */
  column-gap: 15px; /* 列の間隔 */
  row-gap: 15px; /* 行の間隔 */
  padding-bottom: 15px;
}

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

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

.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('/static/images/box_light_blue.svg');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}

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

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

.home_content_box_yellow::before {
  background-image: url('/static/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_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('/static/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('/static/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('/static/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;
}

.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 {
  overflow-x: none;
  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 p {
  font-size: 15px;
  line-height: 21px;
  text-indent: 1.5em; /* 全角1文字分 */
  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('/static/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::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;
}


/* 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),
.ex_basics .travel_care_content_box:nth-child(3),
.ex_basics .travel_care_content_box:nth-child(4),
.ex_basics .travel_care_content_box:nth-child(5),
.ex_basics .travel_care_content_box:nth-child(6),
.ex_basics .travel_care_content_box:nth-child(7),
.ex_nature .travel_care_content_box:nth-child(3),
.ex_nature .travel_care_content_box:nth-child(4),
.ex_nature .travel_care_content_box:nth-child(5),
.ex_nature .travel_care_content_box:nth-child(6),
.ex_nature .travel_care_content_box:nth-child(7),
.ex_culture_history .travel_care_content_box:nth-child(3),
.ex_culture_history .travel_care_content_box:nth-child(4),
.ex_culture_history .travel_care_content_box:nth-child(5),
.ex_culture_history .travel_care_content_box:nth-child(6),
.ex_culture_history .travel_care_content_box:nth-child(7),
.ex_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: 116px;
  height: 78px;
  top: -10%;
  right: -10%;
}
.getting_around .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
  width: 73px;
  height: 40px;
  top: 25%;
  right: 0%;
}
.getting_around .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
  width: 66px;
  height: 109px;
  top: auto;
  bottom: 5%;
  right: -13%;
}
.getting_around .travel_care_content_box:nth-child(8) .travel_care_content_box_title img {
  width: 65px;
  height: 57px;
  top: 10%;
  right: 20%;
}

.getting_around .travel_care_content_box:nth-child(9) .travel_care_content_box_title img {
  width: 187px;
  height: 50px;
  top: -38%;
  right: -18%;
}
.getting_around .travel_care_content_box:nth-child(9) .travel_care_content_box_content {
  position: relative;
}
.getting_around .travel_care_content_box:nth-child(9) .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 */
.ex_basics .travel_care_content_box:nth-child(4) .travel_care_content_box_content p:last-child,
.ex_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_content p:nth-child(3) {
  text-indent: 0;
}

.ex_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;
}

.ex_basics .travel_care_content_box:nth-child(4) .travel_care_content_box_content ul li::after {
  background-image: url("/static/images/ex_basics_3_item.svg");
}
.ex_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_content ul li::after {
  background-image: url("/static/images/ex_basics_4_item.svg");
  width: 23px;
  height: 19px;
  left: -8%;
}
.ex_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li {
  text-indent: 1.5em;
  padding-bottom: 20px;
}
.ex_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(odd)::after {
  background-image: url("/static/images/ex_basics_5-right.svg");
  width: 11px;
  height: 21px;
  left: 2%;
  top: 1%;
}
.ex_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(even)::after {
  background-image: url("/static/images/ex_basics_5-left.svg");
  width: 11px;
  height: 21px;
  left: 2%;
  top: 1%;
}

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

.ex_basics .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
  width: 55px;
  height: 80px;
  top: -15%;
  right: 3%;
}
.ex_basics .travel_care_content_box:nth-child(3) .travel_care_content_box_title img {
  width: 89px;
  height: 79px;
  top: 8%;
  right: -7%;
}
.ex_basics .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
  width: 50px;
  height: 72px;
  top: -10%;
  right: 8%;
}
.ex_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
  width: 109px;
  height: 94px;
  top: -30%;
  right:-5%;
}
.ex_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
  width: 79px;
  height: 47px;
  top: 20%;
  right: 5%;
}
.ex_basics .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
  width: 78px;
  height: 63px;
  top: 5%;
  right: -3%;
}

.ex_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_content,
.ex_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content {
  position: relative;
}
.ex_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_content img {
  position: absolute;
  width: 53px;
  height: 89px;
  right: 0;
  bottom: -3%;
}
.ex_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_content img {
  position: absolute;
  width: 37px;
  height: 109px;
  left: -0.2%;
  bottom: -2%;
}


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

.ex_nature .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
  width: 67px;
  height: 68px;
  top: 20%;
  right: -3%;
}
.ex_nature .travel_care_content_box:nth-child(3) .travel_care_content_box_title img {
  width: 141px;
  height: 85px;
  top: -30%;
  right: -17%;
}
.ex_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%;
}
.ex_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_title img {
  width: 113px;
  height: 90px;
  top: -40%;
  right: -15%;
}
.ex_nature .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
  width: 117px;
  height: 92px;
  top: -35%;
  right: -5%;
}
.ex_nature .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
  width: 98px;
  height: 94px;
  top: -35%;
  right: -3%;
}
.ex_nature .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
  width: 137px;
  height: 47px;
  top: 0%;
  right: -12%;
}

.ex_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content,
.ex_nature .travel_care_content_box:nth-child(7) .travel_care_content_box_content {
  position: relative;
}
.ex_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content img {
  position: absolute;
  width: 47px;
  height: 169px;
  top: 7%;
  right: -1.5%;
}
.ex_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: 2%;
}
.ex_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content ul li:nth-child(odd)::after {
  background-image: url("/static/images/ex_nature_3-big.svg");
  width: 12px;
  height: 20px;
}
.ex_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content ul li:nth-child(even)::after {
  background-image: url("/static/images/ex_nature_3-small.svg");
  width: 11px;
  height: 12px;
  top: 12%;
  left: -4.5%;
}
.ex_nature .travel_care_content_box:nth-child(7) .travel_care_content_box_content {
  padding-bottom: 70px;
}
.ex_nature .travel_care_content_box:nth-child(7) .travel_care_content_box_content img {
  position: absolute;
  width: 45px;
  height: 34px;
  top: 32%;
  left: 0%;
}
.ex_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 */
.ex_culture_history .travel_care_content_title img {
  width: 98px;
  height: 77px;
  top: 20%;
  left: 3%;
}

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

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

.ex_culture_history .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
  width: 60px;
  height: 84px;
  top: -5%;
  right: -5%;
}
.ex_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
  width: 96px;
  height: 74px;
  top: 0%;
  right: -5%;
}
.ex_culture_history .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
  width: 144px;
  height: 77px;
  top: -20%;
  right: -16%;
}
.ex_culture_history .travel_care_content_box:nth-child(8) .travel_care_content_box_title img {
  width: 45px;
  height: 71px;
  top: -5%;
  right: 0%;
}

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


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

.ex_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;
}

.ex_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%;
}

.ex_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%;
}

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

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

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

.ex_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(odd)::after {
  background-image: url("/static/images/ex_culture_history_5-list_1.svg");
  width: 13px;
  height: 13px;
  top: 8%;
}
.ex_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(2)::after {
  background-image: url("/static/images/ex_culture_history_5-list_2.svg");
  width: 18px;
  height: 12px;
  top: 12%;
  left: -6%;
}
.ex_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(4)::after {
  background-image: url("/static/images/ex_culture_history_5-list_3.svg");
  width: 18px;
  height: 12px;
  top: 9%;
  left: -6%;
}

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

.ex_culture_history .travel_care_content_box:nth-child(8) .travel_care_content_box_content ul li:nth-child(odd)::after {
  background-image: url("/static/images/ex_culture_history_7-list_1.svg");
  width: 13px;
  height: 13px;
  top: 8%;
}
.ex_culture_history .travel_care_content_box:nth-child(8) .travel_care_content_box_content ul li:nth-child(even)::after {
  background-image: url("/static/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_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: 5%;
}
.shopping_dining .travel_care_content_box:nth-child(3) .travel_care_content_box_title img {
  width: 68px;
  height: 93px;
  top: -50%;
  right: -5%;
}
.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: 20%;
  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("/static/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("/static/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("/static/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; /* 全角1文字分 */
}
.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;
}





/* レスポンシブ調整 */
@media (min-width: 1024px) {
  .w-main {
    width: 1000px;
    margin: 0 auto;
    padding: 0;
  }

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


  /* top page */
  .home_content_container {
    width: 750px;
    margin: 0 auto;
    column-gap: 220px;
    row-gap: 40px;
  }

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

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

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

  /* 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: 240px;
  }

  .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,
  .ex_basics .travel_care_content_box:nth-child(2) .travel_care_content_box_title img,
  .ex_basics .travel_care_content_box:nth-child(4) .travel_care_content_box_title img,
  .ex_nature .travel_care_content_box:nth-child(2) .travel_care_content_box_title img,
  .ex_nature .travel_care_content_box:nth-child(6) .travel_care_content_box_title img,
  .ex_culture_history .travel_care_content_box:nth-child(5) .travel_care_content_box_title img,
  .ex_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,
  .ex_basics .travel_care_content_box:nth-child(3) .travel_care_content_box_title img,
  .ex_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_title img,
  .ex_basics .travel_care_content_box:nth-child(6) .travel_care_content_box_title img,
  .ex_basics .travel_care_content_box:nth-child(7) .travel_care_content_box_title img,
  .ex_nature .travel_care_content_box:nth-child(3) .travel_care_content_box_title img,
  .ex_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_title img,
  .ex_nature .travel_care_content_box:nth-child(5) .travel_care_content_box_title img,
  .ex_culture_history .travel_care_content_box:nth-child(2) .travel_care_content_box_title img,
  .ex_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_title img,
  .ex_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: -60%;
  }


  /* 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: 35%;
    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,
  .ex_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 */
  .ex_basics .travel_care_content_title img {
    width: 120px;
    height: 105px;
    left: 5%;
  }

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

  .ex_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;
  }

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

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

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

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

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

  .ex_basics .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
    width: 90px;
    height: 73px;
  }
  .ex_basics .travel_care_content_box:nth-child(5) .travel_care_content_box_content img {
    right: 15%;
    bottom: -15%;
  }


  /* Experiences – Nature */
  .ex_nature .travel_care_content_title img {
    left: 12%;
  }

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

  .ex_nature .travel_care_content_box:nth-child(3) .travel_care_content_box_title img {
    width: 151px;
    height: 95px;
  }
  .ex_nature .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
    width: 127px;
    height: 102px;
  }

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

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

  .ex_nature .travel_care_content_box:nth-child(4) .travel_care_content_box_content img {
    right: 0;
  }

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

  .ex_nature .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
    top: 20%;
    right: -10%;
  }
  .ex_nature .travel_care_content_box:nth-child(7) .travel_care_content_box_content img {
    left: -5%;
  }
  .ex_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 */
  .ex_culture_history .travel_care_content_title img {
    width: 108px;
    height: 87px;
    top: 20%;
    left: 32%;
  }

  .ex_culture_history .travel_care_content_box:nth-child(2) .travel_care_content_box_title img {
    width: 105px;
    height: 91px;
  }
  .ex_culture_history .travel_care_content_box:nth-child(3) .travel_care_content_box_content img {
    right: 8%;
  }
  .ex_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%;
  }
  .ex_culture_history .travel_care_content_box:nth-child(4) .travel_care_content_box_content ul li::after {
    width: 14px;
    height: 14px;
    top: 15%;
  }
  .ex_culture_history .travel_care_content_box:nth-child(5) .travel_care_content_box_title img {
    width: 70px;
    height: 94px;
    top: -15%;
  }
  .ex_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_title img {
    width: 116px;
    height: 84px;
  }
  .ex_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%;
  }
  .ex_culture_history .travel_care_content_box:nth-child(6) .travel_care_content_box_content ul li:nth-child(2)::after,
  .ex_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%;
  }
  .ex_culture_history .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
    width: 154px;
    height: 87px;
  }
  .ex_culture_history .travel_care_content_box:nth-child(8) .travel_care_content_box_title img {
    width: 60px;
    height: 80px;
    top: -10%;
  }
  .ex_culture_history .travel_care_content_box:nth-child(8) .travel_care_content_box_content ul li:nth-child(odd)::after,
  .ex_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: -9%;
    left: 7%;
  }
  .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(6) .travel_care_content_box_title img {
    width: 93px;
    height: 60px;
    right: 4%;
  }
  .getting_around .travel_care_content_box:nth-child(7) .travel_care_content_box_title img {
    width: 76px;
    height: 119px;
    right: -10%;
  }
  .getting_around .travel_care_content_box:nth-child(8) .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(9) .travel_care_content_box_title img {
    width: 197px;
    height: 60px;
    top: 20%;
    right: 0%;
  }
  .getting_around .travel_care_content_box:nth-child(9) .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;
  }


}
