@charset "utf-8";
/* CSS Document */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset, img {
  border: 0;
}
address, caption, cite, code, dfn, em, var {
  font-style: normal;
  font-weight: normal;
}
ol, ul {
  list-style: none;
}
caption, th {
  text-align: left;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}
q:before, q:after {
  content: '';
}
abbr, acronym {
  border: 0;
}
section, article {
  display: block;
}
/* base */
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;
}
.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;
}
.f15 {
  font-size: 15px;
}
.f17 {
  font-size: 17px;
}
.f20 {
  font-size: 20px;
}
.bk_kon {
  background: #1c273c;
}
.orange {
  color: #e55d39;
}
.blue {
  color: #3366cc;
}
.left {
  text-align: left;
}
#wrapper {
  width: 100%;
  margin: auto;
  max-width: 2000px;
}
.contents {
  width: 100%;
  margin: 5% auto 7%;
  max-width: 1280px;
}
/* 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;
  }
  #page_top {
    right: 10px;
  }
  .none {
    display: none;
  }
  body {
    font-size: 12px;
  }
  h2 {
    font-size: 160%;
  }
  h3 {
    width: 100%;
    margin: auto 0;
    line-height: 2;
    text-align: left;
  }
  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: 14%;
  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: 19% !important;
}
.p_link ul a li {
  padding-right: 5px;
  font-weight: bold;
}
.p_link ul a li::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  padding-left: 10px;	
}
/*==========================
アコーディオン
===========================*/
#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: 80vh;
  background: url("../images/main.jpg") center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.main img {
  max-width: 2000px;
  max-height: 750px;
}
.m_ttl {
  position: absolute;
  left: 5%;
  top: 80px;
}
.mcopy {
  position: absolute;
  right: 5%;
  bottom: 5px;
}
.mcopy img {
  max-width: 490px;
}
.main_cap {
  font-size: 13px;
  color: #000;
  position: absolute;
  bottom: 5px;
  left: 2.7%;
}
.bnr_cp {
  max-width: 560px;
  width: 32%;
  position: absolute;
  right: 1%;
  bottom: 3%;
}
.tb80 {
  width: 80%;
  margin: 0 auto
}
@media screen and (max-width: 1024px) {
  .m_ttl {
    left: 4%;
  }
}
@media screen and (max-width: 768px) {
  .main {
    height: 470px;
  }
  .m_ttl {
    width: 40%;
    top: 15px;
  }
}
@media screen and (min-width: 481px) {
  .main_sp {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .main {
    display: none;
  }
}
/*==========================
	lead
===========================*/
.lead_area {
  position: relative;
}
.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% 10%;
  line-height: 2;
}
.contact_area {
  text-align: center;	
  margin-top: -5px;
  padding: 5%;
}
.contact_area h4 {
  border-bottom: 3px solid #014593;
  display: inline-block;
  padding-bottom: 8px;
  font-size: 30px;
  font-weight: 700;
  color: #014593;
  line-height: 1;
  margin-bottom: 20px;
}
.coName {
  font-size: 18px;
  color: #014593;
  font-weight: 700;
}
.contact_txt {
  font-size: 16px;
  line-height: 1.75;
}
.m_btn {
  display: inline-block;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  padding: 1% 5%;
}
@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 2.5em;
  border: 2px solid #333;
  color: #333;
  text-align: center;
  text-decoration: none;
  transition: .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 .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: .5em 5%;
  }
}
@media screen and (max-width: 768px) {
  a.d_btn {
    padding: .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 h5 {
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #000;
  padding: 3px auto;
}
.w_box {
  display: flex;
  position: relative;
  flex-direction: row-reverse;
  margin-top: 3%;
  align-items: flex-end;
}
.w_box li:first-child {
  width: 35%;
  margin-left: 2%;
  line-height: 2;
}
.w_box li:first-child img {
  max-width: 620px;
}
.w_box li:last-child {
  width: 65%;
  line-height: 2;
}
.b_info_txt {
  margin: 3% auto;
}
.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: 2% 0 5%;
}
@media screen and (max-width: 480px) {
  .shukuhaku_area p {
    font-size: 11px;
  }
  .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%;
  align-items: flex-end;
}
.s_box li:first-child {
  width: 40%;
}
.s_box li:nth-child(2) {
  padding-right: 2%;
}
.s_box li:first-child img {
  max-width: 420px;
}
.s_box li:last-child {
  width: 40%;
}
.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%;
}
@media screen and (max-width: 600px) {
.s_box h5 {
	margin-top: 5%;
	}
  .s_box {
    display: block;
  }
  .s_box li:first-child, .s_box li:last-child {
    width: 100%;
  }
  .s_lead {
    margin-top: 5%;
  }
}
/*==========================
	Activity
===========================*/
.sports .a_box, .volunteer .a_box {
  display: flex;
  flex-direction: row;
}
.outdoor .a_box, .bp .a_box {
  display: flex;
  flex-direction: row-reverse;
}
.spo_box, .vol_box {
  display: flex;
  flex-direction: row;
  text-align: left;
  line-height: 1.8;
  margin: 8% auto 5%;
}
.out_box, .bp_box {
  display: flex;
  flex-direction: row-reverse;
  text-align: left;
  line-height: 1.8;
  margin: 8% auto 5%;
}
.spo_box li img {
  width: 350px;
}
.out_box li img {
  width: 450px;
}
.vol_box li img {
  width: 450px;
}
.bp_box li img {
  width: 400px;
}
.a_box {
  width: 100%;
  margin: 0 auto 5%;
  text-align: left;
}
.a_box li:first-child {
  width: 40%;
  margin-right: 2%;
  padding-left: 5%;
}
.a_box li:first-child img {
  max-width: 500px;
}
.a_box li:last-child {
  width: 55%;
}
.a_txt {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 3%;
}
.a_ttl {
  color: #FFF;
  font-weight: bold;
  padding: 3px 5%;
  display: inline-block;
  margin-bottom: 2%;
}
.a_orange {
  color: #db8139;
}
.a_green {
  color: #0bc98b;
}
.a_blue {
  color: #5f8cf2;
}
.a_purple {
  color: #973cc6;
}
.sports .a_ttl {
  background-color: #db8139;
}
.outdoor .a_ttl {
  background-color: #0bc98b;
}
.volunteer .a_ttl {
  background-color: #5f8cf2;
}
.bp .a_ttl {
  background-color: #973cc6;
}
.a_place {
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 1%;
}
@media screen and (max-width: 480px) {
  .spo_box, .vol_box, .out_box, .bp_box {
    display: block;
  }
  .sports .a_box, .volunteer .a_box {
    display: block;
  }
  .sea .a_box, .eat .a_box, .mountain .a_box, .bp .a_box, .outdoor .a_box {
    display: block;
  }
  .a_box li:first-child, .a_box li:last-child {
    width: 100%;
  }
  .a_box li:first-child {
    padding-left: 0;
    margin-bottom: 5%;
  }
  .spo_box li img, .out_box li img, .vol_box li img, .bp_box li img {
    width: 100%;
  }
}
/*==========================
  plan
===========================*/
.plan_area{
	margin-top: 10%;
}
.plan_area ul {
  display: flex;
  width: 100%;
}
.plan_area ul li {
  width: 30%;
  margin: 0 auto 8%;
  display: flex;
	justify-content: center;
}
p.category {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
p.category:before, p.category:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
}
p.category:before {
  left: 0;
}
p.category:after {
  right: 0;
}
.cp_area {
  width: 90%;
  margin: 0 auto 5%;
  background: repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px, #e9f4ff 3px, #e9f4ff 7px);
  padding: 2% 5% 3%;
}
.ttl_cp {
  width: 50%;
  margin: 0 auto;
  max-width: 558px;
}
@media screen and (max-width: 480px) {
  .cp_area {
    text-align: left;
  }
  .ttl_cp {
    width: 100%;
  }
  .plan_area ul {
    display: block;
  }
  .plan_area ul li {
    width: 100%;
  }
}
/*==========================
 more_ifo
===========================*/
.more_info {
  padding: 5%;
  color: #FFF;
}
.more_info a {
  background-color: #FFF;
  width: 60%;
  margin: 10px auto;
  padding: 2%;
  font-size: 16px;
  color: #1c273c;
  display: block;
  text-align: left;
}
.more_info a:hover {
  opacity: 0.8;
}
.more_info a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  display: inline;
  padding-left: 10px;
  color: #1c273c;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .info {
    margin-top: 0;
  }
  .more_info a {
    width: 95%;
    font-size: 14px;
  }
}
/*==========================
  下記固定のお問合せ
===========================*/
@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;
  }
}
/*=========================
	map
==========================*/
.map {
  height: 100%;
}
/*=========================
	copy
==========================*/
.copy_area {
  width: 100%;
  background-color: #FFF3;
  padding: 2%;
  font-size: .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: .7em;
  }
}