@charset "UTF-8";
/*
	@include sc(pc) {
		width: 100%;
	}
	@include sc(sp) {
		width: 50%;
	}
*/
/*SPのフォントサイズ
 デザインカンプ横幅 720pxに合わせるために仕様*/
/*
	@include hover() {
		opacity: 0.6;
	}
*/
/*
	$line:イラレの行の値
	$size:イラレの文字の値

	@include lh(38, 15);
*/
/*
	$size:object-fitの値

	@include objectfit();
	@include objectfit('contain');
*/
/*
	@include taJ();
*/
/*
	@extend %rightarr;
*/
/*
@mixin f_roboto($weight:400) {
	font-family: 'Roboto',"游ゴシック","游ゴシック体","Yu Gothic",YuGothic, sans-serif;
	font-weight:$weight;
}
Robotoフォント設定
400：Regular（デフォルト）
500：Medium
700：Bold
*/
/*
500：Medium（デフォルト）
700：Bold
*/
/*
	$color:色指定
	$stripe:線サイズ
	$spacing:線の空きサイズ
	$height:太さ

	@include dotted(#e6e1d2, 4,4,2);
*/
/*
example
@include dotted-y(#COLOR, WidthPX,SpaceingPX,LengthPX,); 横破線
@include dotted-y(#e6e1d2, 4,4,2,10);
*/
/*=======================
イントロ
=======================*/
.intro .txt {
  padding-bottom: 0.4rem;
}
@media screen and (max-width: 640px) {
  .intro .txt {
    padding-bottom: 0.3rem;
  }
}
.intro .anc_link_wrap {
  padding-bottom: 1rem;
}
@media screen and (max-width: 640px) {
  .intro .anc_link_wrap {
    padding-bottom: 0.3rem;
  }
}
.intro .anc_link_wrap .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.intro .anc_link_wrap .list .detail {
  width: 100%;
  max-width: 2.25rem;
}
@media screen and (max-width: 640px) {
  .intro .anc_link_wrap .list .detail {
    max-width: 100%;
    margin-bottom: 0.12rem;
  }
}
.intro .anc_link_wrap .list .detail a {
  display: block;
  height: 1.35rem;
  position: relative;
  border-radius: 0.2rem;
  -webkit-box-shadow: 0 0.02rem 0.06rem rgba(242, 138, 38, 0.5);
          box-shadow: 0 0.02rem 0.06rem rgba(242, 138, 38, 0.5);
}
@media screen and (max-width: 640px) {
  .intro .anc_link_wrap .list .detail a {
    height: 0.79rem;
    border-radius: 0.1rem;
  }
}
.intro .anc_link_wrap .list .detail a::after {
  content: "";
  width: 0.2rem;
  height: 0.2rem;
  background-image: url(../img/qanda/anc_link_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0.15rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
  .intro .anc_link_wrap .list .detail a::after {
    width: 0.23rem;
    height: 0.23rem;
    left: auto;
    right: 0.175rem;
    bottom: auto;
    top: 50%;
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
  }
}
.intro .anc_link_wrap .list .detail a span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.05em;
  position: absolute;
  top: calc(50% - 0.15rem);
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .intro .anc_link_wrap .list .detail a span {
    text-align: left;
    font-size: 0.175rem;
    top: 50%;
    left: 0.2rem;
  }
}

