@charset "UTF-8";
/*--------------------------------------------------------------
1. Reset
--------------------------------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  /* 10px */
}

body {
  line-height: 1.6;
  width: 100%;
  color: #323232;
  font-family: 'Yu Gothic medium', YuGothic Medium, "游ゴシック", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  background-color: transparent;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

/*----------------------------------------
	HTML5
----------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

/*----------------------------------------
	Text
----------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

pre {
  margin: 1.5em 25px;
  padding: 1em;
  overflow: scroll;
  font-family: 'Yu Gothic medium', YuGothic Medium, "游ゴシック", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  line-height: 1.9;
}

blockquote {
  margin: 1.5em 1px;
  border: 5px solid #9f998f;
  color: #77471c;
  background-color: #f5f5f5;
  background-repeat: repeat-x;
  background-position: left bottom;
}

blockquote[title]::before {
  padding: 0.2em 10px 0.4em 10px;
  content: attr(title);
  display: block;
  color: #fff;
  background-color: #9f998f;
  font-weight: bold;
}

blockquote[cite]::after {
  margin: 0.5em 10px;
  content: attr(cite);
  display: block;
  text-align: right;
  font-size: 85%;
}

blockquote * {
  color: #333 !important;
}

em {
  color: #000;
}

pre em {
  font-weight: bold;
  background-image: none;
}

q {
  text-decoration: underline;
}

cite {
  display: block;
  text-align: right;
}

kbd {
  background-color: #f5f5f5;
  font-family: "Osaka|", monospace;
  text-transform: uppercase;
  padding: 0 0.4em;
  border: 1px solid #6a8eaa;
}

del {
  text-decoration: line-through;
}

ins {
  border-top: 10px solid #3cadd6;
  border-bottom: 10px solid #3cadd6;
  border: 7px solid #3cadd6;
  margin: 2em 1px;
  padding: 1px 0;
  display: block;
  text-decoration: none;
}

ins * {
  color: #666 !important;
}

abbr,
acronym {
  border-bottom: 1px dotted #aaa;
  cursor: help;
}

/*----------------------------------------
	List
----------------------------------------*/
ol li {
  margin-left: 1.5em;
}

li,
dt,
dd {
  list-style-type: none;
  list-style-position: outside;
}

ol li {
  list-style: decimal;
}

dt {
  font-weight: bold;
}

/*----------------------------------------
	Anchor
----------------------------------------*/
a {
  color: #323232;
  text-decoration: underline;
  transition: 0.6s;
}

a:hover {
  color: #B4A032;
  text-decoration: none;
}

a:hover img {
  opacity: 0.7;
}

@media screen and (min-width: 640px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

/*----------------------------------------
	Table
----------------------------------------*/
table {
  width: auto;
  border-collapse: collapse;
  table-layout: fixed;
}

/*----------------------------------------
	Form
----------------------------------------*/
form {
  margin: 0 auto;
}

fieldset,
legend {
  border: none;
}

legend {
  display: none;
}

input[type=text],
textarea {
  padding: 0.2em;
  border: 1px solid #d1d1d1;
  background-color: #fff;
}

input {
  line-height: 1.2;
}

select, input, textarea, button {
  vertical-align: middle;
  font-family: 'Yu Gothic medium', YuGothic Medium, "游ゴシック", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  position: relative;
  margin-right: 3px;
  top: 0;
}

input[type="checkbox"],
input[type="radio"] {
  border: none;
  top: -1px;
  top: 0\9;
  margin-right: 2px;
  margin-right: 0\9;
}

input[type=text]:focus,
textarea:focus {
  border: 1px solid #069;
  background-color: #fff;
}

input.button {
  padding: 0;
  border: none;
  background-image: none;
  vertical-align: top;
}

/*----------------------------------------
	Others
----------------------------------------*/
hr {
  border: none;
  border-top: 1px dotted #ccc;
}

img {
  max-width: 100%;
  border: none;
  vertical-align: bottom;
}

/*----------------------------------------
	Common
----------------------------------------*/
header{
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
}
#headerLogo{
  width: 164px;
}
footer{
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80px;
  margin-top: 120px;
  background: #323232;
  color: #fff;
  font-size: 1.4rem;
}
@media (max-width: 639px){
  header{
    height: 15.625vw;
    padding: 0 3.90625vw;
    position: sticky;
    top: 0;
    right: 0;
    z-index: 999998;
  }
  #headerLogo{
    width: 42.70833333vw;
  }
  footer{
    height: 15.625vw;
    margin-top: 19.53125vw;
    font-size: 1.1rem;
  }
}

