@charset "UTF-8";

@font-face {
 font-family: 'Zen Maru';
 font-weight: 400;
 src: url("../font/Zen_Maru_Gothic/ZenMaruGothic-Regular.ttf") format('truetype');
}
@font-face {
 font-family: 'Zen Maru';
 font-weight: 700;
 src: url("../font/Zen_Maru_Gothic/ZenMaruGothic-Bold.ttf") format('truetype');
}
@font-face {
 font-family: 'Zen Maru';
 font-weight: 900;
 src: url("../font/Zen_Maru_Gothic/ZenMaruGothic-Black.ttf") format('truetype');
}

.hoge {
  font-family: 'Zen Maru',sans-serif;
  font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-image: url("../image/background-min.jpeg");
  background-attachment: fixed;
  background-size: cover;
  color: #292929;
  font-family: 'Zen Maru',sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  margin: 0;
  box-shadow:0px 0px 6px 3px rgba(0,0,0,0.10);
}

li {
  list-style-type: none;
}

.mobile_drawer_menu{
	display: none;
}

.mobile_drawer_menu * {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  font: inherit;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: left; /*ハンバーガーメニュー左揃え*/
  text-decoration: none;
  list-style: none;
}

.mobile_drawer_menu a {
  color: inherit;
  text-decoration: none;
  font-size: 1.2rem;
  display: block;
  text-align: center;
}

.mobile_drawer_menu a:hover {

}

.mobile_drawer_menu a:visited {
  color: inherit;
}

