@charset "utf-8";

/*---------------------------------------------------------------------------------------------

ベース

---------------------------------------------------------------------------------------------*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {

  body {
  }

}

/*---------------------------------------------------------------------------------------------

FLEX

---------------------------------------------------------------------------------------------*/

.flex {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.al-start {
  -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.al-center {
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.jt-center {
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.jt-around {
  -ms-flex-pack: distribute;
	justify-content: space-around;
}

.jt-between {
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.jt-start {
  -webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.jt-end {
  -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flex_wrap {
  -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

.flex_column {
  display: flex;
  flex-flow: column;
}

@media screen and (max-width: 768px) {

  .sp_noflex {
    display: block;
  }

  .sp_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

}

/*---------------------------------------------------------------------------------------------

PC

---------------------------------------------------------------------------------------------*/

@media screen and (min-width: 769px) {

  .onlyPC {
    display: block;
  }

  .onlySP {
    display: none !important;
  }

}

/*---------------------------------------------------------------------------------------------

SP

---------------------------------------------------------------------------------------------*/


@media screen and (max-width: 768px) {

  .onlyPC {
    display: none !important;
  }

  .onlySP {
    display: block;
  }

}

/*---------------------------------------------------------------------------------------------

ハンバーガーメニュー

---------------------------------------------------------------------------------------------*/

.hamburger {
  display: block;
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 40px;
  height: 30px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 6px;
  background : #FFF;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  background: #3CB4C8;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
}

nav.globalMenuSp ul {
  margin: 100px auto;
  padding: 0;
  width: 100%;
  display: block;
}

nav.globalMenuSp ul li {
  font-size: 1.8rem;
  color: #FFF;
  position: relative;
  list-style-type: none;
  padding: 0;
  width: 90%;
  margin: 15px auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  border-bottom: 1px solid #FFF;
  padding-bottom: 15px;
}

nav.globalMenuSp ul li:first-child {
  border-top: 1px solid #FFF;
  padding-top: 15px;
}

nav.globalMenuSp ul li a {
  display: block;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}


/*---------------------------------------------------------------------------------------------

フェードインアニメーション

---------------------------------------------------------------------------------------------*/


.view.on {
    opacity: 1;
    transform: translate(0px,0px);
    visibility: visible;
}
.view {
    transition: 1.2s;
    opacity: 0;
    transform: translate(0px,60px);
}


/*---------------------------------------------------------------------------------------------

ヘッダー

---------------------------------------------------------------------------------------------*/

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.head_cont {
  position: relative;
  width: 100%;
  height: 120px;
  background: rgb(100,200,230);
  background: linear-gradient(90deg, rgba(100,200,230,1) 0%, rgba(63,138,214,1) 45%, rgba(39,96,204,1) 80%, rgba(30,80,200,1) 100%);
}

.head_cont img {
  max-width: 240px;
  margin-left: 50px;
}

.head_nav ul {
  font-size: 1.8rem;
  color: #FFF;
  margin-right: 25px;
}

.head_nav ul li {
  margin-left: 25px;
  padding-right: 25px;
  border-right: 1px solid;
}

.head_nav ul li:last-of-type {
  border-right: none;
}

.head_contact {
  width: 250px;
  color: #FFF;
  background: #3CB4C8;
  line-height: 120px;
  text-align: center;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {

  .head_cont {
    height: 80px;
  }

  .head_cont img {
    max-width: 180px;
    margin-left: 10px;
  }

}

/*---------------------------------------------------------------------------------------------

フッター

---------------------------------------------------------------------------------------------*/

.foot_cont {
  width: 100%;
  background: #FFF;
  padding: 40px;
}

.foot_cont img {
  max-width: 200px;
}

.foot_tel {
  font-size: 4.2rem;
  font-weight: 500;
}

.foot_tel span {
  font-size: 3.2rem;
}

.foot_mail {
  font-size: 1.8rem;
  margin-top: 20px;
}

.foot_mail a {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {

  .foot_cont {
    padding: 25px;
  }

  .foot_cont img {
    max-width: 180px;
  }

  .foot_tel {
    font-size: 2.8rem;
  }

  .foot_tel span {
    font-size: 1.8rem;
  }

  .foot_mail {
    font-size: 1.2rem;
  }

}


/*---------------------------------------------------------------------------------------------

インデックスページ

---------------------------------------------------------------------------------------------*/

.mv_cont {
  width: 100%;
  position: relative;
  margin-top: 120px;
}

.mv_tit {
  position: absolute;
  max-width: 400px;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.cont_tit {
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}

.cont_sub {
  font-size: 2.2rem;
  text-align: center;
}

.option_cont,
.point_cont,
.map_cont,
.tour_cont {
  padding-top: 60px;
}

.option_wrap {
  width: 100%;
  background: #96E696;
  padding: 40px;
  margin-top: 20px;
}

.map_wrap {
  width: 100%;
  margin-top: 20px;
}

.point_wrap {
  width: 100%;
  background: url("/assets/img/bg_point.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px;
  margin-top: 20px;
}

.cont_list {
  max-width: 1000px;
  width: 90%;
  margin: auto;
}

.cont_list li {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.tour_logo {
  text-align: center;
  margin-bottom: 25px;
}

.tour_logo img {
  max-width: 230px;
}

.tour_sub {
  font-size: 2.8rem;
  text-align: center;
  display: block;
}

.tour_main {
  font-size: 3.8rem;
  font-weight: bold;
  color: #FF7800;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 60px;
}

.tour_wrap {
  width: 100%;
  background: #A3E4E9;
  padding: 40px;
}

.tour_tit {
  font-size: 2.8rem;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.tour_tit::after {
  position: absolute;
  content: "";
  background: url("/assets/img/tit_sub.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 532px;
  height: 20px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.tour_box {
  max-width: 870px;
  width: 90%;
  margin: 50px auto;
}

.tour_box img {
  max-width: 250px;
  width: 90%;
}

.tour_txt_box01 {
  margin-left: 30px;
}

.tour_txt01 {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.tour_detail ul {
  border: 1px solid;
  background: #FFF;
}

.tour_detail.type2 ul {
  width: 590px;
}

.tour_detail ul li {
  font-size: 1.6rem;
  border-bottom: 1px solid;
}

.tour_detail ul li:last-child {
  border-bottom: none;
}

.tour_detail ul li p:first-child {
  width: 30%;
  padding: 15px;
  background: #FDEBD1;
  border-right: 1px solid;
}

.tour_detail.type2 ul li p:first-child {
  padding: 25px 10px;
}

.tour_detail ul li:last-child p:first-child {
  padding: 35px 10px;
}

.tour_detail.type2 ul li:nth-of-type(3) p:first-child {
  padding: 55px 10px;
}

.tour_detail ul li p:last-child {
  width: 70%;
  padding: 15px;
}

.tour_content {
  font-size: 2.4rem;
  text-align: center;
}

.tour_content span {
  font-size: 1.6rem;
}

.course_wrap {
  max-width: 1000px;
  width: 90%;
  margin: 30px auto;
}

.course_box01 {
  width: 49%;
  background: #FFF;
  padding: 15px;
}

.course_tit {
  padding: 10px;
  background: #FE7B00;
  text-align: center;
  color: #FFF;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.course_tit.blue {
  background: #0064C8;
}

.course_tit.purple {
  background: #963296;
}

.course_tit span {
  font-size: 1.5rem;
}

.course_coution {
  font-size: 1.6rem;
  background: #717071;
  color: #FFF;
  padding: 8px;
  border-radius: 6px;
}

.course_value {
  font-size: 1.6rem;
  margin-left: 15px;
}

.course_value span {
  font-size: 2.8rem;
  font-weight: bold;
}

.course_main {
  margin-top: 15px;
}

.course_info {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 15px auto;
}

.course_btn {
  max-width: 300px;
  height: 60px;
  width: 90%;
  background: #3CB4C8;
  position: relative;
  color: #FFF;
  font-size: 2rem;
  margin: auto;
}

.course_btn::after {
  position: absolute;
  content: "";
  background: url("/assets/img/arrow_link.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20px;
  height: 12px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.detail_btn {
  max-width: 300px;
  height: 60px;
  width: 90%;
  background: #8282C8;
  position: relative;
  color: #FFF;
  font-size: 2rem;
}

.detail_btn::after {
  position: absolute;
  content: "";
  background: url("/assets/img/arrow_link.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20px;
  height: 12px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.slide_wrap {
  width: 100%;
}

.course_box02 {
  max-width: 1000px;
  width: 90%;
  margin: 30px auto;
  background: #FFF;
  padding: 20px;
}

.course_box02.first {
  margin-top: 60px;
}

.course_box02 img {
  width: 49%;
}

.course_main02 {
  width: 49%;
}

.float_box {
  position: fixed;
    width: 110px;
    background: #FFF;
    top: 30%;
    right: 50px;
    border-radius: 0 0 10px 10px;
}

.float_box p {
  background: #3cb4c8;
    color: #FFF;
    text-align: center;
    line-height: 1.5;
    padding: 15px 0;
    font-size: 1.2rem;
    position: relative;
    margin-bottom: 30px;
}

.float_box p::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-top: 21px solid #3cb4c8;
  border-bottom: 0;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.float_icon {
  display: block;
    width: 70%;
    margin: auto;
    margin-bottom: 15px;
    opacity: 1;
    transition: .3s;
}

.float_icon:hover {
  opacity: .6;
}



@media screen and (max-width: 768px) {

  .mv_cont {
    margin-top: 80px;
  }

  .tour_logo img {
    max-width: 150px;
  }

  .tour_sub {
    font-size: 1.6rem;
  }

  .tour_main {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .tour_wrap {
    padding: 25px;
  }

  .tour_tit {
    font-size: 2.2rem;
  }

  .tour_tit::after {
    width: 100%;
    height: 20px;
    bottom: -15px;
  }

  .tour_box {
    width: 100%;
  }

  .tour_box img {
    display: block;
    margin: auto;
  }

  .tour_txt_box01 {
    margin-left: 0;
    margin-top: 20px;
  }

  .tour_txt01 {
    font-size: 1.4rem;
  }

  .tour_detail ul li {
    font-size: 1.3rem;
  }

  .tour_detail ul li p:first-child {
    padding: 10px;
  }

  .tour_detail ul li p:last-child {
    padding: 10px;
  }

  .tour_content {
    font-size: 1.8rem;
  }

  .tour_content span {
    font-size: 1.2rem;
  }

  .course_wrap {
    width: 100%;
  }

  .course_box01 {
    width: 100%;
    margin-bottom: 25px;
  }

  .course_tit {
    font-size: 1.5rem;
  }

  .course_coution {
    font-size: 1.2rem;
  }

  .course_value {
    font-size: 1.6rem;
  }

  .course_value span {
    font-size: 2.5rem;
  }

  .course_info {
    font-size: 1.4rem;
  }

  .course_btn {
    font-size: 1.4rem;
  }

  .course_box02 {
    width: 100%;
  }

  .course_box02.first {
    margin-top: 30px;
  }

  .course_box02 img {
    width: 100%;
  }

  .course_main02 {
    width: 100%;
    margin-top: 20px;
  }

  .detail_btn {
    font-size: 1.4rem;
    margin: auto;
  }

  .cont_list {
    width: 100%;
    word-break: break-all;
  }

  .tour_detail.type2 ul {
    width: 100%;
  }

  .tour_detail.type2 ul li:nth-of-type(3) p:first-child {
    padding: 60px 10px;
  }

  .float_box {
    position: fixed;
    width: 100%;
    background: #FFF;
    top: auto;
    bottom: 0;
    right: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .float_icon {
    width: 40px;
    margin: 0;
    margin-right: 15px;
  }

  .float_box p {
    width: 40%;
    margin-bottom: 0;
    margin-right: 20px;
  }

  .float_box p::after {
    display: none;
  }

}
