@charset "utf-8";
/* CSS Document */

/* ---------- 基本設定　背景・文字 ---------- */
 html, body {
  overflow-x: clip;
 }
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
.none {
  display: none;
}
body {
  color: #433b34;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.8em;
  line-height: 2.4rem;
  text-align: center;
  background-color: #fcfcfc;
}
h1 {
  font-size: 2.0rem;
  line-height: 3.0rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
}
h2 {
  color: #01598A;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
}
p {
  color: #433b34;
  font-size: 1.6rem;
  line-height: 2.9rem;
}
a:hover {
  opacity: 0.5;
}
.container {
  display: flex;
  width: 100%;
}
main {
  width: 80vw;
}
@media(max-width:1200px) {
  body {
    width: 100%;
    font-weight: 400;
    font-size: 1.4em;
    line-height: 2.6rem;
  }
  h1 {
    font-size: 1.8rem;
    line-height: 2.7rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
  }
  h2 {
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
  }
  p {
    font-size: 1.4rem;
    line-height: 2.6rem;
  }
  .container {
    display: block;
  }
  main {
    width: 100%;
  }
}

/* ---------- ヘッダー 基本設定---------- */
.header {
  height: 100%;
  width: 20vw;
  min-width: 280px;
  background: linear-gradient(0deg, #fcfcfc, #53A6B8);
  background-size: cover;
  position: sticky;
  top: 0;
  z-index: 9999;
}
.header-logo {
  width: 160px;
  margin: 80px auto 60px;
}
.header-navigation > ul {
  display: block;
}
.header-navigation > ul > li {
  margin-bottom: 30px;
  transition: all 0.3s;
}
.sns-icon {
  width: 30px;
  margin: 30px;
}
@media(max-width:1200px){
  .header {
  width: 100%;
}
}

/* ---------- ヘッダー　ドロップダウンメニュー ---------- */
@media(min-width:1200px) {
  .nav-dropdown-menu {
    display: flex;
    justify-content: center;
  }
  .nav-dropdown-lists {
    visibility: hidden;
    width: 300px;
    position: absolute;
    left: 20vw;
    text-align: center;
    transition: all 0.3s;
    opacity: 0;
  }
  .nav-dropdown-menu:hover .nav-dropdown-lists {
    visibility: visible;
    opacity: 1;
  }
  .nav-dropdown-menu-title:hover{
    opacity: 0.5;
  }
  .nav-dropdown-list {
    background-color: rgba(252, 252, 252, 0.8);
    height: 60px;
    padding-top: 30px;
    margin-left: 30px;
  }
  .nav-dropdown-list::before{
    content: '';
    position: absolute;
    top: 30px;
    left: 23px;
    transform: translateX(-50%);
    border-right: 15px solid rgba(252, 252, 252, 0.8);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }
.nav-dropdown-list a {
  display: block;
  height: 100%;
  width: 100%;
  color: #433b34;
  font-weight: 600;
  text-decoration: none;
}

}


/* ---------- ヘッダー　ハンバーガーメニュー ---------- */
@media(max-width:1200px) {
  #nav-drawer {
    padding: 30px 15px 0 0;
    text-align: right;
    position: relative;
    z-index: 999;
  }
  #nav-open {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
  }
  #nav-open span {
    position: fixed;
    top: 25px;
    right: 25px;
    height: 40px;
    width: 40px;
    content: url("../images/icon/shell_icon.png");
    display: block;
  }
  #nav-close {
    z-index: 30px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #433b34;
    opacity: 0.5;
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 70%;
    max-width: 300px;
    height: 100%;
    background-color: #f6f8f3;
    text-align: center;
    padding: 30px 0 0;
    transform: translateX(110%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px #433b34;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateX(0%)
  }
  .header {
    height: 120px;
    width: 100%;
    background-image: url("../images/accent/wave_bg.png");
    background-size: contain;
    background-repeat: repeat-x;
    position: fixed;
    top: 0;
    margin: 0;
    z-index: 999;
  }
  .header-logo {
    height: 80px;
    width: 80px;
    position: absolute;
    top: 15px;
    left: 15px;
    margin: 0;
  }
  .nav-logo {
    display: block;
    margin: 0 auto;
    text-align: center;
    height: 80px;
    width: 80px;
  }
  .header h1 {
    font-size: 1.4rem;
    color: #01598A;
    padding-bottom: 5px;
    margin: 30px 50px 10px;
    border-bottom: solid 1px #01598A;
  }
  .header h2 {
    display: none;
  }
  .header ul li {
    display: block;
    margin: 10px 0 0;
  }
  .header ul li a {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;
    color: #433b34;
  }
  .sns-icon {
  width: 20px;
  margin: 20px;
}
  .main {
    width: 100%;
  }
}
@media(max-width:550px){
    .header {
    background-size: cover;
  }
}



/* ---------- ページタイトル ---------- */
.section-title {
  width: 100%;
  height: 150px;
  background-image: url("../images/accent/wave_bg.png");
  background-repeat: repeat-x;
  background-size: contain;
  position: sticky;
  top: 0;
  z-index: 999;
}
.section-title h1 {
  padding-top: 50px;
}
.pankuzu-list ol {
  list-style: none;
  text-align: left;
  margin: 30px 0 0 30px;
  font-size: 1.4rem;
}
.pankuzu-list ol li {
  display: inline-block;
}
.pankuzu-list ol li::after {
  content: '  >  ';
}
.pankuzu-list ol li:last-child::after {
  content: '';
}
.pankuzu-list a {
  color: #433b34;
  text-decoration: none;
}
@media(max-width:1200px){
    .section-title {
    display: none;
  }
  .page-title{
    display: block;
  }
  .page-title h1{
    color: #433b34;
    border: none;
        font-size: 1.8rem;
    line-height: 2.7rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    margin: -10px 0 0 0;
    padding: 0;
  }
  .pankuzu-list ol {
    margin: 120px 0 0 30px;
  }
}


/* ---------- フッター ---------- */
.footer {
  width: 100%;
  height: auto;
  background-color: #01598A;
  color: #fcfcfc;
}
.footer-navigation {
  display: flex;
  justify-content: center;
}
.footer-navigation div {
  width: 200px;
  margin: 50px 50px;
}
.footer-navigation div p {
  margin: 0 0 20px;
  padding-bottom: 10px;
  font-size: 1.8rem;
  color: #fcfcfc;
  border-bottom: solid 1px;
}
.footer-navigation li {
  margin: 20px 0;
  font-size: 1.6rem;
}
.footer-navigation a {
  text-decoration: none;
  color: #fcfcfc;
}
.footer small {
  display: block;
  font-size: 1.4rem;
  font-weight: 300;
  padding-bottom: 30px;
}
@media(max-width:800px){
  .footer-navigation{
    padding-top: 50px;
    display: block;
  }
  .footer-navigation div {
   margin: 0 auto 50px;
    display: block;
  }

}

