@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Opti:wght@400;700&family=Noto+Sans+JP&display=swap');
*,
*::before,
*::after{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a {
  cursor: pointer;
}
ol, ul, li {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}

/* common */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Noto Sans JP',serif;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  color: #434343;
  text-align: center;
  line-height: 2;
  overflow-x: hidden;
  font-feature-settings: "palt";
}
body {
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
   opacity: 0
  }

  100% {
   opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
   opacity: 0
  }

  100% {
   opacity: 1
  }
}

/* fadeUp */
.fadein {
  opacity : 0;
  transform : translate(0, 100px);
  transition : all 1s;
}
 
.fadein.active{
  opacity : 1;
  transform : translate(0, 0);
}
.pc {
  display: inline-block;
}
.sp {
  display: none !important;
}
.section-wrap {
  width: 100%;
  padding: 0 3.2rem;
  position: relative;
}
.section-wrap::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 50px;
  background: #a48359;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.confirm-section::before,
.result-section::before {
  position: unset;
}
.section-inner {
  width: 100%;
  max-width: 130rem;
  margin: 0 auto;
  padding: 10rem 0;
}
.content-text {
  font-size: 1.6rem;
}
/* contact-btn */
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  font-family: 'Noto Sans JP',serif;
}
a.contact-btn {
  font-size: 1.6rem;
  position: relative;
  padding: 2rem 4rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  border-radius: 8px;
  background: #d05454;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}
a.interview-btn {
  font-size: 1.6rem;
  position: relative;
  padding: 2rem 4rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  border-radius: 8px;
  background: #a29f9c;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}
a.contact-btn:before,
a.interview-btn:before {
  font-size: 1.6rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - 0.8rem);
  right: 1rem;
  margin: 0;
  padding: 0;
}
a.contact-btn:hover,
a.interview-btn:hover,
a.form-send-btn:hover,
a.form-modify-btn:hover,
a.form-submit-btn:hover,
a.top-btn:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
a.form-modify-btn:link,
a.form-submit-btn:link,
a.top-btn:link {
  color: #fff;
}
a.text-link {
  color: #d05454;
  text-decoration: underline;
}
a.text-link:hover {
  text-decoration: none;
}

/* top */
.top-wrap {
  background-image: url("../images/fv.png");
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 700px;
}
.top-inner {
  background-color: rgb(255 255 255 / 85%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  padding: 5rem;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.top-inner p {
  font-size: 3.2rem;
}
.top-title {
  font-size: 6.2rem;
  line-height: 1.3;
  margin: 2rem 0 3rem 0;
}
.top-title p {
  font-size: 3.2rem;
}
.top-title span{
  display: block;
}
.top-title-sub {
  font-size: 4.4rem;
}
.top-title-main {
  font-size: 6.5rem;
  color: #a47b46;
}
.top-title-image {
  max-width: 70rem;
  width: 50vw;
  filter: drop-shadow(0px 0px 6px rgba(0,0,0,.3));
}
/* contact */
.contact-wrap {
  margin-bottom: 10rem;
  padding: 10rem 0 0;
}
.contact-tel {
  margin: 0 auto;
}
@media (max-width: 640px) {
  /* common */
  .pc {
   display: none;
  }
  .sp {
   display: inline-block !important;
  }
  .section-wrap {
   padding: 0 1.6rem;
  }
  .section-inner {
   max-width: 100vw;
   padding: 5.6rem 0;
  }
  .content-title {
   font-size: 2.2rem;
   margin-bottom: 3.2rem;
  }
  .top-wrap {
   background-image: url("../images/fv-sp.png");
   background-size: cover;
   background-position: center;
   position: relative;
   width: 100%;
   height: 667px;
  }
  .top-inner {
   background-color: rgb(255 255 255 / 85%);
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   -webkit-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
   padding: 3rem 2rem;
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
   width: 90%;
  }
  .top-inner p {
   font-size: 2.0rem;
  }
  .top-title {
   font-size: 3.6rem;
   line-height: 1.3;
   margin: 1rem 0 3rem 0;
  }
  .top-title p {
   font-size: 3.2rem;
  }
  .top-title span{
   display: block;
  }
  .top-title-sub {
   font-size: 2.0rem;
  }
  .top-title-main {
   font-size: 3.2rem;
   color: #a47b46;
  }
  .top-title-image {
   max-width: 70rem;
   width: 50vw;
   filter: drop-shadow(0px 0px 6px rgba(0,0,0,.3));
  }
  /* contact */
  .contact-wrap {
   margin-bottom: 10rem;
   padding: 10rem 2rem 0;
  }
  .contact-tel {
   margin: 0 auto;
  }
}

/* ---------------------------
	form
 --------------------------- */
input, textarea {
  font-family: 'Noto Sans JP', sans-serif;
}
.confirm-section, .result-section {
  margin-bottom: 10rem;
}
.confirm-section .section-inner , .result-section .section-inner {
  padding-top: 0;
}
.contents-flow-image {
	text-align: center;
	margin-top: 48px;
}
.contents-form-text-wrap {
	width: 900px;
	margin: 48px auto 0;
}
.contents-form-table {
	width: 900px;
	border: 1px solid #ccc;
	margin: 20px auto 0;
  border-collapse: collapse;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.contents-form-table th {
	width: 300px;
	color: #222;
	font-weight: bold;
	background-color: #F2F2F2;
	border-bottom: 1px solid #d8d8d8;
	padding: 16px;
}
.contents-form-table td {
	border-bottom: 1px solid #d8d8d8;
	padding: 16px;
  text-align: left;
  font-family: 'Noto Sans JP';
}
.contents-form-table td input {
	width: 400px;
	font-size: 16px;
	border: 1px solid #ccc;
	padding: 8px;
  font-family: 'Noto Sans JP';
}
.contents-form-table td textarea {
	width: 500px;
	height: 200px;
	font-size: 16px;
	border: 1px solid #ccc;
	padding: 8px;
  font-family: 'Noto Sans JP';
}
.form-name-kanji {
	width: 300px !important;
	margin: 0 0 10px 5px;
}
.form-name-kana {
	width: 300px !important;
	margin-left: 5px;
}
.form-required {
	float: right;
	color: #fff;
	font-size: 14px;
	font-weight: normal;
	background-color: #ec524f;
	padding: 0 8px;
}
.form-any {
	float: right;
	color: #fff;
	font-size: 14px;
	font-weight: normal;
	background-color: #666;
	padding: 3px 8px;
}
.error-message {
  color: #ec524f;
  margin-top: 0;
	margin-bottom: 4px;
  font-size: 1.5rem;
}
.contents-license-wrap {
	width: 900px;
	margin: 50px auto 0;
}
.contents-license-title {
	color: #222;
	font-size: 18px;
	font-weight: bold;
}
.contents-license-text {
  height: 175px;
  font-size: 13px;
  border: 1px solid #ccc;
  margin: 16px auto;
  overflow-x: hidden;
  overflow-y: auto;
}
.contents-license-element {
	text-align: center;
	margin-top: 24px;
}
.form-license-accept {
	margin-right: 8px;
}
.form-license-required {
	color: #fff;
	font-size: 14px;
	font-weight: normal;
	background-color: #ec524f;
	padding: 5px 8px;
	margin-left: 8px;
}
.contents-license-text #policy_common {
	padding: 12px;
  text-align: left;
}
.contents-license-text #policy_basic {
	padding: 24px;
  margin-top: 130px;
}
.contents-license-text .clearfix,
.contents-license-text .rightFloat {
	margin: 0;
}
.contents-license-text .intro {
	margin-bottom: 24px;
}
.contents-license-text .heading {
	color: #333;
	font-weight: bold;
	margin: 16px 0 8px;
	border-bottom: 1px dashed #444;
	padding-bottom: 2px;
}
.contents-license-text .content_title {
	font-weight: bold;
	background: #e5e5e5;
	padding: 2px 0 2px 13px;
}
.contents-license-text p {
	margin-bottom: 8px;
}
.contents-license-text .space_left {
	padding-left: 13px;
}
.contents-license-text ol {
	list-style-image: none;
	list-style-position: outside;
	padding-left: 13px;
}
.contents-license-text ol li,
.contents-license-text ol.desimal li,
.contents-license-text ol.desimal_in li {
	list-style-type: decimal;
	margin-bottom: 8px;
}
.contents-license-text ol.no_desimal li {
	list-style-type: none;
}
.contents-license-text ol.disc li {
	list-style-type: disc;
}
.contents-license-text .administrator {
	margin: 40px 0 8px;
	color: #333;
	font-weight: bold;
	border-bottom: 1px dashed #444;
	padding-bottom: 2px;
}
.contents-license-text .update_box .update {
	float: right;
}
.contents-license-text .update_box ul {
	margin-bottom: 8px;
}
.contents-license-text .update_box p {
	margin-bottom: 0px;
}
.form-send-btn {
  font-family: 'Noto Sans JP',serif;
  width: 40rem;
  font-size: 2rem;
  font-weight: 700;
  padding: 1.4rem;
  display: inline-block;
  position: relative;
  transition: .3s;
  overflow: hidden;
  z-index: 1;
	margin: 3rem auto;
  border-radius: 8px;
  background: #d05454;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}
.form-send-btn:hover::before {
  transform: translateX(0);
}
.form-send-btn.yet,
.form-send-btn.yet:hover  {
	color: #fff !important;
	background-color: #bfbfbf !important;
	pointer-events: none;
}
.confirm-section,
.result-section {
	margin-top: 48px;
}
.confirm-section .contents-form-btn {
	text-align: center;
	margin-top: 50px;
}
.form-modify-btn {
  font-family: 'Noto Sans JP',serif;
  width: 30rem;
  font-size: 2rem;
  font-weight: 700;
  padding: 1.4rem;
  display: inline-block;
  position: relative;
  transition: .3s;
  overflow: hidden;
  z-index: 1;
  margin: 3rem 1rem;
  border-radius: 8px;
  background: #cccccc;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

.form-submit-btn {
  font-family: 'Noto Sans JP',serif;
  width: 30rem;
  font-size: 2rem;
  font-weight: 700;
  padding: 1.4rem;
  display: inline-block;
  position: relative;
  transition: .3s;
  overflow: hidden;
  z-index: 1;
  margin: 3rem 1rem;
  border-radius: 8px;
  background: #d05454;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2); 
}
.top-btn {
  font-family: 'Noto Sans JP',serif;
  width: 30rem;
  font-size: 2rem;
  font-weight: 700;
  padding: 1.4rem;
  display: inline-block;
  position: relative;
  transition: .3s;
  overflow: hidden;
  z-index: 1;
  margin: 3rem 1rem;
  border-radius: 8px;
  background: #cccccc;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.form-submit-btn:hover::before {
  transform: translateX(0);
}
.form-submit-btn.yet,
.form-submit-btn.yet:hover  {
	color: #fff !important;
	background-color: #bfbfbf !important;
	border: .2rem solid #bfbfbf !important;
	pointer-events: none;
}
.contents-result-wrap {
	text-align: center;
	margin-top: 48px;
}
.contents-result-title {
	font-size: 20px;
	font-weight: bold;
}
.contents-result-text {
	margin-top: 14px;
}
.contents-top-btn {
	text-align: center;
	margin-top: 100px;
}

@media (max-width: 640px) {
  .contents-flow-image {
		margin-top: 24px;
	}
	.contents-form-text-wrap {
		width: auto;
		margin: 24px auto 0;
	}
	.contents-form-table {
		width: 100%;
   text-align: left;
	}
	.contents-form-table th {
		display: block;
		width: 100%;
		border-top: 1px solid #ccc;
		border-bottom: none;
		padding: 8px;
	}
	.contents-form-table th:first-child {
		border-top: none;
	}
	.contents-form-table td {
		display: block;
		width: 100%;
		border: none;
		padding: 8px;
	}
	.contents-form-table td input {
		width: 100%;
	}
	.contents-form-table td textarea {
		width: 100%;
		height: 150px;
	}
	.form-name-kanji {
		width: 250px !important;
		margin: 0 0 8px 5px;
	}
	.form-name-kana {
		width: 250px !important;
		margin: 0 0 0 5px;
	}
	.form-required {
		float: none;
		margin-left: 8px;
	}
	.form-any {
		float: none;
		margin-left: 8px;
	}
	.contents-license-wrap {
		width: auto;
		margin: 30px auto 0;
	}
	.contents-license-element {
		font-size: 13px;
	}
	.form-license-required {
		font-size: 13px;
	}
	.contents-license-text #policy_common {
		padding: 8px;
	}
	.contents-license-text #policy_basic {
		padding: 12px;
   clear: both;
	}
	.form-send-btn {
		width: 90%;
		font-size: 18px;
		padding: 16px 0;
	}
	.form-modify-btn {
		display: block;
		width: 90%;
		font-size: 18px;
		padding: 16px 0;
		margin: 0 auto;
	}
	.form-submit-btn {
		display: block;
		width: 90%;
		font-size: 18px;
		padding: 16px 0;
		margin: 24px auto 0;
	}
	.contents-result-wrap {
		margin-top: 24px;
	}
	.contents-top-btn {
		margin-top: 50px;
	}	
	.contents-result-title {
		font-size: 18px;
	}
	.top-btn {
		width: 90%;
		font-size: 18px;
		padding: 16px 0;
		margin: 0 auto;
   color: #ffffff;
	}
}

/* ------------------- grobal_nav ------------------- */
.nav-wrap {
  padding: 3rem 0;
  width: 100%;
  max-width: none; 
  background: #f7f3ed;
}
.nav-wrap .section-inner {
  padding: 0;
}
.grobal_nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.grobal_nav ul li a {
  text-decoration: none;
  color: #00141e;
  padding: 1rem 2.6rem;
  font-size: 2rem;
  display: block;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  color: #a48359;
}
.grobal_nav ul li a:hover {
  transition: .3s;
}

#globalNavi{
	width: 100%;
  background: #f7f3ed;
}

.fixed {
   position: fixed;
   top: 0;
   width: 100%;
   z-index: 10000;
}

@media (max-width: 640px){
  .nav-wrap {
   padding: 0;
   max-width: 100%;
   background: #f7f3ed;
  }
  .grobal_nav ul {
   flex-wrap: wrap;
  }
  .grobal_nav ul li a {
   font-size: 1.6rem;
  }
}
h2 {
  font-size: 4.0rem;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  margin: 0 0 2rem 0;
}
@media (max-width: 640px) {
  h2 {
   font-size: 2.8rem;
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
   margin: 0 0 2rem 0;
   line-height: 1.8;
  }
}
/* ------------------- about section ------------------- */
.about-wrap {
  background: #f7f3ed;
  padding: 0 0 8rem 0;
}
.about-wrap .section-inner {
  padding: 5rem 0 10rem;
  margin: 0 auto;
}
.about-wrap h2 + p {
  margin: 3rem 0;
}
.about-text {
  background: #ffffff;
  text-align: center;
  padding: 5rem 0;
  max-width: 1100px;
  margin: 0 auto;
}
.shop-area {
  display: flex;
  max-width: 900px;
  justify-content: space-between;
  align-items: center;
  margin: 3rem auto;
}
.map {
  width: 550px;
}
.popup-text {
  width: 300px;
  text-align: left;
}
.popup-text .popup-title {
  font-size: 3.0rem;
  position: relative;
  margin: 0 0 3rem;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.popup-text .popup-title:after {
  position: absolute;
  border: 1px solid #c6a275;
  width: 24px;
  content: "";
  bottom: -10px;
  left: 0;
}
.popup-text .graph {
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .about-wrap {
   background: #f7f3ed;
   padding: 0 0 8rem 0;
  }
  .about-wrap .section-inner {
   margin: -4rem 0 0 0;
  }
  .about-wrap h2 + p {
   margin: 3rem 0;
   text-align: left;
  }
  .about-text {
   background: #ffffff;
   text-align: center;
   padding: 5rem 2rem;
   max-width: 90%;
   margin: 0 auto;
  }
  .shop-area {
   display: block;
   margin: 3rem auto;
  }
  .map {
   width: 100%;
  }
  .popup-text {
   width: 300px;
   text-align: left;
  }
  .popup-text .popup-title {
   font-size: 2.4rem;
   position: relative;
   margin: 0 0 3rem;
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  }
  .popup-text .popup-title:after {
   position: absolute;
   border: 1px solid #c6a275;
   width: 24px;
   content: "";
   bottom: -10px;
   left: 0;
  }
  .popup-text .graph {
   margin-top: 2rem;
  }
}

/* ------------------- merit section ------------------- */
.merit-wrap h4 span {
  font-size: 1.8rem;
}
.merit-list {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  margin: 5rem auto;
  font-size: 0;
}
.merit-image {
  flex: 3;
}
.merit-item {
  flex: 2;
  margin: 0 5rem;
}
.merit-item p {
  text-align: left;
}
.label-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  margin: 0 0 2rem 0;
}
.label {
  font-size: 7.5rem;
  font-weight: 400;
  border-bottom: 1px solid #a47b46;
  line-height: 1;
  color: #a47b46;
}
.merit-item h3 {
  font-size: 3.0rem;
  text-align: left;
  margin-left: 3rem;
  line-height: 1.5;
}
.marker {
  background: linear-gradient(transparent 40%, #fff29e 80%);
  font-weight: 700;
}
.merit-graph {
  width: 80%;
}

@media (max-width: 1024px){

  .merit-list {
   flex-direction: column;
  }

  .merit-item {
   max-width: 100%;
   width: 100%;
   min-height: auto;
   padding: 1.6rem;
   margin-right: 0;
  }

  .merit-item:nth-child(2),.merit-item:nth-child(3) {
   margin-top: 2rem;
  }

}

@media (max-width: 640px){
  .merit-wrap h4 span {
   font-size: 1.8rem;
  }
  .merit-list {
   display: inline-flex;
   align-items: center;
   background: #ffffff;
   margin: 5rem auto;
   font-size: 0;
  }
  .merit-image {
   flex: 3;
  }
  .merit-item {
   flex: 2;
   margin: 0 5rem;
  }
  .merit-item p {
   text-align: left;
  }
  .label-wrap {
   display: flex;
   justify-content: flex-start;
   align-items: flex-start;
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
   margin: 0 0 2rem 0;
  }
  .label {
   font-size: 5.5rem;
   font-weight: 400;
   border-bottom: 1px solid #a47b46;
   line-height: 1;
   color: #a47b46;
  }
  .merit-item h3 {
   font-size: 2.0rem;
   text-align: left;
   margin-left: 3rem;
   line-height: 1.5;
  }
  .merit-graph {
   width: 100%;
  }
}

/* ------------------- CTA ------------------- */
.cta-area {
  background: #f7f3ed;
  margin: -25rem 0 0;
  padding: 8rem 0 0 0;
}

.cta-text {
  font-size: 3.6rem;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  line-height: 1.8;
  margin: 0 0 30px;
}

@media (max-width: 640px){
  .cta-area {
   background: #f7f3ed;
   margin: -20rem 0 0;
  }
  .cta-text {
   font-size: 2.4rem;
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  }
}
/* ------------------- case_study section ------------------- */

.case-study-wrap h2 + p {
  font-size: 3.0rem;
  line-height: 1.5;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  color: #a47b46;
}
.case-study-wrap h2 + p span {
  font-size: 1.3rem;
  font-family: 'Noto Sans JP',serif;
  color: #434343;
  display: block;
}
.case-study-list {
  display: inline-flex;
  align-items: center;
  margin: 5rem auto;
}
.case-study-image {
  flex: 2;
}
.case-study-item {
  flex: 2;
  margin: 0;
}
.case-study-item p {
  text-align: left;
}
.case-study-item h3 {
  font-size: 3.2rem;
  text-align: left;
  line-height: 1.5;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  color: #a47b46;
}
.case-study-item h3 span {
  font-size: 2.4rem;
  display: block;
}
table#info {
  text-align: left;
}
table#info tr {
  border-bottom: 1px solid #b5b1b1;
}
table#info th,
table#info td {
  padding: 6px 0;
  border: none;
}
table#info th {
  width: 18%;
  vertical-align: top;
}
/* sp */
@media only screen and (max-width: 480px) {
  .case_study-wrap #info th,
  .case_study-wrap #info td {
   width: 100%;
   display: block;
  }

  .case_study-wrap #info th {
   width: 100%;
  }

  .case_study-wrap #info td {
   padding-top: 0;
  }
}

