@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap');
@import url("https://use.typekit.net/zxh4prp.css");

/*resetCSS*/
html, body, h1, h2, h3, h4,
ul, ol, dl, li, dt, dd, p, div, span,
img, a, table, tr, th, td, figure {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article, header, footer, aside, figure, figcaption, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
  list-style-type: none;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
a {
    text-decoration: none;
    color: #000;
    transition: 0.6s all;
    cursor: pointer;
}
a:hover {
    opacity: 0.8;
}
body {
    font-family: setimo, 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    color: #000;
    background: #f9f9f9;
}
img {
    width: 100%;
    max-width: 100%;
}
.svg-defs {
    display: none;
}
.logo {
    width: 100%;
    height: 100%;
    fill: currentColor;
    position: relative;
    display: inline-block;
    vertical-align: bottom;
}

.sp { display: none; }
@media (max-width: 769px) {
    .pc { display: none; }
    .sp { display: block; }
}

/**** btn-effect ****/
.btn {
    display: block;
    text-align: center;
    width: 100%;
    position: relative;
    border: 1px solid #ba996b;
    background: #fff;
    font-size: 18px;
    letter-spacing: 2px;
    transition: ease .2s;
}
.btn span {
    position: relative;
    z-index: 3;
    color: #ba996b;
    padding: 20px 17px;
    display: block;
    font-weight: 500;
}
.ef-hover:hover .btn span{
    color:#fff;
}
.btn i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
}

.btn.ef-bgleft:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background:#ba996b;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}
.ef-hover:hover .btn.ef-bgleft:before{
    transform-origin:left top;
    transform:scale(1, 1);
}

.btn-alink {
    max-width: 360px;
    width: 90%;
    margin: auto;
}
.btn-alink:hover {
    opacity: 1;
}
.btn-alink span {
    font-weight: 500;
}

/**** #pagetop ****/
#pagetop {
    cursor: pointer;
    color: #cecece;
    position: fixed;
    right: 1rem;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    font-size: 12px;
    letter-spacing: .02em;
    display: none;
    top: calc(30% + 250px);
    width: unset;
    z-index: 3;
}
#pagetop>i {
    margin-bottom: 1em;
    display: inline-block;
    height: 1.5rem;
    /* width: 0.8rem; */
    fill: #cecece;
}
@media (max-width: 769px) {
    #pagetop {
        visibility: hidden;
    }
}

/**** effect ****/
.scroll-fade.effect {
    transition: all 0.8s ease;
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade {
    opacity: 0;
    transform: translateY(50px);
}