:root {
  --body-color: #222;
  --body-bg: #fff;
  --container-bg: #222;
  --container-bg-gray: #e6e6e6;
  --emphasis-color: #e82212;
  --link-color: #fff;
  --link-hover-color: #00669f;
  --link-hover-color-dark: #003e60;
  /* --link-hover-color: #e82212; */
  --border-color: #999;
  --table-border: #e6e6e6;
  --table-bg: #fafafa;
  --gradient-bg-red: rgb(255,166,107);
  --gradient-linear-red: linear-gradient(90deg, rgba(232,34,18,1) 0%, rgba(255,110,100,1) 30%, rgba(255,166,107,1) 100%);
  --gradient-bg: #3CC7E2;
  --gradient-linear: linear-gradient(45deg, rgba(0,62,96,1) 0%, rgba(63,102,163,1) 56%, rgba(0,147,233,1) 83%, rgba(76,160,199,1));
  --gradient-linear-link: linear-gradient(45deg, rgba(60, 199, 226, 1) 0%, rgba(50, 166, 231, 1) 40%, rgba(38, 114, 228, 1) 50%, rgba(50, 166, 231, 1) 60%, rgba(60, 199, 226, 1) 100%);
  --transition: all .5s ease;
  --vw-without-scrollbar: calc(100vw - var(--scrollbar-width));
}
html, body{
	margin: 0;	/* 余白の削除 */
	padding: 0;	/* 余白の削除 */
	width: 100%;	/* 横の幅を100% */
	font-size:62.5%;
	overflow: auto;
  -webkit-text-size-adjust: 100%; /* iOS文字サイズリセット */
}
body{
  background: var(--body-bg);
  color: var(--body-color);
  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;
}
@media only screen and (min-width: 768px) {
  /* body{
    font-size: 14px;
    font-size: 1.4rem;
  } */

}
main{
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
  /*
  min-height: 100vh;
  min-height: 100dvh;
  */
  overflow:hidden;
}
a{
  color: var(--body-color);
  transition: var(--transition);
}
a:hover{
  transition: var(--transition);
}
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;
}
/* =======================================
	link
======================================= */
.link-area{
  margin-top: 50px;
  text-align: center;
}
.page-link__nav{
  color: var(--link-color);
}
.page-link__nav:hover{
  color: var(--link-hover-color);
}
#contact input[type="button"],
#contact input[type="submit"],
#contact input[type="submit"]:disabled,
.page-link__btn{
  display: inline-block;
  padding: 20px 30px;
  background: var(--gradient-bg);
  background: var(--gradient-linear-link);
  background-position: 1% 50%;
  background-size: 200% auto;
  color: #fff;
  font-weight: bold;
  text-align:center;
  font-size: 2rem;
  text-decoration: none;
  border-radius: 50px;
  box-sizing: border-box;
}
#contact input[type="button"]{
  background: #e4e4e4;
}
#contact input[type="button"]:hover{
  background: var(--body-color);
  color: #fff;
}
@media only screen and (min-width: 500px) {
  #contact input[type="button"],
  #contact input[type="submit"],
  #contact input[type="submit"]:disabled,
  .page-link__btn{
    min-width:400px;
    font-size: 2.7rem;
  }

}
@media only screen and (min-width: 600px) {
  #contact input[type="button"],
  #contact input[type="submit"],
  #contact input[type="submit"]:disabled,
  .page-link__btn{
    min-width:450px;
    font-size: 2.7rem;
  }

}
@media only screen and (min-width: 768px) {
  #contact input[type="button"],
  #contact input[type="submit"],
  #contact input[type="submit"]:disabled,
  .page-link__btn{
    padding: 10px 30px;
    font-size: 1.8rem;
    min-width:300px;
  }

}