.mobile_drawer_menu .mobile_drawer_bg {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  background-color: rgba(#3e3e3e, 0.5);
  display: none;
  top: 0;
  left: 0;
}

.mobile_drawer_menu .mobile_drawer_button {
  display: block;
  background-color:transparent;
  border: none;
  padding: 10px 15px 6px 10px ;
  width: 58px;
  cursor: pointer;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 1001;
  text-align: center;
  outline: none;
}

.mobile_drawer_menu .mobile_drawer_button.active .mobile_drawer_bar {
  width: 36px;
}

.mobile_drawer_menu .mobile_drawer_button.active .mobile_drawer_bar1 {
  transform: rotate(45deg) translatey(-6px) translatex(3px);
}

.mobile_drawer_menu .mobile_drawer_button.active .mobile_drawer_bar2 {
  opacity: 0;
}

.mobile_drawer_menu .mobile_drawer_button.active .mobile_drawer_bar3 {
  transform: rotate(-45deg)  translatey(7px) translatex(0px);
}

.mobile_drawer_menu .mobile_drawer_button.active .mobile_drawer_menu_text {
  display: none;
}

.mobile_drawer_menu .mobile_drawer_button.active .mobile_drawer_close {
  display: block;
}

.mobile_drawer_menu .mobile_drawer_bar {
  display: block;
  height: 2px;
  margin: 7px 0;
  transition: all 0.2s;
  transform-origin: 0 0;
}

.mobile_drawer_menu .mobile_drawer_close {
  letter-spacing: 0.08em;
  display: none;
}

.mobile_drawer_menu .mobile_drawer_nav_wrapper {
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  transform: translate(770px);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  color: #292929;
  font-weight: normal;
  letter-spacing: 1px;
}

.mobile_drawer_menu .mobile_drawer_nav_wrapper.open {
  transform: translate(0);
}

.mobile_drawer_menu.left .mobile_drawer_button {
  right: auto;
  left: 32px;
}

.mobile_drawer_menu.left .mobile_drawer_nav_wrapper {
  transform: translate(-312px);
  right: auto;
  left: 0;
}

.mobile_drawer_menu.left .mobile_drawer_nav_wrapper.open {
  transform: translate(0px);
}

/*+++ Default Navigation CSS +++*/
.mobile_drawer_menu .mobile_drawer_nav {
  padding: 56px 0;
}

.mobile_drawer_menu .mobile_drawer_nav li {
  text-align: center;
  font-weight: bold;
  text-shadow: 0px 2px 3px #808080; /* 横・縦・ぼかし・色 */
}
.mobile_drawer_menu .mobile_drawer_nav li a {
  padding: 16px 0;
}
.mobile_drawer_menu .mobile_drawer_nav li:hover {
  opacity: 60%;
}

/*+++ Default Button Color +++*/
.mobile_drawer_menu .mobile_drawer_button {
  color: #292929;
}

.mobile_drawer_menu .mobile_drawer_button .mobile_drawer_bar {
  background-color: #292929;
}

header {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.headerTop_bg {
  width: 100%;
  background: linear-gradient(#FFFFFF, #D6FCFF);
  box-shadow:0px 0px 6px 3px rgba(0,0,0,0.10);
  position: fixed;
  z-index: 1000;
  display: flex;
  margin: 0 auto;
  align-items: center;
}
.globalMenu {
  width: 100%;
  justify-content: space-between;
}
.globalMenu ul {
  display: flex;
  text-align: center;
  justify-content: space-between;
  margin: 0 auto;
}
.globalMenu li {
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  width: calc(100% / 4);
}
.globalMenu li:first-child {
  border-bottom: solid 3px #3FAAF4;
}
.globalMenu li a {
  display: block;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  color: #292929;
  text-decoration: none;
}
.globalMenu li:hover {
  background-color: rgba(0,0,0,0.10);
  box-shadow:0px 0px 6px 3px rgba(0,0,0,0.10) inset;
}
.headpc .headsp {
  box-shadow:0px 0px 6px 3px rgba(0,0,0,0.10);
  margin-top: 0;
  width: 100%;
}

.topMassage_sp {
  display: none;
}
.topMassage_pc,.topMassage_sp {
  font-size: 1rem;
  background-color: #FF3C3F;
  padding: 8px;
  text-align: center;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 32px;
}
.topMassage_pc a,.topMassage_sp a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.topMassage a:hover,.topMassage_sp a:hover {
  opacity: 0.5;
  transition: .3s;
}

main {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.8;
}
.mokuji {
  margin: 0;
  padding: 0;
  background: linear-gradient(#FFFFFF, #D6FCFF);
  border-radius: 50px;
  margin-top: 16px;
  margin-bottom: 40px;
  position: sticky;
  top: 72px;
  box-shadow:0px 2px 6px 2px rgba(0,0,0,0.10);
  z-index: 999;
}
.mokuji ul {
  width: 95%;
  display: flex;
  justify-content: flex-start;
  text-align: center;
  margin: 0 auto;
  margin-left: 0px;
  margin-right: 0px;
}
.mokuji li {
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  width: 30vw;
}
.mokuji li a {
  padding-top: 5px;
  padding-bottom: 5px;
  color: #292929;
  display: block;
  text-decoration: none;
}
.mokuji ul li:hover {
  background-color: rgba(0,0,0,0.10);
  box-shadow:0px 0px 6px 3px rgba(0,0,0,0.10) inset;
}
.mokuji ul .first:hover {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  box-shadow:0px 0px 6px 3px rgba(0,0,0,0.10) inset;
}

.item {
  padding-left: 64px;
  font-size: 1.4rem;
  font-weight: 900;
}
.item a {
  scroll-margin-top: 100px;
}

.sentence {
  background-color: rgba(255,255,255,0.60);
  border-radius: 50px;
  padding: 64px;
  padding-top: 56px;
  padding-bottom: 72px;
  margin-top: 16px;
  margin-bottom: 56px;
  text-align: center;
}
.sentence article {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
  justify-content: flex-start;
}
.sentence p {
  text-align: left;
  margin-bottom: 24px;
}
.sentence p:last-child {
  margin-bottom: 0px;
  text-align: right;
}
.sentence p a {
  color: #ff3626;
}

.notice {
}
.notice .notice_sen {
  background-color: rgba(255,255,255,0.60);
  border-radius: 50px;
  padding: 64px;
  padding-top: 48px;
  padding-bottom: 72px;
  margin-top: 4px;
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
}
.notice .notice_sen ul {
  width: 100%;
}
.notice .notice_sen li {
  text-align: left;
  margin-right: 2%;
}
.notice_sen .date {
  font-size: 1rem;
  font-weight: bold;
}
.notice_sen .title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.notice_sen .bu {
  font-weight: bold;
}
.notice_sen .naiyou {
  margin-bottom: 16px;
  margin-left: 4em;
}
.notice_sen .comment {
  margin-top: 32px;
}
.notice .notice_sen picture {
  width: 50%;
  border-radius: 30px;
}

.sunday_bg {
  background-color: rgba(255,255,255,0.60);
  border-radius: 50px;
  padding: 64px;
  padding-top: 48px;
  padding-bottom: 72px;
  margin-top: 4px;
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
}
.sunday_sen .date {
  margin-bottom: 4px;
}
.sunday_sen .series {
  line-height: 1.2;
  margin-left: 0.5em;
}
.sunday_sen .note {
  margin-top: 24px;
}
.sunday_sen a {
  color: #ff3626;
}
.sunday .gaiyou {
  margin-bottom: 32px;
}
.YouTube_wrap {
  width: 50%;
  max-width: 50%;
}
.YouTube {
  width: 100%;
}

.news .newslist {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  background-color: rgba(255,255,255,0.60);
  border-radius: 50px;
  padding: 64px;
  padding-top: 48px;
  padding-bottom: 64px;
  margin-top: 4px;
  margin-bottom: 56px;
}
.news .newslist>li{
  box-sizing: border-box;
  text-align: left;
  border-bottom: 0.5px solid #333333;
  padding-top: 24px;
  padding-bottom: 24px;
}
.news .newslist>li:first-child{
  padding-top: 0px;
}
.news .newslist>li:nth-child(2){
  padding-top: 0px;
}
.news .newslist>li:last-child{
  border-bottom: none;
  padding-bottom: 0px;
}
.news .newslist>li:nth-child(9){
  border-bottom: none;
  padding-bottom: 0px;
}
.news .naiyou a {
  color: #292929;
}
.news .naiyou a:hover {
  color: #ff3626;
}
.news .date {
  width: 20%;
  font-weight: 500;
}
.news .naiyou {
  width: 80%;
}
.news .naiyou a {
  color: 000;
}

.banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.banner li {
  width: calc(100% / 3 - 16px);
  padding-bottom: 0;
}
.banner li:last-child {
  margin-right: 10px;
}
.banner li .worshipmovie {
  border: solid 5px red;
  border-radius: 30px;
}
.banner li .hatenablog {
  border: solid 5px pink;
  border-radius: 30px;
}
.banner li .favormusic {
  border: solid 5px lightgreen;
  border-radius: 30px;
}
.banner li picture:hover {
  opacity: 0.5;
  transition: .3s;
}

iframe {
  width: 100%;
  height: 800px;
}

footer {
  width: 100%;
  max-width: 100%;
  background-color: #292929;
  font-size: 0.9rem;
  margin-top: 56px;
  box-shadow:0px 0px 6px 3px rgba(0,0,0,0.10);
}
.footernaiyou {
  width: 85%;
  color: #fff;
  margin: 0 auto;
}
.footerMenu ul {
  display: flex;
  text-align: center;
  justify-content: space-around;
}
.footerMenu li {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 32px;
}
.footerMenu li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}
.copyright {
  text-align: center;
  padding-bottom: 16px;
  font-weight: 100;
}

@media screen and (max-width: 770px){
	/*スマホ*/
  .headerTop {
    width: 100%;
  }
  main {
		font-size:0.9rem;
		width: 90%;
    line-height: 1.7;
    letter-spacing: -0.1px;
	}
  .mobile_drawer_menu {
	  display: inline;
  }
	img, footer{
		max-width: 100%;
	}
  .headerTop {
    width: 100%;
  }
  .headerTop_bg {
    padding: 8px;
    height: 40px;
    opacity: 60%;
  }
  .headpc .headsp {
    margin-top: 0;
    margin-bottom: 0;
  }
  .topMassage_sp {
    display: block;
  }
  .topMassage_pc {
    display: none;
  }
  .topMassage_sp {
    font-size: 0.9rem;
    padding: 8px;
    margin-top: 8px;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .globalMenu,.mokuji {
    display: none;
  }

  .sentence,.notice .notice_sen,.sunday_bg,.infomation .info_se {
    border-radius: 30px;
    padding: 24px;
    padding-top: 32px;
    padding-bottom: 40px;
    margin-top: 8px;
    margin-bottom: 48px;
    text-align: center;
  }
  .sentence p {
    text-align: center;
    margin-bottom: 32px;
    justify-content: center;
  }
  .sentence article,.notice_sen ul {
    margin: 0 auto;
    width: 100%;
  }

  .notice .notice_sen,.sunday_bg {
    display: block;
  }
  .notice_sen .naiyou {
    margin-bottom: 16px;
    margin-left: 0em;
  }
  .notice .notice_sen li {
    margin-right: 0%;
    letter-spacing: -0.6px;
  }
  .notice .notice_sen img,.infomation .info_se img {
    margin-top: 32px;
    width: 100%;
    border-radius: 30px;
  }
  .sunday_sen .date {
    margin-bottom: 2px;
  }
  .sunday_sen .series {
    line-height: 1.7;
    margin-left: 0;
  }
  .sunday_sen .title {
    line-height: 1.6;
  }
  .sunday_sen span:before {
    content: '\A';
    white-space: pre;
  }
  .YouTube_wrap {
    width: 100%;
    max-width: 100%;
    margin-top: 32px;
  }
  .YouTube {
    width: 100%;
    height: 100%;
  }
  .sentence article p span:before {
    content: '\A';
    white-space: pre;
  }
  .title_in ul li span:before {
    content: '\A';
    white-space: pre;
  }

  .item {
    padding: 0;
    text-align: center;
    font-size: 1.4rem;
    scroll-margin-top: 80px;
  }

  .news .newslist {
    display: block;
    flex-wrap: nowrap;
    border-radius: 30px;
    padding: 16px;
    padding-top: 32px;
    padding-bottom: 40px;
    margin-bottom: 48px;
  }
  .news .newslist>li{
    box-sizing: border-box;
    text-align: left;
    border-bottom: 0.5px solid #333333;
    padding-top: 16px;
    padding-bottom: 16px;
    letter-spacing: -0.2px;
  }
  .news .newslist>li a{
    text-decoration: none;
  }
  .news .newslist>li:nth-child(odd) {
    border-bottom: none;
    padding-bottom: 0px;
  }
  .news .newslist>li:nth-child(even) {
    padding-top: 0;
  }
  .news .date {
    width: 100%;
    font-size: 1rem;
  }
  .news .naiyou {
    width: 100%;
  }

  .banner {
    display: block;
    margin: 0 auto;
  }
  .banner li {
    width: calc(100% - 10px);
    margin-bottom: 16px;
  }
  .banner li:last-child {
    margin-right: 0;
  }
  .banner li .worshipmovie {
    border-radius: 0;
  }
  .banner li .hatenablog {
    border-radius: 0;
  }
  .banner li .favormusic {
    border-radius: 0;
  }
  .banner li picture:hover {
    opacity: 0.5;
    transition: .3s;
  }

  .contact_sen {
    border-radius: 30px;
    padding: 16px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  footer {
    margin-top: 40px;
  }
  .footernaiyou {
    width: 85%;
  }
  .footerMenu ul {
    display: block;
    padding-top: 8px;
    margin-bottom: 24px;
  }
  .footerMenu li {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .copyright {
    margin-top: 16px;
    font-size: small;
  }
}
