@charset "UTF-8";
/* css : mobile first               */
/* breakpoint : pc min-width: 1090px */
/*              TB min-width: 768px */
/*              SP 767px以下　　　 　*/
/**********************************************
  base
***********************************************/
:root {/*var(--window-color)*/
  /*color*/
  --base-color: #265e32;
  --sub-color: #cfdedf;
  --accent-color: #f8b500;
  --balance-color: #d3cdbd;
  --non-target-color: #cccccc;
  --hover-color: rgba(162, 153, 127, 0.3);
  --header-color: rgba(255, 255, 255, 0.85);
  --window-color: rgba(0, 0, 0, 0.6);
  /*font（emで設定すると、子要素に影響があり）*/
  --font-serif: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  --font-sans-serif: "源ノ角ゴシック","メイリオ",Meiryo,"ヒラギノ角ゴ ProN",sans-serif;
  --font-size-vl: 3rem;/*48px*/
  --font-size-xxl: 2.25rem;/*36px*/
  --font-size-xl: 2rem;/*32px*/
  --font-size-l: 1.5rem;/*24px*/
  --font-size-m: 1.15rem;/*18.4px*/
  --font-size-u: 1rem;/*16px standard*/
  --font-size-s: 0.7rem;/*14px standard*/
  --font-size-xs: 0.75rem;/*12px*/
  --font-size-xxs: 0.625rem;/*10px*/
}
html {
	width: 100%;
	height: 100%;
	color: #000;
	margin: 0;
	padding: 0;
	font-feature-settings: "palt" 1;/*OpenTypeの自動カーニング指定*/
  font-size: 16px;/*--font-size-s*/
  line-height: 1.5;
  scroll-behavior: smooth;/*スムーススクロールはCSS*/
}
body {
	font-family: var(--font-sans-serif);
	line-height: 1.8;
  height: 100%;
	text-align: justify;
}
iframe {
  vertical-align: bottom;
}
a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.8;
}
ul, li {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}
button {
  display: block;
}

/**********************************************
  utility
***********************************************/
/*text*/
.fwb { font-weight: bold; }
.fwn { font-weight: normal; }

/*padding*/
.pb-100 {
  padding-bottom: 100px;
}
.pb-120 {
  padding-bottom: 120px;
}

/*icon*/
.blank {
  position: relative;
}
.blank::after {
  position: absolute;
  content: url(../images/icon_blank.svg);
  width: 1em;
  height: 1em;
  top: 0;
  right: -1.3em;
  margin: auto;
}

/*　注釈　*/
.ant-black {
  font-size: var(--font-size-xs);
  color: #000;
  margin-left: 1em;
}
.ant-black._ml0 {
  margin-left: 0;
}
.ant-red {
  font-size: var(--font-size-xs);
  color: var(--accent-color);
  margin-left: 1em;
}

/*　アンカーリンク着地点　*/
[id*="anc-"]{
  scroll-margin-top: 100px;
}
[class*="_bgcolor"], [class*="_bgcolor02"]{
  /*idに「anc-」が含まれていて、なおかつclassに「_bgcolor」があるものの指定に直す場合[id*="anc-"]~[class*="_bgcolor"]*/
  scroll-margin-top: 50px;
}

/*各デバイス特有の変更*/
.tel a {
  /*iOS 電話番号と思しき数字にAタグを貼る対策*/
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 1090px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 767px) {
  .sp {
    display: none;
  }
}

/**********************************************
  wrapper
***********************************************/
.wrapper {
  overflow: hidden;
}

/**********************************************
  header
***********************************************/
.header {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 0 0 auto;
  background-color: var(--header-color);
  z-index: 900;/*モーダルのためこの数値を超えない*/
}
@media screen and (min-width: 768px) {
  /* TB・PC */
  .header {
    width: 750px;
  }
}

