@charset "utf-8";
/* 共通ソース 
--------------------------------------------------
・ヘッダー・フッターなど各ページ共通ソースです
・下部ディレクトリの共通ソース（キービジュアル等）も含みます
・２ページ以上またぐソースは全てこちらに記述します
--------------------------------------------------
*/
* {
  box-sizing: border-box;
}
body {
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 3.75vw;
  width: 100%;
  background-image: url(../img/common/cmn--bg--sp.svg);
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: center;
}
.wrap {
  overflow: hidden;
}

/* PC / SP 表示切り替え */
.pc--blc {
  display: none;
}
.sp--blc {
  display: block;
}
@media screen and (min-width: 560px) {
  body {
    background-image: url(../img/common/cmn--bg--tab.svg);
    background-size: 100% auto;
  }
  .pc--blc {
    display: block;
  }
  .sp--blc {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  body {
    font-size: 14px;
    background-image: url(../img/common/cmn--bg.svg);
    background-size: 1920px auto;
  }
}
/* テキストに関するCSS
--------------------------------------------------
・classの先頭は全て text—- を付ける
・テキストカラー → text—-xxx（カラー名　例：text—-white）
・テキストサイズ → text—-xxx（サイズ　例：text—-12）
・フォントは → text—-xxx（フォント名　例：text—-serif）
・基本（pタグ）は14pxにて指定
--------------------------------------------------
 */
a {
  color: #333;
}
p {
  font-size: 3.5vw;
}
h1,
h2,
h3 {
  font-weight: 300;
}
.text—-white {
  color: #fff;
}
.text—-bk {
  color: #333;
}
.text—-blue {
  color: #186cae;
}
.text--margin {
  display: block;
  margin-bottom: 3vw;
}

/* 
横幅指定CSS
--------------------------------------------------
・wid—-（数字）にて記述（例：幅1000px指定の場合、wid--1100）
※ SP幅（768px未満）になると、全てwidth:95%;になる
--------------------------------------------------
*/
.wid—-960 {
  width: 95%;
  margin: 0 auto;
}

@media screen and (min-width: 560px) {
  .wid—-960 {
    width: 100%;
    max-width: 1000px;
  }
  .text--margin {
    margin-bottom: 10px;
  }
  p {
    font-size: 14px;
  }
}

/* 
ボタンのCSS
--------------------------------------------------
class に cmn-—btn を付与で全ページ共通のボタンサイズを指定
※ TOP、観光情報ページのみ、別サイズ指定あり
・ボタンカラー → cmn--btn-—color-—xxx（例：cmn--btn-—color-—　文字色も合わせて指定）
※ SP幅（768px未満）に応じて、相対値で指定される
--------------------------------------------------
*/
.cmn--btn {
  font-size: 3.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: solid 1px #333;
  transition: all 0.3s;
}
.cmn--btn:hover {
  color: #fff;
  background: #333;
  border: solid 1px #333;
}
.cmn--btn::after {
  content: "";
  width: 5vw;
  height: 5vw;
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  transform: rotate(-45deg);
}
.cmn--btn:hover::after {
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
}

@media screen and (min-width: 560px) {
  .cmn--btn {
    font-size: 14px;
    background: #fff;
    border: solid 1px #333;
    height: 40px;
  }
  .cmn--btn::after {
    content: "";
    width: 7px;
    height: 7px;
  }
}

/* 
--------------------------------------------------
ヘッダー
--------------------------------------------------
 */
header {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
}
header ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header li {
  width: 50%;
}
header li a {
  display: block;
  height: 18vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header li:first-child a {
  background: #fff;
}
header li:last-child a {
  color: #fff;
  background: #186cae;
}
header li a::before {
  content: "";
  display: block;
  background-size: cover;
}
header li:first-child a::before {
  background: url(../img/common/cmn--icon--01.svg) no-repeat;
  width: 7vw;
  height: 7vw;
  margin-right: 3vw;
}
header li:last-child a::before {
  background: url(../img/common/cmn--icon--02.svg) no-repeat;
  width: 8vw;
  height: 8vw;
  margin-right: 3vw;
}

@media screen and (min-width: 560px) {
  header {
    top: 0;
    bottom: auto;
    background: rgba(255, 255, 255, 0.9);
  }
  header ul {
    height: 60px;
    width: 95%;
    margin: 0 auto;
    justify-content: flex-start;
  }
  header li {
    width: auto;
    font-size: 18px;
  }
  header li a {
    display: block;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header li:first-child a {
    background: none;
  }
  header li:nth-child(2),
  header li:nth-child(4) {
    margin: 0 10px;
  }
  header li a::before {
    display: none;
  }
  header li:last-child {
    margin-left: auto;
  }
  header li:last-child a {
    width: 250px;
    color: #333;
    background: rgba(255, 255, 255, 0);
  }
  header li:last-child a::after {
    right: 10px;
  }
}

/* 
--------------------------------------------------
メインコンテンツ
--------------------------------------------------
*/
.cmn--content--wrap {
  border-top: solid 1px rgb(34, 24, 20, 0.1);
}
.cmn--content--wrap:last-child {
  border-bottom: solid 1px rgb(34, 24, 20, 0.1);
}
.cmn--content--inner {
  width: 95%;
  margin: 0 auto;
}
@media screen and (min-width: 560px) {
  .cmn--content--inner {
    width: 100%;
    max-width: 1000px;
  }
}

/* 
--------------------------------------------------
フッター
--------------------------------------------------
*/
footer {
  text-align: center;
  margin-bottom: 18vw;
  font-size: 3vw;
  padding: 5vw 0;
}
footer p {
  margin-bottom: 2.5vw;
}
footer li {
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 560px) {
  footer {
    font-size: 12px;
    padding: 15px 0;
    margin-bottom: 0;
  }
  footer p {
    margin-bottom: 10px;
  }
  footer li {
    margin-bottom: 7.5px;
  }
}
