@charset "UTF-8";

:root {
  --main-color: #25a4de;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 10px; }
body { color: #111; font-family: "Noto Sans JP", sans-serif; font-size: 1.6rem; font-optical-sizing: auto; font-weight: 500; font-style: normal; line-height: 1.6; -webkit-text-size-adjust: 100%; }
img { border: 0; vertical-align: top; transition: all .3s ease; -ms-interpolation-mode: bicubic; }
button { background: transparent; border: none; appearance: none; cursor: pointer; outline: none; }
a { transition: all .3s ease; }
a:link { color: #; text-decoration: none; }
a:visited { color: #; text-decoration: none; }
a:hover { color: #; text-decoration: underline; }
a:hover img { opacity: 0.8; }

@media screen and (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
}

/* --------------------------------------------------
  汎用クラス
-------------------------------------------------- */

.d-block { display: block; }
.d-flex { display: flex; }
.d-none { display: none; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.clearfix::after { content: ''; display: block; clear: both; }

/* --------------------------------------------------
  ヘッダ
-------------------------------------------------- */

#globalHeader {
  padding: 0 50px;
}
#globalHeader .inner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#globalHeader h1 {
  font-size: 100%;
}
#globalHeader .logo {
  width: 288px;
}
#globalNavi ul {
  list-style: none;
  display: flex;
  gap: 40px;
}
#globalNavi a {
  color: #111;
  font-size: 1.8rem;
  font-weight: 600;
}
#globalNavi a:hover {
  color: var(--main-color);
  text-decoration: none;
}
#sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  #globalHeader {
    padding: 20px 40px;
  }
  #globalHeader .inner {
    height: auto;
    position: relative;
  }
  #globalNavi {
    padding: 40px;
    width: 50vw;
    height: 100vh;
    background: var(--main-color);
    position: fixed;
    right: -50vw;
    top: 0;
    z-index: 99;
    overflow: auto;
    transition: all .3s;
  }
  #globalNavi ul {
    flex-direction: column;
    gap: 30px;
  }
  #globalNavi a {
    color: #fff;
    font-size: 1.7rem;
  }
  #globalNavi a:hover {
    color: #fff;
  }
  #sp {
    width: 60px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    z-index: 100;
  }
  #sp span {
    width: 40px;
    height: 3px;
    background: var(--main-color);
    display: block;
    transition: all .3s;
  }
  body.on {
    overflow: hidden;
  }
  body.on #sp span {
    background: #fff;
    position: absolute;
  }
  body.on #sp span:nth-of-type(1) {
    transform: rotate(35deg);
  }
  body.on #sp span:nth-of-type(2) {
    display: none;
  }
  body.on #sp span:nth-of-type(3) {
    transform: rotate(-35deg);
  }
  body.on #globalNavi {
    right: 0;
  }
  body.on #overlay {
    height: 100vh;
  }
}

@media screen and (max-width: 768px) {
  #globalHeader {
    padding: 20px;
  }
  #globalHeader .logo {
    width: 200px;
  }
  #globalNavi a {
    font-size: 1.6rem;
  }
}

/* --------------------------------------------------
  フッタ
-------------------------------------------------- */

#globalFooter {
  padding: 100px 0;
  background: var(--main-color);
  color: #fff;
}
#globalFooter .inner {
  margin: 0 auto;
  width: 1200px;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: space-between;
}
#globalFooter ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
#globalFooter li {
  line-height: 1;
  display: flex;
  position: relative;
}
#globalFooter li::after {
  content: '';
  width: 1px;
  height: 100%;
  background: #fff;
  position: absolute;
  right: -13px;
}
#globalFooter li:last-child::after {
  display: none;
}
#globalFooter li a {
  color: #fff;
}
#globalFooter address {
  font-style: normal;
}
#globalFooter address strong {
  font-size: 2.4rem;
  font-weight: 600;
}
#globalFooter address p {
}
#overlay{
  width: 100%;
  height: 0;
  background: rgba(0,0,0,.5);
  position: fixed;
  left: 0;
  top: 0;
}

@media screen and (max-width: 1024px) {
  #globalFooter {
    padding: 80px 0;
  }
  #globalFooter .inner {
    width: 100%;
    flex-direction: column;
  }
  #globalFooter address {
    text-align: center;
  }
  #globalFooter address strong {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  #globalFooter {
    padding: 60px 0;
  }
  #globalFooter .inner {
    flex-direction: row;
    justify-content: center;
  }
  #globalFooter ul {
    display: none;
  }
  #globalFooter address strong {
    font-size: 1.8rem;
  }
}