/*=======================
よくある質問
=======================*/
.faq_wrap .in {
  padding: 1rem 0;
}
@media screen and (max-width: 640px) {
  .faq_wrap .in {
    padding: 0.45rem 0.2rem;
  }
}
.faq_wrap .in .contTit .title {
  border-bottom: 0;
}
@media screen and (max-width: 640px) {
  .faq_wrap .in .contTit .title {
    white-space: normal;
  }
}
.faq_wrap .in .faq_box {
  padding: 0.4rem 0 0 0.55rem;
}
@media screen and (max-width: 640px) {
  .faq_wrap .in .faq_box {
    padding: 0.35rem 0 0 0;
  }
}
.faq_wrap .in .faq_box .faq_title {
  font-size: 0.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #f28a26;
  padding-bottom: 0.1rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .faq_wrap .in .faq_box .faq_title {
    font-size: 0.14rem;
    padding: 0 0.38rem 0.1rem;
  }
}
.faq_wrap .in .faq_box .faq_title::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background-image: url(../img/qanda/icon_faq.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -0.55rem;
  top: -0.1rem;
}
@media screen and (max-width: 640px) {
  .faq_wrap .in .faq_box .faq_title::before {
    width: 0.25rem;
    height: 0.25rem;
    left: 0;
    top: -0.05rem;
  }
}
.faq_wrap .in .faq_box .faq_title::after {
  content: "";
  width: 0.2rem;
  height: 0.2rem;
  background-image: url(../img/qanda/anc_link_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0.13rem;
  right: 0;
}
@media screen and (max-width: 640px) {
  .faq_wrap .in .faq_box .faq_title::after {
    width: 0.23rem;
    height: 0.23rem;
    bottom: auto;
    top: calc(50% - 0.12rem);
  }
}
.faq_wrap .in .faq_box .faq_title.open::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.faq_wrap .in .faq_box .faq_textbox {
  padding-top: 0.35rem;
  display: none;
}
@media screen and (max-width: 640px) {
  .faq_wrap .in .faq_box .faq_textbox {
    padding-top: 0.15rem;
    padding-left: 0.1rem;
  }
}
.faq_wrap .in .faq_box .faq_textbox .text {
  font-size: 0.14rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
  .faq_wrap .in .faq_box .faq_textbox .text {
    font-size: 0.125rem;
  }
}
.faq_wrap .in .faq_box .faq_textbox .sub_title {
  font-size: 0.17rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.4rem 0 0.2rem;
}
@media screen and (max-width: 640px) {
  .faq_wrap .in .faq_box .faq_textbox .sub_title {
    font-size: 0.14rem;
    padding: 0.15rem 0;
  }
}
.faq_wrap .in .faq_box .faq_textbox .sub_title::before {
  content: "";
  width: 0.1rem;
  height: 0.1rem;
  display: inline-block;
  margin-right: 0.1rem;
  border-radius: 0.1rem;
  background-color: #f28a26;
  position: relative;
  top: -0.02rem;
}
.faq_wrap .in .faq_box .faq_textbox .faq_table_wrap {
  padding-bottom: 0.4rem;
}
@media screen and (max-width: 640px) {
  .faq_wrap .in .faq_box .faq_textbox .faq_table_wrap {
    padding-bottom: 0.1rem;
    width: calc(100% + 0.2rem);
    overflow-x: scroll;
    margin-bottom: 0.1rem;
  }
}
.faq_wrap .in .faq_box .faq_textbox .faq_table_wrap table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  position: relative;
}
@media screen and (max-width: 640px) {
  .faq_wrap .in .faq_box .faq_textbox .faq_table_wrap table {
    width: 6.5rem;
    margin-right: 0.2rem;
    display: inline-table;
  }
}
.faq_wrap .in .faq_box .faq_textbox .faq_table_wrap table::after {
  content: "";
  width: 2.12rem;
  height: 100%;
  border: 1px solid #f28a26;
  position: absolute;
  top: 0;
  right: 2.76rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .faq_wrap .in .faq_box .faq_textbox .faq_table_wrap table::after {
    right: 1.71rem;
  }
}
.faq_wrap .in .faq_box .faq_textbox .faq_table_wrap table th {
  background-color: #673e13;
  padding: 0.2rem 0;
  font-size: 0.17rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  border: 1px solid #ffeecc;
}
@media screen and (max-width: 640px) {
  .faq_wrap .in .faq_box .faq_textbox .faq_table_wrap table th {
    font-size: 0.14rem;
  }
}
.faq_wrap .in .faq_box .faq_textbox .faq_table_wrap table th.active {
  background-color: #f28a26;
  width: 2.1rem;
}
.faq_wrap .in .faq_box .faq_textbox .faq_table_wrap table td {
  background-color: #fff;
  font-size: 0.17rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.36rem 0;
  border: 1px solid #CCC;
}
@media screen and (max-width: 640px) {
  .faq_wrap .in .faq_box .faq_textbox .faq_table_wrap table td {
    font-size: 0.125rem;
    padding: 0.27rem 0;
  }
}
.faq_wrap#room .in {
  padding-bottom: 0.3rem;
}

