@charset "UTF-8";
@-webkit-keyframes ripple_out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

@keyframes ripple_out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

#wrapper {
  position: relative;
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: #3c2e0b;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

a::before, a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

a::before, a::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

a:hover {
  filter: alpha(opacity=60);
  opacity: 0.6;
}

.cmn-img {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.cmn-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .cmn-img img {
    position: static;
    height: 100%;
    width: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

a[href^="mailto:"] {
  text-decoration: underline;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #3c2e0b;
  font-weight: 400;
}

#wrapper {
  margin: 0 auto;
}

.inbox {
  padding: 0 3%;
  margin: 0 auto;
}

#err-cont {
  padding: 75px 0;
}

#err-cont .txt-blc a {
  text-decoration: underline;
}

.pagenation {
  color: #8a69b3;
  font-size: 12px;
  position: relative;
  margin-top: 10px;
}

.pagenation li {
  background: #fff;
  padding: 5px 10px;
  color: #8a69b3;
  font-size: 16px;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
  margin-right: 10px;
}

.pagenation li a {
  color: #8a69b3;
}

.pagenation .current {
  background: #8a69b3;
  color: #fff !important;
}

.pagenation .right {
  position: absolute;
  right: 2%;
  z-index: 2;
}

.pagenation .center {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}

.pagenation .left {
  position: absolute;
  left: 2%;
  z-index: 2;
}

.cmn-dl > dl {
  border-bottom: 1px solid #7e6b5a;
  border-left: 1px solid #7e6b5a;
  border-right: 1px solid #7e6b5a;
}

.cmn-dl > dl:first-child {
  border-top: 1px solid #7e6b5a;
}

.cmn-dl > dl > dt, .cmn-dl > dl > dd {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
}

.cmn-dl > dl > dt {
  background: #e4d5bd;
  padding: 15px 10px;
}

.cmn-dl > dl > dd {
  background: #fff;
  padding: 10px 15px 25px;
}

.cmn-dl > dl > dd a[href^="mailto:"] {
  text-decoration: underline;
}

div .bread {
  padding-top: 10px;
  font-size: 12px;
  text-align: left;
}

div .bread li {
  display: inline-block;
  color: #8a69b3;
}

div .bread li:after {
  content: " > ";
  padding: 0 2px;
  color: #999;
}

div .bread li:last-child:after {
  content: "";
}

div .bread li a {
  color: #999999;
}

.fl-l {
  float: left;
}

.fl-r {
  float: right;
}

/*Flexbox
--------------------------------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.cont-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.cont-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.cont-btw {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.cont-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.item-cnt {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.item-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.item-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.item-base {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.drawer_menu {
  display: none;
}

/*お知らせ
--------------------------------------------*/
#news .sub-ttl {
  text-align: left;
}

#news .cont-wrap li {
  margin-bottom: 25px;
  border: 1px solid #8a69b3;
  padding: 20px;
}

#news .cont-wrap li:last-child {
  margin-bottom: 0;
}

#news .cont-wrap li .post-ttl {
  text-align: left;
  border-bottom: 1px solid #8a69b3;
  margin-bottom: 25px;
}

#news .cont-wrap li .post-ttl time {
  font-size: 14px;
  color: #8a69b3;
  margin-right: 25px;
}

#news .cont-wrap li .post-ttl span {
  font-size: 22px;
}

#news .cont-wrap li .post-body {
  text-align: left;
  margin-bottom: 20px;
}

#news .cont-wrap li .more-btn {
  width: 125px;
  font-size: 14px;
  margin: inherit;
  margin-left: auto;
}

#news .cont-wrap li .more-btn a {
  background: #8a69b3;
  background-position: 10% 50%;
  padding: 5px 0;
  display: block;
  color: #fff;
}

#news .news-body {
  padding: 20px;
  text-align: left;
  margin-bottom: 10px;
  border: 1px solid #8a69b3;
}

#news .news-body img {
  width: auto;
  height: auto;
  max-width: 100%;
}

#news .news-body time {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: bold;
  display: block;
  color: #8a69b3;
}

/*お問い合わせ
--------------------------------------------*/
.contact-form {
  margin-bottom: 20px;
}

.contact-form dt {
  padding: 15px;
  vertical-align: top;
}

.contact-form dt span {
  color: #FF0000;
  border-radius: 4px;
  font-weight: bold;
  padding: 3px;
  font-size: 11px;
  margin-left: 5px;
}

.contact-form dd {
  padding: 10px 15px;
}

.contact-form dd .txtarea {
  border: 1px solid #d1c0a5;
  width: 100%;
  background: #fff;
  padding: 12px 5px;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
}

.contact-form textarea {
  height: 260px;
}

.contact-form .error-text {
  color: #ff0000;
}

.g-recaptcha div {
  margin: 0 auto;
  margin-bottom: 0;
}

.form-btn {
  text-align: center;
}

.check-btn {
  width: 90%;
  margin: 5% auto;
  font-size: 5vw;
  font-weight: bold;
  border-radius: 10px;
  letter-spacing: 2px;
  border: none;
  color: #fff;
  background: #8a69b3;
  padding: 6% 0;
}

.back-btn {
  width: 90%;
  margin: 5% auto;
  font-size: 5vw;
  font-weight: bold;
  border-radius: 10px;
  letter-spacing: 2px;
  border: none;
  color: #fff;
  background: #8a69b3;
  padding: 6% 0;
}

.contact-submits-wrap {
  margin-top: 20px;
}

.send-btn {
  width: 240px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  letter-spacing: 2px;
  border: none;
  color: #fff;
  background: #8a69b3;
  padding: 20px 0;
}

input[type='button']:hover, input[type='submit']:hover {
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  filter: alpha(opacity=60);
  opacity: .6;
}

input[type='button'][disabled], input[type='submit'][disabled] {
  opacity: .7;
  pointer-events: none;
}

/*プライバシーポリシー
--------------------------------------------*/
.privacy_frame {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  width: 100%;
  margin: 0 auto;
  height: 260px;
}

#privacy {
  margin: 8% 0 10% 0;
}

#privacy iframe {
  width: 100%;
  height: 100%;
  background: #fff;
  display: block;
  border: none;
}

.privacy_frame {
  background: #fff;
  border: 1px solid #ccc;
}

.privacy {
  padding: 15px;
}

.privacy_cont {
  margin-bottom: 25px;
  text-align: left;
}

.privacy_cont h5 {
  font-size: 18px;
  text-align: left;
  margin-bottom: 10px;
  padding: 5px 15px;
  border-bottom: 1px solid #3c2e0b;
}

.privacy_cont h5:before {
  content: '\025c6';
  padding-right: 10px;
}

.privacy_cont:last-child {
  margin-bottom: 0;
}

.pagetop {
  color: #FFF;
  position: fixed;
  bottom: 8%;
  right: 3%;
  z-index: 999;
}
