*, *: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: #574B3F;
  background: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: A1MinchoStd B,Yu Mincho,游明朝,YuMincho,游明朝体;
  font-style: normal;
  overflow-x: hidden;
}
h1{
  font-size: 40px;
  font-size:4rem;
  margin-bottom: 20px;
  font-weight: bold;
}
h3{
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: bold;
}
p{
  margin: 30px 0;
  line-height: 2.1;
  font-size: 13px;
}
span{
  font-size: inherit;
  font-weight: inherit;
}
button{
  background: none;
}

@font-face {
	font-family: "A1MinchoStd B";
	src: url("../font/A-OTF-A1MinchoStd-Bold.otf");
	font-weight: 500;
}
@font-face {
	font-family: "minion pro";
	src: url("../font/minion-pro.otf");
	font-weight: 500;
}
@font-face {
	font-family: "HiraKakuPro";
	src: url("../font/HiraKakuPro-W3.otf");
	font-weight: 500;
}

.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: 50px 0;
  width: 100%;
}
.common-top{
  margin-top: -50px;
  padding-top: 50px;
}
main{
  transition: all 1s;
  overflow: hidden;
}
@media screen and (max-width: 768px){
}

/*タイトル
=======================================================*/
.ttl-L{
  text-align: center;
  font-size: 40px;
  color:#665a48;
  text-shadow: -1px 1px 15px #fff, 1px 1px 17px #fff;
}
.ttl-L-w{
  text-align: center;
  font-size: 40px;
  color:#fff;
  text-shadow: -1px 1px 15px #fff, 1px 1px 17px #fff;
}
.ttl-LL{
  text-align: center;
  font-size: 30px;
  color:#665a48;
  text-shadow: -1px 1px 15px #fff, 1px 1px 17px #fff;
}
.ttl-M{
  font-size: 25px;
  position: relative;
  letter-spacing: 10px;
}
.ttl-S{
  font-family: 'Alegreya';
  color: #56534c;
  text-align: center;
  font-size: 40px;
}

/*カラー
=======================================================*/
.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);
  }
}

@media screen and (max-width: 1024px) and (min-width: 769px){
  .common{
    width:90%;
  }
  h1{
    font-size: 28px;
    font-size:2.8rem;
  }
  h2{
    font-size:20px;
    font-size:2rem;
  }
}

@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: 90%;
  }
}

/*header
=======================================================*/
header{
  width:100%;
  position: fixed;
  top:0;
  left:0;
  z-index:99999;
  background: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}
header.is-anime{
  background: #fff;
  transition: all 0.3s ease;
}
header a{
  font-size: 20px;
  font-size: 2rem;
}
.header-inner{
  width: 90%;
  height: 60px;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.header-logo img{
  display: block;
}
.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{
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: normal;
  text-decoration: none;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: relative;
  padding: 0 30px;
}
.header-nav ul li span{
  display: block;
  font-size:10px;
}

.dropdown-btn{
  position: relative;
}
.dropdown-btn:hover{
  background-color: rgba(255,148,158,0.5);
}
.dropdown-btn:not(:first-child)::before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s;
}
ul.dropdown-wrap {
  display: none;/*デフォルトでは非表示の状態にしておく*/
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
}
.dropdown-btn:hover .dropdown-wrap {
  display: block;/*Gナビメニューにホバーしたら表示*/
}
ul.dropdown-wrap li.dropdown-list {
  background:rgba(87,75,63,0.2);
  height: auto;
  transition: all .3s;
  position: relative;
  width: auto;
}
header.is-anime ul.dropdown-wrap li.dropdown-list{
  background: #574b3f;
}
header.is-anime ul.dropdown-wrap li.dropdown-list:hover{
  opacity: 0.5;
}
li.dropdown-list:not(:first-child)::before{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
ul.dropdown-wrap li.dropdown-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 10px;
  height: auto;
  line-height: normal;
  width: 100%;
}
ul.dropdown-wrap li.dropdown-list a:hover{
  background:rgba(87,75,63,0.5);
  opacity: 1;
}
.dropdown-wrap li.dropdown-list::after{
  content: unset;
}
@media screen and (max-width: 1100px){
  .header-inner{
    width: 100%;
  }
}
@media screen and (max-width: 768px){
  header{
    display: none;
  }
  .header-nav ul li::after{
    content: unset;
  }
  ul.dropdown-wrap{
    display: block;
    position: unset;
  }
  .header-nav ul ul.dropdown-wrap{
    width: 100%;
  }
  ul.dropdown-wrap li.dropdown-list a{
    width: 100%;
    justify-content: flex-start;
  }
  ul.dropdown-wrap li.dropdown-list a::before{
    content: "┗";
    margin-right: 10px;
  }
}

/* ハンバーガーメニュー */

