@charset "utf-8";

/* =============================================================================
    Style
============================================================================= */

/* Common
============================================================================= */
/* Basis
----------------------------------------------------------------------------- */
html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  font-family: sans-serif;
  font-size: 1.6em;
  letter-spacing: 1px;
}

img {
  max-width: 100%;
}

img[src$=".svg"] {
  transform: translate(0,0); /* svgぼけ防止 */
}

.mbNone {
  display: none !important;
}

/* ------ backToTop ------ */
p#backToTop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 10;
  line-height: 1;
  opacity: 0.72;
}

p#backToTop > a {
  display: block;
  width: 70px;
  height: 70px;
  overflow: hidden;
}

p#backToTop > a:before {
  content: url(../image/icon_backToTop.svg);
}

/* ------ clearfix(float release) ------ */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}


/* Header
----------------------------------------------------------------------------- */
div#header {
  position: fixed;
  z-index: 100;
  width: 100%;
}

div#header:before,
div#header:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

div#header:after {
  content: "";
  z-index: 0;
  opacity: 0.8;
  background: #fff;
}

body.lower div#header:before {
  content: "";
  opacity: 0.03;
  background: url(../image/bg_diagonal.svg);
}

body.lower div#header:after {
  background: #3a7202;
}

div#header > div.wrap {
  position: relative;
  padding: 0 10px;
}

h1#headerLogo,
p#headerLogo {
  position: relative;
  z-index: 100;
  margin: 0 32px 0 0;
}

h1#headerLogo > a,
p#headerLogo > a {
  display: inline-block;
  padding: 12px 0;
}

h1#headerLogo img,
p#headerLogo img {
  height: 24px;
}

div#headerMenu {
  position: absolute;
  top: 8px;
  right: 0;
  z-index: 10;
  width: 100%;
  padding: 32px 0 0;
}

div#headerMenu > p.title {
  position: absolute;
  top: 0;
  right: 10px;
  height: 32px;
  overflow: hidden;
}

div#headerMenu > p.title > img {
  width: 32px;
}

div#headerMenu > ul.menu {
  display: none;
  margin: 2px 0 0;
  border: 1px #3b4433 solid;
  background: #fff;
}

div#headerMenu > ul.menu > li {
  border-top: 1px #3b4433 solid;
}

div#headerMenu > ul.menu > li:first-child {
  border-top: none;
}

div#headerMenu > ul.menu > li > a {
  display: block;
  padding: 0.2em 1em;
  border-right: 3px #618e34 solid;
  border-left: 3px #618e34 solid;
  color: inherit;
  text-decoration: none;
}

div#headerMenu > ul.menu > li > a:hover {
  background: #e2ebda;
}

div#headerMenu > ul.menu > li > a[target="_blank"] {
  display: flex;
  column-gap: 0.2em;
}

div#headerMenu > ul.menu > li > a[target="_blank"] img {
  margin-top: -3px;
}

div#headerMenu[data-visible="true"] > p.title > img {
  margin: -32px 0 0;
}

/* Footer
----------------------------------------------------------------------------- */
div#footer {
  margin: 80px 0 0;
}

div#footer > div.wrap {
  padding: 20px 10px 30px;
  border-top: 1px #3e4d2e solid;
}

div#footer div.part {
  position: relative;
  padding: 0 0 20px;
}

div#footer div.part p.name {
  margin: 0 0 3px;
  font-size: 2.6rem;
}

div#footer div.part p.address {
  float: left;
  margin: 0 130px 0 0;
  font-size: 1.6rem;
}

div#footer div.part p.map {
  position: absolute;
  bottom: 20px;
  right: 10px;
}

div#footer div.part p.map > a {
  display: block;
  width: 120px;
  height: 30px;
  overflow: hidden;
}
div#footer div.part p.map > a:before {
  content: "";
  display: block;
  width: 120px;
  height: 30px;
  background: url(../image/footer_button_googleMap.svg) no-repeat left top;
}

div#footer div.part p.map > a:hover:before {
  background-position: left -30px;
}

div#footer dl.address {
  box-sizing: border-box;
  padding: 20px 0 0;
  border-top: 1px #425232 solid;
}

div#footer dl.address > dt {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

div#footer dl.address > dd {
  padding: 0.3em 0 0.3em 40px;
  font-size: 1.6rem;
  letter-spacing: 0;
}

div#footer dl.address > dd.tel {
  margin: 0 0 10px;
  background: url(../image/footer_icon_tel.svg) no-repeat left center;
}

div#footer dl.address > dd.mail {
  background: url(../image/footer_icon_mail.svg) no-repeat left center;
}

p#copyright {
  position: relative;
  padding: 5px 0;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  background: #3e4d2e;
}