/*----------------------------------------
	Nav
----------------------------------------*/
#globalMenu ul li a:before{
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#globalMenu ul li:nth-of-type(1) a:before{
  background-image: url("../img/nav1.png");
}
#globalMenu ul li:nth-of-type(2) a:before{
  background-image: url("../img/nav2.png");
}
#globalMenu ul li:nth-of-type(3) a:before{
  background-image: url("../img/nav3.png");
}
#globalMenu ul li:nth-of-type(4) a:before{
  background-image: url("../img/nav4.png");
}
#globalMenu ul li:nth-of-type(5) a:before{
  background-image: url("../img/nav5.png");
}
#globalMenu ul li:nth-of-type(6) a:before{
  background-image: url("../img/nav7.png");
}
@media (min-width: 640px){
  #globalMenu{
    background: #000;
    flex: none;
  }
  #globalMenu figure.logo{
    display: none;
  }
  #globalMenu ul{
    display: -webkit-flex;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: auto;
  }
  #globalMenu ul li{
    flex-grow: 1;
  }
  #globalMenu ul li:not(:first-child){
    margin-left: 8px;
  }
  #globalMenu ul li a{
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 32px;
    padding: 0 12px;
    background: #323232;
    box-sizing: border-box;
    border-radius: 4px;
    color:#fff;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
  }
  #globalMenu ul li a:hover,
  #globalMenu ul li a.current{
    color: #fff;
    background: rgba(180,160,50);
  }
  #globalMenu footer{
    display: none;
  }
  #menu{
    display: none;
  }
}
@media (max-width: 639px){
  #globalMenu{
    display: none;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    background: #000;
    overflow: auto;
  }
  #globalMenu.active{
    height: 100vh;
  }
  #globalMenu .logo{
    display: block;
    width: 59.375vw;
    margin-top: 11.71875vw;
    margin-left: 10.41666667vw;
    margin-bottom: 6.770833333vw;
  }
  #globalMenu ul{
    width: 100%;
  }
  #globalMenu ul li{
    margin-bottom: 2px;
  }
  #globalMenu ul li a{
    display: -webkit-flex;
    display: flex;
    align-items: center;
    width: 100%;
    height: 18.22916667vw;
    padding: 0 5.208333333vw;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    line-height: 1.333333333;
    background: #1E1E1E;
    box-sizing: border-box;
  }
  #globalMenu ul li a:before{
    width: 2.4rem;
    height: 2.4rem;
    margin-left: 1.0em;
    margin-right: 1.0em;
  }
  #globalMenu ul li a:after{
    content:"";
    width: 1.5rem;
    height: 0.85rem;
    margin-left: auto;
    background: url("../img/arrow.png") no-repeat center/contain;
    transform: rotate(-90deg);
  }
  #globalMenu footer{
    margin-top: 1.0em;
  }
  #menu{
    width: 15.625vw;
    height: 15.625vw;
    background: url("../img/menu.svg") no-repeat center bottom/contain;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
  }
  #menu.active{
    background: url("../img/close.svg") no-repeat center bottom/contain;
  }
}

/*----------------------------------------
	PageTop
----------------------------------------*/
#pageTop{
  width: 64px;
  height: 64px;
  position: fixed;
  right: 0;
  bottom: 20px;
  z-index: 9999;
  cursor: pointer;
}
@media (max-width: 639px){
  #pageTop{
    width: 14.58333333vw;
    height: 14.58333333vw;
    right: 0;
    bottom: 10vw;
  }
}

