*, *: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-style: normal;
  overflow-x: hidden;
  font-family: "Inter R","NotoSansJP R";
}
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: 1000px) 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: "Inter R";
	src: url("../font/Inter_28pt-Regular.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "Inter B";
	src: url("../font/Inter_28pt-Bold.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "Inter M";
	src: url("../font/Inter_28pt-Medium.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "NotoSansJP R";
	src: url("../font/NotoSansJP-Regular.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "NotoSansJP B";
	src: url("../font/NotoSansJP-Bold.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "NotoSansJP M";
	src: url("../font/NotoSansJP-Medium.ttf");
	font-weight: 500;
}

/*タイトル
=======================================================*/
.ttl-L{
  width: fit-content;
  font-family: "Inter B", "NotoSansJP B";
  font-size: 50px;
  line-height: 1;
}

@media screen and (max-width: 768px){
  .ttl-L{
    font-size: 10vw;
  }
}

/*カラー
=======================================================*/
.fc-w{
  color:#fff;
}
.fc-b{
  color:#b4835d;
}

/*文字太さ
=======================================================*/
.fb{
  font-weight: bold!important;
}

/*位置
=======================================================*/
.tac{
  text-align: center!important;
  margin: 0 auto;
}
.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;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}
header.is-anime{
  background: #fff;
  transition: all 0.3s ease;
}
.header-inner{
  width: 95%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.header-logo img{
  display: block;
  width: 50%;
  object-fit: contain;
}

@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%;
  }
}

@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-normal{
  border: 1px solid #000;
  background: #fff;
  text-align: center;
  width: 100%;
  display: block;
  padding: 10px;
  opacity: 1;
}
a.btn-normal:hover{
  background: #000;
  color: #fff;
}

@media screen and (max-width: 768px){
  a.btn-normal{
  }
}

/*footer
=======================================================*/
footer {
  font-size: 13px;
  line-height: 1.2;
  background: #D1D4E4;
}
.footer-top{
  background: #A5A9BC;
}
.footer-top-wrap{
  width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}
.footer-top-name{
  color: #fff;
  font-family: "Inter B", "NotoSansJP B";
  font-size: 30px;
}
.footer-wrap{
  width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 80px 0;
  border-bottom: 1px solid #fff;
}
.footer-txt{
  font-size: 18px;
  line-height: 1.8;
}
.footer-link a{
  display: block;
  font-family: "Inter B", "NotoSansJP B";
}
a.footer-link-line{
  background: #000;
  color: #fff;
  padding: 10px 20px;
}
a.footer-link-hp{
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
a.footer-link-hp::after{
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight : 900;
}
.copyright{
  width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.copyright small{
  font-size: 13px;
}
.copyright-sub{
  font-size: 10px;
}

@media screen and (max-width: 1000px){
  .footer-wrap{
    width: 90%;
  }
  .footer-top-wrap{
    width: 90%;
  }
  .copyright{
    width: 90%;
  }
}
@media screen and (max-width: 768px){
  .footer-wrap{
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .copyright{
    flex-wrap: wrap;
  }
}