@charset "UTF-8";
@import url(variables.css);
* {
  box-sizing: border-box;
  line-height: 24px;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
}
body {
  width: 100%;
  height: 100%;
  color: var(--text-color);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  background-color: #fff;
}
body.overflow-hidden {
  overflow: hidden;
}
main {
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}
a {
  text-decoration: none;
  color: inherit;
}
a:focus {
  outline: none;
}
a:not([class]):hover,
a:not([class]):active {
  outline: 0;
  opacity: .5;
  transition: all 0.3s;
}
area:hover,
area:active,
area:focus { 
  border: none;
  outline: 0;
  color: #111;
}
p {
  text-align: justify;
}
h1, h2, h3, h4, h5, h6{
  font-weight: normal;
}
/* 下付き文字 */
sub {
  vertical-align: sub;
  font-size: smaller;
}
/*===============================
テキスト
===============================*/
.text-center {
  text-align: center;
}
.text-ul {
  text-decoration: underline;
}
/*===============================
フレックス
===============================*/
.flex,
.flex-pc,
.flex-jcb,
.flex-ac {
  display: flex;
}
.flex-jcb {
  justify-content: space-between;
}
.flex-ac {
  align-items: center;
}
/*===============================
余白など
===============================*/
.pt32 {
  padding-top: 32px;
}
.pt270 {
  padding-top: 270px;
}
.pc-hidden {
  display: none;
}
.tablet-hidden {
  display: block;
}
.hidden {
  display: none;
}
.sp-br {
  display: inline;
}
@media all and (max-width: 850px) {
  .pt270 {
    padding-top: 0;
  }
}
@media all and (max-width: 768px) {
  .flex-pc {
    display: block;
  }
  .pc-hidden {
    display: inline-block;
  }
  .tablet-hidden {
    display: none;
  }
  .sp-br {
    display: inline-block;
  }
}
@media all and (max-width: 400px) {
  .tablet-hidden {
    display: block;
  }
}
/*============================================
Module
=============================================*/
.md_floatL {
  float: left;
}
.md_floatR {
  float: right;
}
.md_clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden; 
}

/*============================================
Header
=============================================*/
#header {
  position: fixed;
  text-align: center;
  background-color: rgba(0, 0, 0, .8);
  z-index: 9999;
  width: 100vw;
}
#header .wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  height: 120px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
#header .logo img {
  width: 60px;
}
#header .headerBase {
  display: grid;
  width: calc(100% - 150px);
  grid-template-columns: repeat(8, auto) 150px;
  grid-template-rows: 100%;
  column-gap: 32px;
}
#header .menu {
  position: relative;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}
