@charset "UTF-8";


/*
■1：ELEMENTS
■2：COMMON
■3：index
■4：Contents
*/

/****************************************

ELEMENTS

*****************************************/
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&display=swap');


body, html {
  /* important */
  height: 100%;
}

html{font-size: 62.5%; height:100%; overflow-y:scroll;}

body {
	margin: 0;
	padding: 0;
	font-family: "Shippori Mincho B1", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-weight: normal;
	font-size: 1.8rem;
  color: #000;
	line-height: 2.4em;
  letter-spacing: 0.20rem;
	height:100%;
}

h1,h2,h3,h4,h5,h6{font-weight: normal; word-break: auto-phrase;}
ul, li, dl, dd, dt {
  list-style: none;
  margin: 0;
  padding: 0;
}
img, img a {
  border: 0;
  vertical-align: bottom;
}
header, footer, nav, section, article, figure, aside, ul, li, dl, dd, dt {
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
	text-decoration: none;
	-webkit-transition: all .2s;
	transition: all .2s;
}

a:hover{
	text-decoration: none;
	-webkit-transition: all .2s;
	transition: all .2s;
}

.fonf_o{
  font-family: "Outfit";
}
.font_jp{
  font-family: "shippori_min_y";
}

.Center{text-align: left;}
.Left{text-align: left;}
.Right{text-align: right;}