@media screen and (max-width: 768px){
  .header{
    height:60px;
  }
  .header-inner{
    padding: 10px;
    height: 60px;
  }
  .header-logo{
    width: calc(100% - 300px);
  }
  .header-nav{
    position: fixed;
    top:60px;
    left:0;
    width:100%;
    background: #574b3f;
    display: none;
  }
  .header-nav.is-open{
    display: block;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100vh;
  }
  .header-nav ul{
    width: 80%;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .header-nav ul li{
    width: 100%;
    display: block;
    margin-right: 0;
  }
  .header-nav ul li a{
    color:#fff;
    font-size: 16px;
    font-size: 1.6rem;
    border-bottom: 1px solid #fff;
    height: 50px;
    line-height: 50px;
    text-align: left;
  }
  .header-nav ul li a.header-nav-btn{
    background-color: #f2c3d5;
  }
  .header-nav ul li a.nav-btn-color{
    background-color: #f2c3d5;
    margin-left: 0;
  }
  .header-sp{
    position:fixed;
    display:block;
    top:0;
    right: 0;
  }
  .header-sp button,
  .header-sp button span{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
  }
  .header-sp button{
    width:45px;
    height:60px;
    border:none;
    position:relative;
  }
  .header-sp button span{
    position: absolute;
    right: 10px;
    width: 25px;
    height: 2px;
    background-color: #000;
    border-radius: 1px;
  }
  .header-sp button span:nth-of-type(1){
    top: 40%;
  }
  .header-sp button span:nth-of-type(2){
    top: 50%;
  }
  .header-sp button span:nth-of-type(3){
    top:60%;
  }
  .header-sp button.is-open span:nth-of-type(1){
    top: 32%;
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
  }
  .header-sp button.is-open span:nth-of-type(2){
    opacity: 0;
  }
  .header-sp button.is-open span:nth-of-type(3){
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
  }
  .header-nav ul li a::after{
    content: unset;
  }
}
@media screen and (max-width: 768px){
  .header-logo{
    width: 100px;
  }
}

/*上に戻る
=======================================================*/
.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{
  font-family: 'Alegreya';
  width: 200px;
  display: block;
  background: rgba(255,148,158,0.5);
  color: #fff;
  text-align: center;
  height: 40px;
  line-height: 40px;
  margin: 0 auto;
}

@media screen and (max-width: 768px){
  .btn{
    width: 100%;
  }
}

/*共通ブロック
=======================================================*/
.wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.box{
  width: 47%;
}

@media screen and (max-width: 768px){
  .box{
    width: 100%;
  }
}

/*footer
=======================================================*/
footer a{
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #fff;
}
.footer-line{
  display: flex;
}
.footer-line img{
  width: 100%;
  object-fit: cover;
}
.footer-main{
  background: url("../img/footer-bg.png") no-repeat center;
  background-size: cover;
  position: relative;
}
.footer-main::before{
  content: "";
  position: absolute;
  background: url("../img/footer-parts.png") no-repeat center;
  top: 25%;
  left: 0%;
  width: 180px;
  height: 255px;
  background-size: contain;
}
.footer-logo{
  padding: 50px 0 100px;
  position: relative;
}
.footer-logo-img{
  display: block;
  margin: 0 auto;
}
.footer-logo-txt{
  position: absolute;
  top: 55%;
  left: 75%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  line-height: 2.5;
  font-family: HiraKakuPro;
}
.footer-line-wrap{
  display: flex;
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 30px;
}
.footer-line-box{
  margin-right: 20px;
}
.footer-bottom{
  background: #A08771;
}
.footer-bottom-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1280px;
  margin: 0 auto;
  padding: 10px 0;
}
.footer-sns{
  display: flex;
  align-items: center;
}
.footer-sns a:nth-child(2){
    margin-right: 20px;
}
.footer-sns img{
  width: 40px;
  object-fit: contain;
}
.footer-name{
  font-size: 25px;
  margin-right: 30px;
}
.footer-menu{
  display: flex;
}
.footer-menu a{
  margin-right: 30px;
}
.footer-menu a:last-child{
  margin-right: 0;
}
.copyright{
  color: #fff;
}
@media screen and (max-width: 1280px){
  .footer-bottom-inner{
    width: 100%;
  }
  .footer-menu a{
    margin-right: 10px;
  }
  footer a{
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px){
  .footer-line img{
    height: 200px;
    object-position: 75%;
  }
  .footer-main{
    background: #C9DCC0;
    z-index: -2;
  }
  .footer-main::before{
    z-index: -1;
    top: 85%;
    left: -21%;
    width: 180px;
  }
  .footer-logo{
    padding: 50px 0 20px;
  }
  .footer-logo-img{
    width: 60%;
    object-fit: contain;
  }
  .footer-logo-txt{
    position: unset;
    width: 60%;
    margin: 0 auto;
    transform: none;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
  }
  .footer-line-wrap{
    width: 60%;
    display: block;
    text-align: center;
    padding-bottom: 50px;
  }
  .footer-line-box{
    margin-right: 0;
  }
  .footer-line-box:first-child{
    margin-bottom: 30px;
  }
  .footer-bottom{
    position: relative;
    z-index: -3;
  }
  .footer-bottom-inner{
    display: block;
    width: 70%;
    margin: 0 auto;
    text-align: center;
  }
  .footer-sns{
    display: block;
    margin: 40px 0;
  }
  .footer-sns a{
    width: 100%;
    display: block;
  }
  .footer-sns a:nth-child(n+2){
    margin-top: 40px;
  }
  .footer-sns img{
    width: 80px;
  }
  .footer-menu{
    display: block;
  }
  .footer-menu a{
    display: block;
    width: 100%;
    font-size: 15px;
    margin-bottom: 20px;
  }
  .copyright{
    margin-top: 100px;
  }
}