@charset "UTF-8";

/*!
 * タイトルなど
 *
 * Copyright (C) ●●など
 */

/*********************************
	ヘッダーの設定
*********************************/

/*------　ヘッダーの設定 -------*/

/* ここにコメントを追記 */

/* ===========================================
 * MAIN
 * ======================================== */

/* sub */
/* ======================================== */

/* カラースキームの定義 */
:root {
  --primary-color: #113966;
  /* 濃い青色 */
  --secondary-color: #cde4ff;
  /* 明るい青色 */
  --text-color: #000;
  /* 文字色＝黒色 */
  --background-color: #fff;
  /* 背景＝白色 */
}

/* CSS変数を使用して色を指定 */
body {
  background-color: var(--primary-color);
  background-color: var(--secondary-color);
  background-color: var(--text-color);
  background-color: var(--background-color);

  color: var(--primary-color);
  color: var(--secondary-color);
  color: var(--text-color);
}

a {
  color: var(--text-color);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* スマホ揺らぎ確認用CSS */
/* *,
*::after,
*::before {
  outline: 1px solid rgb(234, 4, 234);
  opacity: 1 !important;
} */

body {
  background-color: #ffffff;
}

a {
  text-decoration: none;
}

img {
  width: 100%
}

ul, li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* ボタンCSSリセット */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* コピペ用コード */
.font-size-dummy {
  font-size: .75rem;
  /* 12px */
  font-size: .8125rem;
  /* 13px */
  font-size: .875rem;
  /* 14px */
  font-size: 1rem;
  /* 16px */
  font-size: 1.25rem;
  /* 20px */
  font-size: 1.75rem;
  /* 28px */
}

/* スマホ用コード */
.pc {
  display: none;
}

.sp {
  display: block;
}

header {
  width: 100%;
  /* height: 100vh; */
  /* padding: 10px 30px; */
  /* background-color: #9a493f; */
  position: fixed;
  z-index: 9999;
}



/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(154, 73, 63, 0.9);
  text-align: center;
  width: 100%;
  height: 100vh;
  position: relative;
  /* opacity: 0; */
  display: none;
  transition: opacity .6s ease, visibility .6s ease;
}

nav.globalMenuSp .menu {
  width: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  /* opacity: 100; */
  display: block;
}

nav.globalMenuSp.active h1 {
  color: #ffffff;
  font-size: 6vw;
}




@media screen and (min-width:640px) {
  /* sm: min-width:640px; */
}

@media screen and (min-width:768px) {
  /* md: min-width:768px;
  iPad/mini/air */

  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}

@media screen and (min-width:1024px) {
  /* lg: min-width:1024px;
  iPad Pro 12.9*/

  header {
    width: 100%;
    padding: 10px 30px;
    background-color: #9a493f;
    position: fixed;
    z-index: 9999;
  }

  header .pc {
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;

  }

  header .pc .logo h1 a {
    color: #ffffff;
  }

  header .pc nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header .pc nav ul li {
    padding: 0 10px;
    border-left: 1px solid #d3d3d3;
  }

  header .pc nav ul li:last-child {
    border-right: 1px solid #d3d3d3;
  }

  header .pc nav ul li a {
    font-size: 0.875vw;
    color: #ffffff;
  }

  header .pc nav ul li a:hover {
    opacity: .6;
  }
}

@media screen and (min-width:1280px) {
  /* xl: min-width:1280px;
  Android Tablet　Fire HD 10 10インチ*/
}