@charset "utf-8";

/* リード文 */
.lead_text{
    text-align: center;
    line-height: 2;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 400;
}

@media (max-width: 400px){
.lead_text{
  text-align: left;
      line-height: 1.4;
  }
}

/* 問い合わせ/電話とLINEのエリア */
.link_tel > p,
.link_line > p{
    margin-bottom: 5px;
}

/* 左側 */
.contact_flex{
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 580px;
    width: 100%;
}


.link_tel .text01{
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.link_tel .text02{
    margin: 20px 0;
}

.link_tel .text02 img{
max-width: 274px;
width: 100%;
height: auto;
    transition: opacity 0.3s ease,transform 0.3s ease;
}
@media (max-width: 400px){
.link_tel .text02 a{
/*  text-align: center;
  font-size: clamp(25px, 3.8vw, 30px);*/
  }
}

.link_tel .text02 a:hover{
      opacity: 0.6;
      transform: translateY(-1px);
}

.link_tel .text03{
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
      line-height: 1.2;
}

.link_tel .text_hour{
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}


/* 右側 */
.link_line{
    padding: 20px 45px;
    border-radius: 10px;
    border: #e3007F solid 1px;
    max-width: 276px;
    width: 100%;
    text-align: center;
}
@media (max-width: 768px){
.link_line{
/*    max-width: 80%;*/
	        margin: 0 auto;
  }
}
@media (max-width: 400px){
.link_line{
      max-width: 100%;
        padding: 10px;
  }
}
.link_line .text04{
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
  
}

.link_line .text05{
    font-size: 24px;
    color: #e3007F;
    font-weight: bold;
/*        font-family:
    "Rodin Maria Pro",
    "Noto Sans CJK JP",
    "Hiragino Sans",
    "Meiryo",
    "Yu Gothic","游ゴシック","游ゴシック体",
    sans-serif;*/
}

.link_line img{
    transition: opacity 0.3s ease,transform 0.3s ease;
    margin-bottom: 5px;
}

.link_line img:hover{
    opacity: 0.6;
    transform: translateY(2px);
}

.link_line .text06{
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
    text-decoration: underline;
    text-align: left;
}
@media (max-width: 768px){
.link_line .text06{
    text-align: center;
  }
}
/* 入力エリア */
form {
padding: 50px 0px 20px;
    width: 715px;
    margin: 0 auto;
}


#contact dl {
  width: 100%;
}



#contact dl dd {
    max-width: 466px;
    width: 100%;
    /* flex: 1; */
    border-radius: 5px;
    margin: 20px 0 20px;
}

#contact dl dd input:hover,
#contact dl dd textarea:hover {
  cursor: pointer;
	    font-size: 1.6rem;
}

/* 罫線作成 */
#contact dl dd input,
#contact dl dd textarea {
 width: 100%;
  border: none;             /* ← 枠線を消す */
utline: none;            /* フォーカス枠も消す 
  /* o padding: 8px 12px;
  font-size: 14px;*/
    border-radius: 5px;
background-color: #f4efe9;
/*  line-height: 1.6;*/
}
#contact dl dd textarea {
  height: 165px;    /* ← ここを調整 */
	    padding: 10px;
/*  resize: vertical;  */  /* 縦だけユーザー調整可 */
}

#contact dl .flex.align-top {
  align-items: flex-start; /* ← 上付き */
}

/*/* 通常行：dt + dd を貫く下線 
dl .flex {
  border-bottom: 1px solid #f4efe9;
  padding-bottom: 6px;
}

/* textarea 行だけ下線を消す 
dl .flex.no-border {
  border-bottom: none;
}
*/
/* 郵便番号用 dd */


/* 2つの入力ボックス */
.postal-dd input {
  width: 100px;  
  padding: 6px 8px;
  text-align: center;
  border-radius: 5px;
  font-size: 14px;
}



.postal-dd .hyphen {
  font-size: 15px;
  line-height: 1;
}


.flex.align-top.no-border .required{
  margin-top: 20px;
}

dt.required::after {
  content: "※";
  color: red;
  margin-left: 25px;
  font-size: 16px;
  font-family: 'Noto Sans Mono JP', 'Noto Sans JP', monospace, sans-serif;
}

