@charset "UTF-8";
/* CSS Document */

figure {
	padding: 0;
	margin: 0;
}

.contntWRAP {
	max-width: 1000px;
	margin: auto;
}

.blockline {
	border-bottom: 1px dotted #37312c;
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.mgcut  {
	margin-bottom: 0 !important;
}

.about01 {
	padding: 50px 0 60px 0;
}

.about01 .titlebox h2 {
	font-size: 36px;
	text-align: center;
	font-weight: 600;
	padding: 0;
	margin: 0;
	margin-bottom: 30px;
}
.about01 .titlebox .en {
	text-align: center;
	color:#ccae90;
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	font-weight: 600;
}
.greetingBOX {
	display: flex;
	justify-content: space-between;
}
.greetingBOX .photo {
	width: 25%;
}
.greetingBOX .text {
	width: 72%;
}
.greetingBOX .photo img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}
.greetingBOX .text p {
	font-size: 16px;
	margin-bottom: 20px;
	font-family: "Noto Sans JP", sans-serif;
}
.greetingBOX .text .sign {
	font-size: 24px;
	text-align: right;
	font-weight: 500;
}
.greetingBOX .text .sign span {
	font-size: 16px;
	margin-right: 10px;
}

.greetingBOX.rev {
	flex-direction: row-reverse;
}


.about02 {
	padding: 50px 0 60px 0;
	background: #f2eee5;
}

.about02 .titlebox h2 {
	font-size: 36px;
	text-align: center;
	font-weight: 600;
	padding: 0;
	margin: 0;
	margin-bottom: 30px;
}
.about02 .titlebox .en {
	text-align: center;
	color:#ccae90;
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	font-weight: 600;
}


.rinenBOX {
	background: #fff;
	padding: 10px;
	border-radius: 20px;
	box-shadow: 0 0 30px rgba(91,77,66,0.1);
	box-sizing: border-box;
	margin-bottom: 60px;
}
.rinenBOX .inner {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	border: 2px dashed #a28f65;
	box-sizing: border-box;
}
.rinenBOX figure {
	width: 100%;
	margin-bottom: 10px;
}
.rinenBOX figure img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}
.rinenBOX p {
	font-size: 18px;
	font-family: "Noto Sans JP", sans-serif;
}



ul.actionLIST li{
    list-style: none;
	text-align: left;
	font-size: 18px;
	line-height: 180%;
	text-indent:0px; 
    margin-left:0px;
	border-bottom: 1px dashed #313131;
	padding-bottom: 10px;
	margin-bottom: 10px;
	font-weight: 500;
	padding-left: 1.5em;
  text-indent: -1.5em;
	font-family: "Noto Sans JP", sans-serif;
}
 
ul.actionLIST > li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;/*←ココ*/
  content: "\f111";
  position: relative;
  left : 0em; 
  color: #fa7a91; 
  margin-right: 10px;
}


.rijilist {
	border-bottom: 1px solid #d1d0d0;
	border-top: none;
	width: 100%;
	line-height: 1.6;
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
}

dl.rijilist  dl,dl.rijilist  dt,dl.rijilist  dd {
	margin: 0;
	padding: 0;
}

dl.rijilist  dt,dl.rijilist  dd {
	padding: 20px;
	box-sizing: border-box;
}


dl.rijilist  dt {
	border-top: 1px solid #d1d0d0;
	clear: left;
	float: left;
	width: 30%;
	font-weight: normal;
	position: relative;
}

dl.rijilist  dd {
	border-top: 1px solid #d1d0d0;
	margin-left:30%;
}
.Rlist{
	margin-left: 20px;
}
.Rlist  li{
	list-style-type: disc;
}


.modal_name {
	font-size:24px;
	margin-bottom: 10px;
}
.modal_name .kata {
	font-size:18px;
}
.rijiINFO  {
	font-family: "Noto Sans JP", sans-serif;
	margin-bottom: 20px;
	background: #f5f5f5;
	padding: 20px;
	box-sizing: border-box;
	font-size:16px;
}
.modal-subTITLE {
	font-size:18px;
	border-bottom: 1px solid #37312c;
	padding-bottom: 5px;
	margin-bottom: 10px;
	margin-top: 20px;
}
.modal__inner .Rlist  {
	font-family: "Noto Sans JP", sans-serif;
	font-size:14px;
}


