@charset "utf-8";
:root {
    --BTN_COLOR: #6B5BD5;
    --BTN_HOVER: #F09676;
    --BLUEGRAY: #d1dae2;
    --IMGBORDER: #c6c6c6;
}


    
    
    
@media screen and (min-width:650px) {
.sp700{
	display:none;
}
}
.wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 53px;
  margin-bottom: 70px;
  width: 90%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}
#contactmain{
	flex:1;
	border-radius: 17px;
	background: var(--WHITE);
	border:2px solid var(--BLACK);
	padding:40px 60px;
}
#side{
	width:380px;
	margin-left:37px;
}
.generalsec{
	margin-bottom: 80px;
}
@media screen and (min-width:1000px) and (max-width:1100px) {
   .wrap{
	  width:96%;
  }
  #contactmain{
	  padding:40px 30px;
  }
}
@media screen and (max-width:999px) {
	.generalsec{
	  margin-bottom: 50px;
  }
  .wrap{
	  flex-direction: column-reverse;
	  margin-top:25px;
	  margin-bottom: 20px;
  }
  #side{
	  width:100%;
	  margin-left:0;
	  margin-bottom: 40px;
  }
  .clientlist{
	  width:98%;
	  padding:0 10px;
	  margin-left:auto;
	  margin-right: auto;
	  margin-bottom:50px;
  }
}
@media screen and (max-width:649px) {
  .wrap{
	  width:98%;
  }
  #contactmain{
	  padding-right:20px;
	  padding-left:20px;
  }
}
@media screen and (max-width:767px) {
  .generalsec{
	  margin-bottom: 60px;
  }
}

.sendbutton{
	margin: 0 auto;
	width: 90%;
	max-width: 300px;
}
.sendbutton input{
	width: 100%;
	display: block;
	text-align: center;
	padding: 15px 0;
	background: var(--BTN_COLOR);
	border: 3px solid var(--BLACK);
	border-radius: 70px;
	color: var(--WHITE);
	font-size:20px;
	letter-spacing:0.16em;
	cursor: pointer;
	transition: .5s all;
}
.sendbutton input:hover{
	background: var(--BTN_HOVER);
	color:var(--WHITE);
}
.contact-form{
	background: var(--WHITE);
	border:2px solid var(--BLACK);
	border-radius:17px;
}
.form-title{
	font-weight: bold;
	font-size:1.2em;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--BLUEGRAY);
}
.form-contents{
	margin-bottom: 20px;
}
.formarea_contents{
	margin-bottom: 30px;
}
.formarea_contents input{
	height:40px;
	padding:4px;
}
.formarea_contents input[type="checkbox"]{
	height: 15px;
	width:20px;
	margin-right: 3px;
}
.formarea_contents dd.harf{
	display: flex;
	gap:0 6px;
}
.formarea_contents dt{
	color:#73787d;
	font-weight: bold;
}
.formarea_contents dt.caution{
	margin-top: 23px;
}
.formarea_contents dd.privacy{
	margin-top: 23px;
	font-size: 16px;
}
.formarea_contents dd.privacy a{
	color: var(--LINK_BLUE);
	text-decoration: underline;
}
.formarea_contents dt .must::after{
	content:"必須";
	padding:1px 5px;
	vertical-align: text-top;
	background:var(--MUST_RED);
	color:var(--WHITE);
	font-size:10px;
	margin-left:3px;
	display: inline-block;
	margin-top: -3px;
}
.formarea_contents dd{
	margin-bottom: 10px;
}
.clientlist_contents{
	border:2px solid var(--BLACK);
	padding:30px 20px;
	margin-top: 25px;
	border-radius:17px;
	background:var(--WHITE);
}
.clientlist-title{
	font-weight: bold;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--BLUEGRAY);
}
.clientlist_logo{
	display:grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px 7px;
}
.clientlist_logo img{
	border:1px solid var(--IMGBORDER);
	border-radius: 5px;
}
@media screen and (min-width: 768px){
	.contact-form{
		margin: 0 auto;
		padding: 40px 32px;
	}
	.complete_p{
		margin-bottom: 40px;
	}
}
@media screen and (min-width:650px) and (max-width:999px) {
 .contact-form,.clientlist_contents{
	  padding:40px 60px;
  }
}
@media screen and (max-width:999px) {
 .formarea_contents dd.privacy{
	  margin-top: 10px;
  }
 }
