@charset "UTF-8";
/**********************************************
  base
***********************************************/
html {
	width: 100%;
	height: 100%;
	color: #000;
	margin: 0;
	padding: 0;
	font-feature-settings: "palt" 1;
}
body{
	font-family: "Helvetica Neue",Arial,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","游ゴシック体", YuGothic,"游ゴシック","Yu Gothic","メイリオ",Meiryo,"ＭＳ Ｐゴシック","Verdana",sans-serif;
	line-height: 2;
  height: 100%;
	text-align: justify;
	text-justify: inter-ideograph;
	-webkit-text-size-adjust: 100%;
}
a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}
ul, li {
  list-style: none;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
address {
  font-size: 16px;
  font-style: normal;
}
.wrapper {
  overflow: hidden;
}

/**********************************************
  utility
***********************************************/
.behavior {
  scroll-behavior: smooth;
}
/*margin*/
.mt-00 { margin-top: 0 !important; }
.mt-01 { margin-top: 1em !important; }
.mt-02 { margin-top: 2em !important; }
.mt-03 { margin-top: 3em !important; }
.ml-01 { margin-left: 1em !important; }
.ml-02 { margin-left: 2em !important; }
.ml-03 { margin-left: 3em !important; }
.mb--01 { margin-bottom: -1em !important; }
.mb--02 { margin-bottom: -2em !important; }
.mb--03 { margin-bottom: -3em !important; }

/*font*/
.fs-00 { font-size: 0px; }
.fs-xs { font-size: 8px; }
.fs-ss { font-size: 10px; }
.fs-s { font-size: 14px; }
.fs-m { font-size: 16px; }
.fs-l { font-size: 20px; }
.fs-ll { font-size: 28px; }
.fs-xl { font-size: 36px; }
.fwb { font-weight: bold; }
.fwn { font-weight: normal; }
.fsi { font-style: italic; }
.color-red { color: #B51A1A; }
.color-green { color: #0C821F; }
.color-blue { color: #3079C3; }
.ant-red {
  display: block;
  font-size: 14px;
  color: #B51A1A;
  text-indent: -1em;
  margin-left: 1em;
}
.ant-xsaaa {
  font-size: 12px;
  color: #aaa;
}

/*Appearance*/
.discindent {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

/*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;
}

@media screen and (min-width: 769px) {
  .u-sp { display: none; }
}
@media screen and (max-width: 768.999px) {
  .u-pc { display: none; }
}
/**********************************************
  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;
}
/**********************************************
  mainView
***********************************************/
.mainView {
  width: 100%;
  min-height: 100vh;
  position: relative;
  /*display: flex;
  justify-content: flex-start;
  align-items: center;*/
}
.mainView__inner {
  height: auto;
}
.mainView__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  font-weight: bold;
  text-shadow: 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #FFF;
}
.mainView__goodsInner {
  height: auto;
  margin-left: calc((147/1600) * 100vw);
}

@media screen and (min-width: 940px) {
  /*ナビゲーションのブレイクポイントと一緒にさせること*/
  .mainView__inner {
    padding: 80px 0 0 0;
    margin-left: 5%;
  }
  .mainView__catch {
    font-size: 2em;
  }
  .mainView__goodsInner {
    margin-bottom: 40px;
  }
  .mainView__goodsTxtArea {
    margin-top: 110px !important;
  }
}
@media screen and (max-width: 939.999px) {
  .mainView__inner {
    width: 90%;
    padding: 1em 0 0 0;
    margin-left: 5%;
    margin-right: 5%;
  }
  .mainView__catch {
    min-width: 280px;
    font-size: 1.8em;
  }
  .mainView__goodsInner {
    width: 100%;
    margin-left: 40px;
    margin-right: 40px;
    margin-bottom: 40px;
  }

}
/**********************************************
  ハンバーガーボタン
***********************************************/
@media screen and (min-width: 940px) {
  /*nav文字数によって適宜ブレイクポイント変更　
  　基準　min-width: 769px　max-width: 768.999px*/
  .navBtn {
    display: none;
  }
}
@media screen and (max-width: 939.999px) {
  .navBtn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: #A55E60;
    cursor: pointer;
    z-index: 990;
  }
  .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
***********************************************/
@media screen and (min-width: 940px) {
  /*nav文字数によって適宜ブレイクポイント変更　
  　基準　min-width: 769px　max-width: 768.999px*/
  .nav {
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.85);
  }
  .nav__list {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0 auto;
    padding-right: 20px;
  }
  .nav__item {
    font-size: 16px;
    font-weight: bold;
    margin-right: 0.5em;
  }
  .nav__item:last-child {
    margin-right: 0;
  }
  .nav_link {
    display: block;
    padding: 0 0.5em;
    position: relative;
  }
  .nav_link._stay:hover {
    transition: width 0.3s;
  }
  .nav_link._stay::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #A55E60;
    bottom: 0;
    left: 0;
  }
  .nav__icon {
    width: 25px;
    height: 25px;
    vertical-align: middle;
  }
  .nav__sp {
    display: none;
  }
}
@media screen and (max-width: 939.999px) {
  .nav{
    position:fixed;
    z-index: 900;
   /*ナビのスタート位置と形状*/
    top:0;
    right: -120%;
    width:100%;
    height: 100vh;/*ナビの高さ*/
    background-color: rgba(0, 0, 0, 0.7);
    /*動き*/
    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 #ccc;
  }
  .nav__item:last-child {
    border-bottom: 1px solid #ccc;
  }
  .nav_link {
    display: block;
    color: #fff;
    line-height: 1;
    padding: 1.5em 1em;
  }
  .nav__pc {
    display: none;
  }
}

/**********************************************
  section
***********************************************/
.section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;/*上下中央*/
}
.section._anc_02,
.section._anc_03,
.section._anc_04,
.section._anc_05 {
  scroll-margin-top: -25px;/*スムースscrollのheading*/
}
.section__inner {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0;
  z-index: 1;
}
.section__inner._green {
  background-color: darkcyan;
}
.section__inner._blue {
  background-color: skyblue;
}
.section__inner._brown {
  background-color: #DFA7A9;
}
.section__inner._pink {
  background-color: #DFA7A9;
}
.section__inner._white {
  background-color: #fff;
}
.section__inner._trans {
  background-color: transparent;
}
.section__ttl {
  font-weight: bold;
  line-height: 1;
}
.section__ttl._center {
  text-align: center;
}
.section__ttl._h2 {
  margin-bottom: 2em;
}
.section__ttl._gapH2 {
  margin-bottom: 3em;
}
.section__txtArea {
  text-align: left;
}
.section__txt {
  margin-top: 1em;
  color: #000;
}
.section__txt._firstLine {
  margin-top: 3em;
}
.section__imgAlea {
  width: 80%;
  height: auto;
  margin: 0 auto;
}
.section__img {
  width: 100%;
  height: auto;
}
.section__imgList {
  width: 100%;
}
.section__map {
  margin-top: 2em;
}
.section__btn {
  max-width: 232px;
  min-width: 200px;
  margin: 4em auto 0;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .section__inner {
    width: 100%;
    max-width: 1080px;/*適宜変更*/
    margin: 100px auto;
    padding: 50px;
  }
  .section__ttl {
    font-size: 2.5em;
  }
  .section__txt {
    font-size: 16px;
  }
  .section__imgAlea {
    margin-top: 30px;
  }
  .section__imgList {
    margin-top: 20px;
    max-width: 1080px;/*適宜変更*/
  }
  .section__imgTxt {
    margin-top: 40px;
  }
  .section__imgTxt._middleLine {
    margin-top: 120px;
  }
  .section__imgTxt._lastLine {
    margin-top: 120px;
  }
}
@media screen and (max-width: 768.999px) {
  .section {
    flex-direction: row;
  }
  .section__inner {
    width: 90%;
    margin: 50px auto;
    padding: 25px;
  }
  .section__ttl {
    font-size: 1.5em;
  }
  .section__txt {
    font-style: 1em;
  }
  .section__imgAlea {
    margin-top: 15px;
  }
  .section__imgList {
    width: 100%;
    margin-top: 10px;
  }

  .section__imgTxt {
    margin-top: 20px;
  }
  .section__imgTxt._middleLine {
    margin-top: 60px;
  }
  .section__imgTxt._lastLine {
    margin-top: 60px;
  }
}

/**********************************************
  parallax
***********************************************/
.parallax {
  position: relative;
}
.parallax::before {
  position: fixed;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.parallax._first::before {
  background-image: url(../images/parallaxImg_first.jpg);
  z-index: -2
}
.parallax._second::before {
  background-image: url(../images/parallaxImg_second.jpg);
  z-index: -3;
}
.parallax._third::before {
  background-image: url(../images/parallaxImg_third.jpg);
  z-index: -4;
}
.scrolled {
  opacity: 0;
}

/**********************************************
  bgcolor
***********************************************/
.bgcolor {
  position: relative;
}
.bgcolor::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  transform: skewY(-2deg);
  transform-origin: top right;
}
.bgcolor._green::after {
  background-color: darkcyan;
}
.bgcolor._brown::after {
  background-color: #DFA7A9;/*anc_01背景色*/
}
.bgcolor._pink::after {
  background-color: #DFA7A9;/*anc_01背景色*/
}
.bgcolor._blue::after {
  background-color: skyblue;
}
.bgcolor._white::after {
  background-color: #fff;
}

/**********************************************
  footer
***********************************************/
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  background-color: #463636;
  position: relative;
}
.footer__coppy {
  font-size: 12px;
  color: #fff;
}
@media screen and (max-width: 768.999px) {/*SPのデザイン*/
  .footer {
    flex-direction: column-reverse;
  }

}
/**********************************************
  logo
***********************************************/
@media screen and (min-width: 850px) {/*TBがあるPCのデザイン*/
  .logo {
    width: calc((200/1600) * 100vw);
    max-width: 200px;
    min-width: 180px;
  }
}
@media screen and (max-width: 849.999px) {/*TBとSPのデザイン*/
  .logo {
    width: calc((200/849) * 100vw);
    max-width: 180px;
    min-width: 130px;
  }

}