/**********************************************
  navBtn
***********************************************/
.navBtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: var(--base-color);
  cursor: pointer;
  z-index: 9999;
}
.navBtn__bor {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: all .4s;
}
.navBtn__bor._middle,
.navBtn__bor._bottom {
  margin-top: 10px;
}
/*ボタン開閉*/
.navBtn__bor._top.active {
  transform: rotate(-45deg);
  margin-top: 0;
}
.navBtn__bor._middle.active {
  opacity: 0;
}
.navBtn__bor._bottom.active {
  transform: rotate(45deg);
  margin-top: -14px;
}

/**********************************************
  nav
***********************************************/
.nav {
  position: fixed;
  z-index: 900;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100dvh;/*Dynamic Viewport*/
  background-color: var(--window-color);
  /*動き*/
  transition: all 0.6s;
}
.nav.active {
  top: 0;
}
.nav__list {
  width: fit-content;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.nav__item {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-top: 1px solid var(--sub-color);
}
.nav__link {
  display: block;
  color: var(--sub-color);
  line-height: 1;
  padding: 1em;
}
@media screen and (min-width: 1090px) {/*navのみ切り替えポイント*/
  .nav {
    width: calc(100% - 750px);
    height: 100vh;
  }
  .nav__item:nth-last-child(2) {
    border-bottom: 1px solid var(--sub-color);
  }
}

/**********************************************
  ancLink
***********************************************/
.ancLink {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.ancLink__link {
  position: relative;
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-u);
  line-height: 1;
  text-align: center;
  padding: 0.3rem 1rem;
  color: #fff;
  background-color: var(--base-color);
  cursor: pointer;
  transition: 800ms ease all;
  border: none;
  outline: none;
  display: block;
}
.ancLink__link:hover {
  background: #fff;
  color: var(--base-color);
}
.ancLink__link:before,.ancLink__link:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: var(--base-color);
  transition: 400ms ease all;
}
.ancLink__link:after {
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}
.ancLink__link:hover:before,
.ancLink__link:hover:after {
  width:100%;
  transition:800ms ease all;
}
/**********************************************
  pcFix
***********************************************/
.pcFix {
  position: fixed;
  width: calc(100% - 750px);
  height: 100vh;
  z-index: 0;/*0以下だとリンクが押せなくなる*/
}
/* TB からnavへ移動*/
.pcFix__iconArea {
  display: none;
}
.pcFix__paint {
  min-height: 100vh;
  object-fit: cover;
}
.pcFix__txt {
  font-size: 0;
}
@media screen and (max-width: 765.999px) {
  .pcFix {
    display: none;/*SPで透過しないよう非表示*/
  }
}
@media screen and (min-width: 1000px) {
  /* 1000pxからnavへ移動*/
  .pcFix__iconArea {
    display: block;
    position: absolute;
    width: 193px;
    height: 100vh;
    right: 48px;
  }
  .pcFix__logo {
    text-align: right;
    margin-top: 50px;
  }
  .pcFix__fixBottom {
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 50px;
  }
  .pcFix__policy {
    text-align: right;
  }
  .pcFix__sns {
    width: 193px;
    margin: 24px auto 0;
  }
}
@media screen and (min-width: 768px) {
  /* TB・PC */
  .pcFix__videoArea {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: -1;
    overflow: hidden;
  }
  .pcFix__videoArea::after {
    /*ビデオにトーンフィルター*/
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.3);
    background-image: radial-gradient( #265e32 15%, transparent 20%), radial-gradient(#265e32 15%, transparent 20%);/*ドットの大きさ　広がり*/
    background-size: 10px 10px;/*ドットのサイズ*/
    background-position: 0 0, 10px 10px;/*位置はドットのサイズと同じ数値で設定*/
    background-repeat: repeat;/*ドットを繰り返す*/
  }
  .pcFix__video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}
/**********************************************
  logo
***********************************************/
.logo__rink {
  display: block;
}

/**********************************************
  policy
***********************************************/
.policy__link {
  color: #fff;
}

