*, *:before, *:after {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: normal;
  text-decoration: none;
  box-sizing: border-box;
  font-size: 15px;
  font-size: 1.5rem;
}
a {
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color:#574B3F;
}
a:hover{
  transition-duration: 0.5s;
  opacity: 0.5;
}
ul, ol, dl {
  list-style: none;
}
html {
  font-size: 62.5%;
}
input[type=date],
input[type=submit]{
  -webkit-appearance: none;
  appearance: none;
}
input,
textarea{
  padding: 15px 20px;
  width: 100%;
  border: #666666 1px solid;
  border-radius: 5px;
}
input[type=radio],
input[type=checkbox]{
  width: auto;
  padding: 0;
}
span.wpcf7-list-item{
  display: block;
}
img {
  max-width: 100%;
  height: auto;
}
body {
  color: #000;
  background: #fff;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: "ZenMaruGothic R";
  font-style: normal;
  overflow-x: hidden;
}
p{
  margin: 20px 0;
  line-height: 2.1;
}
span{
  font-size: inherit;
  font-weight: inherit;
}
button{
  background: none;
}

.pc-only{
  display: block;
}
.sp-only{
  display: none;
}
@media screen and (max-width: 768px){
  input,
  textarea{
    padding: 10px;
  }
  .pc-only{
    display: none!important;
  }
  .sp-only{
    display: block;
  }  
}

.common {
  max-width: 1000px;
  margin:0px auto;
  padding: 100px 0;
  width: 95%;
  position: relative;
}
main{
  transition: all 1s;
  overflow: hidden;
}

@media screen and (max-width: 1200px) and (min-width: 769px){
  .common{
    width:90%;
  }
}

@media screen and (max-width: 768px){
  *, *:before, *:after {
    font-size: 13px;
    font-size: 1.3rem;
  }
  h1{
    font-size:35px;
    font-size:3.5rem;
  }
  h2{
    font-size:28px;
    font-size:2.8rem;
  }
  /* 共通 */
  .table dt{
    padding: 5%; 
    width: 45%;   
  }
  .table dd{
    padding: 5%;
  }
  .common{
    margin: 0 auto;
    width: 95%;
    padding: 50px 0;
  }
}