/**********************************************
  imgList
***********************************************/
.imgList {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.imgList__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  background-color: #fff;
  padding-bottom: 20px;
}
.imgList__ttl {
  font-weight: bold;
  margin: 10px 20px;
}
.imgList__txt {
  margin: 0 20px;
}
.imgList__btn {
  margin: auto 20px 0;
  text-align: center;
}
.imgList__imgArea {
  width: 100%;
  height: auto;
  order: -1;
}
.imgList__img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (min-width: 850px) {/*PCデザイン*/
  .imgList__item._3col {
    width: calc((100% / 3) - 20px);
  }
  .imgList__ttl {
    font-size: 24px;
  }
  .imgList__txt {
    font-size: 16px;
  }
  .imgList__btn {
    margin: auto 20px 0;
  }
}
@media screen and (max-width: 849.999px) {/*TBとSPのデザイン*/
  .imgList {
    flex-direction: column;
  }
  .imgList__item {
    max-width: 347px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
  }

}
/**********************************************
  imgTxt
***********************************************/
.imgTxt {
  display: flex;
  justify-content: space-between;
}
.imgTxt__ttl {
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1;
  margin-top: 0;
}
.imgTxt__txt {
  margin-top: 1em;
}
.imgTxt__txt._firstLine {
  margin-top: 0;
}
.imgTxt__imgAlea {
  position: relative;
  z-index: 1;
}
.imgTxt__imgAlea::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #573031;
  z-index: -1;
}
.imgTxt__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 769px) {
  .imgTxt {
    min-height: 314px;
  }
  .imgTxt._reverse {
    flex-direction: row-reverse;
  }
  .imgTxt__txtAlea {
    width: calc(60% - 20px);
  }
  .imgTxt__imgAlea {
    width: 40%;
    max-height: 314px;
  }
  .imgTxt__imgAlea::before {
    top: -30px;
  }
  .imgTxt__imgAlea._right {
    margin-left: 20px;
  }
  .imgTxt__imgAlea._right::before {
    left: 30px;
    width: 50vw;
  }
  .imgTxt__imgAlea._left {
    margin-right: 20px;
  }
  .imgTxt__imgAlea._left::before {
    right: 30px;
    width: 50vw;
  }
}
@media screen and (max-width: 768.999px) {
  .imgTxt {
    flex-direction: column;
  }
  .imgTxt__imgAlea {
    margin-top: 1em;
  }
  .imgTxt__imgAlea::before {
    width: 100%;
    height: 100%;
    z-index: -1;
    bottom: -20px;
  }
  .imgTxt__imgAlea._right {
    margin-left: 20px;
  }
  .imgTxt__imgAlea._right::before {
    left: 20px;
    width: 100vw;
  }
  .imgTxt__imgAlea._left {
    margin-right: 20px;
  }
  .imgTxt__imgAlea._left::before {
    right: 20px;
    width: 100vw;
  }
}
/**********************************************
  flexImg
***********************************************/
.flexImg {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 20px;
}
.flexImg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 769px) {
  .flexImg__item._2col {
    width: calc((100% - 20px) / 2);
  }
  .flexImg__item._gallery {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (min-width: 999px) {
  .flexImg__item._gallery {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 768.999px) {
  .flexImg {
    flex-direction: column;
  }
  .flexImg__item {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .flexImg__item:first-child {
    margin-top: 0;
  }

}
/**********************************************
  btn
***********************************************/
.btn__link {
  display: block;
  padding: 1em 2em;
  margin-top: 1em;
  font-weight: bold;
}
.btn__link:hover {
  opacity: 0.7;
}
.btn__link._green {
  color: #fff;
  background-color: darkcyan;
}
.btn__link._brown {
  color: #fff;
  background-color: #A55E60;
}

/**********************************************
  map
***********************************************/
.map {
  max-width: 950px;
  margin: auto;
  aspect-ratio: 16/9;
}
.map iframe {
  width: 100%;
  height: 100%;
}
/**********************************************
  form
***********************************************/
#formWrap {
	width:700px;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;
}
.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}
.form__txt {
  margin: 2em 0 0.5em;
}
.form__selectArea {
  width: 100%;
  padding: 0.5em;
  vertical-align: inherit;
  background-color: #fff;
  border-radius: initial;/*safariの角丸を修正*/
}
.form__inputArea {
  width: 100%;
  height: 50px;
  padding: 0.5em;
  vertical-align: inherit;
  background-color: #fff;
}
.form__textareaArea {
  width: 100%;
  height: 200px;
  padding: 0.5em;
  vertical-align: inherit;
  background-color: #fff;
  border-radius: initial;/*safariの角丸を修正*/
}
.form__btnArea {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.form__btn {
  color: #fff;
  line-height: 1;
  cursor: pointer;
  padding: 1em 1.5em;
}
.form__btn:hover {
  opacity: 0.7;
}
.form__btn._submit {
  background-color: #A55E60;
}
.form__btn._reset {
  background-color: #aaa;
}
@media screen and (max-width:572px) {
#formWrap {
	width:95%;
	margin:0 auto;
}
.formTable th, table.formTable td {
	width:auto;
	display:block;
  padding: 1px 0 0 0;
}
.formTable th {
	margin-top:5px;
	border-bottom:0;
}
form input[type="text"], form textarea {
	width:100%;
	padding:5px;
	font-size:110%;
	display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:100%;
  height: auto;
}
}
/*確認画面・エラー画面のスタイルは、PHP263行目以降に記述する*/

/*オリジナル送信完了画面*/
.confirmation {
  background-color: #DFA7A9;/*背景色*/
}
.confirmation__inner {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.confirmation__txtArea {
  text-align: center;
  padding: 3em;
}
.confirmation__ttl {
  font-size: 1.5em;
}
.confirmation__txt {
  font-size: 16px;
  margin-top: 2em;
}
.confirmation__btn {
  width: 20%;
  margin: 3em auto 0 auto;
}
.confirmation__btnLink {
  display: block;
  cursor: pointer;
  color: #fff;
  line-height: 1;
  padding: 1em 1.5em;
  cursor: pointer;
  background-color: #A55E60;
}

/**********************************************
  to-top
***********************************************/
.toTop {
  position: absolute;
  top: -30px;
}
.toTop__btn {
  display: block;
  position: relative;
  font-size: 0;
  width: 60px;
  height: 60px;
  margin-right: 120px;
  background-color: #A55E60;
  border-radius: 50%;
  text-align: center;
  transition: opacity 0.3s;
}
.toTop__btn::before {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  top: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(-45deg);
}
.toTop__btn:hover {
  opacity: 0.7;
}
@media screen and (min-width: 769px) {
  .toTop {
    right: 0;
  }
}
@media screen and (max-width: 768.999px) {/*SPのデザイン*/
  .toTop {
    right: -80px;
  }
}
/**********************************************
  policy
***********************************************/
.policy__link {
  font-size: 14px;
  color: #fff;
}
@media screen and (min-width: 769px) {/*PCとTBのデザイン*/
  .policy {
    position: absolute;
    left: 30px;
    margin: auto;
  }
}

/**********************************************
  disklist
***********************************************/
.disklist {
  list-style-type: disc;
}
.disklist-ttl {
  position: relative;
  line-height: 1;
  padding-left: 1em;
  margin-top: 1em;
  font-weight: bold;
}
.disklist-ttl::before {
  position: absolute;
  content: "";
  background-color: #a55e60;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.disklist-txt {
  padding-left: 1em;
}