strong{font-size: 2.4rem;}
.BLUE{color:#214b71;}


img{ width: 100%; height: auto;}

.pc{display: none;}
.sp{display: block;}

.mt10{ margin-top: 10px;}
.mt20{ margin-top: 20px;}
.mt30{ margin-top: 30px;}
.mt40{ margin-top: 40px;}
.mt50{ margin-top: 50px;}
.mt60{ margin-top: 60px;}
.mt70{ margin-top: 70px;}
.mt80{ margin-top: 80px;}
.mt90{ margin-top: 90px;}
.mt100{ margin-top: 100px;}

.mb10{ margin-bottom: 10px;}
.mb20{ margin-bottom: 20px;}
.mb30{ margin-bottom: 30px;}
.mb40{ margin-bottom: 40px;}
.mb50{ margin-bottom: 50px;}
.mb60{ margin-bottom: 60px;}
.mb70{ margin-bottom: 70px;}
.mb80{ margin-bottom: 80px;}
.mb90{ margin-bottom: 90px;}
.mb100{ margin-bottom: 100px;}

@media screen and (min-width: 768px) {
  .pc{display: block;}
  .sp{display: none;}
  .Center{text-align: center;}
  .Left{text-align: left;}
  .Right{text-align: right;}
}

/****************************************

COMMON

*****************************************/
header{
  width: 100%;
  position:absolute;
  z-index: 99999;
  top: 0;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.H_logo{
  max-width: 300px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 20px 0 0 20px;
}

.H_logo h1{
  max-width: 200px;
  width: 100%;
}

.Head_nav{
  padding: 30px;
}
nav{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
nav li{
  margin: 0;
  padding: 0;
}

nav ul li a{
  display: block;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.8rem;
  padding: 15px 10px 30px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.index nav ul li a{
  color: #FFF;
}

nav ul li a:hover{
  color: #FFF;
}


nav ul li a::after{
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/common/navi.png) no-repeat center top;
  background-size: cover;
  pointer-events: none;
  z-index: -1;
  -webkit-mask-image: linear-gradient(to bottom, black 65%, rgba(0,0,0,0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: top;
  -webkit-mask-size: 100% 0%;
  mask-image: linear-gradient(to bottom, black 65%, rgba(0,0,0,0) 100%);
  mask-repeat: no-repeat;
  mask-position: top;
  mask-size: 100% 0%;

  transition:
    -webkit-mask-size 560ms cubic-bezier(.22,.9,.37,1),
    mask-size 560ms cubic-bezier(.22,.9,.37,1);
  will-change: mask-size;
}

nav ul li a:hover::after,
nav ul li a:focus::after{
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
nav ul li a:hover::before,
nav ul li a:focus::before{
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  nav ul li a::after{
    transition: none;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  nav ul li a::before{
    transition: none;
    opacity: 1;
  }
}

.menu-btn {
  background-color: transparent;
  border: none;
  position:fixed;
  right: 10px;
  top: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  border-radius: 50%;
}
.menu-btn .menu-line {
  display: block;
  position: absolute;
  height: 2px;
  right: calc( 50% - 12px);
  background: #FFF;
  transition: 0.3s ease-in-out;
}
.menu-btn span:nth-child(1) {
  top: 20px;
  width: 25px;
}
.menu-btn span:nth-child(2) {
  top: 30px;
  width: 15px;
}
.menu-btn.active{
  background: #c40000;
}
.menu-btn.active span:nth-child(1) {
  top: 25px;
  background: #FFF;
  transform: rotate(-45deg);
}

.menu-btn.active span:nth-child(2) {
  top: 25px;
  background: #FFF;
  width: 26px;
  transform: rotate(45deg);
}
.menu-area {
  opacity: 0;
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 101vh;
  width: 101vw;
  background-image: linear-gradient(320deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255,1.0));
  z-index: 9999;
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.menu-area.active {
  opacity: 1;
  transform: translateY(0%);
  visibility: visible;
  pointer-events: auto;
  position: fixed;
}

.menu-area.active li{
  opacity: 0;

}
.menu-area{
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-area nav ul{
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 0 0;
}
.menu-area nav ul{
  margin: 0;
}
.menu-area nav > ul > li{
  width: 100%;
  margin: 0 0 15px;
}
.menu-area nav ul li a{
  display: block;
  color: #000000;
  position: relative;
  font-size: 1.6rem;
  line-height: 2.4rem;
  padding: 0 5px;
}
.menu-area nav ul li a:hover{
    color: ##FFF;
}
.menu-area nav ul li a::after{
  display: none;
}


footer{
  background:url(../img/common/footer.jpg) center top;
  background-size: cover;
  color: #FFF;
}

.Foot_Content{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
}

.Foot_Content div:nth-child(1){order: 3;}
.Foot_Content div:nth-child(2){order: 1;}
.Foot_Content div:nth-child(3){order: 2;}

.Foot_logo{
  max-width: 200px;
  width: 100%;
  margin: 40px auto 20px;
}
.Foot_Address{
  font-size: 1.4rem;
  line-height: 2.4rem;
  text-align: center;
}
.Foot_Navi ul li{
  margin: 10px 0 0;
  padding: 10px 0 0;
  border-top: 1px solid #333;
}
.Foot_Navi a{
  display: block;
  color: #FFF;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.address{
  font-size: 1.0rem;
  text-align: center;
  letter-spacing: 0;
  padding: 10px 0;
  border-top: 1px solid #444;
}

section{
  padding: 100px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: none;
}

.ZeroSection{
  padding: 0 0;
}
.Wrapper{
  max-width: 1200px;
  width: 100%;
  padding:50px 3%;
  margin: 0 auto;
}

.Colum2{
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
grid-column-gap: 30px;
grid-row-gap: 30px;
}

#Title h1{
  text-align: center;
  padding: 100px 0;
  font-size: 6.5vw;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-theme-ichinomiya #Title h1{background: url(../img/ichinomiya/title.jpg) center center; background-size: cover;}
.concept #Title h1{background: url(../img/concept/title.jpg) center center; background-size: cover;}
.pilgrimage #Title h1{background: url(../img/pilgrimage/title.jpg) center center; background-size: cover;}
.newsletter #Title h1{background: url(../img/newsletter/title.jpg) center center; background-size: cover;}
.introduction #Title h1{background: url(../img/introduction/title.jpg) center center; background-size: cover;}
.method  #Title h1{background: url(../img/method/title.jpg) center center; background-size: cover;}


h2{
  font-size: 7.5vw;
  letter-spacing: 0.5rem;
  line-height: 3.2rem;
  text-align: center;
  font-weight: normal;
  position: relative;
  padding: 40px 0;
  margin: 0 0 60px !important;
}
h2:before{
  content: url(../img/common/h2_img.svg);
  position: absolute;
  left: 50%;
  bottom: -0px;
  transform: translate(-50%, 0);
  width: 40px;
}
h2:after{
  content: url(../img/common/h2_img.svg);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 235px;
  opacity: 0.05;
}
h2 span{
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}


h3{
  font-size: 6vw;
  font-weight: normal;
  line-height: 4.2rem;
  letter-spacing: 0.0;
  text-align: center;
  border-bottom: 1px solid #DDD;
  position: relative;
  margin: 80px 0 40px;
  padding: 0 0 15px;
}
h3:before{
  content: "";
  width: 40px;
  height: 1px;
  background: #e7141a;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translate(-50%, 0);
}


h4{
  font-size: 2.4rem;
  font-weight: normal;
  border-bottom: 1px solid #DDD;
  margin: 40px 0 20px;
  padding: 0 0 10px 0px;
  position: relative;
}

h4:after{
  content: "";
  width: 40px;
  height: 1px;
  background: #e7141a;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.LinkBtn01 a{
  display: block;
  color: #FFF;
  text-align: center;
  font-size: 1.8rem;
  padding: 5px 10px;
  max-width: 300px;
  width: 80%;
  margin: 40px auto;
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 50%,rgb(196,0,0) 50.1%,  rgb(196,0,0) 100%);
  background-size: 200% 100%;
}
.LinkBtn01 a:hover{
  background-position: 100% 0;
}


@media screen and (min-width: 768px) {

.H_logo{ max-width: 300px; width: 100%;}
.menu-btn{display: none;}




.Foot_Content{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
  padding: 50px 0;
}

.Foot_Content div:nth-child(1){order: 1;}
.Foot_Content div:nth-child(2){order: 2;}
.Foot_Content div:nth-child(3){order: 3;}

.Foot_logo{
  max-width: 400px;
  width: 100%;
  margin: 0 0 20px;
}
.Foot_Address{
  text-align: left;
}
.Foot_Navi ul li{
  margin: 10px 0 0;
  padding: 10px 0 0;
  border-top: none;
}
#Title h1{
  text-align: center;
  padding: 100px 0;
  font-size: 5.0rem;
}
h2{
  font-size: 4.0rem;
  letter-spacing: 0.5rem;
}
h3{
  font-size: 3.0rem;
  letter-spacing: 0.5rem;
}
.Colum2{
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr;
grid-column-gap: 30px;
grid-row-gap: 30px;
}
}


@media screen and (min-width: 960px) {
.H_link{
  display: block;
  position: absolute;
  top: 10px;
  right: 100px;
}

}


/****************************************

index

*****************************************/
#KV {
  position: relative;
  overflow: hidden;
  min-height: 890px; /* 必要なら変更 */
}
.kv_blend{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate( -50%, -50%);
  mix-blend-mode:soft-light;
  min-height: 890px;
}
.kv_wave{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate( -50%, -50%);
  min-height: 890px;
  height: 100%;
}
.kv_h1{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kv_h1 h1{
  width: 66px;
  height: 365px;
  min-height: 365px;
}
.kv_h1 h1 img{
  width: 66px !important;
  height: 365px !important;
  min-height: 365px !important;
}

#KV img{
  width: auto;
  min-height: 890px;
}

.kv_blend img,
.kv_wave img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate( -50%, -50%);
}
.kv_blend{z-index: 10;}
.kv_wave{z-index: 5;}

.KV_slide{
  position: relative;
  padding: 0;
  min-height: 890px;
  height: 100%;
  max-height: 1080px;
  overflow: hidden;
  width: 100%;
}
.KV_slide .swiper-wrapper,
.KV_slide .swiper-slide,
.KV_slide .kv_item {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 890px;
  overflow: hidden;
}

.KV_slide .kv_item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 50% 50%;
  display: block;
  filter: blur(20px);
  transition: filter 1.5s ease; /* 後で JS で duration を揃えると良い */
  will-change: filter, transform;
}
.KV_slide .swiper-slide.swiper-slide-active img {
  filter: blur(0);
}
.Index_s1{
  background: url(../img/index/section01_bg.jpg) no-repeat 50% 50%;
  background-size: cover;
}
.Index_s2{
  background: url(../img/index/section02_bg.jpg) no-repeat 50% 50%;
  background-size: cover;
}
.Index_s3{
  background: url(../img/index/section03_bg.jpg) no-repeat 50% 50%;
  background-size: cover;
}

@media screen and (min-width: 768px) {
#KV img{
  width: auto;
  height: auto;
}
}
@media screen and (min-width: 1920px) {
#KV img{
  width: 100%;
  height: auto;
}
}

/****************************************

Contents_COMMON

*****************************************/


@media screen and (min-width: 768px) {

}

/****************************************

PAGEContents

*****************************************/

/*CONCEPT*****************************************/
.pin-spacer{
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
}
#Concept_section{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  width: 100%;
  overflow: hidden;
  height: 100vh;
  max-height: 1080px;
  padding: 0 !important;
  opacity: 1.0 !important;
  background: url(../img/concept/concept_bg.png) no-repeat top;
  background-size:cover;

}
#Concept_scroll{
  height: 100%;
}