p#copyright:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.03;
  background: url(../image/bg_diagonal.svg);
}


/* MainContents
----------------------------------------------------------------------------- */
div#main {
  margin: 0 10px;
  padding: 36px 0 0;
}

div#topImage {
  position: relative;
  padding: 47.7% 0 0;
  background: url(../image/index_topImage.jpg) no-repeat ;
  background-size: cover;
}

div#main section > h1.title {
  margin: 20px 0;
  font-size: 2.6rem;
}

div#main section > h2.title {
  margin: 0 0 10px;
  font-size: 2rem;
}

p.banner {
  margin: 30px 0;
  border: 1px #3b4433 solid;
  text-align: center;
}

p.banner > a {
  display: block;
  padding: 38px 10px;
  border-left: 10px #618e34 solid;
  border-right: 10px #618e34 solid;
}

p.banner > a:hover {
  background: #e2ebda;
}

/* ====== introduction ====== */
div.introduction h1.title {
  margin: 0 0 0.5em;
  padding: 0 0 5px;
  border-bottom: 1px solid #000;
  font-size: 2.6rem;
  text-align: center;
}

/* ------- lower ------ */
body.lower div.introduction p.text {
  margin: 0 10px;
}

body.lower div.introduction p.text + p.text {
  margin-top: 1em;
}

body.lower div.introduction ul.image {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

body.lower div.introduction ul.image > li {
  margin: 40px 0 0;
}

body.lower div.introduction ul.image > li.half {
  width: 46.2%;
}

body.lower div.introduction ul.image img {
  max-width: 100%;
  border: 1px solid #465735;
}

/* ====== content ====== */
div.content > p.banner#asobina {
  border: none;
}

div.content p#asobina > a {
  display: block;
  position: relative;
  padding: 20px 0 60px;
  border: none;
}

div.content p#asobina > a::before {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 22px);
  bottom: 2px;
  width: 44px;
  height: 44px;
  border: 2px #c1cfb3 solid;
  border-radius: 5px;
  background: no-repeat center center;
  background-color: #fff;
}

div.content p#asobina > a::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 10px);
  bottom: 12px;
  width: 126px;
  height: 24px;
  background: url(../image/icon_link_external_off.svg) no-repeat;
}

div.content p#commonContact > a {
  position: relative;
}

div.content p#commonContact > a::after {
  content: url(../image/icon_link_arrow.svg);
  position: absolute;
  top: calc(50% - 5px);
  right: -9px;
  line-height: 0;
}

ul.mark > li {
  padding-left: 1em;
  text-indent: -1em;
}

/* ====== anchor ====== */
a[href^="https://yoshikikuremoto.com/"] {
  display: inline-flex;
  align-items: baseline;
  column-gap: 2px;
  padding-right: 2px;
  color: inherit;
  text-decoration: none;
}


/* Page
============================================================================= */
/* Index
----------------------------------------------------------------------------- */
body#index div#topImage > p.move {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
}

body#index div#topImage > p.move > a {
  display: block;
  height: 20px;
  overflow: hidden;
  background: url(../image/topImage_arrow_bottom.svg) no-repeat center -15px;
}

body#index div#topImage > p.move > a:before {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
}

body#index div.introduction {
  margin: 20px 0 0;
  font-size: 2rem;
}

body#index div.content p.link {
  margin-top: 30px;
}

body#index div.link {
  margin: 90px 0 0;
}

body#index div.link p.linkBanner + p.linkBanner {
  margin-top: 30px;
}

/* Company
----------------------------------------------------------------------------- */
body#company div#topImage {
  padding-top: 61.3%;
  background-image: url(../image/company_topImage.jpg);
}

body#company dl.company > dt,
body#company dl.company > dd {
  padding: 0.5em;
}

body#company dl.company > dt {
  background: #e9f5e8;
}

body#company iframe {
  width: 100%;
  height: 250px;
}

body#index div.link a.more {
  display: block;
  position: relative;
  padding: 0 0 70px;
}

body#index div.link a.more:hover {
  background-color: #e2ebda;
}

body#index div.link a.more::before {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 70px);
  top: 74%;
  width: 44px;
  height: 44px;
  border: 2px #c1cfb3 solid;
  border-radius: 5px;
  background: no-repeat center center;
  background-color: #fff;
}

body#index div.link a.more::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 70px + 17px);
  top: calc(74% + 16px);
  width: 124px;
  height: 15px;
  background: url(../image/icon_link_inside_off.svg) no-repeat;
  background-size: contain;
  transition: content 500ms;
}

body#index div.link > div.block {
  margin: 0 0 80px;
}

body#index div.link > div.block > a {
  display: block;
  margin: 0 0 40px;
  padding: 0 0 80px;
  color: inherit;
  text-decoration: none;
  background: no-repeat center top;
}