#contact input[type="submit"]:hover,
.page-link__btn:hover{
  background-position: 99% 50%;
}
.detail-btn{
  display: inline-block;
  padding: 10px 30px;
  background: #e4e4e4;
  font-weight: bold;
  text-align:center;
  font-size: 1.4rem;
  text-decoration: none;
  min-width:190px;
  border-radius: 50px;
}
.detail-btn:hover{
  background: var(--body-color);
  color: #fff;
}
/* .page-link{
  text-align: center;
} */
button.no-form{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
/* =======================================
	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;
}
.align-items-center {
	align-items: center;
}
.h-100{
  height: 100%;
}
.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%;}
  }
/* =======================================
	ClearFix
======================================= */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {clear: both;}
.clearfix {*zoom: 1;}
/* =======================================
	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;}
.mr10{margin-right:10px;}
.mr20{margin-right:20px;}
.mr30{margin-right:30px;}
.ml10{margin-left:10px;}
.ml20{margin-left:20px;}
.ml30{margin-left:30px;}
.ml40{margin-left:40px;}
.ml50{margin-left:50px;}

/* =======================================
	ぱんくず
======================================= */
#breadcrumb {
  padding:0;
}
#breadcrumb ul li{
  margin-right:20px;
  font-size:1.4rem;
  padding: 15px 0;
}
#breadcrumb ul li a {
  font-size:1.4rem;
  color: var(--link-hover-color);
}
#breadcrumb .icon-arrow__small{
  margin-left: 20px;
}

/* =======================================
	PageNavi
======================================= */
nav.navigation {
	width:100%;
  /* margin-bottom:80px; */
}
div.nav-links{
	/* margin:80px auto 0px;
	max-width:1000px; */
	text-align:center;
}
div.nav-previous {
	float:left;
	width:48%;
	text-align:left;
}
div.nav-next {
	float:right;
	width:48%;
	text-align:right;
}
div.nav-next span.meta-nav {
	float:right;
}
.screen-reader-text{
	display:none;
}
.nav-links .el{
	padding:5px 0;
	margin-right:10px;
}
.nav-links .page-numbers{
	margin-right:10px;
	padding:5px 10px;
}
@media only screen and (min-width: 760px) {
  .nav-links .page-numbers{
    padding:10px 20px;
  }

}
.nav-links .page-numbers{
  border-radius: 5px;
  background: #f2f2f2;
  color: #b3b3b3;
}
.nav-links a.page-numbers{
	text-decoration:none;
	background:#e4e4e4;
  color: var(--body-color);
}
.nav-links a.page-numbers:hover,
.nav-links .page-numbers.current{
	background:var(--link-hover-color-dark);
  color: #fff;
}
/* .nav-previous .post-title {
	  overflow:hidden;
	  text-align:left;
	  text-decoration:underline;
}
.nav-next .post-title {
	  overflow:hidden;
	  text-align:right;
	  text-decoration:underline;
} */

/* =======================================
	PageTop
======================================= */
#pagetop{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--emphasis-color);
  color: #fff;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
}
#pagetop:hover{
  opacity: .7;
}
#pagetop p{
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
}


/* =======================================
	arrow
======================================= */
.icon-arrow__small,
.icon-arrow {
  display: inline-block;
  line-height: 1;
  position: relative;
  width: 10px;
  height: 10px;
  transform: translateX(-25%) rotate(45deg);
  vertical-align: baseline;
}
.icon-arrow.down{
  color: var(--link-hover-color);
  transform: translateX(0%) rotate(135deg);
  transition: var(--transition);
}
.open .icon-arrow.down{
  transform: translateX(0%) rotate(-45deg);
  transition: var(--transition);
}
.icon-arrow__small{
  width: 6px;
  height: 6px;
}

.icon-arrow__small::before, .icon-arrow__small::after,
.icon-arrow::before, .icon-arrow::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
.icon-arrow__small::before,
.icon-arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}
.icon-arrow__small::after,
.icon-arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
}
.icon-arrow__left {
  display: inline-block;
  line-height: 1;
  position: relative;
  width: 10px;
  height: 10px;
  transform: translateX(25%) rotate(-135deg);
  vertical-align: baseline;
}

.icon-arrow__left::before, .icon-arrow__left::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.icon-arrow__left::before {
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.icon-arrow__left::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
}