@media (max-width: 640px){ 

  .case-study-wrap h2 + p {
   font-size: 2.2rem;
   line-height: 1.8;
  }
  .case-study-wrap h2 + p span {
   font-size: 1.3rem;
   font-family: 'Noto Sans JP',serif;
   color: #434343;
   display: block;
  }
  .case-study-list {
   display: block;
   align-items: center;
   margin: 5rem auto;
  }
  .case-study-item p {
   text-align: left;
  }
  .case-study-item h3 {
   font-size: 2.4rem;
  }
  .case-study-item h3 span {
   font-size: 2.0rem;
   display: block;
  }
  table#info {
   text-align: left;
   margin: 2rem 0;
  }
  table#info tr {
   margin: 1rem 0;
  }
  table#info th,
  table#info td {
   padding: 6px 0;
   border: none;
  }
  table#info th {
   width: 24%;
   vertical-align: top;
  }
	table#info th,
	table#info td{
		display: block;
	}
  table#info td{
		border-top: 1px solid #b5b1b1;
	}
}

/* ------------------- voice section ------------------- */
.voice-area {
  background: #f7f3ed;
}
.voice-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.voice-list {
  width: 33.3333%;
  padding: 3rem 4rem;
  background: #ffffff;
  margin: 3rem;
  height: 380px;
}
.voice-list p {
  text-align: left;
}
.voice-list img {
  width: 38%;
}