#Concept_scroll h2{
  text-align: start;
  margin: 0;
  padding: 100px 15vh;
  background: url(../img/concept/h2_title.png) no-repeat top center;
  background-size: cover;
}
.Concept_in{
  padding: 100px 0px 100px 0;
}
.Concept_in p{
  text-indent: 1rem;
  line-height: 4.8rem;
  margin: 0 50px;
}
.Concept_img{
  max-width: 1200px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 40px auto;
}

.Concept_imgLast{
  max-width: 420px;
  width: 100vh;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.Concept_img img
.Concept_imgLast img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
}

.temple_List a{
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
  border-bottom: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-column-gap: 0;
  grid-row-gap:0;
  align-items: center;
  color: #000;
}
.temple_List a:hover{
  background: #FCF2F2;
}

.temple_List:last-of-type a{
  border-bottom: 1px solid #DDD !important;
}

.temple_List_IMG,
.temple_List_NAME,
.temple_List_ACCESS{
  padding: 10px;
  height: 100%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}

.temple_List_IMG{
  border-right: 1px solid #DDD;
}
.temple_List_NAME{
  border-right: none;
}

.temple_List_IMG img{
  width: 100%;
  height: auto;
}

.temple_List_ACCESS{
  border-top: 1px solid #DDD;
  grid-column: span 2 / span 2;
  line-height: 3.0rem;
}

