html{
  scroll-behavior: smooth;
}

body{
  color:#333;
  font-family: "Noto Sans JP", sans-serif;
  font-size:18px;
  background-color: #eefcff;
  margin:0;
  min-height: 100vh;
}

#wrapper{
  overflow: hidden;
}

img{
  max-width: 100%;
  height: auto;
}

a{
  text-decoration: none;
  color:#333;
}

li{
  list-style: none;
}

.pc{
  display:none;
}

.sp{
  display: block;
}

/* 各ページのヘッダー画像部分 */
.contents-header-cover{
  position:relative;
  overflow: hidden;
}

.contents-header{
  height:30vh;
  width:100%;
  margin-left:30px;
}

.contents-header_title{
  position:absolute;
  bottom:36px;
  left: 0;
  background:#fff;
  color:#527083;
  box-sizing: border-box;
  font-weight:bold;
  text-align:left;
  font-size:26px;
  padding:15px 25px;
  letter-spacing: 0.8pt;
}

.contents-header_title .small{
  font-weight:normal;
  font-size:16px;
  margin:0;
}

.contents-header_title .typing{
  margin:0;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-size:28px;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #527083 }
}

@keyframes hide-caret {
  to { border-color: transparent }
}

/* 目次 */
.list{
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  justify-content: center;
  margin-top:40px;
  padding-left:0;
}

.list li{
  font-size:14px;
  padding:16px 0 0 16px;
  color:#527083;
  position:relative;
}

.list li:after {
  display: inline-block;
  width:16px;
  height:16px;
  margin-left:3px;
  vertical-align: -3px;
  content:"";
  background-image: url(../../img/arrow.png);
  background-size: contain;
}

.list li a{
  color:#527083;
}

/* 各ページのスマホヘッダーナビ */
.header{
background-color: #fff;
position:relative;
z-index:100;
}

.header__inner {
  padding: 0 20px; /*左右の余白確保*/
  display: flex; /*ロゴとハンバーガーメニューを横に並べる*/
  align-items: center;
  justify-content: space-between;
  height: inherit; /*親要素の高さを継承*/
  position: relative;
}

/* ヘッダーのロゴ部分 */
.header__title {
  width: 80px;
  margin:16px 0;
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}
/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 45px;
  width: 100%;
  transform: translateX(100%);
  background-color: rgb(255,255,255,.9); /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
  z-index:100;
}
/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}

.hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease .4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

/* ナビゲーションメニュー */
.nav-items {
  padding-left:0;
  margin-bottom:0;
}

.nav-items__item{
  border-bottom:solid 1px #333;
}

/* ナビのリンク */
.nav-items__item a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}

/* 追従フッター */
.footer-1{
  background-color: rgb(152, 211, 223);
  position:fixed;
  z-index:100;
  width:100vw;
  bottom:0;
  box-shadow:-5px 0 20px rgba(0,0,0,.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.footer-1-inner{
  max-width:1000px;
  margin-right:auto;
  margin-left:auto;
  padding-top:20px;
  padding-bottom:20px;
  display: block;
  text-align: center;
}

.footer-1 a{
  background-color: #099aba;
  color:#fff;
  padding:10px 10px 10px 36px;
  box-sizing: border-box;
  border-radius: 25px;
  display: inline-block;
  width:250px;
  text-align: center;
  position:relative;
}
.footer-1 a::before{
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../../img/mail.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position:absolute;
  top:8px;
  left:30px;
}

/* 固定フッター */
.footer-2{
  background-color: #f6f6f6;
  width:100vw;
}

.footer-2-inner{
  max-width:1000px;
  margin-right:auto;
  margin-left:auto;
  padding:20px 40px;
  display: block;
  justify-content: space-around;
  font-size:16px;
}

.footer-2-inner ul{
  padding-left:0;
  line-height:2;
  display: flex;
  flex-wrap: wrap;
}

.footer-2-inner ul li{
  width:50%;
}

.footer-2-inner p{
  font-weight:bold;
}

.footer-center{
  padding-left:30px;
  padding-right:30px;
  padding-bottom:36px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.footer-center .contact-button{
  padding:10px;
  border:solid 1px #333;
  background-color: #f6f6f6;
  font-size:14px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: .2s;
}

.footer-center .contact-button:hover{
  color: #fff;
  background: #333;
}


.footer-right{
  text-align: center;
}

.footer-right a{
  display: inline-block;
}

.footer-right img{
  width:50%;
}


.logo img{
  width:80%;
}

.is-active {
  /*要素を表示させる*/
  opacity: 1;
  visibility: visible;
}