:root {
  --vw-without-scrollbar: calc(100vw - var(--scrollbar-width));
  --color-base: #212529;
  --color-accent: #185aa5;
  /* --color-accent-right: #1e97d2; */
  /* --color-accent-deep: #0000cc; */
  --color-border: #dcdee3;
  --color-red: #b0353a;
  /* --color-red: #f06543; */
  /* --background-base: rgb(30,151,210);
  --background-gradient: linear-gradient(90deg, rgba(30,151,210,1) 0%, rgba(0,117,185,1) 50%, rgba(0,91,146,1) 100%); */
  /* --color-border-lightblue: #29a5dc;
  --color-border-lightgray: #efefef;
  --color-red2: #FF2100;
  --color-gray: #808080;
  --color-gray2: #969696;
  --color-link: #000;
  --background-gray: #c6c6c6;
  --background-gray2: #ececec;
  --background-lightblue: #e5eff7; */
  --fontsize-10: clamp(0.9rem, 0.864rem + 0.11vw, 1.0rem);
  --fontsize-12: clamp(1.0rem, 0.928rem + 0.23vw, 1.2rem);
  --fontsize-14: clamp(1.3rem, 1.264rem + 0.11vw, 1.4rem);
  --fontsize-16: clamp(1.5rem, 1.464rem + 0.11vw, 1.6rem);
  --fontsize-18: clamp(1.6rem, 1.528rem + 0.23vw, 1.8rem);
  --fontsize-20: clamp(1.8rem, 1.728rem + 0.23vw, 2.0rem);
  --fontsize-22: clamp(2.0rem, 1.928rem + 0.23vw, 2.2rem);
  --fontsize-28: clamp(2.6rem, 2.528rem + 0.23vw, 2.8rem);
  --fontsize-30: clamp(2.8rem, 2.728rem + 0.23vw, 3.0rem);
  --fontsize-34: clamp(3.0rem, 2.854rem + 0.45vw, 3.4rem);
  --fontsize-38: clamp(3.4rem, 3.254rem + 0.45vw, 3.8rem);
  --fontsize-40: clamp(3.6rem, 3.454rem + 0.45vw, 4.0rem);
}
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:#f8fafc;
  font-family: 'Noto Sans JP', sans-serif;
  /*font-family: 'Noto Serif JP', serif;*/
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.0;
  letter-spacing: 0.1rem;
  /*font-weight: 500;*/
  height: 100%;
  font-feature-settings: "palt";
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
/* body:not(.home){
  background:#fff;
} */
main{
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
  /*
  min-height: 100vh;
  min-height: 100dvh;
  */
  overflow:hidden;
}
a{
  color:#000;
}
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;
}
.page-link{
  position: relative;
  font-size: 1.6rem;
  line-height: 1.4;
  text-decoration: none;
  padding: 15px 60px;
  min-width: 300px;
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  border: 1px solid #185aa5;
  background: #185aa5;
  border-radius: 30px;
  color: #fff;
}
.page-link:hover{
  background: #fff;
  color: #185aa5;
  transition: all .5s ease;
}
.page-link:hover .arrow::before{
  background: url(../img/common/icon/icon_arrow.png) no-repeat center/contain;
}
/* .page-link__btn{
  display: inline-block;
  padding: 10px 30px;
  background: #185aa5;
  color: #fff;
  transition: all .5s ease;
  min-width:200px;
  text-align:center;
}
.page-link__btn:hover{
  background: #fff;
  color: #185aa5;
  transition: all .5s ease;
  border: 1px solid #185aa5;
} */
/* .page-link__button{
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
} */
.arrow,
.arrow.white{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: inline-block;
  width: 30px;
  height: 30px;
}
.page-link .arrow{
  left: auto;
  right: 0;
}
.arrow.white{
  background: #fff;
}
.page-link__button .arrow{
  right: 0;
}
.arrow.white.down::before,
.arrow::before,
.arrow.white::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 10px;
  height: 20px;
  background: url(../img/common/icon/icon_arrow_white.png) no-repeat;
  background-position: center;
  background-size: contain;
}
.arrow.white.down::before,
.arrow.white::before{
  background: url(../img/common/icon/icon_arrow.png) no-repeat;
  background-position: center;
  background-size: contain;
}
.arrow.white.down::before{
  transform: translate(-50%,-50%) rotate(-90deg);
}