body#index div.link > div.block > a::before {
  top: auto;
  bottom: 12px;
}

body#index div.link > div.block > a::after {
  top: auto;
  bottom: 28px;
}

body#index div.link > div.block > a > dl.link {
  margin: 10px 0 0;
  text-align: center;
}

body#index div.link > div.block > a > dl.link::before {
  content: "";
  display: block;
  line-height: 0;
  margin: 0 0 10px;
  padding: 65.2% 0 0;
  border: 1px solid #465735;
  background: no-repeat top center;
  background-size: cover;
}

body#index div.link > div.block > a > dl.link > dt {
  position: relative;
  overflow: hidden;
  margin: 0 0 10px;
}

body#index div.link > div.block > a > dl.link > dd {
  position: relative;
  overflow: hidden;
}

body#index div.link > div.block > a > dl.link > dt > img,
body#index div.link > div.block > a > dl.link > dd > img {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 0;
  height: 0;
}

body#index div.link > div.block > a#bagjump > dl.link::before {
  background-image: url(../image/index_link_bagjump_image.jpg);
}

body#index div.link > div.block > a#bagjump > dl.link > dt::after {
  content: url(../image/index_mb_link_bagjump_title.svg);
  margin: 0 auto;
}

body#index div.link > div.block > a#bagjump > dl.link > dd::after {
  content: "\0030de\0030a6\0030f3\0030c6\0030f3\0030d0\0030a4\0030af\003001\0042\004d\0058\003067\00306e\0030a8\0030a2\0030c8\0030ea\0030c3\0030af\00306e\007df4\007fd2\00306b";
}

body#index div.link > div.block > a#observation > dl.link::before {
  background-image: url(../image/index_link_observation_image.jpg);
}

body#index div.link > div.block > a#observation > dl.link > dt::after {
  content: url(../image/index_mb_link_observation_title.svg);
  margin: 0 auto;
}

body#index div.link > div.block > a#observation > dl.link > dd::after {
  content: "\006c17\008c61\003084\0081ea\007136\0074b0\005883\00306b\004fc2\00308b\008a08\006e2c\006a5f\005668\00306e\0030b3\0030f3\0030b5\0030eb\0030c6\0030a3\0030f3\0030b0\00304b\003089\008ca9\0058f2\003001\007ba1\007406\00307e\003067";
}

body#index div.link a.more#consulting::before {
  top: auto;
  bottom: 12px;
}

body#index div.link a.more#consulting::after {
  top: auto;
  bottom: 28px;
}

body#index div.link a.more#consulting > span {
  overflow: hidden;
  position: relative;
}

body#index div.link a.more#consulting > span::after {
  content: "";
  display: block;
  padding: 20% 0 0;
  border: 1px solid #465735;
  background: url(../image/index_mb_link_consulting.jpg) no-repeat;
  background-size: cover;
}

body#index div.link a.more#consulting > span > img {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 0;
  height: 0;
}

/* Contact
----------------------------------------------------------------------------- */
body#contact div#topImage {
  padding-top: 61.3%;
  background-image: url(../image/contact_topImage.jpg);
}

body#contact h1.title + p.text {
  margin: -20px 0 30px 10px;
}

body#contact ul.mark {
  margin: 0 0 80px 10px;
}

body#contact div.contact {
  padding: 20px 20px 35px;
  background: #e9f5e8;
}

body#contact div.contact > h2.title {
  font-size: 2rem;
  border-bottom: 2px #3e4d2e solid;
}

body#contact div.contact div.wrap {
  border-bottom: 2px #3e4d2e solid;
}

body#contact div.contact table.contact,
body#contact div.contact table.contact tbody,
body#contact div.contact table.contact tr,
body#contact div.contact table.contact th,
body#contact div.contact table.contact td {
  display: block;
}

body#contact div.contact table.contact th {
  padding: 0.5em;
  border-top: 1px #818f77 solid;
}

body#contact div.contact table.contact tr:first-child th {
  border-top: none;
}

body#contact div.contact table.contact td {
  padding: 0 0.5em 0.5em;
}

body#contact div.contact table.contact input[type="text"],
body#contact div.contact table.contact textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 2px 5px;
  border: 1px #3b4433 solid;
}

body#contact div.contact table.contact span.required,
body#contact div.contact table.contact p.error {
  color: #f00;
}

body#contact div.contact p.button {
  margin: 40px 0 0;
  text-align: center;
}

body#contact div.contact h2.title + p.text {
  margin: 20px 40px 0;
}

body#contact label {
  display: block;
}

body#contact input.button {
  padding: 8px 18px;
  border: 3px #618e34 solid;
  box-shadow: 1px 2px 0 #3e4d2e;
  color: #fff;
  background: #618e34;
}