/*フォント
=======================================================*/
@font-face {
	font-family: "ZenMaruGothic R";
	src: url("../font/ZenMaruGothic-Regular.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "ZenMaruGothic M";
	src: url("../font/ZenMaruGothic-Medium.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "ZenMaruGothic B";
	src: url("../font/ZenMaruGothic-Bold.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "JosefinSans R";
	src: url("../font/JosefinSans-Regular.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "JosefinSans M";
	src: url("../font/JosefinSans-Medium.ttf");
	font-weight: 500;
}

/*タイトル
=======================================================*/
.ttl-L{
  text-align: center;
  font-size: 25px;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
  font-family: "ZenMaruGothic B";
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.ttl-L::before{
  content: "";
  background: url(../img/icon02.png) no-repeat center;
  background-size: contain;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.ttl-L-w{
  color:#fff;
}
.ttl-L-w::before{
  content: "";
  background: url(../img/icon04.png) no-repeat center;
  background-size: contain;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.ttl-M{
  font-family: "ZenMaruGothic M";
}

@media screen and (max-width: 768px){
  .ttl-L{
    font-size: 5vw;
    margin-bottom: 30px;
  }
}

/*カラー
=======================================================*/
.fc-w{
  color:#fff;
}
.fc-b{
  color:#b4835d;
}

/*文字太さ
=======================================================*/
.fb{
  font-weight: bold!important;
}

/*位置
=======================================================*/
.tac{
  text-align: center!important;
}
.tar{
  text-align: right!important;
}
.marker{
  background:linear-gradient(transparent 60%, #ff6 60%);
}
@media screen and (max-width: 768px){
}

/*共通アニメーション
=======================================================*/

/* スクロールありで下から上 */
.fadein1 {
  opacity : 0;
  transform: translateY(50px);
  transition: all 1.5s;
}
/* スクロールありで右から左 */
.fadein2 {
  opacity : 0;
  transform: translateX(-50px);
  transition: all 2s;
}
/* スクロールありで左から右 */
.fadein3 {
  opacity : 0;
  transform: translateX(50px);
  transition: all 2s;
}
/* スクロールありで上から下 */
.fadein4 {
  opacity : 0;
  transform: translateY(-50px);
  transition: all 1.5s;
}

/* スクロールなし下から上でフェードイン */
.no-fadein1 {
  animation-duration: 2s;
  animation-name: fadein1;
}
/* スクロールなしで上から下フェードイン */
.no-fadein2 {
  animation-duration: 2s;
  animation-name: no-fadein2;
}

@keyframes fadein1 {
  0% {
    opacity: 0;/* 透明 */
    transform: translateY(50px);
  }
  100% {
    opacity: 1;/* 不透明 */
    transform: translateY(0);
  }
}
@keyframes no-fadein2 {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*header
=======================================================*/
header{
  width:100%;
  position: fixed;
  top:0;
  left:0;
  z-index:99999;
  background: #fff;
  transition: all 0.3s ease;
}
header.is-anime{
  background: #fff;
  transition: all 0.3s ease;
}
.header-inner{
  width: 90%;
  height: 60px;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.header-logo img{
  display: block;
  width: 50%;
  object-fit: contain;
}
.header-nav ul{
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
.header-nav ul li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header-nav ul li:hover{
  background:rgba(87,75,63,0.2);
}
.header-nav ul li img{
  width: 25px;
  height: 25px;
}
.header-nav ul li a{
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: normal;
  text-decoration: none;
  text-align: center;
  width: 100%;
  padding: 7px 10px;
}
.header-nav ul li a span{
  font-size: 13px;
  margin-left: 7px;
  letter-spacing: 1px;
  white-space: pre;
  font-family: "ZenMaruGothic B";
}

@media screen and (max-width: 1200px){
  .header-inner{
    height: 50px;
    max-width: 95%;
    width: 95%;
  }
  .header-logo img{
    height: 45px;
  }
}
@media screen and (max-width: 768px){
  .header-logo img{
    width: 70%;
  }
  .header-nav ul li::after{
    content: unset;
  }
  .header-nav ul li a{
    width: 100%;
    text-wrap: nowrap;
    padding-right: 10px;
    padding-left: 10px;
  }
  .header-nav ul li a span{
    font-size: 3.5vw;
    text-wrap: nowrap;
  }
  .header-nav ul li img{
    width: 20px;
    height: 20px;
  }
}

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

/*上に戻る
=======================================================*/
.pagetop {
  position: fixed;
  bottom: 9vh;
  text-align: center;
  right: 2vw;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #E6DDD6;
  border-radius: 10px;
  font-size: 20px;
  line-height: 1;
  color:#6C635C;
}

@media screen and (max-width: 768px){
  .pagetop{
    width: 70px;
    height: 70px;
    font-size: 18px;
    right: 5vw;
  }
}

/*ボタン
=======================================================*/
a.btn-line{
  background: linear-gradient(186deg,rgba(255, 138, 108, 1) 0%, rgba(252, 161, 138, 1) 100%);
  color: #fff;
  text-align: center;
  margin: 0 auto;
  padding: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  border-radius: 50px;
}
a.btn-line span{
  display: block;
  font-size: 17px;
  margin-left: 10px;
  letter-spacing: 2px;
}
a.btn-line img{
  width: 30px;
  object-fit: contain;
}

@media screen and (max-width: 768px){
  a.btn-line{
    width: 100%;
    padding: 10px;
  }
  a.btn-line span{
    font-size: 13px;
  }
  a.btn-line img{
    width: 25px;
  }
}

/*footer
=======================================================*/
footer {
  font-size: 13px;
  line-height: 1.2;
  background: #FCA18A;
}
.footer-wrap{
  width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 50px 0;
}
.footer-logo-img{
  width: 300px;
  object-fit: contain;
}
.footer-link{
  text-align: center;
  font-size: 13px;
}
.footer-link a{
  color: #fff;
  font-family: "ZenMaruGothic B";
  display: flex;
  align-items: center;
}
.footer-link a::before{
  content: "";
  background: url(../img/arrow.png) no-repeat center;
  background-size: contain;
  width: 11px;
  height: 13px;
  margin-right: 7px;
}
.copyright{
  text-align: center;
  padding: 10px 0 10px 0;
  background: #fff;
}
.copyright small{
  font-size: 13px;
}

@media screen and (max-width: 1000px){
  .footer-wrap{
    width: 90%;
  }
}
@media screen and (max-width: 768px){
  .footer-wrap{
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer-logo-img{
    object-fit: contain;
    width: 70%;
  }
  .footer-link{
    margin: 0 auto;
  }
  .copyright {
    padding: 10px 0 30px 0;
  }
}