@charset "utf-8";
a {
    text-decoration: none;
  }
img {
  max-width: 100%;
}
header {
  background-color: rgba(255,255,255,0.7);
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  position: sticky;
  z-index: 1;
  top: 0;
  left: 0;
  /* transform: translate(-50%, 0); */
  width: 100%;
  margin-bottom: 50px;
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;  
}
.inner ul {
  list-style: none;
  display: flex;
}
.inner ul li {
  margin-right: 15px;
}
.header_logo img {
  width: 150px;
}
.header_button {
    font-size: 13px;
    position: relative;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
    max-width: 220px; /* ボタンの最大幅 */
}
.header_button::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    -moz-border-radius: 100vh;
    -webkit-border-radius: 100vh;
    border-radius: 100vh;
    background-color: #337ab7; /* 後ろの背景色 */
  }
.header_button span {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold; /* 文字の太さ */
    border-radius: 100vh;
    border: solid 1px #337ab7; /* 線の色 */
    color: #337ab7; /* 文字色 */
    padding: 1em 2em;
    background-color: #FFF; /* 背景色 */
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
.header_button:hover span {
  background-color: #94eefa; /* 背景色 */
  transform: translate(4px, 4px);
  transition: all 0.3s ease-in-out;
}
.mainvisual_body img {
    max-width: 100%;
}
.mainvisual {
  background-color: #337ab7;
}
.mainvisual p {
  font-family:'Yu Mincho',serif;
  font-weight: bold;
  text-shadow: -1px -1px 3px rgb(170, 169, 169);
  text-align: center;
  font-size: 30px;
  color: #ffffff;
  line-height: 1.3;
}
.map {
    text-align: center;
}
.map img {
  max-width: 100%;
}

@media screen and (max-width: 800px) {
 .inner ul {
    width: fit-content;
    margin: auto;
  }
.mainvisual p {
  font-weight: normal;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 20px;
}
}
@media screen and (max-width: 700px) {
  header .inner {
    display: block;
}
.header_button {
  font-size: 8px;
}
.mainvisual p {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}
}
h2 {
    background-color:#858383;
    color:#ffffff;
    border-radius: 20px;
    padding: 5px 0 5px 20px;
    margin-top: 50px;
}
main {
  max-width: 1110px;
  margin: 0 auto;
}
a.op_button {
  margin-left: 20px;
  margin-bottom: 50px;
	display: block;
	text-align: center;
  vertical-align: middle;
	text-decoration: none;
	position: relative;
	max-width: 550px;
	padding: 0.5rem 2rem;
	font-weight: bold;
	border-radius: 10px;
	color: #337ab7;
	border: 3px solid #337ab7;
	box-shadow: 5px 5px #6898c2;
	transition: 0.3s ease-in-out;
}
a.op_button:hover {
	box-shadow: none;
	transform: translate(5px, 5px);
	color: #337ab7;
}
h3 {
    padding: 0.5em;
    border-left: 20px solid #337ab7;
    border-bottom: 2px solid #337ab7;
    margin: 30px 0 20px 10px;
}
.tour_block p {
  text-align: right;
}
.tour_img {
  text-align: center;
  max-width: 1114px;
  display: flex;
  justify-content: center;
}
.tour_img img {  
  border-radius: 5%;
}
.day_mv {
  margin-top: 15px;
}
.img_block {
  list-style: none;
}
@media screen and (max-width: 600px) {
  h2 {
    font-size: 22px;
  }
  .tour_img {
    max-width: 100%;
    display: block;
  }
  .img_block {
    display: flex;
    justify-content: center;
    margin-top: -5px;
    margin-left: -40px;
  }
  .img_block li {
    padding: 2px;
    
  }
  .header_button {
    font-size: 12px;
  }
  .op_button {
    font-size: 12px;
  }
  .tour_block p {
    margin-top: -25px;
  }
  
}
.tour_detail {
  margin: 30px auto;
  width: 80%;
}
.tour_detail th,td {
  border-bottom: solid 1px #cfc7c7;
  line-height: 1.75;
  padding: 5px;
}
.tour_detail th {
  background-color: #f7f5f4;
  width: 30%;
  font-weight: lighter;
}
.tour_detail td {
  padding-left: 20px;
}
.tour_detail .list {
  list-style-position: inside;
  padding-left: 0;  
}

@media screen and (max-width: 600px) {
  .tour_detail {
    margin: 10px auto;
    width: 90%;
  }
}
.experience {
  position: relative;
  padding: 1em;
  color: #ffffff;
  background: #337ab7;
}
.experience::after {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border-top: 15px solid #747575;
  border-right: 0px solid transparent;
  border-left: 30px solid transparent;
  border-bottom: 0px solid transparent;
}
.option img {
  border-radius: 5%;
  width: 85%;
}
.option ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.option p {
  text-align: left;
  font-size: 14px;
  line-height: 1.6em;
}
.kadomaru {
  width: 100%;
  background: #f7f5f4;
  padding: 8px 8px 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(110,110,110,.1);
}
.option_img {
  display: flex;
  justify-content: space-around;
}
.option_img ul {
  max-width: 50%;
  list-style: none;
  display: block;
}
.process {
  max-width: 50%;
}

@media screen and (max-width: 600px) {
  .option li img {
    width: 100%;
    margin-left: -20px;
  }
  .option ul {
    display: block;
  }
  .kadomaru {
    margin-left: -30px;
  }
  .kadomaru p {
    margin-top: 10px;
  }
  .option_img {
    display: block;
  }
  .option_img ul {
    max-width: 100%;
  }
  .process {
    text-align: center;
    max-width: 100%;
  }
}

.change {
  display: block;
  font-size: small;
  text-align: center;
}
.day_option {
  display: flex;
  justify-content: space-around;
}
.day_option ul {
  display: block;
  list-style: disc;
}
.img_list {
  list-style: none !important;
  margin-left: -40px;  
}
.two_box {
  display: flex;
  justify-content: space-around;
}
.left_box {
  width: 40%;
  background: #f7f5f4;
  padding: 2px 8px 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(110,110,110,.1);
}
.application_inquiry p {
  padding-left: 40px;
}
/* .plan th {
  text-align: left;
  padding-left: 20px;
} */
.icons {
  display: flex;
  list-style: none;
  justify-content: center;
}
.icons li img {
  max-width: 50%;
}
.footer p {
  text-align: center;
}
.application_inquiry .op_button {
  margin: 0 auto;
}
#page-top {
  position: fixed;
  right: 5px;
  bottom: 20px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  line-height: 1.5rem;
  color: #737373;
  padding: 0 0 0 35px;
  border-top: solid 1px;
}
#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}
.company {
  font-size: 14px;
}
.price {
  font-size: 30px;
}



@media screen and (max-width: 600px) {
  .day_option {
    display: block;
  }
  .left_img img {
    max-width: 100%;
    margin-left: 30px;
  }
  .img_list {
    max-width: 85%;
    margin-left: 10px;
  }
  .two_box {
    display: block;
  }
  .left_box {
    width: 95%;
    margin: 5px;
  }
  .application_inquiry th {
    width: 75%;
  }
  .plan td {
    font-size: smaller;
  }
  .footer p small {
    font-size: 8px;
  }
  
}








                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                