body#contact input.button.back {
  color: #618e34;
  background: #fff;
}

body#contact div.confirm {
  margin: 40px 0 0;
  text-align: center;
}

body#contact div.confirm > form {
  display: inline-block;
}

body#contact div.confirm > form:first-child {
  margin: 0 30px 0 0;
}


/* BAGJUMP
----------------------------------------------------------------------------- */
body#bagjump div#topImage {
  padding-top: 61.3%;
  background-image: url(../image/bagjump_topImage.jpg);
}


/* 気象観測装置
----------------------------------------------------------------------------- */
body#observation h1#topImage {
  overflow: hidden;
  padding: 48px 0 0;
  text-align: center;
  background: #a1d8e6;
}

body#observation h2.title {
  margin: 50px 0 12px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

body#observation ul.point {
  margin: 30px auto 0;
}

body#observation ul.point > li {
  margin: 0 0 0 -20px;
}

body#observation ul.point > li > img {
  height: 22px;
}

body#observation h3.subTitle {
  margin: 70px 0 5px;
  font-size: 2rem;
  font-weight: bold;
}

body#observation p.outline {
  margin: 0;
}

body#observation div.outline {
  margin: 20px 0;
}

body#observation div.outline > dl {
  position: relative;
  margin: 0 0 50px;
  background: no-repeat top center;
}

body#observation div.outline > dl > dt {
  margin: 0 0 5px;
  border-bottom: 1px #000 dashed;
  font-size: 1.8rem;
  font-weight: bold;
}

body#observation div.outline > dl.local {
  padding: 270px 0 0;
  background-image: url(../image/observation_outline_local.jpg);
}

body#observation div.outline > dl.station {
  padding: 150px 0 0;
  background-image: url(../image/observation_outline_station.jpg);
}

body#observation div.outline > dl.server {
  padding: 132px 0 0;
  background-image: url(../image/observation_outline_server.jpg);
}

body#observation div.outline > dl.server > dt {
  padding: 0 0 0 10em;
}

body#observation div.outline > dl.server > dt:first-child {
  margin-bottom: -2.8em;
  padding-left: 0;
  border: none;
}

body#observation div.outline > dl.device {
  padding: 225px 0 0;
  background-image: url(../image/observation_outline_device.jpg);
}

body#observation h3.border {
  position: relative;
  margin: 0 0 24px;
}

body#observation h3.border::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: calc(100% - 166px);
  height: 3px;
  margin: -1.5px 0 0 166px;
  background: #0075c2;
}

body#observation h3.border > img {
  position: relative;
}

body#observation ul.basis > li {
  margin: 0 0 32px;
}

body#observation ul.basis > li > img {
  height: 40px;
}

body#observation h3.option,
body#observation h4.strip {
  margin: 0 0 24px;
}

body#observation h3.option > img,
body#observation h4.strip > img {
  height: 40px;
}

body#observation ul.sensor > li {
  margin: 0 0 10px;
}

body#observation p.customize {
  display: table;
  margin: 32px auto 65px;
}

body#observation div.survey > p.surveyImage {
  margin: 0 0 20px;
  text-align: center;
}

body#observation div.survey h5 {
  margin: 0 0 5px;
  font-size: 2rem;
  font-weight: bold;
}

body#observation div.survey p.text {
  margin: 0;
}

body#observation p.version {
  margin: 30px 0 0;
  text-align: right;
}

body#observation div.content {
  margin: 80px 0 0;
}

body#observation div.content p.banner {
  margin-top: 30px;
}


/* アウトドアアクティビティ事業コンサルティング事業
----------------------------------------------------------------------------- */
body#consulting div#topImage {
  padding-top: 61.3%;
  background-image: url(../image/consulting_topImage.jpg);
}

body#consulting div.introduction h2.title {
  margin: 50px 1em 1em;
  padding: 0 0 0.2em;
  border-bottom: 1px solid #000;
}

body#consulting div.introduction div.imageBlock {
  margin: 0 1em;
}

body#consulting div.introduction div.imageBlock > dl.image {
  display: flex;
  flex-direction: column;
  margin: 0 0 50px;
}

body#consulting div.introduction div.imageBlock > dl.image > dt {
  display: table;
  order: 1;
  margin: 0.5em auto 0;
}

body#consulting div.introduction div.imageBlock > dl.image > dd {
  order: 0;
  text-align: center;
}

body#consulting div.introduction div.imageBlock > dl.image > dd > img {
  border: 1px solid #465735;
}

body#consulting div.introduction ul.markList {
  margin: 0 1em;
}

body#consulting div.introduction ul.markList > li {
  margin: 0 0 0 1em;
  text-indent: -1em;
}

body#consulting div.introduction ul.markList + p.text {
  margin: 50px 1em 0;
}