/*=======================
めぐみ企画へのお問い合わせ
=======================*/
.faq_tel_wrap {
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 640px) {
  .faq_tel_wrap {
    padding: 0 0.3rem 0.5rem;
  }
}
.faq_tel_wrap .tel_wrap {
  width: 100%;
  max-width: 8.5rem;
  margin: 0.58rem auto 0;
  background-color: #f28a26;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.1rem;
  padding: 0.3rem 0.6rem 0.35rem;
}
@media screen and (max-width: 640px) {
  .faq_tel_wrap .tel_wrap {
    margin-top: 0.38rem;
    border-radius: 0.05rem;
    padding: 0.15rem 0.3rem 0.17rem;
  }
}
.faq_tel_wrap .tel_wrap .tel_title {
  text-align: center;
  font-size: 0.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 640px) {
  .faq_tel_wrap .tel_wrap .tel_title {
    font-size: 0.175rem;
    padding-bottom: 0.15rem;
  }
}
.faq_tel_wrap .tel_wrap .list_wrap .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq_tel_wrap .tel_wrap .list_wrap .list .tel_box {
  width: 100%;
  max-width: 2.95rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 0.3rem;
  border-right: 1px solid #fff;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .faq_tel_wrap .tel_wrap .list_wrap .list .tel_box {
    padding-right: 0;
    border-right: 0;
  }
}
.faq_tel_wrap .tel_wrap .list_wrap .list .tel_box .tel_num {
  width: 2.65rem;
}
@media screen and (max-width: 640px) {
  .faq_tel_wrap .tel_wrap .list_wrap .list .tel_box .tel_num {
    width: 1.97rem;
    margin: auto;
  }
}
.faq_tel_wrap .tel_wrap .list_wrap .list .tel_box .small_text {
  font-size: 0.12rem;
  letter-spacing: 0.02em;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .faq_tel_wrap .tel_wrap .list_wrap .list .tel_box .small_text {
    letter-spacing: 0;
    padding-top: 0.05rem;
  }
}
.faq_tel_wrap .tel_wrap .list_wrap .list .btn_box {
  width: 100%;
  max-width: 4.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .faq_tel_wrap .tel_wrap .list_wrap .list .btn_box {
    padding-top: 0.17rem;
  }
}
.faq_tel_wrap .tel_wrap .list_wrap .list .btn_box .btn {
  width: 2rem;
  text-align: center;
  display: block;
  line-height: 0;
  border-radius: 0.05rem;
  padding: 0.26rem 0 0.28rem;
  font-size: 0.16rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 640px) {
  .faq_tel_wrap .tel_wrap .list_wrap .list .btn_box .btn {
    width: 100%;
    font-size: 0.14rem;
    border-radius: 0.025rem;
    padding: 0.24rem 0 0.26rem;
    margin-bottom: 0.08rem;
  }
}
.faq_tel_wrap .tel_wrap .list_wrap .list .btn_box .btn:hover {
  opacity: 0.7;
}
.faq_tel_wrap .tel_wrap .list_wrap .list .btn_box .btn.contact {
  background-color: #673e13;
}
.faq_tel_wrap .tel_wrap .list_wrap .list .btn_box .btn.line {
  background-color: #08c559;
  padding-left: 0.3rem;
}
.faq_tel_wrap .tel_wrap .list_wrap .list .btn_box .btn.line::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  background-image: url(/common/img/ico_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .faq_tel_wrap .tel_wrap .list_wrap .list .btn_box .btn.line::before {
    width: 0.28rem;
    height: 0.28rem;
    left: 0.45rem;
  }
}