@charset "utf-8";
/* CSS Document */

/*****page_common*****/
.page_main section {
  padding-bottom: 10rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:900px) {
  .page_main section {
   padding-bottom: 14rem;
  }
}
/*** page_hero ***/
.page_hero{
  padding-top: 12rem;
  background-color: #fefefe;
}
.page_hero h1 .en{
  font-size: clamp(4rem, 10.2vw, 12rem);
  font-weight: 600;
  line-height: 1;
}
.page_hero h1 .jp{
  font-size: clamp(1.8rem, 4vw, 3.6rem);
}
.page_hero .hero_wrap{
  margin-top: 4rem;
  margin-bottom: 20rem;
}
.page_hero img{
  width: 100%;
  height: 80vh;
  object-fit: cover;
}
#service .page_hero img{
  object-position: 50% 12%;
}

@media screen and (min-width:769px) {
  .page_hero{
    padding-top: 16rem;
  }
}
@media screen and (max-width:768px) {
  .page_hero img{
    height: 40vh;
  }
}

/*** breadcrumbs ***/
.breadcrumbs {
  font-size: 1.6rem;
  margin: 10rem auto;
  padding: 2rem 4rem;
}
.breadcrumbs a{
  border-bottom: 1px solid #666;
}
.breadcrumbs a:hover{
  border-bottom: none;
  opacity: .6;
}
.home .breadcrumbs_bar{
  display: none;
}
@media screen and (max-width:768px) {
  .breadcrumbs {
    font-size: 1.4rem;
    margin: 2rem auto 4rem;
    padding: 2rem 2.8rem;
  }
}

/*** outline/guideline ***/
.dl_line dl{
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin: 1rem auto;
}
.dl_line dt, .dl_line dd{
  padding: 8px 0 16px;
}
.dl_line dt{
  width: 100px;
  font-weight: bold;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.dl_line dd {
  margin: 0;
}
@media screen and (max-width: 1099px) {
  .dl_line dl {
    flex-flow: column;
  }
  .dl_line dt {
	font-weight: bold;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  padding-bottom: 0;
  }
}
@media screen and (min-width:800px) {
  .dl_line{
    display: flex;
    justify-content: space-between;
  }
  .dl_line .box_left{
    margin-right: 4vw;
  }
}

/*** others ***/
.head{
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.head h2.ttl_center{
  margin-bottom: 4rem;
}
/***** service *****/
#page_service .text_img_list_item{
  margin-top: 8rem;
}
#page_service .merit_list{
  margin-top: 2rem;
}
#page_service .merit_list dt{
  color: #70644F;
}
#page_service .merit_list dd{
  margin-bottom: 1.6rem;
}
.case_list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  margin-top: 4rem;
}
.case_list h3{
  text-align: center;
}
.case_list .text_box{
  margin-bottom: 1.6rem;
}
.case_list_item dl{
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width:899px){
  #page_service .text_box{
    margin: 3.2rem 0 2.4rem;
  }
  .case_list_item{
    margin: 0 auto;
    max-width: 360px;
  }
}
@media screen and (min-width:900px){
}
/*** FAQ ***/
#page_faq .wrap{
  max-width: 800px;
}
#page_faq section{
  padding: 0;
  margin-bottom: 0;
}
/* accordion */
.accordion-area{
  list-style: none;
  margin:0 auto;
}
.accordion-area li{
  margin: 2rem 0;
}
.accordion-area section {
  border: 1px solid #eee;
  margin-top: 0;
}
.accordion-area h3{
  margin-bottom: 0;
}
.title {
  position: relative;
  cursor: pointer;
  font-size:1.6rem;
  font-weight: normal;
  padding: 2.8rem 6rem;
  transition: all .5s ease;
  background: #fefefe;
}
.title::before,
.title::after{
  position: absolute;
  content:'';
  top: 50%;
  right: 20px;
  width: 18px;
  height: 2px;
  background-color: #A4925C;
}
.title::before{
  transition: all .3s cubic-bezier(1,0,0,1);
  transition-property: transform;
  transition-timing-function: cubic-bezier(1,0,0,1);
  transform: translateY(-50%) rotate(-90deg);
}
.title::after{    
  transition: all .3s cubic-bezier(1,0,0,1);
  transition-property: transform,opacity;
  transition-timing-function: cubic-bezier(1,0,0,1);
  transform: translateY(-50%);
}
.title.close::before{
  transform: translateY(-50%) rotate(0deg);
}
.title.close::after{
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}
.title span::before{
  content: 'Q.';
  position: absolute;
  top: 1.7rem;
  left: 2.2rem;
  color: #A4925C;
  font-size: 2.4rem;
  z-index: 2;
}
.box {
  display: none;/*はじめは非表示*/
  padding: 2.8rem 6rem;
  background: #fefefe;
}
.box p{
  padding-bottom: 0;
}
.box p::before{
  content: 'A.';
  position: absolute;
  top: -0.9rem;
  left: -3.6rem;
  color: #A4925C;
  font-size: 2.4rem;
  z-index: 2;
}
.note{
  font-size: 1.4rem;
  margin-top: .4rem;
}
@media screen and (max-width:768px) {
  .title::before,.title::after{
    top: 50%;
    right: 1.6rem;
  }
  .title {
    padding: 2rem 4.6rem 2rem 3.8rem;
  }
  .title span::before{
    top: 1.7rem;
    left: 1rem;
    font-size: 1.8rem;
  }
  .box {
    padding: 2rem 2rem 2rem 3.6rem;
  }
  .box p::before{
    top: -0.2rem;
    left: -2.5rem;
    font-size: 1.8rem;
  }
}

