html {
  line-height: 1.5;
}

body {
  width: 100%;
  min-height: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  color: #000;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.6s;
}

a:hover {
  opacity: 0.6;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

body .s_sp_none,
body .l_sp_none {
  display: none;
}

@media screen and (max-width: 767px) {
  body .l_pc_none {
    display: none;
  }

  body .l_sp_column {
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  body .s_pc_none {
    display: none;
  }

  body .s_sp_column {
    flex-direction: column;
  }
}

/** 共通 */

a[href=""] {
  pointer-events: none;
  text-decoration: none;
}

section {
  padding: 70px 0;
}

.flex_between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contents-area {
  width: 98%;
  max-width: 1000px;
  margin: 0 auto;
}

.btn_box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.orange_btn {
  background: linear-gradient(180deg,
      rgba(255, 184, 47, 1) 0%,
      rgba(255, 136, 48, 1) 100%);
  color: #fff;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 22px;
  position: relative;
  padding-right: 1.8em;
  border-radius: 50px;
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: center;
}

.orange_btn:before,
.orange_btn::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.orange_btn:before {
  content: "\025cf";
  font-size: 1em;
  right: 10px;
}

.orange_btn::after {
  content: "\025b6";
  font-size: 0.6em;
  color: #ffa32f;
  right: 13px;
  padding-top: 3px;
}

.lead_text {
  font-size: 35px;
  text-align: center;
  font-weight: 600;
  position: relative;
  margin-bottom: 50px;
}

.gensyou_box {
  max-width: 800px;
  margin: 0 auto 80px;
}

.gensyou_box.second {
  margin-bottom: 0;
}
.gensyou_box.second img {
  margin-bottom: 10px;
}

.bg_green_title{
  background-color: #00aeb2;
  padding: 10px;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  margin-bottom: 10px;
}
.c_green_text{
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
}
.c_green_text span::before{
  content: '\025cf';
  margin-right: 10px;
  color: #00aeb2;
}
.orange_title {
  background-color: #f87a13;
  border-radius: 0 10px 0px 0px;
  padding: 10px 20px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  font-size: 20px;
}

.orange_text {
  color: #f87a13;
  margin-bottom: 10px;
}

.blue_text {
  color: #3a62ad;
}

@media screen and (max-width: 480px) {
  .contents-area {
    width: 95%;
  }
}

/** header */

header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 30px;
}

.header-logo-img {
  display: block;
  max-width: 300px;
}

.header-nav {
  height: 18px;
}

.header-nav li {
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-right: 1px solid #fff;
}

.header-nav li:last-child {
  border-right: none;
}

.header-nav li a {
  font-size: 0.95em;
}

.hamburger-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  .bn-flex-box {
    flex-direction: column;
  }

  .bn-flex-box a {
    width: 100%;
    margin-bottom: 20px;
  }

  .bn-flex-box {
    margin-bottom: 30px;
  }

  .hamburger-btn {
    display: block;
    position: relative;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 5px;
  }

  main {
    margin-top: 100px;
  }

  .hamburger-btn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 60%;
    z-index: 1000;
  }

  .hamburger-btn span:nth-of-type(1) {
    top: 10px;
  }

  .hamburger-btn span:nth-of-type(2) {
    top: 23px;
  }

  .hamburger-btn span:nth-of-type(3) {
    top: 37px;
  }

  .hamburger-btn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
  }

  .hamburger-btn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .hamburger-btn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
  }

  .header-nav {
    width: 80%;
    height: 100lvh;
    position: fixed;
    top: 0;
    padding: 120px 30px 30px;
    background-color: #282828f2;
    z-index: -1;
    right: -120%;
    transition: 0.6s;
  }

  .header-nav ul {
    flex-direction: column;
    height: 100%;
  }

  .header-nav li {
    padding: 10px;
    border-right: none;
  }

  .header-nav li a {
    text-decoration: underline;
  }

  #bg-cover {
    background-color: rgb(140 141 140 / 73%);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  #bg-cover.active {
    visibility: visible;
    opacity: 1;
  }

  .header-nav.active {
    right: 0;
  }
}

.example_ssan_section {
  background-color: #2fc7b9;
  padding: 60px 0;
}

.example_ssan_section .contents-area {
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.example_ssan_section .img_box {
  width: 20%;
}

.example_ssan_section .text_box {
  width: 80%;
}

.example_ssan_section h2 {
  font-size: 35px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 10px;
  display: inline-block;
  position: relative;
  color: #fff;
}

.example_ssan_section h2::before {
  content: "";
  width: 23px;
  height: 2px;
  position: absolute;
  left: -23px;
  bottom: -12px;
  background-color: #fff;
  transform: skewY(316deg);
}

.example_ssan_section .price {
  font-weight: 600;
  font-size: 60px;
  margin-bottom: 10px;
  padding-left: 30px;
  color: #fff;
}

.example_ssan_section .en {
  font-size: 0.6em;
}

.example_ssan_section dl {
  display: flex;
  font-size: 18px;
  padding-left: 30px;
  color: #fff;
}

.example_ssan_section dt {
  text-wrap: nowrap;
}

.example_ssan_section .y_arrow_text {
  background-color: #f8e513;
  color: #3c3c3c;
  font-size: 0.5em;
  padding: 10px;
  position: relative;
  margin-right: 50px;
}

.example_ssan_section .y_arrow_text:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.1em 1.1em 1.1em;
  border-color: transparent transparent transparent #f8e513;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2.2em;
}

