@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
body {
  background: #f5f5f5;
  color: #313131;
  /*全体の文字色*/
  margin: 0px;
  padding: 0px;
  font: 16px/1.6 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}

p {
  line-height: 1.8em;
  margin: 0px 30px 0;
  text-align: left;
  font-size: 22px;
}

.mg50{
  margin: 50px;
}

.mg30{
  margin: 30px;
}



/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  color: #ffffff;
  /*リンクテキストの色*/
  text-decoration: none;
}

a:hover {
  color: #ffffff;
  /*マウスオン時の文字色（全体）*/
}

a:hover .btn {
  position: relative;
  top: 3pt;
  left: 3pt;
}

a:hover .btn2 {
  position: relative;
  top: 3pt;
  left: 3pt;
}

.btn{
  margin-top: 10px;
}



/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
  width: 750px;
  /*コンテナー幅*/
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}


/*料金表
---------------------------------------------------------------------------*/
.price-table {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
  margin: 30px auto;
  font-family: "Helvetica Neue", sans-serif;
  text-align: center;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.price-table th {
  text-align: center;
  vertical-align: middle;
}

.price-table thead th {
  background-color: #f9f9f9;
  color: #333;
  font-weight: bold;
  padding: 12px;
  border-bottom: 2px solid #ccc;
}

.price-table tbody td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  color: #333;
}

.price-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* 列別カラー */
.price-table thead th:nth-child(2) {
  background-color: #d6ede3;
}

.price-table thead th:nth-child(3) {
  background-color: #FC8186;
  color: #fff;
}

.price-table thead th:nth-child(4) {
  background-color: #ffecec;
}

.price-table th,
.price-table td {
  border: 1px solid #ccc;    /* 各セルの縦線・横線 */
  padding: 12px;
  text-align: center;
}


/*FAQ
---------------------------------------------------------------------------*/
.p-faq__headinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.p-faq__headinner::before {
  position: absolute;
  left: 0;
  content: "Q";
  color: #ffffff;
  background-color: #498d72;
  padding: 6px 13px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
}
.p-faq__headinner p.p-faq__q-txt {
  font-size: 20px;
  margin-left: 20px;
}

.p-faq__bodyinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.p-faq__bodyinner::before {
  position: absolute;
  left: 0;
  content: "A";
  color: #498d72;
  border :solid 1px #498d72;
  border-radius: 5px;
  padding: 6px 13px;
  font-size: 20px;
  font-weight: bold;
}
.p-faq__bodyinner p.p-faq__a-txt {
  font-size: 18px;
  margin-left: 20px;
}



/*アコーディオン
---------------------------------------------------------------------------*/

.ac{
  margin: 50px 30px 30px;
}

.accordion_area {}
.accordion_area .accordion_one .ac_header {
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 1.5rem 4rem 1.5rem 2rem;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: .2s;
}

.accordion_area .accordion_one .ac_header:not(.open):hover {
  background-color: #f1f8ff;
}
.accordion_area .accordion_one:nth-child(odd) .ac_header {
  background-color: #f5f5f5;
}
.accordion_area .accordion_one:nth-child(odd) .ac_header:not(.open):hover {
  background-color: #f1f8ff;
}
.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
.accordion_area .accordion_one .ac_header .i_box:before, .accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid #498d72;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid #498d72;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: .3s;
}
.accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}
.accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 1.5rem 2rem 1.5rem 2rem;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  background: #fff;
}



/*フッター設定
---------------------------------------------------------------------------*/

footer {
	width: 100%;
	height: auto;
	color: #fff;
	background-color: #498d72;
  padding-top: 15px;
}

.footer-inner {
	text-align: left;
}

.footer-inner a {
	padding: 5px;
	margin: 50px;
	color: #fff;
	padding-left: 30px;
	background: url(../img/listmark-arrow.png) no-repeat left 0 top 5px;
}

.footer-inner a:hover {
	text-decoration: underline;
}

.footer-inner ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-inner li {
	text-align: left;
	padding: 8px 0;
	font-size: 120%;
	border-bottom: 1px solid #d4d4d4;
}

.footer-inner li:hover {
	opacity: 0.5;
	background: #e66464;
}

.fotter-inner li:last-child::after {
	content: none;
}

.footer-inner span.copy {
	font-size: 80%;
}

footer p.copy {
	text-align: center;
	padding: 20px 0;
	font-size: 90%;
}

#guest_form .form-select {
  font-weight: 500!important;
}

label {
  font-weight: 500!important;
}

.form-select {
  font-weight: 500!important;
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc { display: none !important; }
  .sp { display: block !important; }

 #container {
    width: 100%;
  }

img{
  width: 100%;
}

  p{
    font-size: 16px;
    margin: 0 15px;
  }

.price-table {
  max-width: 95%;
  margin: 20px auto;
}

.price-table thead th{
  font-size: 14px;
}


.ac{
  margin: 50px 10px 30px;
}

.accordion_area {}
.accordion_area .accordion_one .ac_header {
  padding:  1rem 1.5rem 1rem 1rem;
}

.accordion_area .accordion_one .ac_inner {
   padding: 1rem 1.5rem 1rem 1rem;
}


.p-faq__headinner p.p-faq__q-txt {
  font-size: 16px;
  margin-left: 10px;
}


.p-faq__bodyinner::before {
  padding: 5px 10px;
  font-size: 15px;
}

.p-faq__headinner::before {
  padding: 5px 10px;
  font-size: 15px;
}

.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 15px;
  height: 15px;
  margin-top: -8px;
}

.btn{
  margin-top: 10px;
  width: 90%;
}

}