/**********************************************
  sns
***********************************************/
.sns {
  display: flex;
  justify-content: space-between;
}
/**********************************************
  snsArea(sp innav)
***********************************************/
.snsArea {
  display: block;
  padding-top: 40px;
}
@media screen and (min-width: 1090px) {
  /* TB / PC */
  .snsArea {
    display: none;
  }
}
/**********************************************
  mainContents
***********************************************/
.mainContents {
  position: relative;
  width: 100%;
  margin: 0 0 0 auto;
  background: #fff;
}
@media screen and (min-width: 768px) {
  /* TB・PC */
  .mainContents {
    width: 750px;
  }
}

/**********************************************
  mainView
***********************************************/
.mainView {
  width: 100%;
  position: relative;
}
.mainView__slider {
  width: 100%;
  height: calc((468 / 750)* 100vw);
  max-height: 468px;
  min-height: 234px;
}

/**********************************************
  section
***********************************************/
.section._bgcolor {
  background-color: var(--sub-color);
}
.section._bgcolor02 {
  background-color: var(--balance-color);
}
.section__inner {
  width: 100%;
  margin: 100px auto 0;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  /* TB・PC */
  .section__inner {
    width: 750px;
  }
}

/**********************************************
  inSection
***********************************************/
.inSection__inner {
  width: 100%;
  margin: 100px auto 0;
  padding: 0;
}

/**********************************************
  ttl
***********************************************/
/* PC/TB/SP */
.ttl {
  position: relative;
  font-family: var(--font-sans-serif);
  color: #000;
  font-weight: bold;
  line-height: 1;
}
.ttl._vl {
  font-size: var(--font-size-vl);
}
.ttl._xxl {
  font-size: var(--font-size-xxl);
}
.ttl._xl {
  font-size: var(--font-size-xl);
}
.ttl._l {
  font-size: var(--font-size-l);
}
.ttl._m {
  font-size: var(--font-size-m);
}
.ttl._u {
  font-size: var(--font-size-u);
}
.ttl._s {
  font-size: var(--font-size-s);
}
.ttl._center {
  text-align: center;
}
.ttl._left {
  text-align: left;
}
.ttl._right {
  text-align: right;
}
.ttl__date {
  display: block;
  font-size: var(--font-size-u);
}
.ttl__ja {
  display: block;
  font-size: var(--font-size-xxl);
  text-align: center;
}
.ttl__en {
  display: block;
  width: fit-content;
  font-size: var(--font-size-s);
  text-align: center;
  margin: 23px auto 0;
  position: relative;
}
.ttl__en::after {
  position: absolute;
  content: "";
  background-color: #000;
  width: 100%;
  height: 1px;
  top: -9px;
  left: 0;
  right: 0;
  margin: auto;
}

/**********************************************
  iconTtl
***********************************************/
.iconTtl {
  display: block;
  position: relative;
}
.iconTtl::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.iconTtl._gama::before {
  background-image: url(../images/icon/icon_gama.png);
  width: 40px;
  height: 40px;
}
.iconTtl._clock::before {
  background-image: url(../images/icon/icon_clock.png);
  width: 35px;
  height: 35px;
}
.iconTtl._fire::before {
  background-image: url(../images/icon/icon_fire.png);
  width: 30px;
  height: 40px;
}
.iconTtl._cooker::before {
  background-image: url(../images/icon/icon_cooker.png);
  width: 40px;
  height: 45px;
}
.iconTtl._cooking::before {
  background-image: url(../images/icon/icon_cooking.png);
  width: 40px;
  height: 42px;
}
.iconTtl._company::before {
  background-image: url(../images/icon/icon_company.png);
  width: 40px;
  height: 42px;
}
.iconTtl._car::before {
  background-image: url(../images/icon/icon_car.png);
  width: 40px;
  height: 34px;
}
.iconTtl._sun::before {
  background-image: url(../images/icon/icon_san.png);
  width: 40px;
  height: 39px;
}
.iconTtl._wildlife::before {
  background-image: url(../images/icon/icon_wildlife.png);
  width: 40px;
  height: 41px;
}
.iconTtl._question::before {
  background-image: url(../images/icon/icon_question.svg);
  width: 40px;
  height: 40px;
}

