@charset "UTF-8";
/**********************************************
  base
***********************************************/
:root {/*var(--window-color)*/
  /*color*/
  --base-color: #a2997f;
  --sub-color: #dfcfdb;
  --accent-color: #6e6457;
  --balance-color: #dad6cc;
  --non-target-color: #f2ece6;
  --attention-color: #c75776;
  --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: "Verdana",Arial,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","ヒラギノ角ゴ ProN",sans-serif;
  --font-size-xxl: 3rem;/*48px*/
  --font-size-xl: 2rem;/*32px*/
  --font-size-l: 1.5rem;/*24px*/
  --font-size-m: 1.15rem;/*18.4px*/
  --font-size-s: 1rem;/*16px 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; }

/*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: var(--accent-color);
  margin-left: 1em;
}
.ant-red {
  font-size: var(--font-size-xs);
  color: var(--attention-color);
  margin-left: 1em;
}

/*　アンカーリンク着地点　*/
.anc-basic {
  scroll-margin-top: 100px;
}
@media screen and (max-width: 849px) {
  /* TB/SP */
  .anc-basic {
    scroll-margin-top: 50px;
  }
}

/*　PC/SP切り替え　*/
@media screen and (min-width: 848.999px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 849px) {
  /* TB/SP */
  .pc {
    display: none;
  }
}

/*/////////////////////////////////////////////////////////////////////*/
/*  boxstyle                                                           */
/*/////////////////////////////////////////////////////////////////////*/

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

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

/**********************************************
  header
***********************************************/
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  background-color: var(--header-color);
  z-index: 900;/*モーダルのためこの数値を超えない*/
}
.header__logo {
  margin-left: 20px;
}
.header__logoImg {
  vertical-align: middle;
}
@media screen and (min-width: 848.999px) {
  .header {
    height: 100px;
  }
  .header__logo {
    width: 120px;
  }
}
@media screen and (max-width: 849px) {
  /* TB */
  .header {
    height: 50px;
  }
  .header__logo {
    width: calc(120px / 2);
  }
}

/**********************************************
  footer
***********************************************/
footer {
  width: 100%;
  background-color: var(--base-color);
}
.footer__inner {
  margin: 0 auto;
  display: flex;
}
.footer__logoArea {
  text-align: center;
}
.footer__txt {
  margin-top: 20px;
}
.footer__coppy {
  padding-bottom: 60px;
}

@media screen and (min-width: 848.999px) {
  .footer__inner {
    max-width: 1090px;
    padding: 100px 20px 120px;
  }
  .footer__logoArea {
    max-width: 272px;
    margin-right: calc((80/1920) * 100vw);
    margin-right: min(4.166vw,80px);
    text-align: center;
  }
  .footer__nav {
    width: calc( 100% - 272px);
  }
}
@media screen and (max-width: 849px) {
  /* TB/SP */
  .footer__inner {
    flex-wrap: wrap;
    max-width: 90%;
    padding: 50px 20px 120px;
  }
  .footer__logoArea {
    max-width: 90%;
    margin: 50px auto 0;
    order: 2;
  }
  .footer__nav {
    width: 90%;
    order: 1;
  }
}