.modal__bg {
  position: fixed;
  z-index: 10009;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0; /* 初期状態で非表示 */
  visibility: hidden; /* 初期状態で非表示 */
  transition: opacity .6s ease, visibility .6s ease;

}

.modal__bg.is-active {
  opacity: 1; /* 非表示を解除 */
  visibility: visible; /* 非表示を解除 */
}

.modal__inner {
  position: fixed;
  z-index: 10010;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 0 10px;
  opacity: 0; /* 初期状態で非表示 */
  visibility: hidden; /* 初期状態で非表示 */
  transition: opacity .6s ease, visibility .6s ease;
}

.modal__inner.is-active {
  opacity: 1; /* 非表示を解除 */
  visibility: visible; /* 非表示を解除 */
}

.modal-card {
  max-width: 1000px;
  overflow-y: scroll;
  max-height: 90%;
  padding: 50px;
  background: #fff;
  filter: drop-shadow(0 0 10px rgba(0 ,0, 0, 0.4));
  position: absolute;
  z-index: 1;
  transform: translate3d(0, 48px, 0);
  opacity: 0; /* 初期状態で非表示 */
  visibility: hidden; /* 初期状態で非表示 */
  transition: opacity .6s ease, visibility .6s ease, transform .3s ease-in-out;
	overflow-y: scroll;
	box-sizing: border-box;
	
}

.modal-card.is-active {
  position: relative;
  z-index: 2;
  opacity: 1; /* 非表示を解除 */
  visibility: visible; /* 非表示を解除 */
  transform: translate3d(0, 0, 0);
}

.modal-card__heading {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
  color: #444;
}

.modal-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.modal-card__close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 13px;
}

.modal-card__close::before,
.modal-card__close::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  background: #000;
  cursor: pointer;
}

.modal-card__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-card__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width:834px) {
	
.contntWRAP {
	max-width: 1000px;
	margin: auto 15px;
}

.blockline {
	border-bottom: 1px dotted #37312c;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.mgcut  {
	margin-bottom: 0 !important;
}

.about01 {
	padding: 25px 0 30px 0;
}

.about01 .titlebox h2 {
	font-size: 20px;
	text-align: center;
	font-weight: 600;
	padding: 0;
	margin: 0;
	margin-bottom: 15px;
}
.about01 .titlebox .en {
	text-align: center;
	color:#ccae90;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 600;
}
.greetingBOX {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.greetingBOX .photo {
	width: 50%;
	margin: auto;
	margin-bottom: 15px;
}
.greetingBOX .text {
	width: 100%;
}
.greetingBOX .photo img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}
.greetingBOX .text p {
	font-size: 14px;
	margin-bottom: 15px;
	font-family: "Noto Sans JP", sans-serif;
	
}
.greetingBOX .text .sign {
	font-size: 20px;
	text-align: right;
	font-weight: 500;
}
.greetingBOX .text .sign span {
	font-size: 14px;
	margin-right: 0px;
	display: block;
}

.greetingBOX.rev {
	flex-direction: column;
}


.about02 {
	padding: 25px 0 30px 0;
	background: #f2eee5;
}

.about02 .titlebox h2 {
	font-size: 20px;
	text-align: center;
	font-weight: 600;
	padding: 0;
	margin: 0;
	margin-bottom: 15px;
}
.about02 .titlebox .en {
	text-align: center;
	color:#ccae90;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 600;
}


.rinenBOX {
	background: #fff;
	padding: 10px;
	border-radius: 15px;
	box-shadow: 0 0 30px rgba(91,77,66,0.1);
	box-sizing: border-box;
	margin-bottom: 30px;
}
.rinenBOX .inner {
	background: #fff;
	padding: 15px;
	border-radius: 10px;
	border: 1px dashed #a28f65;
	box-sizing: border-box;
}
.rinenBOX figure {
	width: 100%;
	margin-bottom: 10px;
}
.rinenBOX figure img {
	width: 100%;
	height: auto;
	border-radius: 5px;
}
.rinenBOX p {
	font-size: 14px;
	font-family: "Noto Sans JP", sans-serif;
}



ul.actionLIST li{
    list-style: none;
	text-align: left;
	font-size: 14px;
	line-height: 180%;
	text-indent:0px; 
    margin-left:0px;
	border-bottom: 1px dashed #313131;
	padding-bottom: 10px;
	margin-bottom: 10px;
	font-weight: 500;
	padding-left: 1.8em;
  text-indent: -1.8em;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.7;
}
 
ul.actionLIST > li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;/*←ココ*/
  content: "\f111";
  position: relative;
  left : 0em; 
  color: #fa7a91; 
  margin-right: 10px;
}


