@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  color: #333333; /* RGB */
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.0rem;
  line-height: 2.0rem;
  background-color: #FFF;
  overflow-x: hidden;
}
main{
  overflow-x: hidden;
}
h1 {
  font-size: clamp(20px, 1.3vw, 30px);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6rem;
}
h2 {
  font-size: clamp(28px, 1.8vw, 40px);
  font-weight: 500;
}
h3 {
  font-size: clamp(26px, 1.6vw, 36px);
  font-weight: 500;
}
p {
  font-size: clamp(16px, 1.0vw, 18px);
}
.none {
  display: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
/*ここからヘッダーとグローバルナビゲーションについて*/
#header h1 {
  display: none;
}
nav {
  position: fixed;
  overflow: auto;
  width: 21.88vw;
  height: 100%;
  z-index: 2;
}
nav ul {
  width: 60%;
  margin: 0 auto;
  padding-top: 60px;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 5.5rem;
  color: #2C5169;
}
nav img {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}
@media(max-width: 1200px) {
  #header {
    width: 100vw;
    background: #FFF;
    color: #5D92B1;
    text-align: left;
    padding: 20px 30px;
  }
  #header h1 {
    display: block;
  }
  nav ul {
    width: 100%;
    padding-top: 50px;
    font-size: clamp(24px, 1.4vw, 30px);
  }
  nav img {
    width: 25%;
    height: auto;
    margin-bottom: 10px;
  }
  #g-nav {
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #5D92B1;
    transition: all 0.3s;
  }
  #g-nav.panelactive {
    opacity: 1;
    z-index: 999;
  }
  #g-nav ul {
    display: none;
    position: absolute;
    z-index: 999;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
  #g-nav.panelactive ul {
    display: block;
  }
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav li a {
    color: #FFF;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  @media(max-width: 600px) {
    nav img {
      width: 40%;
      height: auto;
      margin-bottom: 10px;
    }
	#g-nav ul {
	padding-top: 0;
    transform: translate(-50%, 10%);
  }
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn1 {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 80px;
    height: 80px;
  }
  .openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #5D92B1;
    width: 45%;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 12px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
    background-color: #FFF;
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 12px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
    background-color: #FFF;
  }
}
/*-----ここからフッタ-----*/
footer {
  position: relative;
}
.footer-inner {
  margin-left: 21.88vw;
  text-align: center;
  padding: 150px 0 30px;
  background-color: #5D92B1;
  color: #FFF;
}
footer h2 {
  font-size: 3.0rem;
}
.access img {
  width: 13vw;
}
.access_inner {
  display: flex;
  text-align: left;
  justify-content: space-between;
  width: 52.08vw;
  margin: 80px auto 50px;
}
address {
  font-style: normal;
}
footer span {
  font-size: clamp(18px, 1.0vw, 20px);
  font-weight: 700;
  display: block;
  margin: 20px 0;
}
footer p {
  font-size: clamp(13px, 1.0vw, 16px);
}
iframe {
  width: 52.08vw;
  height: 44.44vh;
}
.kawara4 {
  position: absolute;
  width: 30%;
  left: 0;
  bottom: 40px;
}
small {
  position: absolute;
  color: #2C5169;
  font-size: 1.3rem;
  bottom: 0;
  left: 0;
  width: 21.88vw;
}
@media(max-width: 1200px) {
  .footer-inner {
    margin-left: 0;
    padding: 100px 0 0;
  }
  footer h2 {
    font-size: 2.0rem;
  }
  .access img {
    width: 20vw;
  }
  .access_inner {
    display: flex;
    text-align: left;
    justify-content: space-between;
    width: 90%;
    margin: 80px auto 50px;
  }
  footer span {
    font-size: clamp(18px, 1.0vw, 20px);
    font-weight: 700;
    display: block;
    margin: 20px 0;
  }
  footer p {
    font-size: clamp(13px, 1.0vw, 16px);
  }
  iframe {
    width: 90%;
    height: 44.44vh;
    padding-bottom: 70px;
  }
  .kawara4 {
    width: 38vw;
    bottom: 10px;
  }
  small {
    position: static;
    color: #FFF;
    font-size: 1.1rem;
    width: none;
    text-align: center;
  }
}
@media(max-width: 600px) {
  footer {
    width: 100vw;
  }
  footer h2 {
    font-size: 2.6rem;
  }
  .access_inner {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  .access img {
    width: 100%;
    margin-top: 15%;
  }
  footer span {
    font-size: clamp(20px, 1.3vw, 22px);
    font-weight: 700;
    display: block;
    margin: 4% 0;
  }
  footer p {
    font-size: clamp(16px, 1.2vw, 18px);
  }
  iframe {
    width: 100vw;
    height: 44.44vh;
    margin: 10% 0 2%;
    padding-bottom: 0;
  }
  .kawara4 {
    display: none;
  }
}