@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  color: #333;
  font-weight: 500;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
  font-size: 10px;
}

a {
  color: #333;
}
a:hover, a:active, a:focus {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul,
dl,
ol,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
figure,
label,
p {
  margin: 0;
  padding: 0;
}

input,
button,
select,
textarea {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
input::placeholder,
button::placeholder,
select::placeholder,
textarea::placeholder {
  color: #c4c4c4;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

ol,
ul {
  list-style: none;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 460px) {
  html {
    font-size: 52.5%;
  }
}

body {
  font-size: 1.4rem;
}
@media screen and (min-width: 992px) {
  body {
    font-size: 1.5rem;
  }
}

/*------------------------------------
コンテンツ幅
------------------------------------*/
.inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 50px;
}
.inner-s {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px;
}

/* SP */
@media screen and (max-width: 991px) {
  .inner,
.inner-s {
    width: 100%;
    padding: 0 3%;
  }
}
/*------------------------------------
リンク 
------------------------------------*/
a {
  color: #333;
}

a:hover {
  text-decoration: none;
  color: #333;
}

area {
  outline: none;
}

a:focus {
  text-decoration: none;
}

a:link {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  /* ホバーアクション */
  .hover {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .hover:hover {
    opacity: 0.6 !important;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*------------------------------------
テキスト
------------------------------------*/
.txt_bold {
  font-weight: bold;
}

.txt_co_orange {
  color: #ff7f00;
}

/*------------------------------------
ボタン
------------------------------------*/
.btn {
  position: relative;
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #713a10 !important;
  max-width: 240px;
  width: 100%;
  margin: 35px auto 0;
  padding: 10px 15px;
  text-decoration: none;
  background: rgb(213, 198, 129);
  background: linear-gradient(135deg, rgb(213, 198, 129) 0%, rgb(255, 249, 227) 60%, rgb(213, 198, 129) 100%);
  cursor: pointer;
  z-index: 3;
  transition: all 0.4s ease;
  text-shadow: 2px 2px 2px #ccc;
  box-shadow: 4px 4px 4px #ccc;
}
@media screen and (max-width: 991px) {
  .btn {
    width: 60%;
    max-width: 250px;
    font-size: 1.6rem;
  }
}
.btn::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 7px;
  border-color: transparent transparent transparent #713a10;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
}
@media screen and (min-width: 992px) {
  .btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 991px) {
  .btn {
    right: 10px;
    border-width: 5px 0 5px 5px;
    border-color: transparent transparent transparent #713a10;
  }
}

/*------------------------------------
スマホ　非表示
------------------------------------*/
@media screen and (min-width: 992px) {
  .disp_sp {
    display: none !important;
  }
}
/*------------------------------------
PC　非表示
------------------------------------*/
@media screen and (max-width: 991px) {
  .disp_pc {
    display: none !important;
  }
}
/*------------------------------------
margin
------------------------------------*/
.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

/*# sourceMappingURL=base.css.map */