/* .box-arrow{
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #185aa5;
}
.box-arrow::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 16px;
  height: 5px;
  background: url(../img/common/icon/icon_arrow.png) no-repeat center/contain;
}
a:hover .box-arrow{
  background: #185aa5;
}
a:hover .box-arrow::before{
  background: url(../img/common/icon/icon_arrow_white.png) no-repeat center/contain;
}
.box-arrow.white {
  border: 1px solid #fff;
}
.box-arrow.white::before{
  background: url(../img/common/icon/icon_arrow_white.png) no-repeat center/contain;
}
a:hover .box-arrow.white{
  background: #fff;
}
a:hover .box-arrow.white::before{
  background: url(../img/common/icon/icon_arrow.png) no-repeat center/contain;
} */


.circle-link{
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #185aa5;
  border: 1px solid #185aa5;
}
.circle-link.white{
  background: #fff;
  border: 1px solid #fff;
}
.circle-link.white .arrow::before{
  background: url(../img/common/icon/icon_arrow.png) no-repeat center/contain;
}
a:hover .circle-link{
  background: #fff;
}
a:hover .circle-link .arrow::before{
  background: url(../img/common/icon/icon_arrow.png) no-repeat center/contain;
}
a:hover .circle-link.white{
  background: #185aa5;
}
a:hover .circle-link.white .arrow::before{
  background: url(../img/common/icon/icon_arrow_white.png) no-repeat center/contain;
}
/* =======================================
	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;
}
.align-center{
  align-items: center;
}
/* =======================================
	ClearFix
======================================= */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {clear: both;}
.clearfix {*zoom: 1;}
/* =======================================
	Margin
======================================= */
.mb10{margin-bottom:10px !important;}
.mb20{margin-bottom:20px !important;}
.mb30{margin-bottom:30px !important;}
.mb40{margin-bottom:40px !important;}
.mb50{margin-bottom:50px !important;}
.mb60{margin-bottom:60px !important;}
.mb70{margin-bottom:70px !important;}
.mb80{margin-bottom:80px !important;}
.mb90{margin-bottom:90px !important;}
.mb100{margin-bottom:100px !important;}
.mt10{margin-top:10px !important;}
.mt20{margin-top:20px !important;}
.mt30{margin-top:30px !important;}
.mt40{margin-top:40px !important;}
.mt50{margin-top:50px !important;}
.mt60{margin-top:60px !important;}
.mt70{margin-top:70px !important;}
.mt80{margin-top:80px !important;}
.mt90{margin-top:90px !important;}
.mt100{margin-top:100px !important;}
.order-1{ order:0; }
  @media only screen and (min-width: 768px) {
    .order-1{ order:-1; }
  }

/* =======================================
	ぱんくず
======================================= */
#breadcrumb {
  padding:1px 0px;
}
#breadcrumb ul {
  /* max-width:1080px;
  margin: 0 5vw; */
}
#breadcrumb ul li{
  margin-right:20px;
  font-size:1rem;
  padding: 10px 0;
}
#breadcrumb ul li::after{
  margin-left:20px;
  display: inline-block;
  content: ">";
  font-weight: 900;
  position:relative;
  font-size:1.0rem;
}
#breadcrumb ul li:last-child::after{
  content:"";
}
#breadcrumb ul li a {
  color: var(--color-accent);
}

/* =======================================
	ページ送り
======================================= */
nav.navigation {
	width:100%;
  text-align: center;
}
/* .pagination{
	margin:80px auto 0px;
	max-width:1000px;
	text-align:center;
} */
.nav-previous {
	float:left;
	width:48%;
	text-align:left;
}
.nav-next {
	float:right;
	width:48%;
	text-align:right;
}
.nav-next span.meta-nav {
	float:right;
}
.screen-reader-text{
	display:none;
}
.pagination a.page-numbers{
  padding: 3px 13px;
	margin-right:10px;
	color:#fff;
	text-decoration:none;
	background:var(--color-accent);
	border:1px solid #fff;
  transition: all .5s ease;
  border:1px solid var(--color-accent);
  border-radius: 10px;
}
.pagination a.page-numbers:hover{
	background:rgba(255,255,255, 1);
	transition: all .5s ease;
  color:var(--color-accent);
  border:1px solid var(--color-accent);
}
.pagination span.current{
  padding: 3px 13px;
	margin-right:10px;
	color:var(--color-accent);
	text-decoration:none;
	background:rgba(255,255,255, 1);
  transition: all .5s ease;
  border:1px solid var(--color-accent);
  border-radius: 10px;
}
.nav-previous .post-title {
	  overflow:hidden;
	  text-align:left;
	  text-decoration:underline;
}
.nav-next .post-title {
	  overflow:hidden;
	  text-align:right;
	  text-decoration:underline;
}