.temple_List_ACCESS br{display: block;}
.temple_List_ACCESS span{
  display: inline-block;
  background: #DDD;
  border-radius: 3px;
  padding: 0px 20px;
  line-height: 2.5rem;
  text-align: center;
  margin-right: 10px;
  width: 9rem;
}



@media screen and (min-width: 768px) {
.Concept_imgLast{
  max-width: 630px;
  width: 100vh;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.temple_List a{
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
  border-bottom: none;
  display: grid;
  grid-template-columns: 0.5fr 1fr 3fr;
  grid-template-rows: auto;
  grid-column-gap: 0;
  grid-row-gap:0;
  align-items: center;
  color: #000;
}
.temple_List a:hover{
  background: #FCF2F2;
}

.temple_List:last-of-type a{
  border-bottom: 1px solid #DDD;
}

.temple_List_IMG,
.temple_List_NAME,
.temple_List_ACCESS{
  padding: 10px;
  height: 100%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}

.temple_List_IMG,
.temple_List_NAME{
  border-right: 1px solid #DDD;
}

.temple_List_IMG img{
  width: 100%;
  height: auto;
}
.temple_List_ACCESS br{display: none;}
.temple_List_ACCESS span{
  display: inline-block;
  background: #DDD;
  border-radius: 3px;
  padding: 0px 20px;
  line-height: 3rem;
  margin-right: 10px;
}


}

/*Ichinomiya*****************************************/
.Ichinomiya_main{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-column-gap: 30px;
  grid-row-gap:30px;
}
h2.Ichinomiya_h2{
  margin: 100px 0 60px !important;
}

.Ichinomiya_CBox .Ichinomiya_List a{
  display: block;
  border-bottom: none;
  padding: 30px;
  color: #000;
}
.Ichinomiya_CBox .Ichinomiya_List:not(:last-child) a{
  border-bottom: 1px solid #DDD;
}
.Ichinomiya_List a:hover{
  background: #FCF2F2;
}

.Ichinomiya_List h4{
  margin: 0 0 20px;
  padding: 0 0 10px 0px;
}

.Ichinomiya_List_IN{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-column-gap: 30px;
  grid-row-gap:30px;
}

.Ichinomiya_List_IMG{
  height: 150px;
  width: 150px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.Ichinomiya_List_IMG img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  width: 100%;
}

.Ichinomiya_List_IN .Ichinomiya_table{
  font-size: 1.4rem;
  line-height: 2.8rem;
}
.Ichinomiya_List_IN .Ichinomiya_Nickname{
  border: none;
  text-align: left;
  padding: 0;
}

.Ichinomiya_NameBox{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap:0;
  margin: 0 0 30px;
}

.Ichinomiya_Name{
  background: #000;
  border: 1px solid #000;
  color: #FFF;
  padding: 5px 10px;
}

.Ichinomiya_Nickname{
  border: 1px solid #000;
  text-align: left;
  padding: 5px 10px;
}
.Ichinomiya_area{
  text-align: center;
  padding: 0 0 25px;
  margin: 0;
  line-height: 1rem;
}
.Ichinomiya_area span a{
  background: #666;
  color: #FFF;
  border-radius: 3px;
  font-size: 1.4rem;
  padding: 3px 10px;
}

.Ichinomiya_Nickname span{
  background: #666;
  padding: 3px 5px;
  margin: 0 5px 0 0;
  font-size: 1.4rem;
  color: #FFF;
  border-radius: 3px;
}

.Ichinomiya_txt span{
  font-size: 1.4rem;
  letter-spacing: 0rem;
}

.Ichinomiya_table{
  width: 100%;
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
}
.Ichinomiya_table th,
.Ichinomiya_table td{
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  text-align: left;
  font-weight: normal;
  padding: 3px 10px;
  display: block;
}
.Ichinomiya_table th{width: 100%; background: #f9f9f9;}
.Ichinomiya_table td{width: 100%; background: #fff;}

.GoogleMap{
  margin: 40px 0 0;
}
.GoogleMap iframe{
  width: 100%;
  height: 400px;
}

.Area_navi dt{
  padding: 5px 10px;
  background: #999;
  color: #FFF;
  margin: 0 0 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.Area_navi dt:not(:first-child){ margin: 10px 0 0;}

.Area_navi dt:hover{ background: #333;}
.Area_navi dt.active{ background: #000;}
.Area_navi dd{
  display: none;
  overflow: hidden;
  height: 0;
}


.Area_navi dt.active + dd{
  display: block;
}

.Area_navi dd ul li:not(:last-child){
  border-bottom: 1px solid #DDD;
}

.Area_navi dd ul li a{
  color: #000;
  display: block;
  padding: 0 10px;
}
.Area_navi dd ul li a:hover{
  background: #f5f5f5;
}


@media screen and (min-width: 768px) {
.Ichinomiya_main{
  display: grid;
  grid-template-columns: 8fr 3fr;
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap:30px;
}
.Ichinomiya_NameBox{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-column-gap: 0;
  grid-row-gap:0;
}

.Ichinomiya_List_IN{
  grid-template-columns: 1fr 5fr;
  grid-template-rows: auto;
}

.Ichinomiya_Nickname{
  text-align: right;
}
.Ichinomiya_table th,
.Ichinomiya_table td{
  display: table-cell;
}
.Ichinomiya_table th{width: 30%;}
.Ichinomiya_table td{width: 70%;}

.temple_List_ACCESS {
    border-top: none;
    grid-column: span 1 / span 1;
    line-height: 3.0rem;
}

}

/*Method*****************************************/
.Method_Version{
  background: #FCF2F2;
  padding: 15px;
  margin: 20px 0 0;
  font-size: 1.6rem;
  line-height: 3.2rem;
}
.Method_List dt{
  border-bottom: 1px solid #DDD;
  padding: 0 0 10px;
  margin: 40px 0 10px;
  position: relative;
  font-size: 2.0rem;
}
.Method_List dt:before{
  content: "";
  position: absolute;
  height: 1px;
  width: 30px;
  background: #c40000;
  bottom: 0;
  left: 0;
}
.Method_List dd{
  margin: 0 0 0;
}

.bylaws_table{
  width: 100%;
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
  font-size: 1.6rem;
  line-height: 3.0rem;
  letter-spacing: 0;
}
.bylaws_table th,
.bylaws_table td{
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  padding: 10px 10px;
  text-align: left;
  font-weight: normal;
}
.bylaws_table th{
  background: #FCF2F2;
  vertical-align:top;
  width: 100%;
  display: block;
}
.bylaws_table td{
  width: 100%;
  display: block;
}
.bylaws_table td ul{
  padding: 0 0 0 2rem;
}

.intro_Wrapper{
  max-width: 1200px;
  width: 100%;
	overflow-x: scroll;
}

.intro_namelist{
  max-width: 1200px;
  min-width: 700px;
  width: 100%;
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
  font-size: 1.6rem;
  line-height: 3.0rem;
  letter-spacing: 0;
}
.intro_namelist th,
.intro_namelist td{
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  padding: 10px 10px;
  text-align: left;
  font-weight: normal;
}
.intro_namelistTitle{
  background: #FCF2F2;
  text-align: center !important;
}
.intro_namelist th{
  background: #f5f5f5;
}
.intro_namelist th:nth-child(1){ width: 10%;}
.intro_namelist th:nth-child(2){ width: 20%;}
.intro_namelist th:nth-child(3){ width: 35%;}
.intro_namelist th:nth-child(4){ width: 35%;}

.Concept_Last{
  margin: 0;
  text-align: end;
}

.Concept_List{
  display: grid;
  grid-template-columns: 1fr 8fr;
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap:30px;
}
.Concept_List dt,
.Concept_List dd {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
  transition: none; /* GSAP が制御するため */
}
.Concept_List dt{
  color: #FFF;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.10rem;
  min-height: 100px;
  height: 100%;
  width: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding: 25px 0 0;
}
.Concept_List dt:before{
  content: "";
  position: absolute;
  height: 100px;
  width: 100px;
  background: #000;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: -1;
}
.Concept_List dt:after{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: calc(100% + 30px);
  background: #000;
  z-index: -1;
}

.Concept_List dt.No_Line:after{
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: calc(0% + 30px);
  background: #000;
  z-index: -1;
}

.Concept_List dd{
  padding: 0 0 0;
  font-size: 1.6rem;
  line-height: 3.0rem;
  display: grid;
  align-items: center;
}

.Concept_List dt span{display: block;}

@media screen and (min-width: 768px) {
.Concept_imgLast{
  max-width: 630px;
  width: 100vh;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.bylaws_table th{
  background: #FCF2F2;
  vertical-align:top;
  width: 15%;
  display: table-cell;
}
.bylaws_table td{
  width: 85%;
  display: table-cell;
}

.intro_Wrapper{
  max-width: 1200px;
  width: 100%;
	overflow-x: auto;
}


.Concept_List dt{
  color: #FFF;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.10rem;
  height: 100%;
  width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding: 0 0;
}
.Concept_List dt:before{
  content: "";
  position: absolute;
  height: 100px;
  width: 100px;
  background: #000;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
.Concept_List dt:after{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: calc(100% + 30px);
  background: #000;
  z-index: -1;
}
.Concept_List dt.No_Line:after{
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: calc(50% + 30px);
  background: #000;
  z-index: -1;
}
}

/*pilgrimage**********************************/
.pilgrimage_Colum{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-column-gap: 30px;
  grid-row-gap:30px;
}
.pilgrimage_Photo img{
  max-width: 200px;
  margin: 0 auto;
}
.pilgrimage_Photo02 img{
  width: 100%;
}
@media screen and (min-width: 768px) {
.pilgrimage_Colum{
  grid-template-columns: 3fr 8fr;
}
}

/*Newsletter**********************************/
.Newsletter_Wrapper{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-column-gap: 30px;
  grid-row-gap:30px;
}
.Newsletter_item a{
  display: block;
  border: 1px solid #DDD;
  padding: 30px;
  color: #000;
}

.Newsletter_item a:hover{
  background: #FCF2F2;
}

.Newsletter_item h4{
  margin: 0 0 30px !important;
}

.Newsletter_in{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 10px;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 3.0rem;
}

@media screen and (min-width: 768px) {
.Newsletter_Wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-column-gap: 30px;
  grid-row-gap:30px;
}
}
/*FORM*****************************************/
input[type="submit"],
input[type="text"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  outline: none;
  box-shadow: none;
  border: none;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea{
  width: calc( 100% - 20px);
  border-radius: 5px;
  outline:1px solid #DDD;
  padding: 5px 10px;
  margin: 5px 10px;
}
input[type="text"]:focus,
textarea:focus{
  background: #f5f5f5;
}

select{
  width: 20% ;
  border-radius: 5px;
  outline:1px solid #DDD;
  padding: 5px 10px;
  margin: 5px 10px;
}
.form_s{ width: 20% !important;}
.form_m{ width: 50% !important;}

.btn-submit input[type="submit"]{
  display: block;
  color: #FFF;
  text-align: center;
  font-size: 1.8rem;
  padding: 5px 10px;
  max-width: 300px;
  width: 80%;
  margin: 40px auto;
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 50%,rgb(231, 20, 26) 50.1%,  rgb(231, 20, 26) 100%);
  background-size: 200% 100%;
	text-decoration: none;
  cursor: pointer;
	-webkit-transition: all .2s;
	transition: all .2s;
}
input[type="checkbox"]:checked{
  color: #e7141a;
}

.btn-submit input[type="submit"]:hover{
  background-position: 100% 0;
}

.req {
font-size: 0.8em;
padding: 5px;
background: #cc0000;
color: #ffffff;
border-radius: 2px;
margin-left: 10px;
margin-bottom: 2px;
}