/**********************************************
  mainView
***********************************************/
.mainView {
  width: 100%;
  position: relative;
}
/**********************************************
  innerView
***********************************************/
.innerView {
  width: 100%;
  height: 540px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.innerView__ttl {
  color: #fff !important;
  text-shadow: 0 0 10px #FFF, 0 0 15px #FFF;
}

@media screen and (min-width: 848.999px) {
  .innerView {
    height: 540px;
  }
}
@media screen and (max-width: 849px) {
  /* TB */
  .innerView {
    height: 63.6vw;
  }
}
@media screen and (max-width: 768px) {
  /* SP */
  .innerView {
    height: 70.31vw;
  }
}

/**********************************************
  section
***********************************************/
.section__inner {
  width: calc((1090 / 1150)* 100vw);
  max-width: 1090px;
  margin: 220px auto 0;/*margin: 100px auto 120px;*/
}
.section__inner._start {
  margin: 100px auto 0;
}

@media screen and (max-width: 849px) {
  /* TB */
  .section__inner {
    width: calc(100% - (30px + 30px));
    margin: 110px auto 0;
  }
}
@media screen and (max-width: 768px) {
  /* SP */
  .section__inner {
    width: calc(100% - (20px + 20px));
  }
}

/*/////////////////////////////////////////////////////////////////////*/
/*  component                                                          */
/*/////////////////////////////////////////////////////////////////////*/

/**********************************************
  navBtn
***********************************************/
.navBtn {
  display: none;
  z-index: 9999;
}

@media screen and (max-width: 849px) {
  /* TB/SP */
  .navBtn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    cursor: pointer;
  }
  .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 {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  top: 0;
  
  z-index: 10;
}
.nav__list {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.nav__item {
  text-align: center;
  font-weight: bold;
  margin-right: 0.5em;
}
.nav_link {
  display: block;
}
.nav__en {
  display: block;
  font-size: 12px;
}

@media screen and (min-width: 848.999px) {
  .nav {
    left: 0;
    width: calc(100% - 120px);
    height: 100px;
  }
  .nav__list {
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    padding-right: 20px;
  }
  .nav__item {
    font-size: 18px;
  }
  .nav__item:last-child {
    margin-right: 0;
  }
  .nav_link {
    padding: 0 0.5em;
    position: relative;
  }
}
@media screen and (max-width: 849px) {
  /* TB/SP */
  .nav{
    position: fixed;
    z-index: 900;
  /*ナビのスタート位置と形状*/
    top:0;
    right: -120%;
    width: 100%;
    height: 100vh;/*ナビの高さ*/
    background-color: var(--window-color);
    /*動き*/
    transition: all 0.6s;
  }
  .nav.active {
    right: 0;
  }
  .nav__list {
    width: 90%;
    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__item:last-child {
    border-bottom: 1px solid var(--sub-color);
  }
  .nav_link {
    display: block;
    color: var(--sub-color);
    line-height: 1;
    padding: 1.5em 1em;
  }
  .nav__en {
    margin-top: 1em;
  }
}

/**********************************************
  ancNav
***********************************************/
.ancNav {
  display: flex;
  justify-content: center;
}
.ancNav__item {
  margin-left: 3em;
}
.ancNav__link {
  display: block;
  position: relative;
}
.ancNav__link::before {
  position: absolute;
  content: "▼";
  width: 1em;
  height: 1em;
  top: 0;
  left: -1em;
}

@media screen and (max-width: 768px) {
  /* SP */
  .ancNav {
    flex-direction: column;
    align-items: center;
  }
  .ancNav__item {
    margin-left: 0;
    margin-top: 0.5em;
  }
}

/**********************************************
  map
***********************************************/
.map {
  max-width: 100%;
  height: 450px;
  margin: auto;
}
.map__iframe {
  width: 100%;
  height: 100%;
}

/**********************************************
  sitemap
***********************************************/
.sitemap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  line-height: 1.5;
}
.sitemap__txt {
  margin-bottom: 20px;
  white-space: nowrap;
}
.sitemap__rink {
  display: block;
}
.sitemap__inList {
  padding-left: 1em;
}

@media screen and (min-width: 848.999px) {
  .sitemap__item {
    width: calc((100% / 3) - 20px);
  }
}
@media screen and (max-width: 849px) {
  /* TB/SP */
  .sitemap {
    flex-wrap: wrap;
  }
  .sitemap__item {
    width: calc((100% / 2) - 20px);
  }
}

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

/**********************************************
  slider01
***********************************************/
.slider01 {
  position:relative;
	z-index: 1;
}

/*　背景画像設定　*/
.slider01__img {
  height: 100vh;
  margin: auto;
  max-height: 100vh;
  max-width: 100vw;
  object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 849px){
  .slider01__item img {
    height: auto;/*100vhに引き延ばすのではなく、画像の比率を優先させる*/
  }
}
/**********************************************
  newsTicker
***********************************************/
.newsTicker {
  width: 100%;
  background-color: var(--accent-color);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.newsTicker__item {
  padding: 20px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}
.newsTicker__rink {
  color: #fff;
}
.newsTicker__date {
  color: #fff;
  position: relative;
}
.newsTicker__date::after {
  position: absolute;
  content: "|";
  top: 0.05em;
  right: -1em;
}
.newsTicker__rink {
  margin-left: 1.5em;
}
/*newsティッカー固有のCSS改編*/
.bx-wrapper {
  width: 50%;
  position: absolute;
  margin-bottom: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  background: transparent;
  bottom: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  /* SP */
  .newsTicker {
    width: 100%;
  }
  /*newsティッカー固有のCSS改編*/
.bx-wrapper {
  width: 100%;
  }
}
/**********************************************
  modal
***********************************************/
.modal {
  display: flex;
  justify-content: space-between;
}
.modal__imgArea {
  position: relative;
}
.modal__item:hover {
  background-color: #000;
  background-blend-mode: multiply;
}
.modal__rink {
  display: block;
  cursor: pointer;
}
.modal__caption {
  display: none;
  cursor: pointer;
}
.modal__caption.show {
  position: absolute;
  color: #fff;
  background-color: rgba(000, 000, 000, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .modal {
    flex-wrap: wrap;
    gap: 20px;
  }
}
/**********************************************
  caption
***********************************************/
.caption {
  padding: 20px;
}
.caption__ttl {
  font-family: var(--font-serif);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  line-height: 1;
}
.caption__ttl._sl {
  font-size: var(--font-size-l);
}
.caption__price {
  font-size: var(--font-size-s);
}
.caption__txt {
  margin-top: 20px;
}
/**********************************************
  slider02
***********************************************/
.slider02 {
  width: 94%;
  margin:0 auto;
  display: flex;
  justify-content: space-between;
}
.slider02__imgArea {
  position: relative;
}
.slider02__item:hover {
  background-color: #000;
  background-blend-mode: multiply;
}
.slider02__img {
  width: 100%;
  max-width: 323px;
  height:auto;
}
.slider02__link {
  display: block;
  cursor: pointer;
}
.slider02__caption {
  display: none;
  cursor: pointer;
}
.slider02__caption.show {
  position: absolute;
  color: #fff;
  background-color: rgba(000, 000, 000, 0.3);
  width: 100%;
  padding: 0.5em;
  max-width: 323px;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*slick特有のCSSの変更は各ページのCSSにて変更*/

/**********************************************
  btn
***********************************************/
.btn {
  font-family: var(--font-sans-serif);
  background-color: var(--accent-color);
  font-size: var(--font-size-m);

  text-align: center;
}
a.btn__rink {
  display: block;
  color: #fff;
  padding: 20px;
}

/**********************************************
  ttl
***********************************************/
/* PC/TB/SP */
.ttl {
  font-family: var(--font-serif);
  color: var(--accent-color);
  font-weight: bold;
  line-height: 1;
}
.ttl._vl {
  font-size: var(--font-size-xxl);
}
.ttl._l {
  font-size: var(--font-size-xl);
}
.ttl._sl {
  font-size: var(--font-size-l);
}
.ttl._ll {
  font-size: var(--font-size-m);
}
.ttl._center {
  text-align: center;
}
.ttl._left {
  text-align: left;
}
.ttl._right {
  text-align: right;
}
.ttl._vLine {
  border-left: 4px solid #6e6457;
  padding-left: 1em;
}

@media screen and (max-width: 849px) {
  /* TB/SP */
  .ttl._vl {
    font-size: var(--font-size-xl);
  }
  .ttl._l {
    font-size: var(--font-size-l);
  }
  .ttl._sl {
    font-size: var(--font-size-m);
  }
  .ttl._ll {
    font-size: var(--font-size-s);
  }
}

/**********************************************
  inList
***********************************************/
/* PC/TB/SP */
.inList__item {
  margin-bottom: 20px;
  white-space: nowrap;
}
.inList__rink {
  position: relative;
  display: block;
}
.inList__rink::before{
  position: absolute;
  content: "-";
  top: 0;
  bottom: 0;
  left: -0.8em;
}

/**********************************************
  imgtxtBox
***********************************************/
/* PC/TB */
.imgtxtBox {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.imgtxtBox__item {
  width: calc((100% -40px) / 3);
  max-width: 350px;
  height: auto;
}
.imgtxtBox__rink {
  display: block;
}
.imgtxtBox__img {
  width: 100%;
  height: auto;
}
.imgtxtBox__ttl {
  font-size: var(--font-size-m);
  color: var(--accent-color);
  font-weight: bold;
  line-height: 1;
  margin-top: 20px;
}
.imgtxtBox__txt {
  font-size: var(--font-size-s);
  color: var(--accent-color);
  margin-top: 15px;
}
@media screen and (max-width: 849px) {
  .imgtxtBox {
    flex-wrap: wrap;
    justify-content: center;
  }
  /* TB */
  .imgtxtBox__item {
    width: calc((100% -40px) / 2);
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  /* SP */
  .imgtxtBox {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .imgtxtBox__item {
    width: 100%;
    margin-top: 40px;
  }
  .imgtxtBox__item:first-child{
    margin-top: 0;
  }
}

/**********************************************
  whiteBox
***********************************************/
/* PC/TB */
.whiteBox {
  width: 50%;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.5);
}
.whiteBox__txt {
  margin-top: 2em;
}
.whiteBox__txt:first-child {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  /* SP */
  .whiteBox {
    width: 100%;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.5);
  }
}

/**********************************************
  imgTxt
***********************************************/
/* TB/SP */
.imgTxt {
  display: flex;
  justify-content: space-between;
}
.imgTxt._reverse {
  flex-direction: row-reverse;
}
.imgTxt__imgArea {
  /*widthは各ページに設定*/
  flex-shrink: 0;
}
.imgTxt__txtArea {
  flex-grow: 1;
}
.imgTxt__txt {
  margin-top: 40px;
}
@media screen and (max-width: 849px) {
  /* TB */
  .imgTxt__txt {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  /* SP */
  .imgTxt {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .imgTxt__imgArea  {
    width: 100%;
    text-align: center;
  }
  .imgTxt__txtArea {
    width: auto;
    max-width: 503px;
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
  }
}

/**********************************************
  allergy
***********************************************/
.allergy {
  display: flex;
  justify-content: flex-start;
  line-height: 1;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 20px;
}
.allergy_ttl {
  min-width: 150px;
  line-height: 1.8;
  font-weight: bold;
  position: relative;
  align-self: center;
}
.allergy_ttl::after {
  position: absolute;
  content: "";
  width: 2px;
  height: auto;
  background-color: var(--accent-color);
  top: 0;
  bottom: 0;
  left: 8em;
  margin: auto;
}
.allergy__area {
  display: flex;
  flex-wrap: wrap;
}
.allergy__item._srm {
  min-width: 355px;
  display: flex;
}
.allergy__item._esrm {
  min-width: 507px;
  display: flex;
}
.allergy__dt {
  width: 45%;
  font-weight: bold;
  line-height: 1.8;
}
.allergy__dt._srm {
  max-width: 146px;
}
.allergy__dd {
  width: 55%;
  position: relative;
  line-height: 1.8;
}
.allergy__dd::before {
  position: absolute;
  content: "";
  width: 2em;
  height: 2px;
  border-top: 2px dotted var(--accent-color);
  top: 0;
  bottom: 0;
  left: -2.5em;
  margin: auto;
}

@media screen and (max-width: 768px) {
  /* SP */
  .allergy {
    flex-direction: column;
  }
  .allergy_ttl::after {
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    top: inherit;
    bottom: -10px;
    left: 0;
  }
  .allergy_ttl {
    width: 100%;
    text-align: center;
  }
  .allergy__area {
    width: 100%;
    margin-top: 20px;
    flex-direction: column;
  }
  .allergy__item {
    width: 100%;
  }
  .allergy__item._srm {
    min-width: inherit;
    flex-wrap: wrap;
  }
  .allergy__item._esrm {
    min-width: inherit;
    flex-wrap: wrap;
  }
  .allergy__dt {
    width: auto;
    font-weight: bold;
  }
  .allergy__dt._srm {
    max-width: inherit;
  }
  .allergy__dd {
    width: auto;
    position: relative;
    margin-left: 3em;
  }
  .allergy__dd::before {
    position: absolute;
    content: "";
    width: 2em;
    height: 2px;
    border-top: 2px dotted var(--accent-color);
    top: 0;
    bottom: 0;
    left: -2.5em;
    margin: auto;
  }
}

/**********************************************
  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);
}
.flexbox__caption {
  display: none;
}
.flexbox__caption.show {
  position: absolute;
  width: auto;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: bold;
  color: #fff;
  line-height: 1;
  padding: 0.5em;
  background-color: var(--base-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@media screen and (max-width: 849px) {
  /* TB */
  .flexbox__caption {
    /*min-width: 170px;*/
    max-width: 343px;
  }
}
@media screen and (max-width: 768px) {
  /* SP */
  .flexbox__item._col2 {
    width: 100%;
    text-align: center;
  }
  .flexbox__item._col3 {
    width: calc((100% - 20px) / 2);
  }
  .flexbox__item._col4 {
    width: calc((100% - 40px) / 3);
  }
}

/**********************************************
  misaligned
***********************************************/
.misaligned {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.misaligned__item {
  width: 50%;
  position: relative;
}
.misaligned__txtArea {
  text-shadow: 0 0 10px #FFF;
  z-index: 10;
}
.misaligned__ttl {
  margin-top: 60px;
}
.misaligned__txt {
  margin-top: 40px;
}

@media screen and (max-width: 849px) {
  /* TB/SP */
  .misaligned__item {
    width: 70%;
  }
}

/**********************************************
  imgClip
***********************************************/
.imgClip {
  position: relative;
}
.imgClip::after {
  position: absolute;
  content: "";
  background-image: url(../images/about/about_history.jpg), linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.1) 40%,rgba(255, 255, 255, 0));
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: screen;
}

@media screen and (min-width: 848.999px) {
  /* PC */
  .imgClip::after {
    width: 676px;
    height: 484px;
    bottom: -50px;
    right: 0;
  }
}
@media screen and (max-width: 849px) {
  /* TB/SP */
  .imgClip::after {
    width: calc((676 / 849)*100vw);
    height: calc((400 / 849)*100vw);
    bottom: -100px;
    right: 0;
    background-size: cover;
    background-image: url(../images/about/about_history.jpg), linear-gradient(110deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.1) 80%,rgba(255, 255, 255, 0))
  }
}

/**********************************************
  dList(description list)
***********************************************/
/* PC */
.dList {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
.dList__dt {
  width: 15%;
  font-weight: bold;
  padding: 25px 0 10px 20px;
  align-self: stretch;
}
.dList__dd {
  width: 85%;
  font-weight: normal;
  padding: 25px 20px 10px 0;
}

@media screen and (max-width: 849px) {
  /* TB/SP */
  .dList {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .dList__dt {
    width: 100%;
    padding: 25px 0 0;
  }
  .dList__dd {
    width: 100%;
    padding: 10px 20px 10px 0;
  }
}

/**********************************************
  template__date
***********************************************/
.template__date {
  font-size: var(--font-size-s);
  vertical-align: middle;
  margin-right: 2em;
}
.template__ttl {
  padding-left: 7px;
  padding: 10px 20px 10px 7px;
}

@media screen and (max-width: 768px) {
  /* SP */
  .template__date {
    display: block;
    margin-bottom: 0.5em;
  }
}

/**********************************************
  hover
***********************************************/
.hover__thumArea {
  margin-top: 20px;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
}
.hover__item {
  width: calc((100% -20px) / 3);
  max-width: 170px;
  height: auto;
}
.hover__thum {
  cursor: pointer;
}

/**********************************************
  detaArea
***********************************************/
.detaArea__ttl {
  border-bottom: 1px solid var(--base-color);
  padding: 0 10px 10px 0;
}

/**********************************************
  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-s);
  font-weight: normal;
  padding: 20px 40px 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: #f3f3f3;
  margin:0 20px 20px 20px;
  padding: 20px;
}

/**********************************************
  List
***********************************************/
.List {
  width: 100%;
}
.List__dt {
  font-weight: bold;
  margin-top: 35px;
}
.List__dd {
  border: 1px solid var(--base-color);
  padding: 10px;
  margin-top: 5px;
  background-color: #fff;
}

/**********************************************
  required
***********************************************/
.required {
  position: relative;
}
.required.required::after {
  position: absolute;
  content: "必須";
  font-size: var(--font-size-xs);
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 4em;
  padding: 5px 9px;
  margin-left: 1em;
  line-height: 1;
  background-color: var(--accent-color);
}

/**********************************************
  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;
}
/**********************************************
  submit
***********************************************/
.submit {
  font-size: var(--font-size-m);
  color: #fff;
  font-weight: bold;
  padding: 20px;
  background-color: var(--accent-color);
}
/**********************************************
  detaArea
***********************************************/
.detaArea__list {
  line-height: 1;
  margin-top: 20px;
}
.detaArea__item {
  margin-top: 20px;
}
.detaArea__price {
  margin-left: 1em;
}
.detaArea__taxIn {
  margin-left: 1em;
}
.detaArea__simpleTxt {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  /* SP */
  .detaArea__simpleTxt {
    margin-top: 25px;
  }
}

/**********************************************
  numberlist
***********************************************/
.numberlist {
  margin-left: 2.5em;
}
.numberlist-item {
  margin-top: 1em;
  list-style-type: decimal;
}
.numberlist-txt {
  font-weight: normal;
}
/***********************************************
  inNumberlist
***********************************************/
.inNumberlist {
  margin-left: 2em;
}
.inNumberlist-item {
  margin-top: 0.5em;
  list-style-type: decimal;
}
/**********************************************
  handled
***********************************************/
.handled__inner {
  margin-top: 100px;
}
.handled__flexbox {
  margin-top: 60px;
  justify-content: stretch;
  gap: 30px;
}
.handled__item {
  cursor: pointer;
}
.handled__link {
  position: relative;
  z-index: 10;
}
.handled__item._col3 {
  width: calc((100% - 60px) / 3);
}
.handled__caption {
  display: none;
  cursor: pointer;
  font-size: var(--font-size-m);
}
.handled__caption.show {
  position: absolute;
  color: #fff;
  background-color: rgba(000, 000, 000, 0.3);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


@media screen and (max-width: 768px) {
  /* SP */
  .handled__inner {
    margin-top: 50px;
  }
  .handled__flexbox {
    margin-top: 30px;
    gap: 20px;
  }
  .flexbox__item._col3 {
    width: calc((100% - 20px) / 2);
  }
}