:root {
  --vw-without-scrollbar: calc(100vw - var(--scrollbar-width));
  --color-base: #333;
}
html{
	margin: 0;	/* 余白の削除 */
	padding: 0;	/* 余白の削除 */
	width: 100%;	/* 横の幅を100% */
	font-size:62.5%;
	overflow: auto;
  -webkit-text-size-adjust: 100%; /* iOS文字サイズリセット */
}
body{
	margin: 0;	/* 余白の削除 */
	padding: 0;	/* 余白の削除 */
	width: 100%;	/* 横の幅を100% */
	overflow: auto;
  background:#fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.0;
  letter-spacing: 0.1rem;
  color: var(--color-base);
  height: 100%;
  font-feature-settings: "palt";
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
main{
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow:hidden;
}
a{
  transition: opacity .5s ease;
}
a:hover{
  opacity: .6;
  transition: opacity .5s ease;
}
a[href^="tel:"] {
  pointer-events: inherit;
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img{
  max-width:100%;
  height:auto;
  display:block;
  margin-left:auto;
  margin-right:auto;
}
.pcbr::before {
  content: "";
  white-space:normal;
}
.only-pc{display: none;}
.only-sp{display: block;}
  @media only screen and (min-width: 768px) {
    .pcbr::before {
      content: "\A";
      white-space: pre;
    }
    .only-pc{display: block;}
    .only-sp{display: none;}
  }
.vertical-rl{
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
/* =======================================
	table-layout
======================================= */
.flex{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position:relative;
}
.flex.space-between{
	-ms-flex-line-pack: justify;
	align-content: space-between;
}
.flex.oreder1{
	-webkit-box-ordinal-group:2;
	-ms-flex-order:1;
	order:1;
}
.align-self-center {
	-ms-flex-item-align: center;
	align-self: center;
}
.flex .col {
  position:relative;
}
.w1, .w2, .w3, .w4,
.w5, .w6, .w7, .w8,
.w9, .w10, .w11 {
  width:100%;
}
  @media only screen and (min-width: 768px) {
    .w1 { width: 8.33333%;}
    .w2 { width:16.66666%;}
    .w3 { width:25%;}
    .w4 { width:33.33333%;}
    .w5 { width:41.66666%;}
    .w6 { width:50%;}
    .w7 { width:58.33333%;}
    .w8 { width:66.66666%;}
    .w9 { width:75%;}
    .w10 { width:83.33333%;}
    .w11 { width:91.66666%;}
    .w12 { width:100%;}
  }
.justify-c-s-between{
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
/* =======================================
	ClearFix
======================================= */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {clear: both;}
/* =======================================
	Margin
======================================= */
.mb10{margin-bottom:10px;}
.mb20{margin-bottom:20px;}
.mb30{margin-bottom:30px;}
.mb40{margin-bottom:40px;}
.mb50{margin-bottom:50px;}
.mb60{margin-bottom:60px;}
.mb70{margin-bottom:70px;}
.mb80{margin-bottom:80px;}
.mb90{margin-bottom:90px;}
.mb100{margin-bottom:100px;}
.mt10{margin-top:10px;}
.mt20{margin-top:20px;}
.mt30{margin-top:30px;}
.mt40{margin-top:40px;}
.mt50{margin-top:50px;}
.mt60{margin-top:60px;}
.mt70{margin-top:70px;}
.mt80{margin-top:80px;}
.mt90{margin-top:90px;}
.mt100{margin-top:100px;}
/* =======================================
	pagetop
======================================= */
#pagetop{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(to top,
    #1d4bf9 0%,
    #2e9eeb 100%
  );
  color: #fff;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
  transition: all .5s ease;
}
#pagetop:hover{
  opacity: .6;
  transition: all .5s ease;
}
#pagetop p{
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
  line-height: 60px;
}