@charset "utf-8";
/* -------------------------------------------------------------- リセット */
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  text-size-adjust: 100%;
  font-size: 100px;
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}
ul,
ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: 0.5s;
  letter-spacing: 0.02em;
}
body {
  font-size: 0.16rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
    color: #5A5129;
  background-color: #fff;
  position: relative;
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
p {
  font-size: 0.15rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
h2 {
  font-size: 0.4rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 400;
}
h3 {
  font-size: 0.26rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.sec{
    margin-top: 100px;
}
/* フェードイン(初期値) */
.js-fadeUp {
    opacity: 0; /* 最初は非表示 */
    transform: translateY(20px); /* 下に30pxの位置から */
    transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
  }
  /* フェードイン(スクロールした後) */
  .js-fadeUp.is-inview {
    opacity: 1; /* 表示領域に入ったら表示 */
    transform: translateY(0); /* 30px上に移動する */
  }
  /* -------------------------------------------------------------- ファーストビュー */
  .header{
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    height: 80px;
    z-index: 99;
  }
  .headerInner{
    max-width: 1240px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  .headerLogo{
    width: 160px;
  }
  .headerContactArea{
    display: flex;
    align-items: center;
  }
  .headerContactArea .tel{
    display: flex;
   align-items: center;
  }
  .headerContactArea{
    color: #AB935F;
  }
  .headerContactArea .tel{
    display: flex;
    flex-direction: column;
  }
  .headerContactArea .tel p{
    font-size: 0.14rem;
    letter-spacing: 0.05em;
  }
  .headerContactArea .tel a{
    font-size: 0.28rem;
    letter-spacing: 0.15em;
  }
  .headerContactArea .mail{
    margin-left: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .headerContactArea .mail::before{
    content: '';
  position: absolute;
  top: 0;
  left: 30px;
  width: 200%;
  height: 500%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-70%) rotate(135deg);
  transform: translateX(-98%) translateY(-70%) rotate(135deg);
  background: #1a1a1a;
  z-index: -1;
  }
  .headerContactArea .mail:hover::before {
    -webkit-transform: translateX(-40%) translateY(-25%) rotate(135deg);
    transform: translateX(-40%) translateY(-25%) rotate(135deg);
  }
  
  .headerContactArea .mail a{
    display: inline-block;
    min-width: 270px;
    line-height: 48px;
    border: 1px solid #AB935F;
    text-align: center;
    position: relative;
    padding-left: 30px;
  }
  .headerContactArea .mail a::before{
    position: absolute;
    top: 50%;
    left: 12%;
    transform: translateY(-50%);
    content: '';
    width: 25px;
    height: 25px;
    background-image: url(../images/mail.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
.mv{
  position: relative;
}
.mv::after{
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 100%;
  height: 4px;
  background: linear-gradient(#DEC489,#F6E0A4,#D1B372,#E3CC97,#BF9A5E);
}
.mv-img{
width: 100%;
height: 100vh;
max-height: 900px;
background-image: url(../images/mv-img.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
  }
  .mv-text{
    position: absolute;
    top: 55%;
    right: 0;
  }
  .mv-text img{
    display: block;
    width: 50vw;
  }
  .mv-text p{
    font-size: 0.18rem;
    text-align: center;
    letter-spacing: 0.2em;
  }
  .globalNavArea{
    position: sticky;
    top: 80px;
    left: 0;
    z-index: 99;
  }
  .globalNavList{
    display: flex;
    justify-content: space-between;
  }
  .globalNavList li{
    width: calc(100% / 6);
    text-align: center;
    line-height: 72px;
    background: linear-gradient(#DCDBD8,#F8F8F6,#ECEDEA);
    transition: 0.1s all;
    position: relative;
  }
  .globalNavList li::before{
    background: linear-gradient(#F8F8F6,#ECEDEA,#F8F8F6);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all 1s ease-out;
    width: 100%;
  }
  .globalNavList li:hover::before {
    opacity: 0;
  }
  .globalNavList li a{
    display: inline-block;
    position: relative;
    width: 100%;
    transition: 0.3s all;
  }
  .globalNavList li a:before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-bottom: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(45deg);
    position: absolute;
    left: 49%;
    bottom: 15px;
    margin: auto;
  }  
  .toggle-btn{
    display: none;
  }

  /* -------------------------------------------------------------- コンテンツ */

  .lead{
    position: relative;
    text-align: center;
    background-image: url(../images/lead-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 150px 0 250px;
  }
  .lead p{
   font-size: 0.24rem;
  }
  .lead p .large{
    font-size: 0.34rem;
   }
   .lead ul{
    max-width: 700px;
    margin: 80px auto 0;
    display: flex;
    justify-content: space-between;
   }
   .lead ul li{
    width: 30%;
   }
   .title{
    width: fit-content;
    margin: 0 auto 80px;
    text-align: center;
   }
   .title img{
    width: auto;
    height: 60px;
   }
   .profile{
    position: relative;
    margin-top: -100px;
    padding: 200px 0 250px;
    background-image: url(../images/profile-bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
   }
   .profileInner{
    max-width: 860px;
    display: flex;
    padding: 0 20px;
    margin: 0 auto;
    justify-content: space-between;
	   align-items: center;
   }
   .profileInner .profile-img{
	   overflow: hidden;
	   border-radius: 50vh 50vh 0 0;
	   border: 2px solid #dcc490;
   }
   .profileInner .profile-img img{
	       width: 20vw;
	   max-width: 220px;
   }
   .profileText{
    width: 68%;
   }
   .profileText ul{
    margin-top: 20px;
   }
   .profileText li{
    font-size: 0.18rem;
    line-height: 1.8;
    letter-spacing: 0.15em;
    position: relative;
    padding-left: 16px;
   }
   .profileText li::before{
    content: "";
    position: absolute;
    top: 50%;   /* 縦軸をセンタリングする */ 
    left: 0;
    transform: translateY(-50%);   /* 縦軸をセンタリングする */  
    border: 5px solid transparent;
    border-left: 8px solid #5A5129;   /* 好みで色を変えてください */  
   }
   .point{
    position: relative;
    margin-top: -100px;
    padding: 200px 0 250px;
    background-image: url(../images/point-bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
   }

   .point .title h2{
    font-size: 0.3rem;
   }
   .point .title h2 span.small{
    display: block;
    font-size: 0.22rem;
    line-height: 0;
   }
   .point .title h2 span.large{
    font-size: 0.55rem;
   }
   .pointInner{
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
   }
   .pointItem{
    max-width: 825px;
    position: relative;
   }
   .pointItem:not(:last-child){
    margin-bottom: 120px;
   }
   .point02{
    margin-left: auto;
   }
   .pointItem h3{
    font-size: 0.3rem;
    position: relative;
    width: fit-content;
    margin: -10px auto 20px;
   }
   .pointItem h3::before{
    position: absolute;
    top: 50%;
    left: -75px;
    transform: translateY(-50%);
    content: '';
    width: 70px;
    height: 70px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
   }
   .pointItem.point01 h3::before{
    background-image: url(../images/point1.png);
   }
   .pointItem.point02 h3::before{
    background-image: url(../images/point2.png);
   }
   .pointItem.point03 h3::before{
    background-image: url(../images/point3.png);
   }
   .pointItem .pointFlex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    margin-bottom: -10px;
   }
   .pointItem .pointFlex p{
    font-size: 0.2rem;
    width: 60%;
   }
   .pointItem .pointFlex img{
    display: block;
    max-width: 275px;
   }
   .achivement{
    position: relative;
    margin-top: -100px;
    padding: 200px 0 250px;
    background-image: url(../images/achi-bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
   }
   .achiList{
    max-width: 1010px;
    margin: 0 auto;
    padding: 0 20px;
   }
   .achiList{
    max-width: 1010px;
    margin: 0 auto;
    padding: 0 20px;
   }
   .achiList img{
    margin-bottom: 50px;
   }
   .event{
    position: relative;
    margin-top: -100px;
    padding: 200px 20px 250px;
    background-image: url(../images/event-bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
   }
.event .card_item {
    max-width: 700px;
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	    display: flex;
	align-items: center;
	column-gap: 25px;
}
.event .card_item {
   margin-bottom: 20px;
}

.event .card_item .thumbnail {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
}
.event .card_item .text {
    width: 80%;
}
.event .card_item .text h3{
    color: #DA9B9B;
	border-bottom: 1px solid #ccc;
}
.event .card_item .text p{
    font-size: 0.2rem;
}

   .event .mail .sub{
    width: fit-content;
    margin: -18px auto 0;
    border: 1px solid #707070;
    border-radius: 20px;
    background-color: #fff;
    padding: 3px 15px;
    position: relative;
  }
  .event .mail{
    background: linear-gradient(#D5C688,#C0AA51,#D5C688);
    outline: 1px solid #fff;
    outline-offset: -5px;
    max-width: 460px;
    margin: 80px auto 0;
    height: 90px;
    position: relative;
   }
   .event .mail::before{
    background: linear-gradient(#C0AA51,#D5C688,#C0AA51);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all 0.3s ease-out;
    width: 100%;
    outline: 1px solid #fff;
    outline-offset: -5px;
  }
  .event .mail:hover::before {
    opacity: 0;
  }

   .event .mail a{
    display: inline-block;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
   }
   .event .mail p{
    width: fit-content;
    margin: 0 auto;
    font-size: 0.26rem;
    color: #fff;
    position: relative;
   }
   .event .mail p.text{
    padding-left: 40px;
   }
   .event .mail p.text::before{
    position: absolute;
    top: 60%;
    left: -5px;
    transform: translateY(-55%);
    content: '';
    width: 45px;
    height: 45px;
    background: url(../images/mail-w.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
   }
  
   .event div.mail .sub{
    line-height: 1;
    position: absolute;
    margin-bottom: 10px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
   }
   .event .mail .sub p{
    font-size: 0.15rem;
    background: linear-gradient(#C0AA51,#D5C688,#C0AA51);
    background: -webkit-linear-gradient(#C0AA51,#D5C688,#C0AA51);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
   }
  
   .photo{
    position: relative;
    margin-top: -100px;
    padding: 150px 0 200px;
    background-image: url(../images/contact-form.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
   }
   .photo .title img{
    height: 35px;
   }
.photo .card{
	max-width: 1010px;
    margin: 0 auto;
    padding: 0 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	column-gap: 2%;
	grid-row-gap: 20px;
}
.photo .card_item {
    width: 32%;
	padding: 10px;
    border: 1px solid #707070;
}
.photo .card_item .thumbnail {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.contact{
  position: relative;
  margin-top: -100px;
  padding: 200px 0 250px;
  background-image: url(../images/contact-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.contact .title h2{
  font-size: 0.3rem;
}

.contact .title h2 span{
  display: block;
  font-size: 0.24rem;
}
.contactInner{
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  margin: 50px auto 0;
}
.contactInner div{
  width: 48%;
}
.contactInner .tel{
  border: 1px solid #707070;
}
.contactInner .tel p{
  width: fit-content;
  margin: 0 auto;
  background: linear-gradient(#C0AA51,#D5C688,#C0AA51);
  background: -webkit-linear-gradient(#C0AA51,#D5C688,#C0AA51);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contactInner div .sub{
  width: fit-content;
  margin: -18px auto 0;
  border: 1px solid #707070;
  border-radius: 20px;
  background-color: #fff;
  padding: 3px 15px;
  position: relative;
}

.contactInner .tel p.num{
  font-size: 0.4rem;
  position: relative;
  padding-left: 20px;
}
.contactInner .tel p.num::before{
  position: absolute;
  top: 60%;
  left: -25px;
  transform: translateY(-60%);
  content: '';
  width: 45px;
  height: 45px;
  background-image: url(../images/tel.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.contactInner .mail{
  background: linear-gradient(#D5C688,#C0AA51,#D5C688);
  outline: 1px solid #fff;
  outline-offset: -5px;
  max-width: 460px;
  margin: 0 auto;
  height: 90px;
  position: relative;
  color: #fff;
}
 .contactInner .mail::before{
  background: linear-gradient(#C0AA51,#D5C688,#C0AA51);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.3s ease-out;
  width: 100%;
  outline: 1px solid #fff;
  outline-offset: -5px;
}
.contactInner .mail:hover::before {
  opacity: 0;
}

 .contactInner .mail p{
  width: fit-content;
  margin: 0 auto;
  font-size: 0.26rem;
  color: #fff;
  position: relative;
 }
 .contactInner .mail p.text{
  padding-left: 40px;
 }
 .contactInner .mail p.text::before{
  position: absolute;
  top: 60%;
  left: -5px;
  transform: translateY(-55%);
  content: '';
  width: 45px;
  height: 45px;
  background: url(../images/mail-w.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
 }
 .contactInner div.mail .sub{
  margin-bottom: 10px;
 }
 .contactInner .mail .sub p{
  font-size: 0.15rem;
  background: linear-gradient(#C0AA51,#D5C688,#C0AA51);
  background: -webkit-linear-gradient(#C0AA51,#D5C688,#C0AA51);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
 }
  
.contact-form{
  position: relative;
  margin-top: -100px;
  padding: 200px 0 150px;
  background-image: url(../images/contact-form.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.mw_wp_form{
	max-width: 900px;
	margin: 0 auto;
}
.mw_wp_form dl{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.mw_wp_form dl.textarea{
	align-items: flex-start;
}
.mw_wp_form dl dt{
	font-size: 0.18rem;
	width: 30%;
}
.mw_wp_form dl dd{
	width: 70%;
}
.mw_wp_form dl dd input{
	width: 100%;
		line-height: 55px;
	padding: 0 20px;
		background-color: #eee;
	border: none;
	font-size: 0.16rem;
}
.mw_wp_form dl dd textarea{
	width: 100%;
		background-color: #eee;
	border: none;
	padding: 20px;
			font-size: 0.16rem;
}
.mw_wp_form dl dt .required{
	color: #fff;
	background-color: #DA9B9B;
	padding: 1px 8px;
	margin-left: 10px;
	font-size: 0.15rem;
}
.mw_wp_form dl dt .any{
	color: #fff;
	background-color: #ccc;
	padding: 1px 8px;
	margin-left: 10px;
	font-size: 0.15rem;
}
.mw_wp_form .error {
    line-height: 1.5;
}
.submit-btn{
	text-align: center;
	position: relative;
	margin-top: 80px;
}

.submit-btn p{
	text-align: center;
	position: relative;
	width: fit-content;
	margin: 0 auto;
}
.submit-btn input:hover{
	background-color: #AB935F;
	color: #fff;
}
.submit-btn p:hover:before {
	border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
}
.submit-btn input{
	border: 1px solid #AB935F;
	min-width: 200px;
	line-height: 48px;
	background-color: #fff;
	color: #AB935F;
	font-size: 0.16rem;
	position: relative;
	transition: 0.3s;
}
.submit-btn p:before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-bottom: solid 2px #AB935F;
    border-right: solid 2px #AB935F;
    transform: rotate(-45deg);
    position: absolute;
    right: 15%;
    top: 43%;
	margin: auto;
	z-index: 10;
}
.mw_wp_form_complete,.mw_wp_form_confirm{
	padding: 200px 20px 100px;
}
.mw_wp_form_complete{
	text-align: center;
}
.mw_wp_form_complete p:first-child{
	font-size: 0.24rem;
	margin-bottom: 20px;
}
.footer{
  background-color: #707070;
}
.footerInner{
  padding: 50px 20px 10px;
  text-align: center;
  color: #fff;
}
.footerLogo{
  max-width: 120px;
  margin: 0 auto 50px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 0.3rem;
}
h3 {
  font-size: 0.2rem;
}
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  .headerInner {
    padding: 0 10px;
  }
  .headerLogo{
    width: 120px;
  }
  .headerContactArea .tel {
    display: none;
}
.headerContactArea .mail {
  display: none;
}
.headerContactArea .mail a {
  min-width: 180px;
  font-size: 0.14rem;
}
.headerContactArea .mail a::before {
  left: 5%;
  width: 18px;
  height: 18px;
}

.toggle-btn {
  display: block;
  position: fixed;
  top: 20px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  z-index: 99;
}
.toggle-btn-line {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 13px;
  height: 2px;
  border-radius: 5px;
  background: #AB935F;
  width: 50%;
}
.toggle-btn-line-top {
  top: 12px;
}
.toggle-btn-line-center {
  top: 18px;
}
.toggle-btn-line-bottom {
  top: 24px;
}
.close .toggle-btn-line-top {
  top: 12px;
  left: 17px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.close .toggle-btn-line-center {
  opacity: 0;
}
.close .toggle-btn-line-bottom {
  top: 24px;
  left: 17px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.toggle-btn:hover {
  cursor: pointer;
}
.globalNavArea {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  background: linear-gradient(#DCDBD8,#F8F8F6,#ECEDEA);
  width: 100%;
  height: 100vh;
  justify-content: center;
  z-index: 10;
}
.globalNav {
  display: block;
  padding-top: 20px;
}
.globalNavList {
  display: block;
}
.globalNavBtn {
  display: block;
  padding-left: 0;
  border-left: none;
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
}
.globalNavBtn li{
  font-size: 0.16rem;
  margin-bottom: 20px;
}
.globalNavBtn li:first-child {
  background-color: #fff;
  color: #000;
  margin-right: 0;
}
.globalNavList li {
  width: 100%;
  text-align: center;
  font-size: 0.15rem;
  padding: 0;
  margin-bottom: 0;
  background: none;
  line-height: 50px;
}
.globalNavList li:before {
  content: none;
}
.globalNavList li a:before {
  bottom: 6px;
}
.globalNav .contactInner{
  margin: 40px auto 0;
}
.globalNav .contactInner .tel p.num {
  font-size: 0.28rem;
}
.globalNav .contactInner .sub p {
  font-size: 0.12rem;
}
.globalNav .contactInner .mail {
  height: 70px;
}
.mv-img {
  width: 100%;
  height: 100vh;
}
.mv-text {
  position: absolute;
  top: 45%;
  left: 5%;
}
.mv-text img {
  margin: 0 auto 20px;
  width: 90vw;
}
.mv-text p {
  font-size: 0.14rem;
}
	.title {
    margin: 0 auto 50px;
	}
.lead p {
  font-size: 0.18rem;
}
	.lead p:first-child {
  margin-bottom: 20px;
}

.lead p .large {
  font-size: 0.24rem;
}
.lead ul {
  display: block;
}
.lead ul li {
  width: 50%;
  margin: 0 auto 30px;
}
.lead {
  padding: 80px 0 150px;
}
.profile {
  padding: 100px 0 150px;
}
.profileInner {
  display: block;
}
 .profileInner .profile-img {
  width:fit-content;
  margin: 0 auto 30px;
	 border-radius: 50vh 50vh 0 0;
}
	.profileInner .profile-img img {
    width: 50vw;
	}
.profileText {
  width: 100%;
}
.profileText p {
  font-size: 0.15rem;
}
.profileText li {
  font-size: 0.13rem;
  letter-spacing: 0.03em;
  position: relative;
  padding-left: 12px;
  margin-bottom: 10px;
}
.profileText li::before {
  top: 20%;
  transform: translate(0);
}
	.pointItem:not(:last-child) {
    margin-bottom: 80px;
}
	.point {
    padding: 150px 0 200px;
	}
.point .title h2 span.large {
  font-size: 0.35rem;
}
.point .title h2 span.small {
  font-size: 0.18rem;
  line-height: 0.5;
}
.pointItem h3 {
  font-size: 0.18rem;
  margin: 10px auto;
  padding-left: 40px
}
.pointItem h3::before {
  width: 40px;
  height: 40px;
  left: -10px;
}
.pointItem .pointFlex p {
  width: 100%;
  font-size: 0.14rem;
  text-align: center;
}
.pointItem .pointFlex {
  display: block;
  padding: 0 10px;
  margin-bottom: -10px;
}
.pointItem .pointFlex img {
  display: block;
  max-width: 275px;
  margin: 20px auto;
}
.achivement {
  padding: 150px 0 150px;
}
.achiList img {
  margin-bottom: 20px;
}
.event {
  position: relative;
  margin-top: -100px;
  padding: 150px 20px 200px;
}
.event .mail p.text {
  font-size: 0.2rem;
  padding-top: 10px;
  padding-bottom: 10px;
}
.event .card_item .text p {
    font-size: 0.14rem;
}
	.event .card_item .thumbnail {
    width: 120px;
	}
	.event .mail {
		height: 70px;
	}
	.photo {
    position: relative;
    margin-top: -100px;
    padding: 80px 0 150px;
	}
	.photo .card_item{
		width: 48%;
	}
	.photo .card_item .thumbnail {
    height: 100px;
	}
	.photo .card{
	grid-row-gap: 10px;
}

.contact .title h2 span {
  font-size: 0.18rem;
}
.contact .title h2 {
  font-size: 0.22rem;
}
.contactInner {
  padding: 0 20px;
  flex-wrap: wrap;
  row-gap: 40px;
}
.contactInner div {
  width: 100%;
}
.contactInner .tel p.num {
  font-size: 0.3rem;
}
.contactInner .tel p.num::before {
  width: 40px;
  height: 40px;
}
.contactInner .mail p {
  font-size: 0.2rem;
  padding-top: 3px;
  padding-bottom: 10px;
}
.contactInner .mail p.text::before {
    position: absolute;
    top: 55%;
	}
.contactInner div.mail .sub {
  margin-bottom: 0;
}
.contactInner div.mail .sub p{
  padding: 0;
}
.contact-form {
  position: relative;
  margin-top: -100px;
  padding: 100px 0 80px;
}
	.contactInner .mail {
		height: 70px;
	}
	.mw_wp_form dl {
    display: block;
		padding: 0 20px;
	}
	.mw_wp_form dl dt {
    font-size: 0.15rem;
    width: 100%;
		margin-bottom: 10px;
}
	.mw_wp_form dl dd {
    width: 100%;
}
	.mw_wp_form dl dd input {
    width: 100%;
    line-height: 40px;
		font-size: 0.14rem;
		padding: 0 1em;
	}
	.mw_wp_form dl dt .required {
    font-size: 0.12rem;
}
	.mw_wp_form dl dd textarea {
    padding: 1em;
    font-size: 0.14rem;
}
.footerLogo {
  max-width: 100px;
}
.footerInner {
  padding: 30px;
}
}