.example_eight_days_section {
  background-color: #feebd3;
}

.example_eight_days_section .img_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.example_eight_days_section .img_box img {
  width: 48%;
  object-fit: contain;
}

.example_eight_days_section .img_box img.s_img {
  width: 45%;
}

.example_eight_days_section .main_text {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 20px;
}

.example_eight_days_section .green_text {
  font-size: 1.5em;
  padding-bottom: 10px;
  color: #09bbb9;
  text-decoration: underline wavy #09bbb9;
  text-underline-offset: 10px;
}

.example_eight_days_section .tyuui_text {
  margin-bottom: 20px;
}

section.tariteru_section {
  padding: 150px 0;
}

.hatarakenaitoki_tokutyou_section .lead_text::after,
.hatarakenaitoki_tokutyou_section .lead_text::before,
.tariteru_section .lead_text::after,
.tariteru_section .lead_text::before {
  content: "";
  background-color: #3a62ad;
  height: 10px;
  width: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -0.8em;
}

.hatarakenaitoki_tokutyou_section .lead_text::after,
.tariteru_section .lead_text::after {
  transform: translateX(-50%) rotate(-90deg);
}

.tariteru_section .text_img_box {
  display: flex;
  justify-content: space-between;
}

.tariteru_section .text_boxs {
  width: 50%;
}

.tariteru_section .img_box {
  width: 40%;
}

.tariteru_section .text_box {
  margin-bottom: 60px;
}

.tariteru_section .contents-area.first {
  margin-bottom: 150px;
}