/***** company *****/
#company .page_hero .hero_wrap {
  margin-bottom: 0;
}
section#page_strength{margin-top: 0;
}

/*** outline ***/
.outline_wrap{
  margin-bottom: 8rem;
}
.special_list {
  text-align: center;
}
.special_name{
  margin-top: 1.6rem;
  font-weight: 500;
}

@media screen and (min-width:800px) {
  .outline_wrap{
    background-color: #F9F9F9;
    padding: 3.6rem 4vw;
  }
  .special_list_item{
    display: flex;
  }
  .special_list_item .img_outer img{
    width: 96%;
  }
}
@media screen and (max-width:799px) {
  .special_list_item .img_outer:not(:last-child){
    margin-bottom: 4rem;
  }
}

/***** recruit *****/
/*** message ***/
#message h2{
  font-size: clamp(2.8rem, 4.2vw, 4rem);
}
#message .text_box{
  margin-bottom: 4rem;
}
#message .img_outer img{
  position: relative;
}
.portrait{
  margin-top: 12rem;
  background: #fefefe;
  border-radius: 2rem;
  padding: 4rem 0;
}
.portrait h3{
  text-align: center;
}
.dott_list.portrait_list_item{
  padding: 0 4vw;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.dott_list.portrait_list_item li{
  margin-bottom: .6rem;
}
section#guideline{
  margin-bottom: 0;
}
/*** recruit01 ***/

/*** recruit02 ***/
.recruit02 .page_hero h1{
  padding-bottom: 8rem;
}
.recruit02 .page_main section#message{
  padding-top: 0;
  padding-bottom: 0;
}
.recruit02 #message .text_area{
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.recruit02 #message h2,.recruit02 #message .text_box{
  width: 100%;
}
.recruit02 #message h2{
  font-size: clamp(2.8rem, 3.6vw, 4rem);
}
@media screen and (min-width:800px) {
  .recruit02 #message .text_area{
    display: flex;
  }
}

