@charset "utf-8";
/* CSS Document */
/*common*/
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}

body {
  color: #3d322b; /* RGB */
  font-family: 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 3.3rem;
  background-image: url(../images/bg-image.webp);
	background-repeat: repeat;
	background-attachment: fixed;
	background-position: top center;
}

img {
  display: block;
  margin: 0 auto;
  width: 100%;
}

@media(max-width:500px) {
body {
  font-size: 1.9rem;
  line-height: 2.8rem;
  font-weight: 400;
}
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/* ボタンのマウスオーバーで明るくする */
.btn:hover {
  filter: brightness(120%);
}

.footer {
  background-color: #ad8b40;
  width: 100%;
  max-width: 450px;
  padding: 0 10px;
  color: #fff;
  margin: 0 auto;
}

.footer a {
  text-decoration: none;
  color: #fff;
}

/*pri*/
.main-pri {
  margin: 0 auto;
  max-width: 1000px;
  padding: 60px 20px;
}

.main-pri h2 {
  margin-bottom: 40px;
  font-size: 2.3rem;
}

.sample1 {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%; /* table幅を100%に指定 */
    background: #fff;
    border: none;
}
.sample1 th,
.sample1 td {
    display: block; /* セルをブロック要素に指定 */
    width: 100%; /* セルを親要素いっぱいの幅に指定 */
    border: none;
    font-size: 1.7rem;   
    padding: 10px;
    vertical-align: top;
    text-align: left;
    box-sizing: border-box;
}
.sample1 th {
    font-weight: 700;
    color: #fff;
    background: #ad8b40; /* thの背景色 */
}

@media screen and (min-width: 768px) {
    .sample1 th,
    .sample1 td {
        display: table-cell; /* デフォルト値に指定 */
        border-bottom: 1px solid #ccc;
        color: #000;
        background: #fff;
    }
    .sample1 th {
        color: #000;
        background: #fff; /* thの背景色 */
    }
    .sample1 tr th:first-child {
        width: 300px; /* thの固定幅 */
    }
}

.footer-sub {
  background-color: #ad8b40;
  width: 100%;
  padding: 0 10px;
  color: #fff;
  margin: 0 auto;
}

.footer-sub a {
  text-decoration: none;
  color: #fff;
}

/*メイン*/
.main {
  margin: 0 auto;
  max-width: 450px;
}

.cta,.cta-2,.cta-3,.cta-b {
 position: relative;
 text-align: center;
}


.cta a img,.cta-2 a img {
  position: absolute;
  bottom: -5px;
  right: 0;
  left: 0;
  width: 340px;
  visibility: visible;
  animation-duration: 2s;
  animation-iteration-count: 1000;
  animation-name: headShake;
  margin: 0 auto;
}

.cta-3 a img {
  position: absolute;
  bottom: 8px;
  right: 0;
  left: 0;
  width: 340px;
  visibility: visible;
  animation-duration: 2s;
  animation-iteration-count: 1000;
  animation-name: headShake;
  margin: 0 auto;
}


@media(min-width:500px) {
.cta a img,.cta-2 a img,.cta-3 a img {
  width: 400px;
}
}

.map {
  background-color: #fff;
  padding: 25px 21px 30px;
}

.QandA {
  background-color: #fff;
  padding: 35px 21px 40px;
}

.QandA img {
  padding-bottom: 25px;
}

.faq-item {
  margin-top: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ad8b40;
}

.faq-question__wrap {
  position: relative;
  background: #ad8b40;
  padding: 10px 5px 10px 35px;
  cursor: pointer;

}

.minus-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background: #fff;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.plus-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background: #fff;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
}

.plus-icon.active {
  transform: translateY(-50%);
}

.faq-question__title {
  color: #FFF;
  font-size: 1.8rem;
  position: relative;
  font-weight: 400;
}
.faq-question__title::before {
    position: absolute;
    color: #fff;
    content: "Q";
    top: 50%;
    left: -23px;
    transform: translateY(-50%);
  }

.faq-answer__wrap {
  background: #fff;
  padding: 10px 5px 10px 35px;
  transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
  height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-answer__wrap.active {
  height: auto;
  padding: 10px 6px 10px 55px;
}
.faq-answer__wrap {
  background: #fff;
  opacity: 0;
  padding: 10px 6px 10px 55px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: ease all 0.7s; /* 擬似要素のトランジションを追加 */
}

.faq-answer__wrap.active {
  opacity: 1;
  padding: 10px 5px 10px 30px;
}

.faq-answer__text {
  margin-top: 5px;
  font-size: 1.8rem;

}

.profile {
  background-color: #f8f0de;
  padding: 50px 15px 40px;
}

.profile h2 {
  margin-bottom: 30px;
}

.profile-discription {
  background-color: #fff;
  padding: 20px 13px;
  border-radius: 15px;
}

.profile-discription img {
  padding: 40px 50px;
}

.profile-discription p {
  padding: 8px;
}