/**********************************************
  deyList
***********************************************/
.news__deyList {
  margin-top: 40px;
}
.deyList__link {
  display: flex;
  justify-content: start;
  align-items: center;
  color: #000;
  border-bottom: 1px solid var(--base-color);
}
.deyList__dey {
  display: block;
  font-size: var(--font-size-u);
  padding: 1rem 0.6875rem;
}
.deyList__txt {
  font-size: var(--font-size-u);
  padding: 1rem 0.6875rem;
}
/**********************************************
  dList(description list)
***********************************************/
.dList {
  display: flex;
  flex-wrap: wrap;
}
.dList__dt {
  width: fit-content;
  padding: 1.5rem 0 0.4rem;
  border-bottom: 1px solid var(--accent-color);
}
.dList__dd {
  width: 100%;
  padding: 1.5rem 0 0.6rem;
  border-bottom: 1px solid var(--base-color);
}
@media screen and (min-width: 768px) {
  /* TB / PC */
  .dList__dt {
    width: 25%;
  }
  .dList__dd {
    width: 72%;
    margin-left: 3%;
  }
}

/**********************************************
  iconList
***********************************************/
.iconList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.iconList._nonflex {
  display: block;
}
.iconList__item {
  position: relative;
  padding-left: 2rem;
}
.iconList__item::before {
  position: absolute;
  content: "";
  width: 19px;
  height: 19px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 0.3rem;
  left: 0;
  margin: auto;
}
.iconList__item._gama::before {
  background-image: url(../images/icon/icon_gama.png);
}
.iconList__item._col2 {
  width: calc(50% - 20px);
}
.iconList__link {
  display: block;
}
/**********************************************
  inList
***********************************************/
.inList {
  padding-left: 1rem;
}

/**********************************************
  btn
***********************************************/
.btn {
  position: relative;
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-u);
  text-align: center;
  padding: 0 2rem;
  cursor: pointer;
  transition: 800ms ease all;
  border: none;
  outline: none;
  display: block;
}
.btn._accent {
  color: #000;
  background-color: var(--accent-color);
}
.btn._accent:hover {
  background: #fff;
  color: var(--accent-color);
}
.btn:before,.btn:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: var(--accent-color);
  transition: 400ms ease all;
}
.btn:after {
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}
.btn:hover:before,
.btn:hover:after {
  width:100%;
  transition:800ms ease all;
}

/**********************************************
  imgArea
***********************************************/
.imgtxtSet {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  /* TB / PC */
  .imgtxtSet {
    justify-content: space-between;
  }
}