/* job */
.job_wrap{
  width: 100%;
  padding: 4rem 0;
}
.job dl{
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin: 1rem auto;
}
.job dt, .job dd{
  padding: 24px 0;
  border-bottom: 1px solid #ccc;
}
.job dt{
  flex-basis: 28%;
  font-weight: bold;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.job dd {
  flex-basis: 72%;
  margin: 0;
}
.job ul.dott_list{
  margin: 0;
}
@media screen and (max-width:639px) {
  .job dl {
    flex-flow: column;
  }
  .job dt {
    border-bottom: none;
	  font-weight: bold;
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
    padding-bottom: 0;
  }
}
.job dl {
  border-top: 1px solid #BAC3CC;
}
.job ul.text_list{
  margin: 0;
}
.entry_btn{
  display: block;
  text-align: center;
  padding: 8vw 0;
  position: relative;
  font-size: clamp(4rem, 10vw, 12rem);
  color: #A4925C;
  background-color: #FFFEFB;
}
.entry_btn:hover{
  color: #FFFEFB;
  background-color: #D5BE79;
}
/***** contact *****/
.contact_info {
  max-width: 1200px;
  border: 1px solid #c8c8c8;
  padding: 4rem 1.6rem;
  text-align: center;
  margin-top: 6rem;
	margin-left: auto;
	margin-right: auto;
}
.contact_info a {
  text-decoration: none;
}
.contact_info .tel_number {
  font-size: 2rem;
  margin-left: 0.4rem;
  font-weight: 500;
}
.contact_info .tel_number .number{
  font-size: 3.6rem;
}
.contact_info p{
  font-size: clamp(1.4rem, 3.2vw, 1.6rem);
}
.contact_info .flex_box{
  justify-content: space-around;
}

/*** Contact Form7 ***/
input[type="text"]:focus,textarea:focus,input[type="email"]:focus,input[type="tel"]:focus {
  outline: solid 2px #666;
}
input[type="text"],textarea,input[type="email"],input[type="tel"] {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
input[type="text"],input[type="email"],input[type="tel"] {
  height: 2rem;
}
.contact7 {
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 4rem;
  background-color: #fefefe;
  padding: 2rem 2vw;
}
.contact7 dl {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 4rem;
}
.contact7 dl dt {
  display: flex;
  justify-content: flex-start;
  flex-basis: 32%;
}
.contact7 dl dd {
  width: 630px;
  flex-basis: 68%;
}
.contact_ver2 dl dt,.contact_ver2 dl dd{
  padding-bottom: .8rem;
}
.contact7 dl dd select, .contact7 dl dd textarea {
  width: 100%;
}
.contact7 dl dd select, .contact7 dl dd textarea, .contact7 dl dd input {
  padding: 2rem 1.6rem;
  background: #fff;
  border: 1px solid #ddd;
}
section .contact7 dd.form_name p span input.wpcf7-text {
  width: 96%;
}
section .contact7 dd.birthday p span input.wpcf7-text {
  width: 94%;
  margin-left: 2rem;
}
.wpcf7-text {
  width: 100%;
}
/* 必須マーク */
.contact7 .must {
  background: #EB606D;
}
/* 任意マーク */
.contact7 .optional {
  background: #999;
}
.contact7 .must, .contact7 .optional {
  color: #FFF;
  font-size: 10px;
  margin-left: 10px;
  padding: 5px 10px;
  letter-spacing: 2px;
}
/* Required fields */
.contact7.contact7_en .must{
  color: #EB606D;
  background: #fefefe;
  margin-left: 0;
  padding: 0 4px;
  letter-spacing: 2px;
}
/* CF7チェックボックスとラジオボタンを縦並びに */
span.wpcf7-list-item,span.list-item {
  display: block;
}
span.list-item{
  margin-bottom: .8rem;
}
.contact7 .radio dd input {
  width: auto;
}
.wpcf7-list-item {
  margin: 0 !important;
}
.wpcf7 form .wpcf7-response-output {
  border: none;
}
/* チェックボックスデザイン */
.contact7 dl.checkbox dd input{
	padding: 0 1.6rem;
  border: none;
}
input[type="checkbox"] {
    cursor: pointer;
    padding-left: 30px;/*label手前にチェックボックス用の余白を開ける*/
    vertical-align: middle;
    position: relative;
  }
input[type="checkbox"]::before,
input[type="checkbox"]::after {
    content: "";
    display: block; 
    position: absolute;
  }
input[type="checkbox"]::before {
    background-color: #fff;
    border-radius: 0%;
    border: 1px solid #666;
    width: 20px;/*チェックボックスの横幅*/
    height: 20px;/*チェックボックスの縦幅*/
    transform: translateY(-50%);
    top: 50%;
    left: 5px;
  }
input[type="checkbox"]::after {
    border-bottom: 3px solid #A4925C;/*チェックの太さ*/
    border-left: 3px solid #A4925C;/*チェックの太さ*/
    opacity: 0;/*チェック前は非表示*/
    height: 8px;/*チェックの高さ*/
    width: 11px;/*チェックの横幅*/
    transform: rotate(-45deg);
    top: -6px;/*チェック時の位置調整*/
    left: 9px;/*チェック時の位置調整*/
  }
input[type="checkbox"]:checked::after {
    opacity: 1;/*チェック後表示*/
  }
/* ラジオボタンデザイン */
input[type="radio"] {
  display: none;
}
.radio_btn .wpcf7-list-item-label,.radio_btn .list-item-label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
  height: 20px;
}
.radio_btn .wpcf7-list-item-label::before,.radio_btn .list-item-label::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #666;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
}
input[type="radio"]:checked + .wpcf7-list-item-label::after,input[type="radio"]:checked + .list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #A4925C;
}
.contact_ver2 .radio_btn .list-item-label{
  height: 17px;
}
.contact7 .check {
  margin: 4rem 0 2rem;
}
.contact7 .agree {
  margin-top: 6rem;
}
.check .agree_box {
  height: 400px; /* 横幅を200pxに指定 */
  border: 1px solid #666; /* わかりやすくボーダーを引く */
  overflow-y: scroll;
  margin: 1.2rem 0 2rem;
  padding: 1.2rem;
}
.btn_contact7,.btn_contact {
  width: 100%;
  position: relative;
  transition: all .2s ease-out;
  margin-top: 4rem;
}
.btn_contact{
  margin-bottom: 4rem;
}
.btn_contact7 p,.btn_contact p{
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.btn_contact7 input,.btn_contact button {
  width: 100%;
  padding: 2rem 0;
  color: #A4925C;
  border: #A4925C 1px solid;
  border-radius: 4rem;
  font-size: 1.1em;
  font-weight: bold;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
  text-align: center;
  transition: all .2s ease-out;
}
.btn_contact7 input.wpcf7-previous,.btn_contact7 button.previous{
	background: #f8f8f8;
    border: #444 solid 2px;
    color: #444;
}
.btn_contact7 input:hover,.btn_contact7 button:hover {
  background: #A4925C;
  color: #fefefe;
}
.contact7 .previous input:hover,.contact7 .previous button:hover{
	border: #A4925C solid 2px;
}
.confilm_age{
	padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .contact7 dl {
    display: block;
  }
  .contact7 dl dt {
    justify-content: flex-start;
    flex-basis: auto;
  }
  .contact7 dl dd {
    flex-basis: auto;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .btn_contact7 p{
    width: 100%;
  }
}
@media screen and (min-width: 600px){
	.contact7 .btn_wrap{
		display: flex;
		justify-content: space-between;
	}
	.contact7 .previous{
		width: 28%;
		margin-left: 4rem;
	}
}
@media screen and (max-width: 599px) {
	.contact7 .previous{
		margin-top: 0;
	}
}

/*** thanks ***/
#thanks .page_hero{
  padding-bottom: 0;
}
#thanks .page_hero .en{
  display: none;
}
#thanks .page_hero .jp{
  font-size: clamp(2rem, 4.8vw, 4rem);
  font-weight: 500;
  line-height: 1;
}
#thanks .head .tittle{
  font-size: clamp(2rem, 4.8vw, 2.8rem);
  margin-bottom: 2.8rem;
}
#thanks .page_hero .hero_wrap{
  margin-bottom: 10rem;
}
.en_thanks{
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  font-family: 'Cormorant Garamond';
}
/*** privacy-policy ***/
.privacy-policy .page_hero h1 .jp{
  margin-top: 2rem;
}
.privacy-policy section h2,section #privacy-policy h2,#policy_section h2{
	margin-bottom: 2rem;
  font-weight: 500;
  font-size: clamp(2.2rem, 3.8vw, 2.8rem);
}
#policy_section h2{
  margin-top: 4rem;
}
/*** NotFound ***/
#error404 .catch,#error404 section{
	max-width: 1000px;
	margin: 0 auto 10rem;
}
