@charset "UTF-8";
/* CSS Document */
/*初期設定*/
* {
  margin: 0;
  padding: 0;
}
html{
    font-size: 100px;
}
@media(max-width:680px){
    html{
        font-size: 90px;
    }
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.48;
  font-weight: 400;
  position: relative;
  margin: 0 auto;
	background: #ffffff;
	color: #231815;
}
@media(max-width:880px){
	body{
	font-size: 80px;
}
}
.cont_100_box{
	width: 98%;
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
}
/*floatクリア用*/
.clear {
  clear: both;
}
/*メインコンテンツブロック*/
.clearfix:after {
  content: " "; /* 新しい要素を作る */
  display: block; /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
  overflow: visible;
}
* html .clearfix {
  height: 1px;
  /*¥*/ /*/
  height: auto;
  overflow: hidden;
  /**/
}
a {
 

    color: #231815;
    text-decoration: none;
}
   
a img {
  border: none;
  outline: none;
  vertical-align: bottom; /* 下揃え */
}
.txt-area a.link-btn:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
}
.txt-area a.link-btn {
  transition: all .8s ease;
  -webkit-transition: all .8s ease;
}



.rela {
  position: relative;
}
.abso {
  position: absolute;
}
h1, h2, h3, h4 {
  text-align: center;
}
ul li {
  list-style: none;
}
img{
    display: block;
    max-width: 100%;
    height: auto;
}
.sp {
  display: none;
}


.w750 {
  margin: 0 auto;
  max-width: 750px;
  width: 100%;
}
.abso-center-x {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.abso-center-y {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.abso-center-xy {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
@media(max-width:880px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
.sp-vis{
	display: none!important;
}
@media(max-width:880px){
	.sp-vis{
		display: block!important;
    &.kuten{
      display: inline-block!important;
    }
	}
	.pc-vis{
	display: none!important;
}

}

.radius-table{
    border-radius: 10px;
    border-spacing: 0;
    border: none;
    border-left: 2px solid #d0d0d0;
    border-top: 2px solid #d0d0d0;
    
}
.radius-table tr>*{
    padding: 5px 10px;
    border: none;
    border-right: 2px solid #d0d0d0;
    border-bottom: 2px solid #d0d0d0;
}
.radius-table tr:first-child>*:first-child{
    border-radius: 10px 0 0 0;
}
.radius-table tr:first-child>*:last-child{
    border-radius: 0 10px 0 0;
}
.radius-table tr:last-child>*:first-child{
    border-radius: 0 0 0 10px;
}
.radius-table tr:last-child>*:last-child{
    border-radius: 0 0 10px 0;
}

/*フェードイン*/
@media(min-width:880px){
  .fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 1000ms;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
.fadein.scrollin.delay{
    transition-delay: 300ms;
}  
}

/*フェードイン*/