@charset "utf-8";

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;/*borderみたいなもの*/
    font-size:100%; /*親要素からフォントサイズ継承、見出し等のサイズそろえる*/
    vertical-align:baseline; /*ベースラインを親要素のベースラインに揃える*/
    background:transparent; /*インラインフレームの背景を透過、IEでは白色になってしまうため*/
    box-sizing: border-box;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
nav, ul {list-style:none;}

blockquote, q { /*転載引用であること*/
    quotes:none; /*引用符の挿入を指定しても表示しない*/
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
    color: #4d4d4d;
}

/* change colours to suit your needs*/
ins {/*追記*/
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}/*アンダーラインを消して背景に色をつける*/

del {
    text-decoration: line-through;/*打ち消し線を設定*/
}

mark {/*文章のハイライト*/
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}/*デフォは背景が黄色→背景色、イタリック、太字設定*/


abbr[title]/*略語、頭文字*/, dfn[title] /*定義部*/{
    border-bottom:1px dotted;
    cursor:help;/*オンマウスでカーソルが？になる*/
}

table {
    border-collapse:collapse;/*隣接するセルのボーダーを重ねて表示*/
    border-spacing:0;/*セルのボーダーの間隔*/
}

/* change border colour to suit your needs */
hr {/*水平の横線を引くためのタグ*/
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;/*中央揃え*/
}

/*original set*/
body {
  line-height: 0;
    letter-spacing: .1em;
    color: #4d4d4d;
    font-family: Montserrat,apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, "游ゴシック体", "Yu Gothic", YuGothic,  "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3","メイリオ", sans-serif;
}

main{
  line-height:1; /*行の高さ揃える、単位は指定しない*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; /*paddingの計算方法*/
    /* overflow-x: hidden; */
}
img{
    display: block;
    width:100%;
    max-width: 100%;
    height: auto;
}
ul,ol{
    list-style: none;
}
h1,h2,h3,h4,h5,h6,th{font-weight: normal;}
i{display: block;}
p{
    font-size: 16px;
    line-height: 1.8;
}
picture{display: block;}


.pc{display: block;}
.sp{display: none;}
@media screen and (max-width: 768px){
    .pc{display: none;}
    .sp{display: block;}
    p{
        font-size: 14px;
        line-height: 1.4;
    }
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;}

.mt1em{
    display: block;
    margin-top: 1em;
  }
@font-face
  {
    font-family: はんなり明朝;
    src: url('https://cdn.leafscape.be/hannari/hannari_web.woff2')
        format("woff2");
  }
.min{font-family: はんなり明朝;}


/* タイトルデザイン */
.tit-wrap{color: #4b4b4b;}
.tit-wrap p{
  font-size:40px;
  font-weight: 300;
  letter-spacing: .1em
}
.tit-wrap h2{
  margin-top: 30px;
  font-size: 16px;
  letter-spacing: .2em;
}
.tit-wrap02{
  text-align: center;
  color: #4b4b4b;
  position: relative;
}
.tit-wrap02 p{
  font-size:14px;
  font-weight: 300;
  letter-spacing: .1em
}
.tit-wrap02 h2{
  margin-top: 15px;
  font-size: 42px;
  line-height: 1.2;
}

@media screen and (max-width: 768px){
  .tit-wrap p{font-size:25px;}
  .tit-wrap h2{
    margin-top: 15px;
    font-size: 12px;
  }
  .tit-wrap02 p{font-size:12px;}
  .tit-wrap02 h2{font-size: 26px;}
}


/*--------------------------------------------------------------------------
 Aimation
---------------------------------------------------------------------------*/
  /*----- フェードイン-----*/
.fadein /* 画面外にいる状態 */{
    opacity : 0.1;
    transform : translate(0, 50px);
    transition : all 900ms;
    }
.fadein.scrollin /* 画面内に入った状態 */{
    opacity : 1;
    transform : translate(0, 0);
    }
/*----- フェードイン-----*/

/*----- フェードダウン-----*/
.fadeDown{
  animation-name:fadeDownAnime;
  animation-duration:3s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