/**********************************************
  imgtxt
***********************************************/
.imgtxt {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
}
.imgtxt__ttl {
  margin: 20px 16px 0;
}
.imgtxt__simpleTxt {
  margin: 20px 16px 0;
}
.imgtxt__list {
  margin: 20px 16px 0;
}
.imgtxt__btnArea {
  width: fit-content;
  margin: auto 16px 16px auto;
}
.imgtxt__btn {
  font-size: var(--font-size-u);
  padding: 0.8rem 1.5rem;
  margin-top: 20px;
  line-height: 1;
}
/**********************************************
  imgFlex
***********************************************/
.imgFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.imgFlex__item._col2 {
  width: fit-content;
}
@media screen and (min-width: 768px) {
  /* TB / PC */
  .imgFlex {
    flex-direction: row;
  }
  .imgFlex__item._col2 {
    width: calc((100% - 20px) / 2);
  }
}
/**********************************************
  txtimg
***********************************************/
.txtimg {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.txtimg._reverse {
  flex-direction: column-reverse;
}
.txtimg__txtArea {
  width: 100%;
  max-width: 431px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: center;
}
.txtimg__txtArea._sub {
  background-color: var(--sub-color);
}
.txtimg__ttl {
  margin: 16px;
}
.txtimg__simpleTxt {
  margin: 0 16px;
}
.txtimg__imgArea {
  max-width: 431px;
}
@media screen and (min-width: 750px) {
  /* TB・PC */
  .txtimg {
    flex-grow: 0;
    flex-direction: row;
  }
  .txtimg._reverse {
    flex-direction: row-reverse;
  }
  .txtimg__txtArea {
    width: auto;
    align-self: stretch;
    flex-grow: 1;
    max-width: inherit;
  }
}

/**********************************************
  gapTxtimg
***********************************************/
.gapTxtimg {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  flex-direction: column;
}
.gapTxtimg._reverse {
  flex-direction: column;
}
.gapTxtimg__imgArea {
  position: relative;
  flex-shrink: 0;
  z-index: 10;
  left: 0;
  right: 0;
  margin: auto;
}
.gapTxtimg__txt {
  position: relative;
  align-self: stretch;
  padding: 40px 30px 20px 20px;
  margin-right: -20px;
  top: -20px;
  left: -20px;
  background-color: var(--balance-color);
}
.gapTxtimg__txt._reverse {
  padding: 40px 30px 20px 20px;
  margin-right: -20px;
  top: -20px;
  left: -20px;
  bottom: -20px;
  background-color: var(--balance-color);
}
@media screen and (min-width: 768px) {
  /* TB / PC*/
  .gapTxtimg {
    flex-direction: row;
  }
  .gapTxtimg._reverse {
    flex-direction: row-reverse;
  }
  .gapTxtimg__txt {
    padding: 20px 30px 20px 40px;
    top: 20px;
  }
  .gapTxtimg__txt._reverse {
    padding: 20px 70px 20px 20px;
    margin-right: inherit;
    margin-left: -20px;
    top: inherit;
    left: inherit;
    right: -20px;
  }
}

/**********************************************
  pictoBox
***********************************************/
.pictoBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
}
.pictoBox__item {
  position: relative;
  background-color: #fff;
  border: 2px solid var(--base-color);
}
.pictoBox__item::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.pictoBox__item._col3 {
  width: calc((100% - 20px) / 3);
}
.pictoBox__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-height: 80%;
}
@media screen and (min-width: 768px) {
  /* TB / PC*/
  .pictoBox {
    gap: 20px;
  }
  .pictoBox__item._col3 {
    width: calc((100% - 40px) / 3);
  }
  .pictoBox__img {
    max-height: inherit;
  }
}

/**********************************************
  simpleTxt
***********************************************/
.simpleTxt {
  font-size: 16px;
  line-height: 1.8;
}

/**********************************************
  borderArea
***********************************************/
.borderArea {
  position: relative;
  border: 1px solid var(--base-color);
  padding: 20px;
}
.borderArea::after {
  position: absolute;
  content: "";
  width: 88px;
  height: 91px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  bottom: -4rem;
  right: -1rem;
  margin: auto;
}
.borderArea._iconChair::after {
  background-image: url(../images/icon/icon_chair.png);
}
.borderArea__simpleTxt {
  margin-top: 20px;
}
.borderArea__simpleTxt:first-of-type {
  margin-top: 0;
}

/**********************************************
  tableArea
***********************************************/
.tableArea {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--base-color) var(--sub-color);
}
.tableArea::-webkit-scrollbar {
  height: 3px;
}
.tableArea::-webkit-scrollbar-track {
    background-color: var(--sub-color);
}
.tableArea::-webkit-scrollbar-thumb {
    background-color: var(--base-color);
}
/**********************************************
  simpleTable
***********************************************/
.simpleTable {
  position: relative;
  border-collapse:  collapse;
}
.simpleTable::after {
  position: absolute;
  content: "";
  width: 98px;
  height: 92px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  bottom: -4rem;
  right: 0;
  margin: auto;
}
.simpleTable._iconTent::after {
  background-image: url(../images/icon/icon_tent.png);
}
.simpleTable__th {
  background-color: var(--balance-color);
}
.simpleTable__th,
.simpleTable__td {
  border: solid 1px;
  padding: 10px;
}
.simpleTable__th._sub,
.simpleTable__td._sub {
  border: solid 1px var(--accent-color);
}