@media (max-width: 640px){ 
  .voice-wrap {
   display: block;
  }
  .voice-list {
   width: 100%;
   padding: 3rem 4rem;
   background: #ffffff;
   margin: 3rem 0;
   height: auto;
  }
}

/* ------------------- flow section ------------------- */
.flow-wrap {
  background: url("../images/flow.svg") no-repeat;
  height: 740px;
  position: relative;
}
.flow-contact-btn {
  position: absolute;
  top: 230px;
  left: 140px;
}
.sub-text {
  text-align: left;
  font-size: 1.3rem;
  margin: 10px 0;
}

@media (max-width: 640px){ 
  .flow-wrap {
   background: none;
   height: auto;
   position: relative;
   background-size:  cover;  
  }
  .flow-contact-btn {
   position: unset;
  }
  .flow-wrap + p {
   text-align: left;
  }
}

/* ------------------- recommend section ------------------- */
.price-wrap{
  background: #f7f3ed;
}
.event-wrap {
  background: #ffffff;
  width: 1200px;
  margin: 30px auto;
  padding: 4rem;
}
.event-wrap h3 {
  font-size: 3.0rem;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.event-wrap h3 span {
  display: block;
  font-size: 1.3rem;
  font-family: 'Noto Sans JP',serif;
  font-weight: normal;
}
.event-dl-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 80px 0 0 0;
}
.event-dl-ol-wrap {
  margin: 30px 0 0 0;
}
.department-list {
  width: 33.33333%;
  margin: 0 2rem 0 0;
  border: 1px solid #a47b46;
  padding: 2rem;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  height: 270px;
}
.department-ol {
  margin: 0 2rem 0 0;
  border: 1px solid #a47b46;
  padding: 2rem;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.department-ol .department-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.8;
  text-align: left;
  margin: 2rem 0px 0;
  padding: 0 0 2rem 0;
}
.department-ol .department-name {
  font-size: 2.4rem;
  width: auto;
}
.department-ol .department-price {
  font-size: 3.0rem;
  margin: 0 2rem;
}
.department-list:last-child {
  margin: 0;
}
.department-label {
  margin: -57px 0 30px 0;
}
.department-label span {
  background: #c6a275;
  color: #ffffff;
  font-size: 1.8rem;
  display: inline-block;
  padding: 0 15px;
}
.department-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.8;
  text-align: left;
  margin: 2rem 0px 0;
  padding: 0 0 2rem 0;
}
.border {
  border-bottom: 1px solid #a48359;
}
.department-name {
  font-size: 1.6rem;
  width: 61%;
}
.department-price {
  font-size: 2.6rem;
  line-height: 1.5;
  color: #a48359;
}
.department-price span {
  font-size: 1.6rem;
  display: block;
}
.event-dl-wrap + p {
  font-size: 1.3rem;
  text-align: left;
}
.dli-plus-wrap {
  background: #c6a275;
  width: 50px;
  height: 50px;
  line-height: 48px;
  border-radius: 50%;
  margin: -45px auto;
  z-index: 1;
  position: relative;
}
.dli-plus {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  line-height: 1;
  width: 1.2em;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
}
.dli-plus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