@media screen and (max-width: 649px){
	.contact-form, .clientlist_contents{
		padding:40px 20px;
	}
}



.catch-copy {
  text-align: center;
  background-color: var(--WHITE);
  color: var(--BLACK);
  padding: 50px 0;
}
.catch-copy .docuDLMainTitle {
  font-size: clamp(18px, 2.5vw, 31px);
  margin-bottom: 9px;
  font-weight: bold;
	letter-spacing:0.1em;
}
.catch-copy .docuDLMainTitle span {
	position: relative;
	z-index: 1;
}
.catch-copy .docuDLMainTitle span.marker{
	display: inline-block;
	background: url(../images/marker.png) no-repeat -2px 84%;
	background-size: 100%;
}
.catch-copy .docuDLMainTitle span.marker::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--WHITE);
	z-index: -1;
	animation: mask-animation 1s forwards;
	pointer-events: none;
}
@keyframes mask-animation {
    from {
        left: 0;
    }
    to {
        left: 100%;
    }
}
.docuDLMainContents{
	font-size:clamp(16px, 1.7vw, 18px);
}
@media screen and (max-width:767px) {
  .catch-copy{
	  padding:30px 0;
  }
}
h2.docuDLtitle {
  margin-bottom: 21px;
  position: relative;
  font-size: clamp(19px, 2.2vw, 25px);
}
h2.docuDLtitle span{
	background: none !important;
}
h2.docuDLtitle span::before{
	content:"──";
	padding-right: 5px;
}
.contentsarea span {
  padding:0 3px;
  background:linear-gradient(transparent 50%, var(--MARKER_GREEN) 0%);
}
.problem .problemtitle img {
  position: absolute;
  bottom: -35%;
  right: 5%;
  width: clamp(50px, 10vw, 73px);
  height: auto;
}
.problem .problem-list li {
  font-size: clamp(15px, 1.6vw, 17px);
  border-bottom: 1px solid var(--BLUEGRAY);
  padding:10px 0;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.problem .problem-list li::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%; 
  border: 1px solid var(--BLACK);
  transform: translateY(-50%);
  background: #F09676;
}
.problem .problem-list{
}
.problem .problem-list li::after {
  content: '';
	display: block;
	position: absolute;
	left: 6px;
	top: 50%;
	width: 18px;
	height: 7px;
	border-left: 3px solid var(--BLACK);
	border-bottom: 3px solid var(--BLACK);
	transform: translateY(-98%) rotate(-45deg);
}
.problem .problem-list li span{
	font-weight: bold;
}
.problem_contents span{
	font-weight: bold;
	padding: 0 3px;
	background: linear-gradient(transparent 50%, var(--MARKER_GREEN) 0%);
}
.about p + p {
  margin-top: 20px;
}
.about p.about-subcatch{
	font-weight: bold;
	font-size:1.2em;
}
.about p span {
  font-weight: bold;
}
.content {
  max-width: 788px;
  margin-right: auto;
  margin-left: auto;
}
.content .content-list dt {
  margin-bottom: 10px;
  font-weight: bold;
  font-size:1.1em;
}
.content .content-list dt:before{
	content: "";
	display: inline-block;
	margin-right: 5px;
	border: 1px solid var(--BLACK);
	width: 17px;
	border-radius: 50%;
	height: 17px;
	vertical-align: text-top;
	margin-top:-1px;
}
.content .content-list dd {
  margin-bottom: 20px;
}
.content .content-img{
	background:#f1f4f6;
	padding:24px 30px;
	margin: 40px 0;
}
.content .content-img img {
  width: 100%;
}
.content p {
  font-size: clamp(14px, 1.5vw, 16px);
  margin-bottom: 50px;
}
.content p span {
  font-weight: bold;
}
.download-btn {
  text-align: center;
  margin-bottom: 50px;
}
.download-btn .btn-text {
  font-size: clamp(17px, 2.3vw, 25px);
  background-color: var(--BTN_COLOR);
  border: 3px solid var(--BLACK);
  border-radius: 35px;
  padding: 20px 70px;
  color: var(--WHITE);
  width: 90%;
  display: inline-block;
}
.download-btn .btn-text:hover{
	background: var(--BTN_HOVER);
	color:var(--WHITE);
}
.download-fixbtn{
	display:none;
}
@media screen and (max-width:767px) {
  .content .content-list dd {
    margin-bottom: 25px;
  }
}
@media screen and (max-width:999px) {
	.content p.download-btn{
		margin-bottom: 0;
	}
	.content.generalsec{
		margin-bottom: 0;
	}
	.content p{
		margin-bottom: 0;
	}
}
@media screen and (max-width: 649px){
	.download-btn{
		display:none;
	}
	.about p.about-subcatch{
		font-size:17px;
	}
	.content .content-img{
		padding: 10px;
	}
	.download-fixbtn{
		display:block;
	}
	.download-fixbtn .btn-text {
    position: fixed;
    bottom: 0;
    left: 5%;
    width: 90%;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    background-color: var(--BTN_COLOR);
    border: 3px solid var(--BLACK);
    border-bottom: none;
    border-radius: 35px 35px 0px 0px;
    padding: 9px 0px;
    color: var(--WHITE);
    display: inline-block;
    z-index: 9;
    opacity: 0;
    transition: opacity 0.5s ease-out;
  }
  .download-fixbtn .btn-text.show {
    opacity: 1;
  }
  .grecaptcha-badge{
	  bottom: 46px !important;
  }
  footer{
	  padding-bottom: 27px;
  }
}

