@charset "utf-8";
/* CSS Document */

:root {
  --green-color: #00833e;
  --lightgreen-color: #ceebdb;
  --yellow-color: #ffff2c;
  --marker-color: #ffff79;
}
/*背景*/
.bg_color {
  background: #f7f7f7;
  margin: 20px auto 0;
}
/*タイトル*/
.top .section h2 {
  font-size: 2.8rem;
  color: var(--green-color);
  text-align: center;
  position: relative;
  padding: 0 0 15px;
}
.top .section h2>span {
  font-size: 3.6rem;
}
.top .section h2::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: var(--green-color);
  bottom: 0;
  left: calc(50% - 30px);
}
/*テキスト*/
.btn_01>a, a.arrow, a.outside, .arrow>a, .outside>a, .tab_btn {
  cursor: pointer;
}
a.arrow:hover, a.outside:hover, .arrow>a:hover, .outside>a:hover {
  text-decoration: underline;
}
.mb15 {
  margin-bottom: 15px;
}
.marker_text {
  background: linear-gradient(transparent 55%, var(--marker-color) 45%);
}
.lead_text {
  font-size: 1.6rem;
  text-align: center;
  margin: 0 auto 20px;
}
.text_center {
  text-align: center;
}
.arrow.outside {
  position: relative;
  padding: 0 15px;
}
.arrow {
  position: relative;
  padding: 0 0 0 15px;
}
.outside {
  position: relative;
  padding: 0 15px 0 0;
}
.arrow::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg);
  top: calc(50% - 0.4rem);
  left: 0;
}
.outside::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  background: url(/content/dam/jretravel/site/common/images/outside_icon_ie.svg) no-repeat;
  top: calc(50% - 6px);
  right: 0;
}
.radius_wrap {
  margin: 40px auto 10px;
}
.radius_wrap .radius_box {
  width: 48%;
  border: 2px solid #ccc;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
}
.radius_wrap .radius_box .marker_wrap {
  margin: 0 auto 10px;
}
.radius_wrap .radius_box .marker_text {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--green-color);
  background: linear-gradient(transparent 55%, var(--marker-color) 45%);
  line-height: 1.4;
}
.radius_wrap .radius_box .marker_text>span {
  font-size: 4.0rem;
  line-height: 1;
  font-weight: normal;
}
.radius_wrap .radius_box.green {
  width: 60%;
  border: 3px solid var(--green-color);
  margin: 0 auto;
  position: relative;
}
.radius_box.green>.circle_icon {
  width: 120px;
  height: 120px;
  background: var(--green-color);
  border-radius: 50%;
  border: 5px solid #fff;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.2;
  padding: 20px 0;
  transform: rotate(-5deg);
  position: absolute;
  top: -40px;
  left: -40px;
}
.radius_box.green>.circle_icon>span {
  font-size: 2.2rem;
  line-height: 1;
}
.radius_box.green>.circle_icon>span.yellow {
  color: var(--yellow-color);
}
.radius_wrap .plus_icon {
  font-size: 5.0rem;
  color: var(--green-color);
  text-align: center;
  line-height: 1.2;
}
.radius_wrap .flex_wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.radius_wrap .flex_wrap .radius_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/*表*/
.example_table {
  background: #fff;
  border-color: #bbb;
  text-align: center;
  margin: 0 auto 10px;
}
.example_table th, .example_table td {
  padding: 10px 0;
  width: calc(100% / 5);
}
.example_table th[scope="col"] {
  background: var(--lightgreen-color);
  text-align: center;
  padding: 5px 0;
}
.example_table th[scope="col"].bg_green {
  background: var(--green-color);
  font-size: 2.0rem;
  color: #fff;
}
.example_table td.bold {
  font-weight: bold;
  font-size: 1.8rem;
}
.example_table td:last-of-type {
  font-size: 2.4rem;
}
/*ボタン*/
.btn_01 {
  width: 40%;
  margin: 10px auto;
}
.btn_01>a {
  display: inline-block;
  background: var(--green-color);
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  width: 100%;
  padding: 6px 0;
  border-radius: 10px;
  transition: .2s;
}
.btn_01>a:hover {
  text-decoration: none;
  opacity: .6;
}
.btn_01 .outside::after {
  background: url(/content/dam/jretravel/site/common/images/outside_icon_w_ie.svg) no-repeat;
  right: 10px;
}
.btn_wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 10px;
}
.btn_wrap .btn_01 {
  width: 30%;
  margin: 10px;
}
/*タブ*/
.tab_area {
  display: none;
}
.tab_area.show {
  display: block;
}
.tab_menu {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--green-color);
  margin: 10px auto;
}
.tab_menu>.tab_btn {
  font-size: 1.6rem;
  font-weight: bold;
  width: calc((100% - 20px) / 3);
  text-align: center;
  padding: 10px 0;
  transition: .2s;
}
.tab_menu>.tab_btn.active, .tab_menu>.tab_btn:hover {
  background: var(--lightgreen-color);
  border-radius: 10px 10px 0 0;
  color: var(--green-color);
}
.tab_area .col1_box {
  display: flex;
  align-items: center;
}
.tab_area .col1_box .image {
  width: 200px !important;
  height: 200px;
  margin: 0 30px 0 0;
}
.tab_area .image .fade {
  height: unset !important;
  aspect-ratio: 1 / 1;
}
.tab_area .text {
  font-size: 1.6rem;
}
.tab_area .col3_wrap {
  display: flex;
  margin: 0 auto;
}
.tab_area .col3_box {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.tab_area .col3_box .image {
  width: 200px !important;
  height: 200px;
  margin: 0 auto 15px;
}
.tab_area .col1_box .text .fs1_2 {
  margin-top: 10px;
}
/*バナー*/
.bnr_wrap {
  display: flex;
  justify-content: center;
}
.bnr_wrap .banner {
  padding: 0;
  width: 220px !important;
}
.bnr_wrap .banner:nth-of-type(n+2) {
  margin-left: 20px;
}
.bnr_wrap .banner ul li>a {
  flex-direction: column;
  background: none;
}
.bnr_wrap .banner ul li>a .imageitem {
  width: 100%;
}
.bnr_wrap .banner ul li>a .textitem {
  width: 100%;
  padding: 0;
  margin: 10px auto 0;
}
.bnr_wrap .banner ul li>a .textitem .titleitem {
  color: #222;
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0 auto;
}

/*-----SP-----*/
@media screen and (max-width: 767px) {
  .freehtml>div:has(>.example_table) {
    width: 100%;
    overflow-x: auto;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .example_table {
    min-width: 1000px;
    margin: 0 auto;
  }
  .lead_text {
    text-align: left;
  }
  .radius_wrap {
    margin: 50px auto 0;
  }
  .radius_wrap .radius_box.green, .radius_wrap .flex_wrap .radius_box {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
  .radius_wrap .radius_box .marker_text {
    font-size: 2.0rem;
    line-height: 1.7;
  }
  .radius_wrap .radius_box .marker_text>span {
    font-size: 3.5rem;
  }
  .radius_box.green>.circle_icon {
    width: 90px;
    height: 90px;
    font-size: 1.3rem;
    line-height: 1.3;
    padding: 14px 0;
    top: -60px;
    left: 10px;
  }
  .radius_box.green>.circle_icon>span {
    font-size: 1.6rem;
  }
  .radius_wrap .flex_wrap {
    flex-direction: column;
  }
  .radius_wrap .flex_wrap .radius_box:nth-of-type(n+2) {
    margin-top: 20px;
  }
  .btn_wrap {
    flex-direction: column;
  }
  .btn_01, .btn_wrap .btn_01 {
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .tab_menu {
    flex-wrap: wrap;
    border-bottom: none;
    width: calc(100% - 20px);
    margin: 10px auto 0;
  }
  .tab_menu>.tab_btn {
    width: calc((100% - 10px) / 2);
    background: #eee;
    border-radius: 10px;
    font-size: 1.5rem;
    padding: 8px 0;
  }
  .tab_menu>.tab_btn:first-of-type {
    width: 100%;
    margin-bottom: 10px;
  }
  .tab_menu>.tab_btn.active, .tab_menu>.tab_btn:hover {
    border-radius: 10px;
  }
  .tab_area .col1_box {
    flex-direction: column;
  }
  .tab_area .col1_box .image {
    width: 150px !important;
    height: 150px;
    margin: 0 auto 10px;
  }
  .tab_area .col3_wrap {
    flex-direction: column;
    width: calc(100% - 20px);
  }
  .tab_area .col3_box {
    margin: 10px auto 15px;
  }
  .tab_area .col3_box .image {
    width: 150px !important;
    height: 150px;
    margin: 0 auto 10px;
  }
  .bnr_wrap {
    flex-wrap: wrap;
    width: calc(100% - 20px);
  }
  .bnr_wrap .banner {
    width: calc((100% - 20px) / 2) !important;
  }
  .bnr_wrap .banner:nth-of-type(2n) {
    margin-left: 20px !important;
  }
  .bnr_wrap .banner:nth-of-type(n+3) {
    margin-top: 15px !important;
  }
}