/* =======================================
	table contact
======================================= */
#contact-table.table {
  margin: 0 auto 50px;
  padding: 50px 5vw;
  display: table;
  background: #fff;
  box-sizing: border-box;
  border-radius: 20px;
  width: 100%;
}
#contact-table.table .tbody {
  display: table-row-group;
}
#contact-table.table .tbody tr{
  display: block;
  border: 1px solid #ccc;
  border-bottom: none;
  padding: 1em;
  background: #fff;
}
#contact-table.table .tbody .tr > div {
  display: block;
  text-align: center;
  border-top: 1px solid #ccc;
  overflow-x: hidden;
}
#contact-table.table .tbody .tr {
  display:table;
  width:100%;
}
#contact-table.table .tbody .tr:last-child {
  border-bottom: 1px solid #ccc;
}
#contact-table.table .tbody .tr > div.th {
  padding: 15px 0 15px 15px;
  vertical-align:middle;
  text-align:left;
}
#contact-table.table .tbody .tr > div.td {
  padding: 15px 5px;
  background:#fff;
  text-align:left;
}
#contact-table.table .tbody .tr > div.td > div.tel {
  font-size:90%;
}
#contact-table.table .tbody .tr > div.td > div.fax {
  font-size:90%;
}

#contact-table.table .count{
  display: block;
  line-height: 1;
  color: #ccc;
}
@media only screen and (min-width: 768px) {
  #contact-table.table {
    padding: 50px;
  }
  #contact-table.table .tbody .tr > div {
    display: table-cell;
  }
  #contact-table.table .tbody .tr > div.th {
      width:30%;
  }
  #contact-table.table .tbody .tr > div.td {
      width:70%;
  }
}
@media only screen and (min-width: 940px) {
  #contact-table.table {
    max-width: 900px;
  }
}
#contact-table .agree{
  display: block;
  margin-top: 15px;
}
.thanks{
  margin: 100px auto;
  padding: 50px;
  display: table;
  max-width: 900px;
  line-height: 2;
  font-size: 1.6rem;
  box-sizing: border-box;
  background: #fff;
}
.thanks .from{
padding-top: 25px;
}
/* =======================================
	PRIVACY
======================================= */
#page-privacy.contents-body__inner {
  padding: 50px 0;
  margin-bottom: 0px;
}
#page-privacy .bloc-header{
  text-align: center;
}
#page-privacy .bloc-header h3{
  font-size: 1.8rem;
  margin: 30px 0 20px 0;
  font-size: 2.0rem;
  line-height: 140%;
}
#page-privacy p{
  margin: 20px 0;
  text-align: left;
}
#page-privacy ul{
  margin: 20px 0 0 40px;
}
#page-privacy ul li{
  list-style: outside decimal;
  line-height: 140%;
  margin: 10px 0 0 0;
}
#page-privacy ul li ul{
  margin-bottom: 20px;
}
#page-privacy ul li ul li{
  list-style: outside decimal;
  line-height: 140%;
  margin: 10px 0 0 0;
}
/*
#page-privacy ul.privacy-address{
  margin: 50px auto 0;
}
#page-privacy ul.privacy-address li{
  margin: 0;
  list-style: none;
  font-size: 1.4rem;
  line-height: 1.6;
}
*/

/* =======================================
	pagetop
======================================= */
#pagetop{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #185aa5;
  color: #fff;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
  transition: all .5s ease;
}
#pagetop p{
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
margin-top: 28px;
}
#pagetop .arrow{
  transform: translate(-50%,-100%)rotate(-90deg);
}
#pagetop:hover{
  opacity: .6;
  transition: all .5s ease;
}
/* #pagetop::before{
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  width: 12px;
  height: 2.5px;
  background: url(../img/common/icon/icon_bar_white.png) no-repeat;
  background-position: center;
  background-size: contain;
}
#pagetop::after{
  content: "";
  position: absolute;
  top: 43px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  transition: all .5s ease;
}
#pagetop:hover::after{
  top: 30px;
  transition: all .5s ease;
} */