@media (max-width: 640px){ 
  .price-wrap{
   background: #f7f3ed;
  }
  .event-wrap {
   background: #ffffff;
   width: auto;
   margin: 30px auto;
   padding: 3rem;
  }
  .event-wrap h3 {
   font-size: 2.4rem;
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
   line-height: 1.8;
  }
  .event-wrap h3 span {
   display: block;
   font-size: 1.3rem;
   font-family: 'Noto Sans JP',serif;
   font-weight: normal;
  }
  .event-dl-wrap {
   display: block;
   justify-content: space-between;
   align-items: flex-start;
   margin: 80px 0 0 0;
  }
  .event-dl-ol-wrap {
   margin: 20px 0 0 0;
  }
  .department-list {
   width: 100%;
   margin: 0 0 8rem 0;
   border: 1px solid #a47b46;
   padding: 2.4rem;
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
   height: auto;
  }
  .department-ol {
   margin: 0;
   border: 1px solid #a47b46;
   padding: 2rem;
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  }
  .department-ol .department-wrap {
   display: block;
   justify-content: center;
   align-items: center;
   line-height: 1.8;
   text-align: left;
   margin: 2rem 0px 0;
   padding: 0 0 2rem 0;
  }
  .department-ol .department-name {
   font-size: 1.8rem;
   width: auto;
  }
  .department-ol .department-price {
   font-size: 3.0rem;
   margin: 0 2rem;
  }
  .department-list:last-child {
   margin: 0;
  }
  .department-label {
   margin: -60px 0 30px 0;
  }
  .department-label span {
   background: #c6a275;
   color: #ffffff;
   font-size: 1.8rem;
   display: inline-block;
   padding: 0 10px;
  }
  .department-wrap {
   display: block;
   justify-content: space-between;
   align-items: center;
   line-height: 1.8;
   text-align: left;
   margin: 2rem 0px 0;
   padding: 0 0 2rem 0;
  }
  .border {
   border-bottom: 1px solid #a48359;
  }
  .department-name {
   font-size: 1.6rem;
   width: 100%;
   text-align: center;
  }
  .department-price {
   font-size: 3.2rem;
   line-height: 1.5;
   color: #a48359;
   text-align: center;
  }
  .department-price span {
   font-size: 1.8rem;
   display: inline-block;
  }
  .event-dl-wrap + p {
   font-size: 1.3rem;
   text-align: left;
  }
  .dli-plus-wrap {
   background: #c6a275;
   width: 50px;
   height: 50px;
   line-height: 48px;
   border-radius: 50%;
   margin: -45px auto;
   z-index: 1;
   position: relative;
  }
  .dli-plus {
   display: inline-block;
   vertical-align: middle;
   color: #ffffff;
   line-height: 1;
   width: 1.2em;
   height: 0.1em;
   background: currentColor;
   border-radius: 0.1em;
   position: relative;
  }
  .dli-plus::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: inherit;
   border-radius: inherit;
   transform: rotate(90deg);
  }
}
/* ------------------- voice section ------------------- */
.voice-wrap .flex-box {
  align-items: center;
}
.voice-wrap .flex-text {
  width: 80%;
}
.voice-icon {
  width: 70px;
}
@media (max-width: 640px){  
  .voice-wrap {
   padding-bottom: 5.6rem;
  }
  .voice-wrap .flex-text {
   width: 100%;
  }
}


