@charset "UTF-8";

/*============================
	hero
============================*/
.hero {
  background: url("../img/bg_mv.jpg") no-repeat center / cover;
  width: 100%;
  height: 50rem;
  color: var(--white);
  display: grid;
  place-content: center;
  position: relative;
}

.hero::before {
  content: "";
  background-color: var(--black);
  opacity: 0.6;
  position: absolute;
  inset: 0;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero__ttl {
  color: var(--brown);
  font-size: max(12px, 2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 15rem;
}

.hero__ttl span {
  font-family: var(--font-en);
  font-size: max(24px, 3.6rem);
  line-height: 1;
}

/*-------------------------
  lower_sec
---------------------------*/
.lower_sec {
  padding: 12rem 0 15rem;
}

.lower_sec-inner {
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .lower_sec-inner {
    width: 90%;
  }
}

/*-------------------------
  policy
---------------------------*/
.policy {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.policy__title {
  color: var(--brown);
  font-size: max(16px, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  padding: 1rem 0 1.2rem 0;
  margin-bottom: 3rem;
  position: relative;
}

.policy__title:after {
  content: "";
  display: block;
  width: 25%;
  border-bottom: solid 3px var(--brown);
  position: absolute;
  bottom: -3px;
}

.policy__wrap {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.policy__image {
  width: 50%;
}

.policy__image img {
  display: block;
  width: 100%;
  height: auto;
}

.policy__text {
  width: calc(50% - 4rem);
  color: var(--brown);
  font-size: max(14px, 1.8rem);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .policy__wrap {
    flex-direction: column;
  }

  .policy__image,
  .policy__text {
    width: 100%;
  }

  .policy__text {
    margin-top: 3rem;
  }
}

/*-------------------------
  profile
---------------------------*/
.profile__wrap {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.profile__image {
  width: 50%;
}

.profile__image img {
  display: block;
  width: 100%;
  height: auto;
}

.profile__text {
  width: calc(50% - 4rem);
  color: var(--brown);
  font-size: max(14px, 1.8rem);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .profile__wrap {
    flex-direction: column;
  }

  .profile__image,
  .profile__text {
    width: 100%;
  }

  .profile__text {
    margin-top: 3rem;
  }
}

/*-------------------------
  menu
---------------------------*/

/*-------------------------
  news
---------------------------*/
.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 3rem;
  padding-bottom: 15rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 24rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    width: 100%;
    height: 40rem;
  }
}

.CMS-NEWS-LINK {
  color: var(--brown);
  font-size: max(14px, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.44;
  margin-bottom: 2rem;
}

.CMS-NEWS-TIME {
  color: var(--brown);
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.08em;
}

.CMS-NEWS-MORE-READ {
  background-color: var(--dark-brown);
  border: 1px solid var(--brown);
  width: 38rem;
  height: 7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--brown);
  display: grid;
  place-content: center;
  position: absolute;
  transform: translateX(-50%);
  bottom: 0;
  left: 50%;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .CMS-NEWS-MORE-READ:hover {
    opacity: 0.6;
  }
}

@media (max-width: 767px) {
  .CMS-NEWS-MORE-READ {
    width: 100%;
    height: 8rem;
  }
}

/*-------------------------
  news detail
---------------------------*/
.CMS-NEWS-DETAIL {
  width: 100%;
  height: auto;
  margin: 0 auto;
  color: var(--brown);
}

.CMS-NEWS-TITLE {
  font-size: max(16px, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  padding: 1rem 0 1.2rem 0;
  margin-bottom: 3rem;
  position: relative;
}

.CMS-NEWS-TITLE:after {
  content: "";
  display: block;
  width: 25%;
  border-bottom: solid 3px var(--brown);
  position: absolute;
  bottom: -3px;
}

.CMS-NEWS-CONTENT img {
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto 2rem auto;
}

/*-------------------------
  access
---------------------------*/
.map {
  margin: 0 auto 4rem;
}

.access__list {
  width: 100rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .access__list {
    width: 100%;
  }
}

.access__list dt,
.access__list dd {
  border-bottom: solid 1px var(--brown);
  color: var(--brown);
  letter-spacing: 0.2em;
  line-height: 2;
  padding: 2rem;
}

.access__list dt {
  width: 30%;
  font-weight: 500;
  white-space: nowrap;
}

.access__list dd {
  width: 70%;
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    border-bottom: none;
    padding: 2rem 2rem 0;
  }

  .access__list dd {
    padding: 0 2rem 2rem;
  }
}

.access__underline {
  text-decoration: underline;
}

.map_img_add{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10rem;
}

.map_img_add div{
      width: 45%;
    height: auto;
}

  .map_img_add .sp {
    display:none;
  }
  .map_img_add .pc {
    display:inherit;
  }
  
  @media (max-width: 767px) {
  .map_img_add .pc {
    display:none;
  }
  .map_img_add .sp {
    display:inherit;
  }
  .map_img_add div{
    width:100%;
  }
}

/* メニュー表　*/
.menu_list {
  max-width: 100%;
  margin: auto;
}

@media (min-width: 768px) {
  .menu_list {
  max-width: 55%;
}
}

.menu_list h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 10rem;
}

.menu_list ul {
  margin-bottom:10rem;
}

.menu_list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.ul_dot {
  list-style-type: circle;
  list-style-position: inside;
  margin-top:1rem;
  padding-left: 1.5em;
}

.ul_dot li {
  display:list-item;
  margin-bottom:0.5rem;
  list-style-position: outside;
}

.menu_img {
  display: block; 
  width: 30rem; 
  max-width: 100%;
  height: 30rem;
  background-color: #fff;
  margin-bottom: 2rem;
  object-fit: cover;
}

.menu_list span {
  font-size: 70%;
    display: block;
    width: 52rem;
    max-width: 80%;
    margin-top: 0.2rem;
}

.profile {
   background: url(../img/master2.png) no-repeat center / cover;
  padding-bottom: 6rem;

}



/*-------------------------
  追記
---------------------------*/

.common__btn {
  width: max(220px, 34.4rem);
  height: max(45px, 6.2rem);
  margin: 0 auto;
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding-right: 2.8rem;
  position: relative;
}

.common__btn a::before {
  content: "";
  background-color: var(--brown);
  width: 5.3rem;
  height: 1px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}

.common__btn a span {
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  font-family: var(--font-en);
  color: var(--brown);
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--dark-brown);
}

.policy__btn {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 10rem;
	width: 100%;
	flex-wrap: wrap;
}

.common__btn{
	margin-bottom: 4rem;
}

@media (min-width: 768px) {
	.policy__btn {
    		width: 75%;
	}

	.common__btn{
		margin-bottom: 0;
	}

	.profile {
  	   background: url(../img/master1.png) no-repeat center / cover;
 	}
}

.photo_box {
    display: flex;
	flex-wrap: wrap;
    margin: 0 auto 5rem;
	width: 100%;
	justify-content: center;
}

.photo_box  img{
	width:30rem;
	height:30rem;
	margin: 2rem;
}

@media (min-width: 768px) {
.photo_box {
	width: 85%;
}
.photo_box  img{
	width:40rem;
	height:40rem;
}
}

.menu_jpg{
width:100%
}

.map {
    position: relative;
}

.map::after {
    content: '※地図をクリックすると、Googleマップにつながります。';
    text-align: center;
    color: var(--brown);
    position: absolute;
    bottom: -4.5rem;
    width: 100%;
    display: block;
}

.menu_imgBox {
	max-width: 100%;
	margin: 0 auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.menu_imgBox  a{
	display: block;
	width: 49%;
	margin-bottom: 1rem;
}

.menu_imgBox img {
	width: 100%;
	border: solid 1px #ffe3b4;
}

@media (max-width: 767px) {
.menu_imgBox  a{
	width: 100% ;
	margin-bottom: 5rem;
}
}