@charset "UTF-8";
/* CSS Document */
/* 初期スタイル調整 */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
main {
  font-family: serif;
}
h1 {
  font-family: serif;
  color: #E286AB
}
h2 {
  color: #E286AB;
  margin: 70px 0 50px 0px;
  font-size: 3.2rem;
}
@media(max-width:767px){
  h2 {
    font-size: 2.6rem;
    margin: 30px 0 20px 0px;
  }
}

h4 {
  font-family: メイリオ;
}
a {
  color: #666;
  text-decoration: none;
}
a:hover {
  color: #E286AB;
}
ul {
  list-style: none;
}
figure {
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
address {
  font-style: normal;
}
p {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 3.2rem;
  margin: 0px;
}
@media(max-width:767px){
  p {
    font-size: 1.6rem;
    ine-height: 2.8rem;
  }
}


ul {
  padding: 0px;
}
/*目次のライン*/
.lin {
  display: flex;
  align-items: center;
  max-width: 640px;
  margin: 70px auto 60px;
  padding: 0 10px;
}
.lin::before, .lin::after {
  display: block;
  content: '';
  height: 2px; /* 線の太さ */
  background-color: #FBE9E9;
  flex-grow: 1;
}
.lin::before {
  margin-right: 4rem;
}
.lin::after {
  margin-left: 4rem;
}
@media(max-width:767px) {
  .lin::before {
    margin-right: 2rem;
  }
  .lin::after {
    margin-left: 2rem;
  }
  .lin {
    margin: 40px auto 30px;
  }
}
/* ---------- 初期スタイル調整 ここまで ---------- */
.logo {
  padding: 20px;
  text-align: center;
  background-color: #FBE9E9;
  font-weight: 300;
  font-family: 'Noto Sans JP', sans-serif;
}
/* navigation */
.open-button, .close-button {
  display: none;
}
.header nav {
  display: block;
  text-align: right;
}
.header nav ul {
  display: flex;
  margin: 50px auto 35px;
}
/* ナビゲーション */
.nav-list {
  justify-content: center;
  /* フレックスアイテムを交差軸方向（縦方向）中央揃えで配置 */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}
.nav {
  padding: 20px 0;
}
.nav-list li {
  /* フレックスアイテムに対する指定 */
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding: 0 20px;
  line-height: 1;
  border-right: 1px solid #fff; /* 縦棒を表示 */
}
.nav-list li {
  /* フレックスアイテムに対する指定
   border-left: 1px solid #666; 区切り線
  border-right: 1px solid #fff;  縦棒を表示
      */
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding: 0 35px;
  line-height: 1;
  font-size: 20px;
}
.nav-list li:first-child {
  border-left: 1px solid #fff; /* 縦棒を表示 */
}
@media(max-width:767px) {
  .open-button {
    display: block;
    position: absolute;
    right: 10px;
    top: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #17264C;
    font-size: 30px;
    padding: 20px;
  }
  .header nav {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    background-color: #fff;
    padding-top: 67px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
  }
  .header nav ul {
    display: block;
    justify-content: flex-start;
    text-align: left;
  }
  .header nav ul li {
    width: 70%;
    border-bottom: solid 1px rgba(102, 102, 102, 0.5);
    flex-flow: column;
    border-left: none;
  }
  .header nav ul li:first-child {
    border-bottom: solid 1px rgba(102, 102, 102, 0.5);
  }
  .header nav ul li a {
    font-weight: 500;
    line-height: 40px;
    vertical-align: middle;
    text-decoration: none;
  }
}
#scroll-top {
  opacity: 0.9;
  bottom: 0px;
  width: 70px;
  padding: 10px;
  position: fixed;
  right: 20px;
  margin-bottom: 0;
}

/* コピーライト */
.copyright {
  padding: 10px 0px;
  display: block;
  margin: 0 auto;
  text-align: center;
  background: #FFE7E7;
}


/* フッター */
.footer0 {
  background: #FFE7E7;
  padding: 10px 0 50px 0;
}
@media(max-width:767px){
  .footer0 {
  padding: 0;
}
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
  color: #666;
  text-align: center;
  justify-content: center;
  display: flex;
  padding: 0;
  height: 100%;
}
.kaisya {
  width: 100%;
  flex: 4;
  padding-top: 5px;
}
.map0 {
  width: 100%;
  flex: 6;
  height: auto;
  margin: 20px 20px 0 0;
}
.map {
  display: block;
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  border: solid 1px #FFE7E7;
}
.footer-logo {
  max-width: 300px;
  margin: 20px auto;
  padding: 0 10px;
}
.footer-logo img {
  width: 100%;
}

.Street,.tel_fax,.phone,.maill{
   display: flex;
}


  .footer-left address div{
max-width: 200px; 
    margin: 0 auto 20px;  
  }

.footer-left img {
  max-width: 30px;
  width: 100%;
  height: 100%;
  margin: auto 0px;
}
.footer-left p {
  top: 0;
  margin-left: 20px;
  color: #333;
  display:block;
  font-size: 1.5rem;
  text-align: 3rem;
  text-align: left;
  font-weight: 300;
  font-family: 'Noto Sans JP', sans-serif;
}


@media(max-width:768px){
.footer-left address div{
  margin-left:  45px;
  max-width: 500px;
  justify-content:center;
  }

}
@media(max-width:767px) {
  .footer-left address div{
max-width: 200px; 
    margin: 0 auto 20px;  
    justify-content: start;
  }
  .Street,.tel_fax,.phone,.maill{
   
}
  .footer-left {
    margin: 0 auto; 
  }
  .kaisya {
    width: 100%;
    padding-top: 0px;
    
  }
  .footer-logo {
    max-width: 270px;
    margin: 10px auto;
  }
  .footer nav {
    display: none;
  }
  .footer {
    padding: 10px 0 10px;
    color: #666;
    text-align: center;
    background: #FFE7E7;
    display: block;
  }
  .map {
    display: none;
  }
  
  
}