.completearea{
	max-width: 650px;
	width:92%;
	margin: 0 auto;
	padding: 50px 0;
}
.complete_p{
	text-align: center;
	font-size: 1.4em;
}
.docs_download_btn a{
	display: block;
	width:100%;
	box-sizing: border-box;
	margin:20px auto;
	background:var(--BTN_COLOR);
	padding:15px 0;
	text-align: center;
	color:var(--WHITE);
	font-weight: bold;
	border-radius:70px;
	border:3px solid var(--BLACK);
	transition: .5s all;
	font-size:1.1em;
}
.docs_download_btn a:hover{
	background:var(--WHITE);
	color:var(--BLACK);
}
.docs_download_contactsec{
	border:2px solid var(--BLACK);
	background: var(--WHITE);
	width:100%;
	padding:20px;
	margin:50px 0 30px;
	box-sizing: border-box;
}
.docs_download_contactsec_title{
	font-size:1.3em;
	text-align: center;
	font-weight: bold;
	margin-bottom: 20px;
}
.docs_download_contactsec_contents {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  font-size:1.2em;
}
.docs_download_contactsec_contents dt {
  width: 170px;
  font-weight: bold;
  font-size:0.85em;
  padding: 5px;
  text-align: center;
  color:var(--WHITE);
  margin-bottom: 10px;
  background-color: #1b1b1b;
  box-sizing: border-box;
}
.docs_download_contactsec_contents dd {
  width: calc(100% - 170px);
  margin: 0;
  padding:8px 0 8px 15px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.docs_download_contactsec_contents dd a{
	color:var(--LINK_BLUE);
	text-decoration: underline;
}
.docs_download_contactsec_contents dd span{
	display: block;
	font-size:0.82em;
}
.docs_download_contactsec_contents dd span b{
	padding-right: 6px;
}
.to-top{
	text-align: center;
}
.to-top::before{
	content: "";
	display: inline-block;
	margin-top: -2px;
	vertical-align: middle;
	width: 22px;
	height: 22px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NzYgNTEyIj48cGF0aCBkPSJNMjk4LjYgNGMtNi01LjMtMTUuMS01LjMtMjEuMiAwTDUuNCAyNDRjLTYuNiA1LjgtNy4zIDE2LTEuNCAyMi42czE2IDcuMyAyMi42IDEuNEw2NCAyMzVsMCAxOTdjMCA0NC4yIDM1LjggODAgODAgODBsMjg4IDBjNDQuMiAwIDgwLTM1LjggODAtODBsMC0xOTcgMzcuNCAzM2M2LjYgNS44IDE2LjcgNS4yIDIyLjYtMS40czUuMi0xNi43LTEuNC0yMi42TDI5OC42IDR6TTk2IDQzMmwwLTIyNS4zTDI4OCAzNy4zIDQ4MCAyMDYuNyA0ODAgNDMyYzAgMjYuNS0yMS41IDQ4LTQ4IDQ4bC02NCAwIDAtMTYwYzAtMTcuNy0xNC4zLTMyLTMyLTMybC05NiAwYy0xNy43IDAtMzIgMTQuMy0zMiAzMmwwIDE2MC02NCAwYy0yNi41IDAtNDgtMjEuNS00OC00OHptMTQ0IDQ4bDAtMTYwIDk2IDAgMCAxNjAtOTYgMHoiLz48L3N2Zz4=);
	background-size: contain;
	background-repeat: no-repeat;
 }
