@charset "UTF-8";
/*
Thema Nmae: Panda
Author: 内田勉
Description: Panda
Version: 0.1
*/
@import url("https://unpkg.com/sanitize.css@11.0.1/sanitize.css");
/* mixin  pcは midium */
html {
  font-size: 6.25%;
  /* -> 1px */
}

/* 変数 */
:root {
  --f1: 30rem;
  --f2: 24rem;
  --f3: 18rem;
  --f4: 15rem;
  --f5: 14rem;
  --f6: 12rem;
}

/* reset */
body,
header,
footer,
main,
nav,
article,
aside,
section {
  display: block;
  font-size: var(--f4);
}

/* 基本 */
body {
  font-family: sans-serif;
  word-break: break-all;
  max-width: 1000px;
  margin: 0 auto;
}

main {
  color: #333;
  padding: 10px;
  padding-top: 50px;
}

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

/* リンクが張ってある画像のみ opacityがかかる */
a img {
  opacity: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a:hover img {
  opacity: 0.7;
}

figure {
  margin: 0;
}

figcaption {
  display: inline-block;
  text-align: left;
  margin: 0.5rem;
}

a {
  color: #5885ff;
  /*    text-decoration: none; */
}

a:hover {
  color: #ff3232;
  opacity: 0.8;
}

h1 {
  font-size: var(--f1);
}

h2 {
  font-size: var(--f2);
}

h3 {
  font-size: var(--f3);
}

h4 {
  font-size: var(--f4);
}

h5 {
  font-size: var(--f5);
}

h6 {
  font-size: var(--f6);
}

p {
  font-size: var(--f4);
  line-height: 1.5;
  /*    text-align: left; */
  padding: 0 1rem;
}

table {
  width: 95%;
  margin: 10px auto;
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  border-radius: 10px 10px 10px 10px;
  background-color: #fcefcc;
  padding: 5px 0px;
  margin: 5px 0px;
}

table th {
  padding: 5px 10px;
  text-align: center;
  white-space: nowrap;
  margin: 5px 0px;
}

table td {
  padding: 5px 10px;
  text-align: left;
}

table tr:nth-child(even) {
  background-color: #ddd;
}

table tr:nth-child(odd) {
  background-color: #eee;
}

dt {
  float: left;
}

dd {
  padding-left: 120px;
}

/* 複数の個所で使うもの */
.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.text-center {
  text-align: center;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

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

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

.m-small {
  margin: 2rem;
}

@media screen and (min-width: 768px) {
  .m-small {
    margin: 10rem;
  }
}

.margin0 {
  margin: 0;
}

.m10px {
  margin: 10px;
}

.mw5per {
  margin-left: 5%;
  margin-right: 5%;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

/* http://ishi-note.com/6814.html */
.fadein {
  opacity: 0;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.fadein-isola {
  opacity: 0;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-transform: translateY(3vh);
      -ms-transform: translateY(3vh);
          transform: translateY(3vh);
}

@media screen and (min-width: 768px) {
  .fadein-isola {
    -webkit-transform: translateY(30vh);
        -ms-transform: translateY(30vh);
            transform: translateY(30vh);
  }
}

/* 右から左に入ってくる */
.slidein-left {
  opacity: 0;
  -webkit-transform: translateX(5vh);
      -ms-transform: translateX(5vh);
          transform: translateX(5vh);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

/* 左から右に入ってくる */
.slidein-right {
  opacity: 0;
  -webkit-transform: translateX(-5vh);
      -ms-transform: translateX(-5vh);
          transform: translateX(-5vh);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*************** 各ページ共通 *********************/
header {
  background-color: #dde;
}

header a {
  text-decoration: none;
  color: #000;
}

/*

footer {
    padding: 4px;
    background-color: darkgray;
    text-align: center;
    color: #333;

    @include mq {

    }
}

footer a {
    color: #666;
    text-decoration: none;

}


footer ul li {
    display: inline;
}
*/
/******************************************
  footer関連
  https://shu-sait.com/footer-menu-yokonarabi/
*******************************************/
.footer-container {
  background-color: #333;
  color: #ccc;
  text-align: center;
  border-radius: 4px 4px 0 0;
}

.footer-container .menu-left,
.menu-center,
.menu-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  margin: 5px auto;
  vertical-align: top;
}

.footer-container ul {
  list-style: none;
  padding: 0;
  line-height: 30px;
}

.footer-container h3 {
  border-bottom: 3px solid #2ac5b3;
  padding: 6px;
}

.footer-container a {
  text-decoration: none;
  color: #ccc;
}

.footer-container a:hover {
  color: red;
}

.footer-container .cmark {
  display: inline;
  padding: 10px;
  border-top: 1px solid gray;
  width: 80%;
  margin: 0 auto;
  color: gray;
}

@media screen and (min-width: 768px) {
  .footer-container .menu-left,
  .menu-center,
  .menu-right {
    display: inline-block;
    width: 25%;
  }
  .footer-container .cpr {
    display: block;
  }
}

/*************************/
.nav-wrapper {
  position: fixed;
  height: 50px;
  z-index: 5;
  background: -webkit-gradient(linear, left top, left bottom, from(#badacb), to(#1b8350));
  background: -o-linear-gradient(#badacb, #1b8350);
  background: linear-gradient(#badacb, #1b8350);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/*
.nav-wrapper >:last-child {
    margin-left: auto;

}
*/
.nav-logo {
  width: 180px;
  margin: 0 0px;
  padding: 0px;
}

.nav-inqury {
  width: 50px;
  margin: 2px 2px;
  padding: 0;
}

.nav-tel {
  width: 50px;
  margin: 2px 2px;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
  /* ボタンの配置位置  */
  position: fixed;
  top: 14px;
  right: 20px;
  /* 最前面に */
  z-index: 20;
  /* ボタンの大きさ  */
  width: 20px;
  height: 20px;
}

/***** 真ん中のバーガー線 *****/
.btn-line {
  display: block;
  /* バーガー線の位置基準として設定 */
  position: relative;
  /* 線の長さと高さ */
  width: 100%;
  height: 4px;
  /* バーガー線の色 */
  background-color: #333;
  -webkit-box-shadow: 0 0  1px #fff;
          box-shadow: 0 0  1px #fff;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/***** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
  content: "";
  /* 基準線と同じ大きさと色 */
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  -webkit-box-shadow: 0 0  1px #fff;
          box-shadow: 0 0  1px #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.btn-line::before {
  /* 上の線の位置 */
  -webkit-transform: translateY(-8px);
      -ms-transform: translateY(-8px);
          transform: translateY(-8px);
}

.btn-line::after {
  /* 下の線の位置 */
  -webkit-transform: translateY(8px);
      -ms-transform: translateY(8px);
          transform: translateY(8px);
}

/***** メニューオープン時 *****/
.btn-line.open {
  /* 真ん中の線を透明に */
  background-color: transparent;
}

.btn-line.open::before,
.btn-line.open::after {
  content: "";
  background-color: white;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.btn-line.open::before {
  /* 上の線を傾ける */
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.btn-line.open::after {
  /* 上の線を傾ける */
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/**************** ここまで、ハンバーガーボタンのスタイリング ****************/
/**************** 以下、メニューのスタイリング ****************/
.menu {
  /* メニューを縦に */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  /* メニューの位置マイナス指定で画面外に */
  right: -40%;
  width: 40%;
  height: 300px;
  background-color: rgba(33, 33, 33, 0.7);
  color: white;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 10;
  margin: 0;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.menu li {
  display: block;
  width: 100%;
  padding-left: 10px;
  font-weight: bold;
}

.menu a {
  display: block;
  padding: 10px 0px;
  margin: 0;
  color: white;
}

.menu a:hover {
  color: #ff3232;
  opacity: 0.8;
}

/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
  position: absolute;
  right: 0;
}

/* 768px以上はハンバーガーボタン非表示 */
@media screen and (min-width: 768px) {
  main {
    padding-top: 0px;
  }
  .btn {
    display: none;
  }
  .nav-wrapper {
    position: relative;
  }
  .menu {
    /* メニューを横に */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
    right: 0;
    width: 0;
    font-size: 16rem;
    text-align: center;
    width: 550px;
    height: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 10;
    background-color: transparent;
    margin-top: 10px;
    padding-right: 0px;
    padding-left: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu li {
    padding-left: 0;
  }
}

/*
@media screen and (min-width: 818px) {
    .menu {
    left: 150px;
}
}

@media screen and (min-width: 868px) {
    .menu {
    left: 200px;
}
}
@media screen and (min-width: 918px) {
    .menu {
    left: 250px;
}
}

@media screen and (min-width: 1000px) {
    .menu {
    left: 300px;
}
}
*/
/**************** ここまで、メニューのスタイリング ****************/
/* パンくずリスト */
.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline;
  /*横に並ぶように*/
  list-style: none;
  font-weight: bold;
  /*太字*/
}

.breadcrumb li:after {
  /* ▶を表示*/
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  padding: 0 0.2em;
  color: silver;
}

.breadcrumb li:last-child:after {
  content: "";
}

.breadcrumb li a {
  text-decoration: none;
  color: #888;
}

.breadcrumb li:first-child a:before {
  /*家アイコン*/
  font-family: "Font Awesome 5 Free";
  content: "\f015";
  font-size: 1.1em;
  color: #094;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

/* home画面(topページ) */
.hero {
  /*親div*/
  position: relative;
  /*相対配置*/
}

.hero p {
  position: absolute;
  /*絶対配置*/
  color: white;
  /*文字は白に*/
  font-weight: bold;
  font-size: 25rem;
  top: 40%;
  left: 50%;
  margin: 0;
  padding: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
  text-shadow: 1px 1px 3px black;
}

@media screen and (min-width: 768px) {
  .hero p {
    font-size: 40rem;
  }
}

.hero-caption {
  width: 100%;
  text-align: center;
  position: absolute;
  /*絶対配置*/
  color: white;
  text-shadow: 1px 1px 3px black;
  font-size: 14rem;
  top: 60%;
  left: 50%;
  margin: 0;
  padding: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .hero-caption {
    font-size: 20rem;
  }
}

.hero img {
  width: 100%;
}

.home-hotel-img {
  border-radius: 5px;
  margin: 4px;
  padding: 1px;
}

/* アコーディオン https://flex-box.net/accordion/ */
.accordion-container {
  position: relative;
  width: 100%;
  border: 1px solid #0079c1;
  border-top: none;
  outline: 0;
  cursor: pointer;
}

.accordion-container .accordion-title {
  display: block;
  position: relative;
  margin: 0;
  padding: 0.625em 0.625em 0.625em 2em;
  font-size: 1.25em;
  font-weight: normal;
  color: #fff;
  background: #000;
  cursor: pointer;
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-container .content-entry.open .accordion-title {
  background-color: #00aaa7;
  color: white;
}

.accordion-container .accordion-title:hover i:before,
.accordion-container .accordion-title:hover i:active,
.accordion-container .content-entry.open i {
  color: white;
}

.accordion-title {
  position: relative;
}

.accordion-title:after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
      transform: rotate(135deg);
}

.accordion-title.open:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
  top: 45%;
}

.accordion-content {
  display: none;
  padding-left: 2.3125em;
}

/* CSS for CodePen */
.accordion-container {
  width: 1000px;
  margin: 1.875em auto;
}

/* 会社概要 company */
.company-tbl table {
  margin: 20px;
}

.company-tbl th {
  background: -webkit-gradient(linear, left top, left bottom, from(#6ab893), to(#1b8350));
  background: -o-linear-gradient(#6ab893, #1b8350);
  background: linear-gradient(#6ab893, #1b8350);
  border: solid 1px #fff;
  color: #fff;
  padding: 10px;
}

.company-tbl td {
  border: solid 1px #fff;
  padding: 10px;
}

.company-img-sp {
  float: right;
  width: 150px;
  margin: 0 10px;
}

.company-tbl-none table {
  padding: 0;
  margin: 0;
  background-color: #eee;
}

.company-tbl-none tr {
  padding: 0;
  margin: 0;
  background-color: #eee;
}

.company-tbl-none th {
  border: none;
  padding: 0;
  margin: 0;
  background-color: #eee;
}

.company-tbl-none td {
  border: none;
  background-color: #eee;
  padding: 0;
  margin: 0;
}

.company-tbl-none table tr:nth-child(even) {
  background-color: #eee;
}

.company-tbl-none table tr:nth-child(odd) {
  background-color: #eee;
}

@media screen and (max-width: 768px) {
  .last td:last-child {
    width: 100%;
  }
  .company-tbl {
    width: 100%;
  }
  .company-tbl th,
  .company-tbl td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
}

/**********************************
    コンセプト concept
***********************************/
@media screen and (min-width: 768px) {
  .concept-img {
    width: 99%;
    border-radius: 4px;
    padding: 5px;
    border: 1px solid #ddd;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 3px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 4px 3px 0 rgba(0, 0, 0, 0.3);
    margin-bottom: 10rem;
  }
}

.concept-img-caption {
  font-size: 12px;
}

.concept-flexbox {
  padding: 0px;
}

@media screen and (min-width: 768px) {
  .concept-flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .concept-flexitem4 {
    padding: 10rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
}

@media screen and (min-width: 768px) {
  .concept-flexitem6 {
    padding: 10rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
  }
}

/* 画像4枚以上向け */
.concept-flexbox-multi {
  padding: 0px;
}

@media screen and (min-width: 768px) {
  .concept-flexbox-multi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: no-wrap;
        flex-wrap: no-wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

/* 画像4枚以上向け */
.concept-flexbox-multi-item {
  padding: 0;
  margin: 10rem 0;
}

@media screen and (min-width: 768px) {
  .concept-flexbox-multi-item {
    margin: 10rem 10rem;
  }
}

.concept-p {
  padding: 2px 10px;
}

.concept-p::first-letter {
  font-size: var(--f2);
  font-weight: bold;
}

.concept-title {
  position: relative;
  padding: 15rem 20rem;
  color: #fff;
  border-radius: 10px;
  background: #094;
}

.concept-title:after {
  position: absolute;
  bottom: -9px;
  left: 30rem;
  width: 0;
  height: 0;
  content: "";
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #094 transparent transparent transparent;
}

/**********************************
    シェアハウス sharehouse
***********************************/
.sharehouse-title {
  background: #094;
  padding-left: 30px;
}

.sharehouse-title:before {
  position: relative;
  top: -10px;
  content: url(http://mazariba.co.jp/panda/img-parts/icon_panda_foot.png);
}

/******************************
    hostel
*******************************/
.hostel-photo {
  max-width: 950px;
  margin: 0 auto;
}

/******************************
    お問い合わせフォーム１
*******************************/
/*
.inqury1 {
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 16rem;
    font-family: sans-serif;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 4px;

  }
  .inqury1 .item {
    display: block;
    overflow: hidden;
    margin-bottom: 10px;
  }
  .inqury1 .item.no-label {
    padding: 5px 0px 5px 60px;
  }
  .inqury1 .item .label {
    float: left;
    padding: 5px;
    margin:0;
  }
  .inqury1 .item .radio-group{
    padding: 5px 0px 5px 60px;
  }
  .inqury1 .item input[type=text],
  .inqury1 .item input[type=email],
  .inqury1 .item textarea {
    display: block;
    margin-left: 60px;
    width: 200px;
    padding: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 13px;
  }
  .inqury1 .item ::placeholder {
    color: #ccc;
  }
  .inqury1 .item textarea {
    outline: none;
    border: 1px solid #ccc;
    resize: vertical;
  }
  input[type=submit] {
    border: none;
    outline: none;
    display: block;
    line-height: 30px;
    width: 160px;
    text-align: center;
    font-size: 13px;
    color: #fff;
    background-color: #696;
    border-bottom: 4px solid #464;
    cursor:pointer;
  
    box-sizing: content-box;
    transition:0.3s ease all
  }
  input[type=submit]:hover{
    border-bottom-width:0;
    transform:translateY(4px)
  }

  .inqury1-required {
      color: red;
      font-size: 10rem;
  }
*/
/*# sourceMappingURL=panda.css.map */