@charset "utf-8";
/* CSS Document */
/*----------------------------------------------------------- reset */
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url('https://fonts.googleapis.com/css2?family=?family=Marcellus&family=Noto+Sans+JP:wght@100;400;700&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');
ul, li {
  list-style: none;
}
a, a:link, a:visited {
  color: #fff;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 769px) {
  .pc {
    display: inline;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
}
@media (min-width: 820px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
* {
  font-family: "Noto Serif JP", serif;
  line-height: 1em;
  letter-spacing: 1px;
  color: #fff;
  box-sizing: border-box;
}
body {
  background: #ffffff;
}
#wrapper {
  width: 100%;
  text-align: center;
}
.contentsDetail {
  max-width: 1200px;
  margin: 0 auto;
}
header {
  width: 100%;
  margin: auto;
  position: fixed;
  top: 0;
  background: #ffffff;
  z-index: 9999;
  border-bottom: 5px solid #000;
}
.headerContents {
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  padding: 10px 0;
}
.headerLeft {
  display: flex;
  justify-content: center;
  align-items: center;
}
.headerLeft .logo img {
  max-height: 90px;
}
.headerLeft .logo {
  display: flex;
}
.headerLeft .logo h1, .headerLeft .logo p {
  font-weight: normal;
  font-size: 11px;
  line-height: 1.6em;
  text-align: left;
  padding: 0 10px;
  color: #fff;
  display: flex;
  align-items: center;
}
.headerRight {
  display: flex;
  flex-flow: column;
  padding: 0;
  justify-content: space-between;
  align-items: flex-end;
}
main {
  padding: 74px 0 0;
}
article {
  background: #000;
}
#articleBox {
  display: flex;
  max-width: 1300px;
  margin: auto;
  padding: 3% 0;
}
#aLeft {
  width: 300px;
  padding: 0 0 0 20px;
}
#aRight {
  width: calc(100% - 320px);
  border-left: 1px solid #705c06;
  padding: 0 0 0 30px;
}
/*----------------------------------------------------------- pageTitle */
#pnkz {
  padding: 176px 20px 0;
  text-align: left;
  font-size: 80%;
  max-width: 1100px;
  margin: auto;
  line-height: 1.4em;
}
#pageTitle {
  padding: 0;
  background: #fff;
}
#pageTitle h1 {
  font-family: "Noto Serif JP", serif;
  padding: 20px;
  font-size: 140%;
  color: #1e74bb;
  font-weight: 600;
  letter-spacing: 5px;
  text-align: center;
  line-height: 1.4em;
}
#pageTitle h1 small {
  font-family: 'Noto Sans JP', sans-serif;
  padding: 10px 0 10px;
  font-size: 100%;
  color: #1e74bb;
  font-weight: 500;
  letter-spacing: 8px;
  display: block;
}
/*----------------------------------------------------------- section共通 */
p {
  font-size: 16px;
  line-height: 1.6em;
}
/*----------------------------------------------------------- MAP部分 */
#mapBox {
  padding: 80px 0;
  text-align: center;
}
#mapBox h2 {
  /* 会社の所在地やアクセスのタイトルスタイル */
}
/* マップの画像または埋め込みコードのコンテナ */
#mapContainer {
  width: 100%;
  margin-top: 30px;
}
/*----------------------------------------------------------- footer */
footer {
  border-top: 5px solid #705c06;
  background: #000;
}
#footer01 {
  padding: 2% 0;
  display: flex;
  justify-content: center;
}
#footer01 .fMenu {
  padding: 10px 1%;
  border-right: 1px solid #705c06;
}
#footer01 p {
  text-align: left;
  font-size: 90%;
  padding: 0 0 0 20px;
}
#footer01 ul li {
  text-align: left;
}
#footer01 ul.first {}
#footer01 ul.first > li > a {
  font-family: 'Noto Sans JP', sans-serif;
  pointer-events: none;
  padding: 0 0 10px;
  display: block;
}
#footer01 ul.sub-menu {}
#footer01 ul.sub-menu > li {}
#footer01 ul.sub-menu > li > a {
  display: block;
  padding: 5px 0;
  font-size: 80%;
}
#footer02 {
  background: #fff;
  padding: 1.5% 0;
}
.footerBox {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.footerBox * {
  color: #000;
}
address {
  font-style: normal;
  display: flex;
  padding: 0 0 10px;
}
address p {
  font-size: 90%;
}
address p:nth-child(1) {
  padding: 0 20px 0 0;
}
.fRight {}
.fRight ul {
  display: flex;
  justify-content: flex-end;
}
.fRight ul li {
  border-right: 1px solid #666;
}
.fRight ul li:last-child {
  border-right: none;
}
.fRight ul li a, .fRight ul li a:link, .fRight ul li a:visited {
  color: #000;
  font-size: 80%;
  padding: 0 10px;
}
/*----------------------------------------------------------- closeBtn */
.closeBtn {
  padding: 20px 20px 50px;
}
.closeBtn a {
  padding: 10px;
  border: 1px solid #999;
  background: #ebe7e7;
  display: block;
  width: 200px;
  margin: auto;
}
/*----------------------------------------------------------- 1280px */
@media screen and (max-width: 1280px) {
  .contentsDetail {
    padding: 0 2%;
  }
  .headerRB {
    padding: 0 50px 0 0;
  }
  .headerContents .win {
    padding: 30px 10px 0 0;
  }
  .information h3, .additionBox h3 {
    font-size: 160%;
  }
  .headerRB .copy {
    display: none;
  }
  #articleBox {
    padding: 3% 2%;
  }
  #footer02 {
    padding: 1.5% 1%;
  }
}
/*----------------------------------------------------------- 1024px */
@media screen and (max-width: 1024px) {
  .headerLeft .logo h1, .headerLeft .logo p {
    display: none;
  }
  .headerContents {
    height: 60px;
    padding: 10px 5px;
  }
  .headerLeft {
    display: flex;
    align-items: center;
  }
  .headerLeft .logo img {
    max-height: 40px;
  }
  .headerRight .cvBtnBox {
    padding: 0 50px 0 0;
  }
  main {
    padding: 60px 0 0;
  }
  #footer01 {
    padding: 2% 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  #footer01 p {
    text-align: center;
    padding: 2% 0 1%;
    flex-basis: 100%;
  }
  #articleBox {
    flex-flow: column;
    flex-direction: column-reverse;
  }
  #aLeft {
    width: 100%;
    padding: 0 0 0 2%;
    border-top: 1px dotted #705c06;
  }
  #aRight {
    width: 100%;
    border-left: none;
    padding: 0 0 5%;
  }
  #pageTitle h1 {
    font-size: 110%;
    letter-spacing: 3px;
  }
  address {
    flex-flow: column;
    align-items: flex-end;
  }
  address p:nth-child(1) {
    padding: 0;
  }
}
/*----------------------------------------------------------- 840px  */
@media screen and (max-width: 840px) {
  #pnkz {
    padding: 90px 20px 0;
  }
  .headerContents {
    justify-content: space-between;
  }
  header .subMenuBox ul li:nth-child(1), header .subMenuBox ul li {
    margin: 0 10px 0 0;
  }
  #footer01 {
    padding: 2%;
  }
  .headerRight {
    display: flex;
    align-items: center;
  }
  #footer01 {
    padding: 2%;
    flex-flow: column;
  }
  #footer01 p {
    text-align: left;
    font-size: 80%;
  }
  #footer01 .fMenu {
    padding: 10px 1%;
    border-right: none;
    border-bottom: 1px solid #705c06;
  }
  .footerBox {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  address {
    flex-flow: column;
    align-items: center;
    padding: 2% 0;
  }
  .fRight ul {
    justify-content: center;
  }
  .btnBox a {
    font-size: 80%;
  }
  .contents {
    margin: 0;
  }
}
/*----------------------------------------------------------- 640px  */
@media screen and (max-width: 640px) {

  #footer02 {
    padding: 5% 3%;
  }
  #footer01 p {
    text-align: left;
    font-size: 80%;
    padding: 5% 3%;
  }
  .fLeft {
    padding: 2% 0 5%;
  }
  .fRight ul {
    padding: 2% 0 2%;
  }
  address p {
    font-size: 80%;
  }
}