@media screen and (max-width:767px) {
  .docs_download_contactsec_contents{
	  flex-direction: column;
	  align-items: flex-start;
  }
  .docs_download_contactsec_contents dt{
	  width: 100%;
  }
  .docs_download_contactsec_contents dd{
	  width: 100%;
  }
}



/* 会話 */
.chat-container {
	margin-top: 50px;
}
.chat-message {
	display: flex;
	align-items: flex-start;
	gap:10px;
}
.chat-content{
	flex:1;
}
.chat-message.me {
	flex-direction: row-reverse;
}
.chat-message.other {
	justify-content: flex-start;
	margin-bottom: 30px;
}
.chat-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border:1px solid var(--BLACK);
	margin: 0 10px;
}
/* 吹き出しのスタイル */
.chat-bubble {
	max-width: 70%;
	padding: 10px 15px;
	border-radius: 15px;
	position: relative;
	background-color: var(--WHITE);
	border: 2px solid #000;
}
.chat-bubble.second{
	margin-top: 10px;
}
.chat-message.other .chat-bubble {
	background-color: #f4b199;
	border: 2px solid #000;
}
.chat-message.me .chat-bubble {
	background-color: #B3F7D3;
	border: 2px solid #000;
	font-size: 1.35em;
}
.chat-bubble::before,
.chat-bubble::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
}
.chat-message.other .chat-bubble::before {
	left: -16px;
	top: 18px;
	border-width: 10px 16px 10px 0;
	border-color: transparent var(--BLACK) transparent transparent;
	z-index: 0;
}
.chat-message.other .chat-bubble::after {
	left: -12px;
	top: 19px;
	border-width: 9px 14px 9px 0;
	border-color: transparent #f4b199 transparent transparent;
	z-index: 1;
}
.chat-message.me .chat-bubble::before {
	right: -16px;
	top: 18px;
	border-width: 10px 0 10px 16px;
	border-color: transparent transparent transparent var(--BLACK);
	z-index: 0;
}
.chat-message.me .chat-bubble::after {
	right: -12px;
	top: 19px;
	border-width: 9px 0 9px 14px;
	border-color: transparent transparent transparent #B3F7D3;
	z-index: 1;
}

@media screen and (max-width:767px) {
.chat-icon {
	width: 50px;
	height: 50px;
	margin: 0;
}
.chat-bubble {
	max-width: 100%;
	padding: 10px 15px;
	line-height: 1.4;
}
.chat-message{
	gap:18px;
}
.chat-message.me .chat-bubble{
	flex:1;
}
}

.docs_download_btn.supportbook a{
	background:#F09676;
	color:var(--BLACK);
}
.docs_download_btn.supportbook a:hover{
	background:var(--WHITE);
}
.otherbook_contents{
	font-weight: 600;
	margin-top: 40px;
	font-size:1.1em;
}
.mgt10{
	margin-top: 10px !important;
}
