@charset "UTF-8";
/*PC*/
/*
$lineSpace_normal_pc:48px;
$lineSpace_xsmall_pc:30px;
$lineSpace_small_pc:30px;
$lineSpace_large_pc:70px;
$lineSpace_xlarge_pc:40px;
$lineSpace_h1_pc:80px;
$lineSpace_h2_pc:48px;
$lineSpace_footer_pc:20px;
*/
/*
$color_main1:#F8C961;
$color_main2:#F4A923;
$color_main3:#F9F8ED;
*/
.button_wrapper {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 1000px;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin: 0 auto 24px auto;
}
@media screen and (min-width: 600px) and (max-width: 1116px) {
  .button_wrapper {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  .button_wrapper {
    width: 90%;
  }
}

html {
  scroll-behavior: auto;
}

.scroll-target {
  scroll-margin-top: 72px; /* 固定ヘッダーの高さに合わせる */
}

header .header_box {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  height: 80px;
  justify-content: space-around;
}
@media screen and (max-width: 1116px) {
  header .header_box {
    display: block;
    height: auto;
  }
}
header .header_box .__logo_area_box img {
  height: 40px;
}
@media screen and (max-width: 1116px) {
  header .header_box .__logo_area_box img {
    width: 80%;
    height: auto;
    margin: 16px auto;
  }
}
header .header_box .__language_select_box {
  width: 280px;
  color: #3D3D3D;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
       column-gap: 16px;
  justify-content: space-evenly;
  align-content: center;
  align-items: center;
}
@media screen and (max-width: 1116px) {
  header .header_box .__language_select_box {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  header .header_box .__language_select_box {
    font-size: 10px;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
header .header_box .__language_select_box div {
  width: auto;
  padding: 4px 8px;
  background-color: #D1F1FB;
}
header .header_box .__language_select_box a {
  text-decoration: underline;
  transition: 0.4s;
}
header .header_box .__language_select_box a:visited {
  color: #3D3D3D;
  transition: 0.4s;
}
header .header_box .__language_select_box a:hover {
  color: #D80E1C;
  transition: 0.4s;
}

body {
  background-color: #FFFFFF;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: normal;
  width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  body {
    font-size: 14px;
  }
}

hhtml[lang=zh-Hans] body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Heiti SC", sans-serif;
}

html[lang=zh-Hant] body {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Heiti TC", sans-serif;
}

.body_back {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: -1;
  background-image: url("../img/body_backimg.png");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: contain;
}

a {
  text-decoration: none;
  color: #3D3D3D;
}

.common_button {
  transition: 0.4s;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  /*
  width: $w;
  height: $h;
  */
  display: inline-flex;
  padding: 16px 80px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: #D80E1C;
  box-shadow: 4px 4px 6px 0 #FF7882 inset, 2px 2px 6px 0 rgba(75, 75, 75, 0.25);
}
.common_button:hover {
  transition: 0.4s;
  transform: scale(1.05);
  cursor: pointer;
}
.common_button:active {
  transform: scale(0.95) translateY(2px);
  box-shadow: inset 2px 2px 6px rgba(94, 91, 91, 0.3);
}
.common_button i {
  color: #FFF;
  font-family: "Font Awesome 6 Free";
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

._button_large {
  width: 300px;
  padding-left: 0px;
  padding-right: 0px;
  height: 64px;
}
@media screen and (max-width: 599px) {
  ._button_large {
    width: 300px;
  }
}

._button_tel_number {
  font-size: 24px;
  padding: 14px 0px;
  width: 300px;
  height: 64px;
}
@media screen and (max-width: 599px) {
  ._button_tel_number {
    width: 300px;
    box-sizing: border-box;
    font-size: 24px;
    padding: 6px 40px;
  }
}

._c_black {
  background: #3D3D3D;
  box-shadow: 4px 4px 6px 0 #808080 inset, 2px 2px 6px 0 rgba(75, 75, 75, 0.25);
}

h2 {
  display: block;
  position: relative;
  width: 736px;
  box-sizing: border-box;
  padding: 16px 32px;
  border: 3px solid #3D3D3D;
  background: #FFF;
  margin: 112px auto 80px auto;
}
@media screen and (min-width: 600px) and (max-width: 1116px) {
  h2 {
    width: 480px;
  }
}
@media screen and (max-width: 599px) {
  h2 {
    width: 80%;
    font-size: 20px;
    margin: 64px auto 48px auto;
  }
}
h2::before {
  content: "";
  width: 736px;
  height: 64px;
  flex-shrink: 0;
  position: absolute;
  top: 24px;
  left: 8px;
  border: 3px solid #3D3D3D;
  background: #3D3D3D;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  h2::before {
    width: 100%;
    height: 100%;
    top: 16px;
    left: 16px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1116px) {
  h2::before {
    width: 480px;
  }
}

h3 {
  display: block;
  position: relative;
  width: 736px;
  margin: 40px auto 0px auto;
  text-align: center;
  font-size: 32px;
  padding: 8px 80px;
}
@media screen and (max-width: 599px) {
  h3 {
    width: 90%;
    font-size: 18px;
    padding: 4px 8px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1116px) {
  h3 {
    width: 90%;
    font-size: 24px;
  }
}

._underline {
  line-height: 2;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.c_1_1 {
  background-color: #EF9683;
}

.c_1_2 {
  background-color: #FEF4F4;
}

.c_2_1 {
  background-color: #89C3EB;
}

.c_2_2 {
  background-color: #EAF4FC;
}

.c_3_1 {
  background-color: #FABF14;
}

.c_3_2 {
  background-color: #FFEECE;
}

.c_4_1 {
  background-color: #93CA76;
}

.c_4_2 {
  background-color: #DEF3DE;
}

.content_area {
  width: 1170px;
  margin: 0px auto;
  position: relative;
}
@media screen and (min-width: 600px) and (max-width: 1116px) {
  .content_area {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  .content_area {
    width: 90%;
  }
}

body a {
  text-decoration: none;
}

/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
.br-sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .br-sp {
    display: inline;
  }
}

.br-stb {
  display: none;
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .br-stb {
    display: inline;
  }
}

.margin_center {
  margin: 0px auto;
}

/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
.mv_top {
  width: 100%;
  max-width: 1170px;
  margin: 24px auto 40px auto;
}

.obj_center {
  margin: 0 auto;
}

.big_strong_text {
  color: #E10000;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
@media screen and (min-width: 600px) and (max-width: 1116px) {
  .big_strong_text {
    font-size: 24px;
  }
}
@media screen and (max-width: 599px) {
  .big_strong_text {
    font-size: 18px;
  }
}

.text_normal {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 599px) {
  .text_normal {
    font-size: 14px;
  }
}

.text_20 {
  font-size: 20px;
}
@media screen and (min-width: 600px) and (max-width: 1116px) {
  .text_20 {
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .text_20 {
    font-size: 16px;
  }
}

.text_24 {
  font-size: 24px;
}
@media screen and (max-width: 599px) {
  .text_24 {
    font-size: 14px;
  }
}

.text_red {
  color: #D80E1C;
}

.text_center {
  text-align: center;
}

.text_bold {
  font-weight: bold;
}

.top_24 {
  margin-top: 24px;
}

.bottom_24 {
  margin-bottom: 24px;
}

.top_40 {
  margin-top: 40px;
}

.bottom_40 {
  margin-bottom: 40px;
}

.top_80 {
  margin-top: 80px;
}
@media screen and (max-width: 599px) {
  .top_80 {
    margin-top: 40px;
  }
}

.bottom_80 {
  margin-bottom: 80px;
}

.taxi_image {
  text-align: center;
}
.taxi_image img {
  width: 360px;
  flex-shrink: 0;
  aspect-ratio: 3/2;
}

.text_box {
  width: 498px;
}
@media screen and (max-width: 599px) {
  .text_box {
    width: 100%;
  }
}

.text_under_red {
  color: #000;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
.text_under_red::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #E10000;
}

.calender_wrapper {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin: 40px auto;
}
.calender_wrapper table {
  border-collapse: collapse;
  position: relative;
}
.calender_wrapper table tr {
  position: relative;
}
.calender_wrapper table tr th {
  padding: 8px 16px;
  border: 1px solid;
}
@media screen and (max-width: 599px) {
  .calender_wrapper table tr th {
    padding: 4px 8px;
  }
}
.calender_wrapper table tr th:first-child {
  background-color: #FFB5B5;
}
.calender_wrapper table tr th:last-child {
  background-color: #D1F1FB;
}
.calender_wrapper table tr td {
  padding: 8px 16px;
  border: 1px solid;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 599px) {
  .calender_wrapper table tr td {
    font-size: 10px;
    padding: 4px 8px;
  }
}
.calender_wrapper table tr td:first-child {
  background-color: #FFB5B5;
}
.calender_wrapper table tr td:last-child {
  background-color: #D1F1FB;
}
.calender_wrapper table tr .set_1 {
  text-align: center;
}
.calender_wrapper table tr .set_1::after {
  content: "★";
  bottom: 0;
}

.time_schedule_wrapper {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin: 40px auto;
}
.time_schedule_wrapper table {
  border-collapse: collapse;
  position: relative;
}
@media screen and (max-width: 599px) {
  .time_schedule_wrapper table {
    table-layout: fixed;
    width: 100%;
  }
}
.time_schedule_wrapper table tr {
  position: relative;
}
.time_schedule_wrapper table tr th {
  padding: 8px 16px;
  border: 1px solid;
  background-color: #0F2350;
  color: #FFF;
}
@media screen and (max-width: 599px) {
  .time_schedule_wrapper table tr th {
    padding: 4px 8px;
    font-size: 10px;
  }
}
@media screen and (max-width: 599px) {
  .time_schedule_wrapper table tr th:first-child {
    width: 40px;
  }
}
@media screen and (max-width: 599px) {
  .time_schedule_wrapper table tr th:nth-child(2) {
    width: 100px;
  }
}
@media screen and (max-width: 599px) {
  .time_schedule_wrapper table tr th:nth-child(3) {
    width: auto;
  }
}
@media screen and (max-width: 599px) {
  .time_schedule_wrapper table tr th:nth-child(4) {
    width: 50px;
  }
}
@media screen and (max-width: 599px) {
  .time_schedule_wrapper table tr th:last-child {
    width: 50px;
  }
}
.time_schedule_wrapper table tr td {
  padding: 8px 16px;
  border: 1px solid;
  position: relative;
  vertical-align: middle;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 599px) {
  .time_schedule_wrapper table tr td {
    font-size: 10px;
    padding: 4px 8px;
  }
}
.time_schedule_wrapper table tr .set_1 {
  text-align: center;
}
.time_schedule_wrapper table tr .set_1::after {
  content: "★";
  bottom: 0;
}
.time_schedule_wrapper table .t_s_tr_1 td {
  background-color: #FEF4F4;
}
.time_schedule_wrapper table .t_s_tr_1 td:first-child {
  background-color: #EF9683;
}
.time_schedule_wrapper table .t_s_tr_1 td:nth-child(2) {
  background-color: #EF9683;
}
.time_schedule_wrapper table .t_s_tr_2 td {
  background-color: #EAF4FC;
}
.time_schedule_wrapper table .t_s_tr_2 td:first-child {
  background-color: #89C3EB;
}
.time_schedule_wrapper table .t_s_tr_2 td:nth-child(2) {
  background-color: #89C3EB;
}
.time_schedule_wrapper table .t_s_tr_3 td {
  background-color: #FFEECE;
}
.time_schedule_wrapper table .t_s_tr_3 td:first-child {
  background-color: #FABF14;
}
.time_schedule_wrapper table .t_s_tr_3 td:nth-child(2) {
  background-color: #FABF14;
}
.time_schedule_wrapper table .t_s_tr_4 td {
  background-color: #DEF3DE;
}
.time_schedule_wrapper table .t_s_tr_4 td:first-child {
  background-color: #93CA76;
}
.time_schedule_wrapper table .t_s_tr_4 td:nth-child(2) {
  background-color: #93CA76;
}

.tour_wrapper {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin: 64px auto;
  padding-bottom: 56px;
}
@media screen and (max-width: 599px) {
  .tour_wrapper {
    width: 90%;
    flex-wrap: wrap;
    margin: 16px auto 16px auto;
    padding-bottom: 16px;
  }
}
.tour_wrapper .info_box {
  width: 420px;
  height: 280px;
  align-content: center;
}
@media screen and (max-width: 599px) {
  .tour_wrapper .info_box {
    width: 100%;
    height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.tour_wrapper .info_box ._title_box {
  width: 100%;
  border-style: solid;
  border-color: #3D3D3D;
  border-width: 0px 0px 2px 0px;
}
.tour_wrapper .info_box ._title_box h4 {
  color: #3D3D3D;
  font-family: "Shippori Mincho B1 OTF";
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.6;
  margin: 0px 0px 4px 0px;
}
@media screen and (max-width: 599px) {
  .tour_wrapper .info_box ._title_box h4 {
    font-size: 20px;
  }
}
.tour_wrapper .info_box ._text_box {
  width: 100%;
  color: #3D3D3D;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 24px;
}
@media screen and (max-width: 599px) {
  .tour_wrapper .info_box ._text_box {
    font-size: 14px;
  }
}
.tour_wrapper .info_box ._day_box {
  width: 100%;
  color: #3D3D3D;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 24px;
}
@media screen and (max-width: 599px) {
  .tour_wrapper .info_box ._day_box {
    font-size: 14px;
  }
}
.tour_wrapper .image_box {
  width: 420px;
  height: 280px;
  aspect-ratio: 3/2;
  background-image: url("../img/tour_image_edo_culture.jpg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}
@media screen and (max-width: 599px) {
  .tour_wrapper .image_box {
    width: 100%;
  }
}
.tour_wrapper .edo {
  background-image: url("../img/edo-bunka.png");
}
.tour_wrapper .itou {
  background-image: url("../img/itou.jpg");
}
.tour_wrapper .nissin {
  background-image: url("../img/nisshin-kikinzoku.jpg");
}
.tour_wrapper .soukichi {
  background-image: url("../img/soukichi.jpg");
}

.type_2 {
  flex-wrap: wrap-reverse;
}

.price_out_box {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.price_wrapper {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 40px;
  margin: 64px auto 16px auto;
}
@media screen and (max-width: 599px) {
  .price_wrapper {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.price_wrapper .price_box {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  box-sizing: border-box;
  filter: drop-shadow(2px 2px 6px rgba(95, 95, 95, 0.25));
}
@media screen and (max-width: 599px) {
  .price_wrapper .price_box {
    font-size: 12px;
  }
}
.price_wrapper .price_box .price_title_wrapper {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}
.price_wrapper .price_box .price_title {
  width: 240px;
  height: 90px;
  padding: 16px 40px;
  justify-content: center;
  align-content: center;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .price_wrapper .price_box .price_title {
    padding: 8px 24px;
    width: 150px;
    height: auto;
  }
}
.price_wrapper .price_box .price_info {
  width: 240px;
  box-sizing: border-box;
  padding: 16px 24px;
  justify-content: center;
  align-content: center;
}
@media screen and (max-width: 599px) {
  .price_wrapper .price_box .price_info {
    padding: 8px 24px;
    width: 150px;
    height: auto;
  }
}
.price_wrapper .price_box .info_long {
  width: 480px;
}
@media screen and (max-width: 599px) {
  .price_wrapper .price_box .info_long {
    width: 300px;
    height: auto;
  }
}

.price_notice {
  width: 100%;
  display: grid;
  justify-content: right;
  padding: 0px 24px 0px 24px;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) and (max-width: 1116px) {
  .price_notice {
    justify-content: center;
  }
}
.price_notice .__text {
  width: 100%;
  color: #000;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 599px) {
  .price_notice .__text {
    font-size: 10px;
  }
}

.map_box {
  filter: drop-shadow(2px 2px 6px rgba(95, 95, 95, 0.25));
}
.map_box .map_image {
  width: 480px;
  height: 400px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}
@media screen and (max-width: 599px) {
  .map_box .map_image {
    width: 300px;
    height: 250px;
    margin: 0 auto;
  }
}
.map_box .asakusa {
  background-image: url("../img/map_asakusa.jpg");
}
.map_box .tokyo {
  background-image: url("../img/map_tokyo.jpg");
}

.__button_point_box {
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  margin: 40px auto;
  justify-content: center;
}
.__button_point_box img {
  display: block;
  margin: 0 auto 8px auto;
}

.taxi_point {
  width: -moz-fit-content;
  width: fit-content;
  padding: 24px 40px 24px 0px;
  margin: 0 auto 40px auto;
  border-style: dotted;
  border-width: 2px;
  border-color: #000;
}
@media screen and (min-width: 600px) and (max-width: 1116px) {
  .taxi_point {
    padding: 24px 24px 24px 0px;
  }
}
.taxi_point ul li {
  list-style-type: "* ";
}

.red {
  color: #D80E1C;
}

.no_wrap {
  display: inline-block;
}

/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
footer {
  background: #1A1A1A;
  padding: 36px;
}
footer .footer_text {
  width: 800px;
  margin: 0 auto;
  color: #FFF;
}
footer .footer_text ul li {
  list-style-type: "● ";
}
@media screen and (min-width: 600px) and (max-width: 1116px) {
  footer .footer_text {
    max-width: 100%;
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  footer .footer_text {
    width: 100%;
    font-size: 12px;
  }
}