/*----------------------------------------
	Popup
----------------------------------------*/
#popup{
  width: 480px;
  min-height: 380px;
  padding: 38px 0;
  background: #E6E6E6;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 999999;
  transform: translate(-50%,-50%);
  box-sizing: border-box;
  display: none;
}
#popup h1{
  margin-bottom: 20px;
  font-size: 1.8rem;
}
#popup h1 br{
  display: none;
}
#popup p{
  font-size: 1.6rem;
}
#popup p:not(:last-child){
  margin-bottom: 28px;
}
#popup p .small{
  font-size: 1.4rem;
}
#popup [class^="tz"]{
  margin-bottom: 0.5em;
}
#popup .close{
  width: 16px;
  height: 16px;
  background: url("../img/close2.svg") no-repeat center/contain;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
@media (max-width: 639px){
  #popup{
    width: 92.1875vw;
    min-height: 88.54166667vw;
    padding: 7.8125vw 0;
    letter-spacing: -0.01em;
  }
  #popup h1{
    margin-bottom: 4.6875vw;
    font-size: 1.8rem;
  }
  #popup h1 br{
    display: inline;
  }
  #popup p{
    font-size: 1.4rem;
  }
  #popup p:not(:last-child){
    margin-bottom: 4.6875vw;
  }
  #popup p .small{
    font-size: 1.2rem;
  }
  #popup [class^="tz"]{
    margin-bottom: 0.5em;
  }
  #popup .close{
    width: 1.8rem;
    height: 1.8rem;
    background: url("../img/close2.svg") no-repeat center/contain;
    position: absolute;
    top: 3.90625vw;
    right: 3.90625vw;
  }
}

/*----------------------------------------
	Font
----------------------------------------*/
.sans{
  font-family: 'Yu Gothic medium', YuGothic Medium, "游ゴシック", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}
.serif{
  font-family: "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","游明朝",'Yu Mincho',"ＭＳ Ｐ明朝","MS PMincho",serif;
}
strong{
  color: #B4A032;
}

/*----------------------------------------
	Class
----------------------------------------*/
.w100{
  width: 100%;
}
.w50{
  width: 50%;
}
.flex{
  display: -webkit-flex;
  display: flex;
}
.small{
  font-size: 1.4rem;
}
.sup{
  padding-left: 1.0em;
  text-indent: -1.0em;
}
[class^="tz"]{
  display: inline-block;
  min-width: 80px;
  max-width: 150px;
  margin-right: 3px;
  padding: 0 1.4em;
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Yu Gothic medium', YuGothic Medium, "游ゴシック", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 2.4rem;
  white-space: nowrap;
  box-sizing: border-box;
}
[class^="tz"].w100{
  width: calc(100% - 3px);
  max-width: inherit;
}
.tz1{
  background: #C57279;
}
.tz2{
  background: #596BA1;
}
.tz3{
  background: #D0890F;
}
.tz4{
  background: #78468C;
}
.yellow{
  color: #B4A032;
}
.bk{
  color: #323232;
}
.notFound{
  text-align: center;
  font-size: 1.8rem;
  margin: 100px auto 40px;
}
.pagenation{
}
.pagenation ul{
  justify-content: center;
  flex-wrap: wrap;
}
.pagenation ul li{
  margin: 5px;
}
.pagenation ul li a,
.pagenation ul li span,
.pagenation ul li button{
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0 0.25em;
  color: #323232;
  font-size: 1.5rem;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 0.25em;
  background: none;
  cursor: pointer;
}
.pagenation ul li a:hover,
.pagenation ul li span:hover,
.pagenation ul li button:hover{
  color: #fff;
  background: #323232;
  border: 1px solid #323232;
}
.pagenation ul li.current a,
.pagenation ul li.current span,
.pagenation ul li.current button{
  color: #fff;
  background: #323232;
  border: 1px solid #323232;
  cursor: default;
}
@media (min-width: 640px){
  .sp{
    display: none;
  }
}
@media (max-width: 639px){
  .sp{
    display: inherit;
  }
  .pc{
    display: none;
  }
  [class^="tz"]{
    min-width: 23.4375vw;
    max-width: inherit;
    margin-right: 0.2em;
    padding: 0 1.0em;
  }
  [class^="tz"].w100{
    width: auto;
  }
  .notFound{
    text-align: center;
    font-size: 1.6rem;
    margin: 9.375vw auto;
  }
}

.red {
    color: #ff0000;
}