#header .text,
#header .menu .hoverText {
  color: #fff;
  font-family: Brandon_lgt;
  font-size: 0.875em;
  white-space: nowrap;
  letter-spacing: 2px;
}
#header .menu .hoverText {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}
#header .menu .js_hide {
  display: inline;
  visibility: hidden;
}
#header span.request {
	display: block;
	width: 150px;
	height: 40px;
	color: #fff;
	font-size: 1em;
	line-height: 40px;
	background: #FF0000;
}
#header .menu:hover span.request {
  background: #aaa;
}
/* レスポンシブ ハンバーガーメニュー */
.sp-menu {
  display: none;
  position: relative;
}
.sp-menu span {
  display: inline-block;
  transition: all .2s;
  position: absolute;
  left: 0;
  height: 2px;
  background: #fff;
  width: 100%;
}
@media all and (max-width: 1240px) {
  #header .wrapper {
    padding: 0 40px;
  }
  #header .headerBase {
    width: calc(100% - 100px);
    grid-template-columns: repeat(4, auto) 130px;
    grid-template-rows: 50% 50%;
    column-gap: 0;
    height: calc(100% - 40px);
  }
  #header .menu.request {
    grid-column: 5 / 6;
    grid-row: 1 / 3;
    width: 130px;
  }
}
@media all and (max-width: 768px) {
  #header .wrapper {
    height: 122px;
    justify-content: space-between;
    padding: 0 40px;
  }
  .sp-menu {
    display: inline-block;
    width: 50px;
    height: 42px;
  }
  .sp-menu span:nth-of-type(1) {
    top: 0; 
  }
  .sp-menu span:nth-of-type(2) {
    top: 23px;
  }
  .sp-menu span:nth-of-type(3) {
    top: 47px;
  }
  .sp-menu.open span:nth-of-type(1){
    top: 23px;
    transform: rotate(45deg);
  }
  .sp-menu.open span:nth-of-type(2){
    opacity: 0;
  }
  .sp-menu.open span:nth-of-type(3){
    top: 23px;
    transform: rotate(-45deg);
  }
  #header .headerBase {
    position: absolute;
    display: block;
    width: 100vw;
    height: 0;
    top: 0;
    left: 0;
    transform: translateY(122px);
    padding-top: 20px;
    opacity: 0;
    visibility: hidden;
    transition: height .3s;
  }
  #header.is-open .headerBase {
    opacity: 1;
    visibility: visible;
    height: 100vh;
    background-color: rgba(0, 0, 0, .8);
    overflow: hidden;
  }
  #header .menu {
    height: 48px;
  }
  #header .text {
    font-size: 1.5em;
  }
  #header .menu.request {
    font-size: 1em;
    margin-top: 40px;
    width: auto;
  }
}
@media all and (max-width: 550px) {
  #header .wrapper {
    height: 70px;
    padding: 0 30px;
  }
  .sp-menu {
    width: 26px;
    height: 20px;
  }
  .sp-menu span:nth-of-type(1) {
    top: 0; 
  }
  .sp-menu span:nth-of-type(2) {
    top: 10px;
  }
  .sp-menu span:nth-of-type(3) {
    top: 20px;
  }
  .sp-menu.open span:nth-of-type(1){
    top: 10px;
  }
  .sp-menu.open span:nth-of-type(2){
    opacity: 0;
  }
  .sp-menu.open span:nth-of-type(3){
    top: 10px;
  }
  #header .headerBase {
    transform: translateY(70px);
  }
}
/*============================================
pageContent
=============================================*/
.pt-header {
  padding-top: 120px;
  padding-bottom: 68px;
}
#pageContent {
  position: relative;
}
.inner,
.inner--campaign {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.inner--campaign {
  clear: both;
}
@media all and (max-width: 1080px) {
  .inner,
  .inner--campaign {
    padding: 0 40px;
  }
}
@media all and (max-width: 430px) {
  .inner--campaign {
    padding: 0 30px;
  }
}
@media all and (max-width: 400px) {
  .pt-header {
    padding-top: 87px;
  }
  .inner {
    padding: 0 30px;
  }
}
/*============================================
OurSite
=============================================*/

#ourSite {
  background-color: var(--light-gray);
}
.ourSiteBase {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 0 64px;
}
#ourSite .title {
  font-size: 24px;
  font-family: Brandon_lgt;
  margin-bottom: 20px;
}
#ourSite .site {
  display: table-cell;
  width: 210px;
  vertical-align: top;
}
#ourSite .logo {
  display: block;
  width: 210px;
  height: 140px;
  text-align: center;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, .16);
}
#ourSite .require {
  width: 204px;
  padding-left: 17px;
  border-left: 1px solid #ccc;
}
#ourSite .require .logo {
  font-size: 0.875em;
  font-weight: bold;
  color: #444;
}
#ourSite .logo img {
  object-fit: contain;
}
#ourSite .text {
  display: block;
  padding-top: 17px;
  font-size: 0.75em;
  line-height: 16px;
  color: var(--text-color);
  text-align: center;
}

.siteList{
  display: grid;
  grid-template-columns: repeat(4, 210px);
  column-gap: 53px;
	position:relative;
}
@media all and (max-width: 1000px) {
  .ourSiteBase {
    width: 473px;
  }
  .siteList {
    margin: 0 auto;
    grid-template-columns: repeat(2, 210px);
  }
  .site {
    margin: 0 auto;
    padding-bottom: 28px;
  }
}
@media all and (max-width: 768px) {
  .ourSiteBase {
    text-align: center;
  }
  #ourSite .title {
    margin-bottom: 10px;
    text-align: center;
  }
}
@media all and (max-width: 500px) {
  .ourSiteBase {
    width: 100%;
  }
  .siteList {
    grid-template-columns: 1fr;
  }
}
/*============================================
Footer
=============================================*/

#footer {
  position: relative;
  height: 90px;
  color: var(--text-color);
}
.footerBase {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1240px) {
  .footerBase {
    width: 100%;
    padding: 0 40px;
  }
}
#footer .credit {
  font-size: 0.875em;
}
#footer .siteLink {
  text-align: right;
}
#footer .link {
  display: inline-block;
  margin-left: 16px;
  font-size: 0.875em;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footerBase {
    width: 100%;
    margin: 0 auto;
  }
  #footer .link {
    font-size: 0.75em;
  }
}
@media (max-width: 400px) {
  .footerBase {
    padding: 0 30px;
  }
}

/*=============================
ボタン
==============================*/
.back-btn {
  text-align: center;
  margin: 60px 0 90px;
}
.back-btn a {
  position: relative;
  display: inline-block;
  border: 1px solid var(--text-color);
  width: 140px;
  padding: 4px 0 4px 16px;
  font-size: 0.875em;
}
.back-btn a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 0;
  border-color: var(--text-color) transparent transparent transparent;
  border-width: 4px;
  border-style: solid;
  transform: translate(10px, -50%) rotate(90deg);
}
.not-found {
  font-size: 1.25em;
  padding-top: 128px;
  text-align: center;
}
@media all and (max-width: 768px) {
  .not-found{
    font-size: 1em;
  }
}