@charset "utf-8";
/* CSS Document */
body {
  font-feature-settings: "palt";
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-kerning: normal;
  -webkit-font-kerning: normal;
  font-size: 14px;
  /*font-family: メイリオ, Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  margin: 0px;
  box-sizing: border-box;
  background-color: #fff;
  color: #000;
  padding: 0em;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  animation: fadeIn 2s ease 0s 1 normal;
}
img {
  vertical-align: bottom;
  height: auto;
  width: 100%;
}
.fa-arrow-right {
  padding-left: 10px;
}
.column_link {
  font-size: 1.3em;
  color: #f76348;
  padding: 5px 2%;
  border-bottom: 1px solid #f76348;
  font-weight: 600;
}
.column_link::after {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 600;
  padding-left: 10px;
}
.column_link:hover {
  color: #f76348;
  opacity: 0.8;
}
.link_line {
  background: linear-gradient(transparent 80%, #ff6 80%);
}
.link_line a {
  color: #000000;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 18px;
}
h4 {
  font-size: 16px;
}
h5 {
  font-size: 15px;
}
.f10 {
  font-size: 10px;
}
.f12 {
  font-size: 12px;
}
.orange {
  color: #e55d39;
}
.blue {
  color: #3366cc;
}
.left {
  text-align: left !important;
}
.right {
  text-align: right !important;
}
#wrapper {
  width: 100%;
  margin: auto;
  max-width: 2000px;
}
.contents {
  width: 100%;
  margin: 5% auto 7%;
  max-width: 1080px;
}
/* page-top */
#page_top {
  position: fixed;
  bottom: 30px;
  right: 30px;
}
#page_top a {
  text-align: center;
  text-decoration: none;
  font-size: 3.5em;
  color: #dbd6d6;
}
#page_top a:hover {
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .contents {
    padding: 0 2.5%;
  }
}
@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
  h2 {
    font-size: 160%;
  }
  h3 {
    font-size: 130%;
    width: 80%;
    margin: auto 10%;
    line-height: 1.7;
  }
  .contents {
    padding: 0 5%;
  }
  #page_top {
    right: 10px;
  }
  .none {
    display: none;
  }
  body {
    font-size: 12px;
  }
  h2 {
    font-size: 160%;
  }
  h3 {
    width: 100%;
    margin: auto 0;
    line-height: 2;
  }
  h5 {
    font-size: 110%;
  }
}
/*==========================
	ページ内リンク
===========================*/
.anchor {
  display: block;
  padding-top: 80px;
  margin-top: -80px;
}
.p_link {
  margin: 2% auto 3%;
}
.p_link ul {
  display: flex;
  justify-content: center;
}
.p_link ul a {
  display: block;
  width: 18%;
  text-align: center;
  background-color: #eff5f5;
  padding: 10px 0;
  border-right: 3px solid #fff;
}
.p_link ul a:hover {
  background-color: #ccffff;
}
.p_link ul a:first-child {
  width: 22% !important;
}
.p_link ul a li {
  padding-right: 5px;
  font-weight: bold;
}
.p_link ul a li::after {
  content: "";
  display: inline-block;
  width: 20px;
  aspect-ratio: 1;
  vertical-align: middle;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url("/corp/assets/images/common/icon_arrow_down.svg");
  background: #333;
}
/*==========================
アコーディオン
===========================*/
#acMenu dt {
  font-size: 30px;
  border-top: #666 1px solid;
  border-bottom: #666 1px solid;
  line-height: 55px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #acMenu {
    width: 100%;
    margin: 0 auto;
  }
  #acMenu dt {
    font-size: 24px;
    font-weight: 500;
    display: block;
    width: 100%;
    height: 50px;
    position: relative;
  }
  #acMenu dt {
    border-bottom: none;
  }
  #acMenu dt.active {
    border-bottom: #666 1px solid;
  }
  #acMenu dt::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 38%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #473a24;
    border-right: solid 2px #473a24;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  #acMenu dt.active:after {
    content: "";
    position: absolute;
    right: 25px;
    top: 38%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #473a24;
    border-right: solid 2px #473a24;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #acMenu dd {
    width: 100%;
    margin: 0 auto;
    display: none;
  }
  #acMenu dt {
    cursor: pointer;
  }
}
@media screen and (max-width: 480px) {
  #acMenu dt::after,
  #acMenu dt.active:after {
    width: 5px;
    height: 5px;
    right: 19px;
  }
  #acMenu dt {
    font-size: 17px;
  }
  .sp_dt {
    font-size: 16px !important;
    letter-spacing: -0.05em;
  }
  #acMenu dt.active:after {
    top: 45%;
  }
  #acMenu dt::after,
  #acMenu dt.active:after {
    border-top: solid 1px #999;
    border-right: solid 1px #999;
  }
  #acMenu .info::after,
  #acMenu .info.active:after {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }
}
/*==========================
	main
===========================*/
.main {
  background-color: #0e43c8;
  width: 100%;
  height: 70vh;
  background: url("../images/main.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.main img {
  max-width: 2000px;
  max-height: 745px;
}
.m_ttl {
  width: 450px;
  max-width: 490px;
  margin: 0 auto;
  padding: 7% 0;
}
.mcopy {
  position: absolute;
  right: 5%;
  bottom: 15px;
}
.mcopy img {
  max-width: 450px;
}
.main_cap {
  font-size: 13px;
  color: #000;
  position: absolute;
  bottom: 5px;
  left: 2.7%;
}
@media screen and (max-width: 820px) {
  .main {
    height: 470px;
  }
  .m_ttl {
    width: 60%;
    paddng: 20% 0;
  }
}
@media screen and (max-width: 600px) {
  .main {
    height: 30vh;
  }
  .m_ttl {
    padding: 10% 0;
  }
}
/*==========================
	lead
===========================*/
.lead_area {
  position: relative;
}
.lead {
  font-size: 15px;
}
.lead_bk1 {
  position: absolute;
  left: 0;
  bottom: 3%;
  max-width: 250px;
}
.lead_bk2 {
  position: absolute;
  right: 0;
  bottom: 3%;
  max-width: 250px;
}
.lead {
  margin: 5% 0;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .lead_bk1,
  .lead_bk2 {
    width: 20%;
  }
}
@media screen and (max-width: 480px) {
  .lead_area {
    margin-bottom: 25%;
  }
  .lead {
    text-align: left;
    margin-bottom: 15%;
  }
  .lead_bk1,
  .lead_bk2 {
    width: 50%;
    border: 0;
    bottom: -8%;
  }
}
/*==========================
	btn
===========================*/
a.d_btn {
  font-size: 1.2em;
  position: relative;
  display: inline-block;
  padding: 1.3em 4em;
  border: 2px solid #333;
  color: #333;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  z-index: 1;
}
a.d_btn img {
  max-width: 50px;
  display: inline;
  margin-left: 10px;
  vertical-align: baseline;
}
a.d_btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  content: "";
  background: #85caf2;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
a.d_btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.h_btn {
  border: 1px #000 solid;
  padding: 2px 8%;
  border-radius: 20px;
}
.h_btn:hover {
  background-color: #eae244;
}
.l_btn {
  margin: 0 auto 8%;
}
.l_btn p {
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  background-color: #268bc5;
  display: inline-block;
  padding: 1% 5%;
  margin-top: 30px;
  border-bottom: solid 10px #175d85;
  border-radius: 5px;
}
.l_btn p::after {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  padding-left: 15px;
}
.m_btn p:hover {
  background-color: #eae244;
}
.l_btn p:hover {
  color: #000;
  background-color: #85caf2;
}
.l_btn p img,
.m_btn p img {
  max-width: 50px;
  display: inline;
  margin-left: 10px;
  vertical-align: baseline;
}
.info_l_btn p {
  color: #000;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  a.d_btn {
    padding: 0.5em 5%;
  }
}
@media screen and (max-width: 768px) {
  a.d_btn {
    padding: 0.5em 10%;
  }
  .l_btn p {
    margin-bottom: 5%;
    font-size: 120%;
  }
}
/*==========================
	Work space
===========================*/
.i_erea {
  width: 90%;
  margin: 5%;
}
.w_box_area {
  margin-bottom: 8%;
}
.w_box_area p {
  text-align: left;
  font-size: 15px;
}
.w_box_area h5 {
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #000;
  padding: 3px auto;
}
.w_box {
  display: flex;
  margin: 5% auto 2%;
}
.w_box li {
  margin: 0 5px;
}
.p_label {
  color: #fff;
  font-weight: bold;
  background-color: #000;
  padding: 3px 5%;
  display: inline-block;
  margin-bottom: 2%;
}
.b_info {
  font-size: 12px;
  margin: 3% 0;
}
@media screen and (max-width: 480px) {
  .shukuhaku_area p {
    font-size: 11px;
  }
  .w_box_area h5 {
    padding: 0 20px;
  }
  .i_erea {
    width: 100%;
    margin: 9% 0 8%;
  }
  .w_box {
    display: block;
  }
  .w_box li:first-child,
  .w_box li:last-child {
    width: 100%;
  }
  .w_box li:first-child {
    margin-left: 0;
  }
}
/*==========================
	Stay
===========================*/
.s_box {
  display: flex;
  width: 100%;
  margin: 0 auto 5%;
}
.s_box li:first-child {
  width: 45%;
  margin-right: 2%;
}
.s_box li:first-child img {
  max-width: 420px;
}
.s_box li:last-child {
  width: 48%;
}
.s_box h5 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 4%;
}
.s_txt {
  font-size: 15px;
  text-align: left;
  line-height: 2;
  margin-bottom: 5%;
}
a#AMINGO_HOUSE {
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}
@media screen and (max-width: 480px) {
  .s_box {
    display: block;
  }
  .s_box h5 {
    padding-top: 5%;
  }
  .s_box li:first-child,
  .s_box li:last-child {
    width: 100%;
  }
  .s_lead {
    margin-top: 5%;
  }
}
/*==========================
	Activity
===========================*/
.a_erea {
  width: 90%;
  margin: 5%;
}
.a_box_r {
  display: flex;
  flex-direction: row-reverse;
}
.a_box {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 0 auto 5%;
  text-align: left;
}
.a_box li {
  width: 31%;
  padding-bottom: 3%;
  margin: 0 1%;
  border: 1px solid #666;
}
.a_txt {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 3%;
  padding: 0 5%;
}
.a_ttl {
  font-size: 1.3em;
  color: #fff;
  padding: 3px 5%;
  display: inline-block;
  margin: 2% 0;
}
.activity1 {
  background-color: #0033c7;
}
.activity2 {
  background-color: #0f9363;
}
.activity3 {
  background-color: #e58b39;
}
.a_place {
  display: block;
  font-size: 1.1em;
  margin-bottom: 2%;
  padding: 0 5%;
  border-bottom: 1px dotted #000;
}
.freeplan h3 {
  font-weight: 700;
  display: inline-block;
  font-size: 1.8em;
  margin-bottom: 3%;
  background: linear-gradient(transparent 60%, #ff6 60%);
}
@media screen and (max-width: 480px) {
  .contents h4 {
    text-align: left;
  }
  .a_box {
    display: block;
  }
  .a_box li {
    width: 100%;
    margin-bottom: 7%;
  }
  .sea .a_box,
  .eat .a_box,
  .mountain .a_box {
    display: block;
  }
  .a_box li:first-child,
  .a_box li:last-child {
    width: 100%;
  }
}
/*==========================
  plan
===========================*/
.plan_area ul {
  display: flex;
  width: 100%;
}
.plan_area ul li {
  width: 30%;
  margin: 0 auto 8%;
}
@media screen and (max-width: 600px) {
  .plan_area ul {
    margin: 8% 0;
  }
}
/*==========================
 ご旅行に関するご案内・ご注意
===========================*/
.info {
  background-color: #a5a5a6;
  color: #fff;
  border-top: 1px solid #fff !important;
  border-bottom: 1px solid #fff !important;
  margin-top: 2%;
}
.info_contents {
  margin: 0 auto !important;
  padding-bottom: 7%;
}
.gray_bk {
  background-color: #a5a5a6;
  color: #fff;
}
.info_list {
  padding: 8% 0 5%;
}
.info_list li {
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .info {
    margin-top: 0;
  }
}
/*==========================
  下記固定のお問合せ
===========================*/
.contact_area {
  text-align: center;
  background: #ecf8fc;
  margin-top: -5px;
  padding: 5%;
}
.contact_area h4 {
  border-bottom: 3px solid #014593;
  display: inline-block;
  padding-bottom: 8px;
  font-size: 2.5em;
  font-weight: 700;
  color: #014593;
  line-height: 1;
  margin-bottom: 20px;
}
.coName {
  font-size: 18px;
  color: #014593;
  font-weight: 700;
}
.contact_txt {
  color: #000;
  font-size: 16px;
  line-height: 1.75;
}
div.hContactBtn_largearea {
  width: 50%;
  margin: 3.5% 25% 0;
}
a.hContactBtn_large {
  width: 100%;
  display: block;
  color: #fff;
  background: #f39700;
  padding: 18px 0;
  text-align: center;
  line-height: 1;
  border-radius: 30px;
  font-weight: 500;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  #bottom_info {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #bottom_info {
    width: 33%;
    background: rgba(234, 226, 68, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: fixed;
    bottom: 0;
    z-index: 999;
    border-radius: 30px 30px 0 0;
  }
  #bottom_info p {
    font-size: 130%;
    padding: 5px 15px 5px 0;
  }
  #bottom_info p::before {
    font-family: "Font Awesome 5 Free";
    content: "\f059";
    font-weight: 900;
    padding-right: 5px;
    padding-left: 5px;
    color: #fff;
  }
}
@media screen and (max-width: 480px) {
  .contact_area h4 {
    font-size: 1.8em;
  }
  .contact_txt {
    font-size: 12px;
  }
  div.hContactBtn_largearea {
    width: 80%;
    margin: 3.5% 10% 0;
  }
  a.hContactBtn_large {
    font-size: 1.2em;
  }
}
/*=========================
	map
==========================*/
.map {
  position: relative;
}
.map img {
  max-width: 2026px;
}
.zoom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border: 1px solid #000;
  background-color: #fff;
}
.fa-search {
  font-size: 2em;
  line-height: 2em;
}
/*=========================
	copy
==========================*/
.copy_area {
  width: 100%;
  background-color: #fff3;
  padding: 2%;
  font-size: 0.8em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .copy_area {
    padding: 10% 1% 5%;
  }
}
@media screen and (max-width: 480px) {
  .copy_area {
    font-size: 0.7em;
  }
}
/*=========================
	individual
==========================*/
@media screen and (max-width: 480px) {
  h3.slash:before,
  h3.slash:after {
    display: none;
  }
}