/* プライバシーポリシー */
.policy::before{
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-image: url(../img/contact/privacy_icon_23x23.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.policy{
    font-weight: bold;
    color: #1d2086;
    margin-bottom: 10px;
    font-size: 1.6rem;
    margin-top: 40px;
}

.privacy-box {
  max-width: 725px;
  width: 100%;
    height: 165px;             /* 高さ */
  padding: 10px 24px;
  border: 1px solid #b3b3b3;
  overflow-y: auto;             /* ← 縦スクロール */
    font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  -webkit-overflow-scrolling: touch;
  /* Firefox */
  scrollbar-width: unset;
  scrollbar-color: #808080 #ededed;
}
/* WebKit */
.privacy-box::-webkit-scrollbar {
  width: 8px;
}
.privacy-box::-webkit-scrollbar-track {
  background-color: #ededed;
}
.privacy-box::-webkit-scrollbar-thumb {
  background-color: #808080;
  border-radius: 8px;
}
.privacy-box p {
/*  margin: 0;*/
  white-space: normal;
  color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
}

@media (max-width: 400px){
.privacy-box {
    padding: 10px 10px;
  }
}

input[type="submit"] {
	color: #fff;
  display: inline-flex;
  max-width: 246px;
  width: 100%;
  align-items: center;
  padding: 14px 32px;
  border: none;
  border-radius: 25px;
  background-color: #e3007f;
  font-weight: bold;
  cursor: pointer;
  display: block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
	
	
/* 送信ボタン */
.submit-btn a{
  color: #fff;
  display: inline-flex;
  max-width: 246px;
  width: 100%;
  align-items: center;
  padding: 14px 32px;
  border: none;
  border-radius: 25px;
  background-color: #e3007f;
  font-weight: bold;
  cursor: pointer;
  display: block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
@media (max-width: 400px){
.submit-btn a{
  font-size: 15px;
    padding: 15px 10px;
  }
}
.submit-btn img{
margin-left: 10px;
}

input[type="submit"] {
margin: 0 auto;
width: 240px;
  text-align: center;
  margin-bottom: 80px;
	    margin-top: 30px;
	    font-size: 1.6rem;
}
@media (max-width: 400px){
.submit-btn {
max-width: 100%;
  }
}
.submit-btn .arrow {
  transition: transform 0.3s ease;
}
@media (max-width: 400px){
.submit-btn .arrow {
  display: none;
  }
}
.submit-btn a:hover .arrow {
  transform: translateX(15px);
}

.submit-btn a:hover {
  background-color: #c07ba1;
  transform: translateY(2px);
}

 dl.contact_f{
    margin-bottom: 0.6rem;
    margin-right: -0.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 715px;
    border-bottom: 1px solid #f4efe9;
}
 dl.contact_f dt {
width: 23.2rem;
padding: 2.5rem 1rem 0 0;
    font-size: 1.6rem;
    font-weight: 500;
}
 dl.contact_f dd {
        width: calc(100% - 23.2rem);
}

.contact_f input[type="number"],
.contact_f input[type="email"],
.contact_f input[type="tel"],
.contact_f input[type="text"],
.contact_f textarea {
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    border-radius: 0.5rem;
    height: 4rem;
    color: #000;
    border: none;
    box-sizing: border-box;
    /* font-size: 1.6rem; */
    padding: 0 1.5rem;
    width: 100%;
/*    background-color: #F1F1F1;*/
}

.contact_f .zip1[type="text"], .contact_f .zip2[type="text"] {
    width: 11.3rem!important;
}


.p-policy-h {
	font-weight: bold;
	margin: 0 0 15px;
}
.p-policy-lead {
	margin: 0 0 10px;
}
.pp-box {
	margin: 0 0 15px;
}
.pp-h {
	font-weight: bold;
	margin: 0 0 5px;
}


@media all and (max-width: 896px) {
	    .inner_01 {
        max-width: 100%;
        padding: 0 2rem;
    }
form {
    padding: 50px 0px 20px;
    width: 100%;
    margin: 0 auto;
/*	padding: 0 2rem;*/
padding-top: 30px;
	padding-bottom: 20px;
}
	dl.contact_f dt {
    width: 20%;
	}

	#main .contact_f {
		padding: 0;
		margin-right: 0;
		display: block;
	}
	#main .contact_f dt {
		width: auto;
		font-size: 1.5rem;
	}
	dl.contact_f {
/*    margin-bottom: 0;*/
	}
	dl.contact_f dt {
    padding: 2rem 1rem 0 0;
}
	#contact dl dd {
    margin: 10px 0 20px;
}
	
	#main .contact_f dt sup {
		vertical-align: 0.1rem;
	}
	#main .contact_f dd {
		width: auto;
		font-size: 1.5rem;
		        max-width: 100%;
	}
	.contact_f input[type="number"], .contact_f input[type="email"], .contact_fl input[type="tel"], .contact_f input[type="text"] {
		padding: 0 1rem;
	}
	.contact_f textarea {
/*		padding: 1rem;*/
	}
	#main .contactSec {
		padding-top: 5rem;
	}
	.contact_f dd .icoSpan {
		margin: 0 0.2rem;
	}
.contact_f #zip1[type="text"], .contact_f #zip2[type="text"] {
		width: 8.6rem;
	}
	#main .privacy .subBox {
		margin: 0;
		padding: 1.5rem 1rem;
	}
	.submit li {
		display: block;
		margin-bottom: 1rem;
	}
	.submit li:last-child {
		margin-bottom: 0;
	}
	#main .contactSec2 .contactSub .whiteBox {
		padding-bottom: 4rem;
	}
	#main .contactSec2 .contactSub {
		padding-bottom: 5rem;
	}
    .link_tel {
        max-width: 282px;
        margin: auto;
		        margin-bottom: 20px;
    }
	#contact dl dd textarea {
    min-height: 165px;
    padding: 0;
}
    #container {
        padding-bottom: 0rem;
    }

}


@media (max-width: 700px) {
		.contact_flex {
    display: block;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}
	.link_tel .text02 {
        margin: 10px 0;
}
}
.contact_f dt p {
    display: inline-block;
}
.req {
    color: red;
}



	.contact_f input[type="number"], .contact_f input[type="email"], .contact_fl input[type="tel"], .contact_f input[type="text"] {
    font-size: 1.6rem;
	}
	.contact_f textarea {
    font-size: 1.6rem;
	}
    #contact dl dd textarea {
    padding: 0.5rem 1.5rem;
    }