.rijilist {
	border-bottom: 1px solid #d1d0d0;
	border-top: none;
	width: 100%;
	line-height: 1.6;
	font-size: 14px;
	font-family: "Noto Sans JP", sans-serif;
}

dl.rijilist  dl,dl.rijilist  dt,dl.rijilist  dd {
	margin: 0;
	padding: 0;
}

dl.rijilist  dt,dl.rijilist  dd {
	padding: 10px;
	box-sizing: border-box;
}


dl.rijilist  dt {
	border-top: 0px solid #d1d0d0;
	clear: left;
	float: none;
	width: auto;
	font-weight: normal;
	position: relative;
	background: #f6f2ea;
}

dl.rijilist  dd {
	border-top: 0px solid #d1d0d0;
	margin-left:auto;
}
.Rlist{
	margin-left: 20px;
}
.Rlist  li{
	list-style-type: disc;
}


.modal_name {
	font-size:20px;
	margin-bottom: 10px;
}
.modal_name .kata {
	font-size:14px;
}
.rijiINFO  {
	font-family: "Noto Sans JP", sans-serif;
	margin-bottom: 20px;
	background: #f5f5f5;
	padding: 15px;
	box-sizing: border-box;
	font-size:14px;
}
.modal-subTITLE {
	font-size:14px;
	border-bottom: 1px solid #37312c;
	padding-bottom: 5px;
	margin-bottom: 10px;
	margin-top: 20px;
}
.modal__inner .Rlist  {
	font-family: "Noto Sans JP", sans-serif;
	font-size:12px;
}


.modal__bg {
  position: fixed;
  z-index: 10009;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0; /* 初期状態で非表示 */
  visibility: hidden; /* 初期状態で非表示 */
  transition: opacity .6s ease, visibility .6s ease;

}

.modal__bg.is-active {
  opacity: 1; /* 非表示を解除 */
  visibility: visible; /* 非表示を解除 */
}

.modal__inner {
  position: fixed;
  z-index: 10010;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 0 10px;
  opacity: 0; /* 初期状態で非表示 */
  visibility: hidden; /* 初期状態で非表示 */
  transition: opacity .6s ease, visibility .6s ease;
}

.modal__inner.is-active {
  opacity: 1; /* 非表示を解除 */
  visibility: visible; /* 非表示を解除 */
}

.modal-card {
  max-width: 1000px;
  overflow-y: scroll;
  max-height: 90%;
  padding: 20px;
  background: #fff;
  filter: drop-shadow(0 0 10px rgba(0 ,0, 0, 0.4));
  position: absolute;
  z-index: 1;
  transform: translate3d(0, 48px, 0);
  opacity: 0; /* 初期状態で非表示 */
  visibility: hidden; /* 初期状態で非表示 */
  transition: opacity .6s ease, visibility .6s ease, transform .3s ease-in-out;
	overflow-y: scroll;
	box-sizing: border-box;
	
}

.modal-card.is-active {
  position: relative;
  z-index: 2;
  opacity: 1; /* 非表示を解除 */
  visibility: visible; /* 非表示を解除 */
  transform: translate3d(0, 0, 0);
}

.modal-card__heading {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
  color: #444;
}

.modal-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.modal-card__close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 13px;
}

.modal-card__close::before,
.modal-card__close::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  background: #000;
  cursor: pointer;
}

.modal-card__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-card__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

	
}


.page-discription {
	text-align: center;
	font-size: 18px;
	margin-bottom: 40px;
	font-weight: 600;
}

@media screen and (max-width:834px) {
.page-discription {
	text-align: center;
	font-size: 14px;
	margin-bottom: 20px;
}	
}