.hatarakenaitoki_section {
  background: repeating-linear-gradient(135deg,
      #eef6fb,
      #eef6fb 5px,
      #f3f9fc 5px,
      #f3f9fc 8px);
  padding: 150px 0 70px;
}

.hatarakenaitoki_section .lead_text::before {
  content: "";
  display: inline-block;
  width: 3em;
  height: 3em;
  margin: 0 10px;
  border-bottom: 8px solid #3a62ad;
  border-right: 8px solid #3a62ad;
  position: absolute;
  top: -4em;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.hatarakenaitoki_section .text {
  font-size: 23px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hatarakenaitoki_tokutyou_section ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.hatarakenaitoki_tokutyou_section li {
  width: 32%;
  background-color: #eef6fb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
}

.hatarakenaitoki_tokutyou_section li img {
  width: auto;
}

.hatarakenaitoki_tokutyou_section li img.num {
  margin-bottom: 10px;
}

.hatarakenaitoki_tokutyou_section li p {
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.hatarakenaitoki_tokutyou_section p.bikou {
  font-size: 0.9em;
}

footer {
  background-color: #3a62ad;
  color: #fff;
  padding: 50px 0 20px;
}

footer .copy,
footer .toriatukai_address,
footer .hikiuke_address {
  font-size: 0.8em;
}

footer .hikiuke_address {
  margin-bottom: 20px;
}

footer .toriatukai_address {
  margin-bottom: 50px;
}

footer .copy {
  text-align: center;
}

footer .gosoudan_tel {
  background-color: #fff;
  color: #3a62ad;
  position: relative;
  margin-bottom: 20px;
  font-weight: 600;
  padding: 30px 10px;
}

footer .gosoudan_tel p {
  background-color: #6d96e2;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 10px 0;
  padding: 10px 20px;
  font-size: 0.8em;
}

footer .gosoudan_tel dl {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

footer .gosoudan_tel dt {
  position: relative;
  margin-right: 80px;
}

footer .gosoudan_tel dt::after {
  content: "";
  width: 2px;
  height: 80px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -40px;
  background-color: #3a62ad;
}

footer .gosoudan_tel .title_num {
  display: flex;
  align-items: center;
}

footer .gosoudan_tel .bg_orange_daen {
  background-color: #ff8f30;
  color: #fff;
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 0.8em;
  margin-right: 10px;
  margin-top: 10px;
}

footer .gosoudan_tel .tel_num a {
  font-size: 50px;
  color: #ff8f30;
  line-height: 1;
}

footer .gosoudan_tel .time {
  font-size: 0.8em;
}

.bunsyou_num{
  text-align: center;
  font-size: 0.8em;
  line-height: 1;
  border-bottom: 4px solid #3a62ad;
  padding: 5px 0;
}

@media screen and (max-width: 845px) {
  footer .gosoudan_tel .tel_num a {
    font-size: 40px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    padding: 10px;
  }

  .header-logo-img {
    margin-right: 20px;
  }

  .orange_btn {
    font-size: 18px;
  }

  .example_ssan_section h2 {
    font-size: 20px;
  }

  .example_ssan_section .price {
    font-size: 40px;
  }

  .example_ssan_section .y_arrow_text:after {
    border-width: 1.2em 1.2em 1.2em;
    right: -2.4em;
  }

  .example_ssan_section dl {
    font-size: 17px;
  }

  .example_eight_days_section .main_text {
    font-size: 25px;
  }

  .example_eight_days_section .tyuui_text {
    font-size: 0.8em;
  }

  .lead_text {
    font-size: 25px;
  }

  .tariteru_section .text_boxs {
    width: 55%;
  }

  .tariteru_section .text_box {
    margin-bottom: 40px;
  }

  .orange_title {
    font-size: 18px;
  }

  .orange_text {
    font-size: 1em;
  }

  .hatarakenaitoki_section .text {
    font-size: 18px;
  }

  footer .gosoudan_tel dt {
    margin-right: 20px;
    font-size: 16px;
  }

  footer .gosoudan_tel dt::after {
    right: -10px;
  }

  footer .gosoudan_tel .bg_orange_daen {
    font-size: 0.7em;
  }
}

@media screen and (max-width: 480px) {
  section {
    padding: 50px 0;
  }

  header {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .header-logo-img {
    margin-bottom: 10px;
  }

  .orange_btn {
    height: auto;
  }

  .example_ssan_section {
    padding: 30px 0;
  }

  .example_ssan_section .contents-area {
    flex-direction: column;
    align-items: center;
  }

  .example_ssan_section .img_box {
    width: 30%;
    margin-bottom: 10px;
  }

  .example_ssan_section .text_box {
    width: 100%;
  }

  .example_ssan_section h2 {
    width: 100%;
    text-align: center;
    font-size: 18px;
    border-bottom: none;
    border-top: 2px solid #fff;
  }

  .example_ssan_section h2::before {
    width: 35px;
    left: 0px;
    bottom: auto;
    top: -16px;
    transform: skewY(319deg);
  }

  .example_ssan_section .price {
    padding-left: 10px;
  }

  .example_ssan_section dl {
    padding-left: 10px;
    font-size: 14px;
  }

  .example_eight_days_section .main_text {
    font-size: 15px;
  }

  .example_eight_days_section .tyuui_text {
    font-size: 0.7em;
  }

  section.tariteru_section {
    padding: 70px 0;
  }

  .lead_text {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .hatarakenaitoki_tokutyou_section .lead_text::after,
  .hatarakenaitoki_tokutyou_section .lead_text::before,
  .tariteru_section .lead_text::after,
  .tariteru_section .lead_text::before {
    top: -1.5em;
  }

  .tariteru_section .text_img_box {
    flex-direction: column-reverse;
    align-items: center;
  }

  .tariteru_section .img_box {
    width: 50%;
  }

  .tariteru_section .text_boxs {
    width: 100%;
  }

  .tariteru_section .text_box {
    margin-bottom: 30px;
  }

  .orange_title {
    font-size: 16px;
    padding: 7px 20px;
    margin-bottom: 5px;
  }

  .orange_text {
    margin-bottom: 5px;
  }

  .tariteru_section .contents-area.first {
    margin-bottom: 80px;
  }

  .hatarakenaitoki_section {
    padding: 80px 0 50px;
  }

  .hatarakenaitoki_section .text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hatarakenaitoki_tokutyou_section li p {
    font-size: 14px;
  }

  .hatarakenaitoki_tokutyou_section p.bikou {
    font-size: 0.7em;
  }

  footer {
    padding: 30px 0 20px;
  }

  footer .gosoudan_tel {
    padding: 50px 10px 20px;
  }

  footer .gosoudan_tel dl {
    flex-direction: column;
  }

  footer .gosoudan_tel dt {
    margin-right: 0;
  }

  footer .gosoudan_tel dt::after {
    content: none;
  }

  footer .gosoudan_tel .title_num {
    flex-direction: column;
  }

  footer .gosoudan_tel .time {
    font-size: 0.6em;
  }

  footer .gosoudan_tel .tel_num a {
    line-height: 1.5;
  }
  .example_ssan_section .y_arrow_text{
    margin-right: 40px;
  }
  .bg_green_title{
    padding: 5px;
    font-size: 18px;
  }
  .c_green_text{
    font-size: 14px;
  }
  .c_green_text span::before{
    margin-right: 0;
  }
  .gensyou_box{
    margin-bottom: 30px;
  }
  .gensyou_box .tyuui_text{
    font-size: 0.7em;
  }
}

@media screen and (max-width: 300px) {
  footer .gosoudan_tel .tel_num a {
    font-size: 32px;
  }
}