/**********************************************
  flexbox
***********************************************/
.flexbox {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;/*基準値　変更の場合は各ページで指定*/
}
.flexbox__item {
  position: relative;
}
.flexbox__link {
  display: block;
}
.flexbox__item._col2 {
  width: calc((100% - 20px) / 2);
}
.flexbox__item._col3 {
  width: calc((100% - 40px) / 3);
}
.flexbox__item._col4 {
  width: calc((100% - 60px) / 4);
}

/**********************************************
  accordion
***********************************************/
.accordion {
  width: 100%;
}
.accordion__item{
  margin: 20px 0;
}

/**********************************************
  faqArea
***********************************************/
/*　PC/TB/SP　*/
.faqArea {
  border: 1px solid #ccc;
}
.faqArea__question {
  position: relative;
  cursor: pointer;
  font-size: var(--font-size-u);
  font-weight: normal;
  padding: 25px 40px 25px 20px;
  transition: all .5s ease;
}
/*アイコンの＋と×*/
.faqArea__question::before,
.faqArea__question::after {
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
}
.faqArea__question::before {
    top:48%;
    right: 20px;
    transform: rotate(0deg);
}
.faqArea__question::after {
    top:48%;
    right: 20px;
    transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.faqArea__question.close::before{
  transform: rotate(45deg);
}
.faqArea__question.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.faqArea__answer {
  display: none;
  background: var(--sub-color);
  margin:0 20px 20px 20px;
  padding: 20px;
}

/**********************************************
  ant
***********************************************/
.ant {
  font-size: var(--font-size-xs);
  margin-left: 1em;
  vertical-align: text-top;
}
.ant._accent {
  color: var(--accent-color);
}
.ant__rink {
  text-decoration: underline;
}

/**********************************************
  contact
***********************************************/
.contact {
  width: 100%;
  margin: 0 0 0 auto;
  background-color: var(--balance-color);
}
.contact__inner {
  padding: 100px 0 120px;
  margin-top: 0;
}
.contact__addressArea {
  margin-top: 60px;
  text-align: center;
}
.contact__tel {
  font-size: var(--font-size-l);
  line-height: 1;
  margin-top: 10px;
}
.contact__hours {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  /* TB・PC */
  .contact {
    width: 750px;
  }
}

/**********************************************
  addressArea
***********************************************/
.addressArea__txt {
  margin-top: 20px;
}

/**********************************************
  tel
***********************************************/
.tel {
  display: block;
  position: relative;
  padding-left: 2rem;
}
.tel::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../images/icon/icon_phone-call.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 0;
  left: 0;
  margin: auto;
  bottom: 0;
}
.tel._pc {
  display: none;
}
.tel._sp{
  display: inline-block;
}

@media screen and (min-width: 768px) {
  /* TB / PC */
  .tel._pc {
    display: inline-block;
  }
  .tel._sp{
    display: none;
  }
}

/**********************************************
  footer
***********************************************/
footer {
  width: 100%;
  margin: 0 0 0 auto;
  background-color: var(--base-color);
}
.footer__inner {
  padding: 100px 20px 120px;
}
.footer__logoImg {
  display: block;
  margin: 0 auto;
  border: 1px solid var(--accent-color);
}
.footer__siteMap {
  width: 100%;
  margin-top: 60px;
}
.footer__coppy {
  color: #fff;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  /* TB・PC */
  footer {
    width: 750px;
  }
}

/**********************************************
  siteMap
***********************************************/
.siteMap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.siteMap__item {
  margin-top: 0.5rem;
}
.siteMap__item._col2 {
  width: calc(50% - 10px);
}
.siteMap__link {
  display: block;
  color: #fff;
}

/**********************************************
  coppy
***********************************************/
.coppy {
  display: block;
  text-align: center;
}