@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&family=Noto+Sans+JP:wght@700&family=Sawarabi+Gothic&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url(../img/background_full.svg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* メインstart */
main {
  margin: 0 auto;
}

.main_box{
  text-align: center;
  padding: 150px 0 0;
}

.logo_main{
  width: 330px;
}

span{
  color: #97529D;
}

.bible_box {
  padding: 50px 0 50px 0;
  text-align: center;
  color: rgb(97, 97, 97);
  font-size: 1.3rem;
  font-style: italic;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Noto Serif JP', serif;
}

.message_box {
  text-align: center;
}

.message_box p {
  display: inline-block;
}

.text_box {
  width: 33%;
  padding: 67px 300px 0 0;
  text-align: left;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
}

.nav_menu {
  padding: 100px 0 0;
}

.menu_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 0 10%;
}

.nav_menu .menu_list .list_item {
  list-style: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 30px;
}


.nav_menu a{
  text-decoration: none;
  color: #2B2B2B;
}

footer {
  width: 100%;
  height: 300px;
  text-align: center;
  padding: 50px 0;
  margin: 100px 0 0 0;
  background-color: #1A1A1A;
}

.footer_text {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-size: 12px;
}

.logo_footer{
  width: 146px;
  height: auto;
}

@media screen and (min-width: 320px) and (max-width: 767px)
/*　画面サイズが320pxからはここを読み込む　*/
{
  .wrap {
    width: 100%;
    /* background-color: red; */
    background-image: url(../img/background_responsive.svg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
}