/* ------------------- price section ------------------- */

.price-wrap {
  margin: 5.6rem auto 0 auto;
}
.price-table{
  width: 100%;
  border-collapse: collapse;
}
.price-table th {
  border: 1px solid #b8b8b8;
  padding: 0.7rem;
  width: 67%;
}
@media (max-width: 640px){ 

  .price-table th {
   font-size: 1.4rem;
  }
}

.text-emphasis {
  color: #d05454;
}

.form_step {
  width: 100%;
  max-width: 780px;
  display: flex;
  justify-content: center;
  gap: 5%;
  margin: 3% auto;
  border-radius: 5px;
  box-sizing: border-box;
}
.form_step p {
  margin: 0 !important;
  text-align: center;
  position: relative;
  padding: 2.5rem 0 0 0;
  font-size: 2.0rem;
  width: 33.33333%;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.form_step p:after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: #c6c6c6;
  display: block;
  border-radius: 2rem;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.form_step p:before {
  content: "";
  width: 120%;
  height: 4px;
  background: #c6c6c6;
  display: block;
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateY(-50%);
}
.form_step p.active, .form_step p.done{
  color: #c6a275;
  font-weight: bold;
}
.form_step p.active:after, .form_step p.done:after, .form_step p.done:before {
  background: #c6a275;
}

.form_step p:last-of-type:before {
  display: none;
}

.contents-form-text-wrap .contents-text {
  font-size: 1.6rem;
  text-align: center;
}

@media (max-width:580px){
  .form_step {
    margin: 8% auto;
  }
  .form_step p {
    padding: 2rem 0 0 0;
    font-size: 12px;
  }
}

@media (max-width:430px){
  section#form {
    padding: 5%;
  }
  section.innerbox > div.form_step {
    padding: 0;
  }

  .form_step p {
    padding: 2rem 0 0 0;
    font-size: 12px;
  }
}
.contact-tel-title {
  font-size: 2.0rem;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.contact-dl {
  display: flex;
  line-height: 1;
  font-size: 2.4rem;
  align-items: center;
  padding: .5rem;
}
.contact-dl a {
  color: #434343;
}
.region {
  border-left: 1px solid #cccccc;
  padding: 0 0 0 2rem;
}
.contact-tel {
  border: 1px solid;
  padding: 3rem;
  width: 900px;
}
.contact-tel-wrap {
  display: flex;
  justify-content: center;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  align-items: center;
}
.contact-tel-wrap + p {
  font-size: 1.3rem;
}

.contact-notice {
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}

.company {
  background: #434343;
  color: #ffffff;
  font-size: 1.6rem;
  margin: 0 2rem 0 0;
  width: 100px;
  height: 30px;
  line-height: 30px;
}
.tokyo {
  margin: 0 3rem;
}
.tokyo p + p {
  font-size: 4.8rem;
}
footer {
  background: #434343;
  color: #ffffff;
}
footer p {
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  font-size: 1.3rem;
}

@media (max-width: 640px){ 
  .contact-tel-title {
   font-size: 2.0rem;
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  }
  .contact-dl {
   display: block;
   line-height: 1;
   font-size: 3.6rem;
   align-items: center;
   padding: .5rem;
  }
  .region {
   border-left: none;
   padding: 0;
   display: flex;
   justify-content: space-between;
  }
  .region .contact-dl {
   font-size: 2.1rem;
  }
  .contact-tel {
   border: 1px solid;
   padding: 1.8rem;
   width: 92%;
  }
  .contact-tel-wrap {
   display: block;
   justify-content: center;
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
   align-items: center;
  }
  .contact-tel-wrap + p {
   font-size: 1.3rem;
  }
  .company {
   background: #434343;
   color: #ffffff;
   font-size: 1.6rem;
   margin: 10px auto;
   width: auto;
   height: 30px;
   line-height: 30px;
  }
  .tokyo {
   margin: 0;
  }
  .tokyo p + p {
   font-size: 3.6rem;
  }

  footer p {
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
   font-size: 1.0rem;
  }
}


/* navi */
.hamburger {
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
}

.hamburger .btn-gNav {
  position: fixed;
  top: 20px;
  right: 30px;
  width: 30px;
  height: 24px;
  z-index: 12;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.hamburger .btn-gNav span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #a47b46;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.hamburger .btn-gNav span:nth-child(1) {
  top: 0;
}

.hamburger .btn-gNav span:nth-child(2) {
  top: 10px;
}

.hamburger .btn-gNav span:nth-child(3) {
  top: 20px;
}

.hamburger .btn-gNav.open span:nth-child(1) {
  background: #ffffff;
  top: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger .btn-gNav.open span:nth-child(2),
.hamburger .btn-gNav.open span:nth-child(3) {
  top: 6px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}


.btn-gNav {
  display: none;
}

.gNav .gNav-menu {
  display: flex;
  justify-content: space-between;
}

.gNav .gNav-menu li {
  margin: 0 auto;
  padding: 0 5px;
}

@media screen and (max-width: 600px) {
  .btn-gNav {
    display: block;
  }

  .gNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(164 123 70 / 85%);
    font-size: 16px;
    box-sizing: border-box;
    z-index: 1;
    padding-top: 50px;
    transition: .3s;
  }

  .gNav.open {
    right: 0;
  }

  .gNav .gNav-menu {
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex-direction: column;
    text-align: center;
    /*justify-content: center;*/
  }

  .gNav .gNav-menu li {
    width: 86%;
    padding: 15px;
    border-bottom: #ffffff 1px solid;
  }

  .gNav .gNav-menu li a {
   color: #ffffff;
}
}