@charset "utf-8";

/* --------------------------------------------------
  all
-------------------------------------------------- */
html {
	scroll-behavior: smooth;
}
body.no-scroll {
  overflow: hidden;
}
body {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .15em;
  position: relative;
}

a {
  text-decoration: none;
  transition: all .5s;
}
a:hover{
  text-decoration: underline;
  opacity: 0.8;
}
:target {
  scroll-margin-top: 80px;
}
@media (max-width: 750px) {
  :target {
    scroll-margin-top: 50px;
  }
}
* {
  box-sizing: border-box;
}
img {
  width: 100%;
}
.mb10 {
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 13px;
    letter-spacing: .1em;
  }
  .pc_only { display: none; }
}
@media only screen and (min-width: 751px) {
/* CLODR_RPL-251 2026.01.05 ここから修正 */
  #contact_input_2column .sp_only_2column,
  .sp_only { display: none; }
}
/* 2column layout
-------------------------------------------------- */
#contact_input_2column main {
  display: flex;
  height: 100vh;
}
#contact_input_2column .pane {
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
  scrollbar-width: none;
}
#contact_input_2column .pane::-webkit-scrollbar { width: 0; }
#contact_input_2column .left {
  flex: 1 1 auto;
  border-right: 1px solid #ccc;
  position: relative;
}
#contact_input_2column .right {
  flex: 0 0 auto;
}
#contact_input_2column .left,
#contact_input_2column .right {
  background: #fff;
  scroll-behavior: smooth;
}
#contact_input_2column .left img {
  max-width: 1000px;
}
/* 擬似スクロールバー */
#contact_input_2column .scrollbar { position: fixed; top: 0; right: 0; width: var(--bar-width, 8px); height: 100vh; border-radius: 4px; }
#contact_input_2column .thumb-left,
#contact_input_2column .thumb-right { position: absolute; width: 100%; border-radius: 4px; background: #999; opacity: 0; transition: opacity var(--fade-time, 0.2s); }
/* モバイル対応 */
@media (max-width: 750px) {
  body#contact_input_2column { overflow: auto; }
  #contact_input_2column main { flex-direction: column; height: auto; }
  #contact_input_2column .pane { width: 100%; height: auto; overflow-y: auto; }
  #contact_input_2column .scrollbar { display: none !important; }
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */

/* --------------------------------------------------
  header
-------------------------------------------------- */
#header {
  width: 100%;
  height: 80px;
  background: #fff;
}
#header.float {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1);
}
/* CLODR_RPL-251 2026.01.05 ここから修正 */
#contact_input_2column #header.float {
  position: sticky;
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
#header .wrap_outer {
  display:flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: auto 25px;
}
#header .header_logo {
  display: block;
  width: 145px;
}
#header nav .menu {
  font-size: 18px;
}
/* CLODR_RPL-251 2026.01.05 ここから修正 */
#contact_input_2column #header nav .menu {
  font-size: clamp(14px, 0.9375vw, 18px);
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
#header nav .menu ul li a {
  color: #333;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  #header {
    height: 50px;
  }
/* CLODR_RPL-251 2026.01.05 ここから修正 */
  #contact_input_2column #header.float {
    position: fixed;
  }
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
  #header .wrap_outer {
    margin: auto 10px;
  }
  #header .header_logo {
    margin-top: 3px;
  }
  #header nav {
    height: 50px;
    position: relative;
  }
  #header nav .drawer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    background-color: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 9999;
  }
  #header nav .menu {
    background-color: #fff;
    padding: 20px 25px;
    transition: 0.3s ease; /*滑らかに表示*/
    transform: translateY(-100%); /*上から出す場合は、マイナス100%としてください*/
  }
  #header nav .menu ul {
    border-top: 1px solid #ddd;
    margin-bottom: 35px;
  }
  #header nav .menu ul li a {
    display: block;
    padding: 1.6em .5em;
    border-bottom: 1px solid #ddd;
  }
  /*OPEN時の動き*/
  #header nav .menu.open {
    height: calc(100vh - 50px); /*メニューの高さを画面全体にする*/
    transform: translateY(0%); /*メニューを元の位置へ戻す*/
}
  /*トグルボタンのスタイルを指定*/
  .Toggle {
    display: block;
    width: 35px;
    height: 35px;
    background: url(/contact_n/image/menu.png) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 9px;
    right: 5px;
    z-index: 9999;
  }
  .Toggle.active {
    background: url(/contact_n/image/menu_close.png) no-repeat center;
    background-size: contain;
  }
}
@media screen and (min-width: 751px) {
  #header .header_logo {
    width: 250px;
  }
  #header nav {
    display:flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  #header nav .menu,
  #header nav .menu ul {
    display: flex;
    align-items: center;
  }
  #header nav .menu ul li {
    margin-right: 30px;
  }
/* CLODR_RPL-251 2026.01.05 ここから修正 */
  #contact_input_2column #header nav .menu ul li {
    margin-right: 1.5625vw;
  }
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
}
@media screen and (min-width: 1000px) {
  #header nav {
    margin: auto 25px;
  }
  #header .header_logo {
    width: 350px;
  }
/* CLODR_RPL-251 2026.01.05 ここから修正 */
  #contact_input_2column #header nav {
    margin: auto 0 auto 25px;
  }
  #contact_input_2column #header .header_logo {
    width: min(18.23vw, 350px);
  }
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
}
.contactBtn a {
  display: block;
  background: #25b5ff;
  color: #fff;
  border: 2px solid #25b5ff;
  border-radius: 50px;
  text-align: center;
}
.contactBtn a:hover {
  background: #fff;
  color: #25b5ff;
  text-decoration: none;
  opacity: 1;
}
@media screen and (max-width: 750px) {
  .contactBtn a {
    max-width: 650px;
    padding: 13.5px 0;
    margin: 0 auto;
  }
}
@media screen and (min-width: 751px) {
  .contactBtn a {
    width: 160px;
    padding: 9px 0;
  }
}


/* --------------------------------------------------
  footer
-------------------------------------------------- */
.contact_input #footer {
  margin-bottom: 120px;
}
#footer {
  font-size: 11px;
  letter-spacing: 0;
  text-align: center;
  margin-top: 150px;
}
/* CLODR_RPL-251 2026.01.05 ここから修正 */
#contact_input_2column #footer {
  margin-top: 60px;
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
#footer .footer_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #004ea1;
  padding: 15px 40px;
}
#footer .footer_link li {
  display: flex;
}
#footer .footer_link li:not(:last-child):after {
  content: "｜";
  color: #fff;
}
#footer .footer_link li a {
  color: #fff;
}
#footer .wrap_footer {
  padding: 40px 0;
}
#footer .wrap_footer .footer_logo {
  display: block;
  width: 223px;
  margin: auto;
}
#footer .wrap_footer .copyright {
  margin-top: 10px;
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
@media screen and (min-width: 751px) {
  #contact_input_2column #footer {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 750px) {
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
  .contact_input #footer {
    margin-bottom: 85px;
  }
  #footer {
    font-size: 10px;
    margin-top: 40px;
  }
  #footer .footer_link {
    padding: 10px 150px;
  }
  #footer .footer_link li {
    line-height: 2;
  }
  #footer .footer_link li:not(:last-child):after {
    padding: 0 5px;
  }
  #footer .footer_link li.lineNone:after {
    display: none;
  }
  #footer .wrap_footer {
    padding: 25px 0;
  }
  #footer .wrap_footer .footer_logo {
    width: 130px;
  }
  #footer .wrap_footer .copyright {
    margin-top: 2px;
    transform:scale(0.8);
  }
}
@media screen and (max-width: 599px) {
  #footer .footer_link {
    padding: 10px 120px;
  }
}
@media screen and (max-width: 459px) {
  #footer .footer_link {
    padding: 10px 40px;
  }
}
@media screen and (max-width: 411px) {
  #footer .footer_link {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 280px) {
  #footer .footer_link li.lineNone:after {
    display: block;
  }
}


/* --------------------------------------------------
  main
-------------------------------------------------- */
/* CLODR_RPL-251 2026.01.05 ここから修正 */
body:not(#contact_input_2column) section {
  max-width: 1000px;
}
section {
    margin: auto;
}
#contact_input_2column section {
  margin: auto;
}
body#contact_input_2column:not(.contact_input) section:not(.telArea) {
  max-width: 1000px;
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
@media screen and (max-width: 750px) {
  .contact_input #main {
    margin-top: 50px;
  }
}
@media screen and (min-width: 751px) {
  .contact_input #main {
    margin-top: 80px;
  }
/* CLODR_RPL-251 2026.01.05 ここから修正 */
  #contact_input_2column #main {
    margin-top: 0;
  }
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
  #main {
    position: relative;
  }
  #main::before {
    display: block;
    content: "";
    width: 100%;
    height: 500px;
    background: linear-gradient(0deg, rgba(230,247,255,1) 0%, rgba(221,237,255,1) 100%);
    position: absolute;
    top: 0;
    z-index: -2;
  }
}
/* mainVisual
-------------------------------------------------- */
.mainVisual {
  z-index: -1;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
}
/* CLODR_RPL-251 2026.01.05 ここから修正 */
#contact_input_2column .mainVisual {
  text-align: center;
  box-shadow: none;
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
.mainVisual picture img {
  vertical-align: bottom;
}
/* formArea
-------------------------------------------------- */
.formArea {
  background: #fff;
}
.formArea_flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 840px;
  margin: auto;
}
.cityAddress {
  word-break: break-all;
}
@media screen and (max-width: 930px) {
  .formArea_flow p {
    order: 2;
  }
  .formArea_flow ul {
    order: 1;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 750px) {
/* CLODR_RPL-251 2026.01.05 ここから修正 */
  #contact_input_2column #content_area,
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
  .formArea {
    padding: 45px 25px 50px;
    margin-bottom: 50px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .2);
  }
  .formArea_flow {
    justify-content: center;
  }
}
@media screen and (min-width: 751px) {
/* CLODR_RPL-251 2026.01.05 ここから修正 */
  #contact_input_2column #content_area {
    padding: 30px 40px 50px;
  }
  #contact_input_2column #content_area.slideWrap {
    padding: 30px 35px 50px;
  }
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
  .formArea {
    border-radius: 10px;
    padding: 40px 50px 50px;
    margin: 0 auto 40px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
  }
}
@media screen and (min-width: 931px) {
  .formArea_flow {
    padding-left: 20px;
  }
}
.formArea_flow ul {
  display: flex;
  align-items: center;
  width: 250px;
}
.formArea_flow ul li {
  width: calc(100% / 3);
  height: 2px;
  position: relative;
}
.formArea_flow ul li:not(:last-child)::before,
.formArea_flow ul li::after {
	display: block;
  content: "";
  position: absolute;
}
.formArea_flow ul li::before {
  height: 1px;
  background: #ccc;
  top: 0px;
  left: 50%;
  right: -50%;
}
.formArea_flow ul li::after {
	width: 30px;
	height: 30px;
  background-image: radial-gradient(rgba(204, 204, 204, 1) 22%, rgba(255, 255, 255, 1) 23%);
  border: 5px solid #fff;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.formArea_flow ul li.active::after{
  background-image: radial-gradient(rgba(36, 175, 178, 1) 22%, rgba(219, 247, 243, 1) 23%);
}
.formArea_flow ul li.comp::after{
  background-image: radial-gradient(rgba(36, 175, 178, 1) 22%, rgba(255, 255, 255, 1) 23%);
}
.formArea_flow ul li.active span { color: #24afb2; }
.formArea_flow ul li span {
  width: 100%;
  color: #999;
  font-size: 10px;
  text-align: center;
  margin-top: 25px;
  position: absolute;
  top: 100%;
  left: 0;
}
@media screen and (max-width: 930px) {
  .formArea_flow ul {
    width: 100%;
  }
  .formArea_flow ul li::after {
    width: 25px;
    height: 25px;
  }
  .formArea_flow ul li span {
    margin-top: 20px;
    transform: scale(0.9);
  }
}
@media screen and (min-width: 931px) {
  .formArea_flow ul {
    margin-top: -30px;
  }
}
/* contactForm */
#contactForm {
  font-size: 20px;
  margin: auto;
}
#contactForm dl dt {
  display: flex;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 10px;
}
/* CLODR_RPL-251 2026.01.05 ここから修正 */
#contact_input_2column #contactForm dl dt {
  margin-top: 30px;
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
#contactForm dl dt span:not(.fs_small) {
  margin-right: 8px;
}
#contactForm dl dd p + p {
  margin-top: 10px;
}
#contactForm dl .fs_small {
  font-size: 14px;
}
#contactForm dl dd .addr_sub .fs_small {
  font-weight: bold;
}
/* CLODR_RPL-251 2026.01.05 ここから修正 */
@media screen and (max-width: 1366px) {
  #contactForm {
    font-size: 18px;
  }
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
@media screen and (max-width: 750px) {
  #contactForm dl dt {
    font-size: 14px;
    margin-top: 40px;
  }
  #contactForm dl dt span {
    margin-right: 12.5px;
  }
  #contactForm dl dd {
    font-size: 15px;
  }
  #contactForm dl .fs_small {
    font-size: 11px;
  }
}
/* icon */
#contactForm .ico {
  display: inline-block;
  width: 50px;
	border-radius: 20rem;
  color: #fff;
  font-weight: bold;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  padding: 7.5px 0;
}
.ico.must { background: #fd6969; }
.ico.free { background: #a5a5a5; }
@media screen and (max-width: 750px) {
  #contactForm .ico {
    padding: 5px 0;
  }
}
/* nextStep */
.nextStep {
  text-align: center;
}
.nextStep p {
  font-size: 16px;
  margin: 80px auto 20px;
}
/* CLODR_RPL-251 2026.01.05 ここから修正 */
#contact_input_2column .nextStep p {
  margin: 30px auto 10px;
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
.nextStep p a {
  color: #0099ff;
  cursor: pointer;
}
.nextStepBtn {
  display: flex;
  justify-content: center;
  width: 100%;
}
.nextStepBtn .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  font-weight: bold;
  margin: 0 10px;
  position: relative;
}
/* CLODR_RPL-251 2026.01.05 ここから修正 */
#contact_input_2column .nextStepBtn .btn {
  height: 60px;
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
.nextStepBtn .btn:hover {
  text-decoration: none;
}
.nextStepBtn .btn:not(.notSubmit)::after {
  content: "";
  width: 13px;
  height: 13px;
  border-width: 2px 2px 0px 0px;
  border-style: solid;
  position: absolute;
}
.nextStepBtn .btn.edit {
  width: 120px;
  border: 2px solid #ccc;
  color: #aaa;
  padding-left: 15px;
}
.nextStepBtn .btn.edit::after {
  border-color: #ccc;
  top: 40%;
  left: 20px;
  transform: rotate(225deg);
}
.nextStepBtn .btn.submit,
.nextStepBtn img {
  width: 450px;
}
.nextStepBtn .btn.submit {
  background: #ff7c13;
  color: #fff;
  font-size: 24px;
}
/* CLODR_RPL-251 2026.01.05 ここから修正 */
#contact_input_2column .nextStepBtn .btn.submit {
  font-size: 20px;
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
.nextStepBtn .btn.submit::after {
  border-color: #fff;
  top: 40%;
  right: 20px;
  transform: rotate(45deg);
}
.nextStepBtn .btn.notSubmit{
  background: #ccc;
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .nextStep p {
    font-size: 13px;
    margin: 50px auto 15px;
  }
  .nextStepBtn .btn {
    height: 60px;
    margin: 0 7.5px;
  }
  .nextStepBtn .btn::after {
    border-width: 1.5px 1.5px 0px 0px;
    width: 8px;
    height: 8px;
  }
  .nextStepBtn .btn:not(.notSubmit)::after {
    width: 10px;
    height: 10px;
  }
  .nextStepBtn .btn.edit {
    width: 22%;
    font-size: 13px;
    padding-left: 13px;
  }
  .nextStepBtn .btn.edit::after {
    left: 13px;
  }
  .nextStepBtn .btn.submit,
  .nextStepBtn img {
    width: 75%;
    font-size: 16px;
  }
/* CLODR_RPL-251 2026.01.05 ここから修正 */
  #contact_input_2column .nextStepBtn .btn.submit,
  #contact_input_2column .nextStepBtn img {
    font-size: 15px;
    padding-right: 5px;
  }
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
  .nextStepBtn .btn.submit::after {
    right: 15px;
  }
}
/* responsiveModal
-------------------------------------------------- */
html.modalset {
  overflow: hidden;
}
.responsiveModal {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.responsiveModal-wrap {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 20px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  white-space: nowrap;
}
.responsiveModal-wrap::-webkit-scrollbar {
  display: none;
}
.responsiveModal-wrap:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 100%;
}
.responsiveModal-bg {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(51, 51, 51, 0.8);
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.responsiveModal-box {
  width: 100%;
  max-width: 1000px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.responsiveModal-box .inner {
  background: #fff;
  font-size: 14px;
  text-align: left;
  padding: 60px 80px;
}
.responsiveModal-box .inner > :first-child {
  margin-top: 0;
}
.responsiveModal-wrap {
  overflow: auto; /* スクロールを有効化 */
  white-space: nowrap;
}
.responsiveModal-wrap:after {
  content: '';
  display: inline-block;
  width: 0px;
  height: 100%;
  vertical-align: middle;
}
.responsiveModal-box {
  display: inline-block;
  width: 100%;
  max-width: 1000px;
  vertical-align: middle;
  position: relative;
}
.responsiveModal-box .inner {
  white-space: normal;
}
.responsiveModal-box .inner > :first-child {
  margin-top: 0;
}
.responsiveModal-box .responsiveModal-close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 50px;
  border: 2px solid #ccc;
  color: #aaa;
  font-weight: bold;
  text-align: center;
  padding-right: 3px;
  margin: auto;
  position: relative;
  cursor: pointer;
}
.responsiveModal-box .responsiveModal-close:hover {
  opacity: .8;
}
.responsiveModal-box .responsiveModal-close:before,
.responsiveModal-box .responsiveModal-close:after {
  content: "";
  display: block;
  width: 10px;
  height: 1.5px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  right: 13px;
  background: #ccc;
}
.responsiveModal-box .responsiveModal-close:before {
  transform: rotate(45deg);
}
.responsiveModal-box .responsiveModal-close:after {
  transform: rotate(-45deg);
}
.responsiveModal-box .responsiveModal-closeIcon {
  width: 30px;
  height: 30px;
  background: #ccc;
  font-size: 0;
  position: fixed;
  top: 30px;
  cursor: pointer;
}
.responsiveModal-box .responsiveModal-closeIcon::before,
.responsiveModal-box .responsiveModal-closeIcon::after {
  content: "";
  display: block;
  width: 10px;
  height: 1.5px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  right: 10px;
  background: #fff;
}
.responsiveModal-box .responsiveModal-closeIcon::before {
  transform: rotate(-45deg);
}
.responsiveModal-box .responsiveModal-closeIcon::after {
  transform: rotate(45deg);
}
.responsiveModal-box .responsiveModal-closeIcon:hover {
  opacity: .8;
}
@media screen and (min-width: 1001px) {
  .responsiveModal-box .responsiveModal-closeIcon {
    right: calc(51% - 500px);
  }
}
@media screen and (min-width: 1920px) {
  .responsiveModal-box .responsiveModal-closeIcon {
    right: calc(50.7% - 500px);
  }
}
@media screen and (max-width: 1000px) {
  .responsiveModal-box .responsiveModal-closeIcon {
    right: 30px;
  }
}
@media screen and (max-width: 750px) {
  .responsiveModal-box .inner {
    padding: 30px 15px;
  }
  .responsiveModal-box .responsiveModal-close {
    height: 40px;
  }
  .responsiveModal-box .responsiveModal-closeIcon {
    top: 10px;
    right: 10px;
  }
}
#responsiveModal #mordal h1.contact_ind_title {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 1.25rem;
}
#responsiveModal #mordal ol {
  padding-left: 25px;
}
#responsiveModal #mordal ol li {
  list-style-type: decimal;
  margin-bottom: 15px;
}
#responsiveModal #mordal ol li > ul {
  margin-top: 15px;
}
#responsiveModal #mordal ul {
  padding-left: 15px;
}
#responsiveModal #mordal ul li {
  list-style-type: disc;
}
#responsiveModal #mordal .ul_indent > li {
	text-indent: -1em;
	padding-left: 1em;
	list-style: none;
	padding-left: 0;
	margin-top: 10px;
}
#responsiveModal #mordal .dl_indent dt {
	text-indent: -1em;
	padding-left: 1em;
	margin-top: 10px;
}
#responsiveModal #mordal .dl_indent dd {
	margin-left: 1em;
	margin-bottom: 10px;
}
#responsiveModal #mordal li.non {
    list-style: none;
}
#responsiveModal #mordal .ttl_rireki {
	margin-top: 10px;
	margin-bottom: 0;
}
#responsiveModal #mordal span {
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  #responsiveModal #mordal h1.contact_ind_title::after {
    content: "";
    display: block;
    width: 100%;
    border: 1px solid #4790e5;
    border-radius: 2px;
    margin-top: 6px;
  }
  #responsiveModal #mordal h1.contact_ind_title,
  #responsiveModal #mordal h2 {
    font-size: 15px;
  }
}
@media screen and (min-width: 751px) {
  #responsiveModal #mordal h1.contact_ind_title {
    border-left: #4691E6 4px solid;
    padding-left: 10px;
  }
}
/* telArea
-------------------------------------------------- */
.telArea {
  max-width: 800px;
}
.telArea >p {
  text-indent: -1em;
  padding-left: 1em;
}
/* CLODR_RPL-251 2026.01.05 ここから修正 */
.telArea_replace {
  padding: 0;
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
@media screen and (max-width: 750px) {
  .telArea >p {
    margin: 0 25px 15px;
  }
}
@media screen and (min-width: 751px) {
/* CLODR_RPL-251 2026.01.05 ここから修正 */
  #contact_input_2column .telArea {
    margin-top: 60px;
    box-sizing: border-box;
  }
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
  .telArea >p {
    margin-bottom: 15px;
  }
}
/* floatArea
-------------------------------------------------- */
.floatArea {
    display: none;
    position: fixed;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: auto;
    padding: 15px 0;
}
.floatAreaIn {
    display: block;
}
.floatAreaIn li:first-child {
    text-align: center;
}
.floatAreaIn li {
    display: block;
    margin: 0 auto;
}
a.floatLink {
    display: block;
}
.floatLink img {
    max-width: 580px;
}
.floatArea.v02 {
    background-color: rgba(191, 211, 231, 0.8);
    padding: 10px 25px;
}
.floatArea.v02 p {
  color: #000;
  margin-bottom: .5em;
}
.floatArea.v02 a {
  max-width: 450px;
  background: #25b5ff;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  padding: 15px 0 15px 10px;
  margin: auto;
  position: relative;
}
.floatArea.v02 a:hover {
  background: #fff;
  border: 2px solid #25b5ff;
  color: #25b5ff;
  text-decoration: none;
  opacity: 1;
}
.floatArea.v02 a::before {
  content: "";
  width: 50px;
  height: 50px;
  background: url(/contact_n/image/balloon.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -25px;
  left: 10px;
}
.floatArea.v02 a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-width: 1.5px 1.5px 0px 0px;
  border-style: solid;
  border-color: #fff;
  margin-top: -7px;
  position: absolute;
  right: 6%;
  top: 53%;
  transform: rotate(45deg);
}
.floatArea.v02 a:hover::after {
  border-color: #25b5ff;
}
@media screen and (max-width: 750px) {
  .floatArea.v02 p {
    font-size: 12px;
  }
  .floatArea.v02 a {
    font-size: 15px;
    padding: 7px 0 7px 7px;
  }
  .floatArea.v02 a::before {
    width: 40px;
    height: 40px;
    left: 0;
  }
  .floatArea.v02 a::after {
    width: 6px;
    height: 6px;
    top: 57%;
  }
}
/* lpArea
-------------------------------------------------- */
/* CLODR_RPL-251 2026.01.05 ここから修正 */
body:not(#contact_input_2column) .lpArea picture {
  max-width: 1000px;
}
.lpArea picture {
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
/* accordion */
.accordion {
	border: 1px solid #aaa;
}
.accordion .hidden {
  display: none;
}
.accordion .open {
  display: flex;
	align-items: center;
	height: 100px;
	background: url(/contact_n/image/ico_phone.png) no-repeat;
  background-size: 60px;
  background-position: center left 30px;
	border-top: 1px solid #eee;
	font-size: 18px;
	padding: 0 30px 0 110px;
  position: relative;
  cursor: pointer;
}
.accordion .open b {
  display: block;
  font-size: 14px;
}
.accordion .close {
  display: block;
  height: 0;
	padding: 0 80px;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}
/* CLODR_RPL-251 2026.01.05 ここから修正 */
@media only screen and (min-width: 751px) {
  .telArea_replace .accordion .open {
    background-size: 50px;
    background-position: center left 20px;
	  font-size: 16px;
    padding: 0 30px 0 90px;
  }
  .telArea_replace .accordion .open b,
  .telArea_replace .accordion .open span {
    font-size: 12px;
  }
  .telArea_replace .accordion .open span {
    display: block;
    margin-left: -.5em;
  }
  .telArea_replace .accordion .close {
    justify-content: center;
  }
  .telArea_replace .accordion .close dl {
    margin-bottom: 30px;
  }
  .telArea_replace .accordion .hidden:checked + .open + .close {
    padding: 15px 10px 0 0;
  }
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
/* answer */
.accordion .hidden:checked + .open + .close {
  height: auto;
  padding-top: 30px;
  opacity: 1;
}
.accordion .close a {
  color: #000;
}
.accordion .close a:hover {
  text-decoration: none;
}
.accordion .close dl {
  display: flex;
  justify-content: space-between;
}
.accordion .close dl.sso dt span { color: #4490ed; }
.accordion .close dl.ms dt span { color: #fb4483; }
.accordion .close dl.sse dt span { color: #77449a; }
.accordion .close dl.ts dt span { color: #c76187; }
.accordion .close dl.ssit dt span { color: #008fd0; }
.accordion .close dl dt {
  width: 140px;
}
.accordion .close dl dt {
  font-size: 13px;
}
.accordion .close dl dt span {
  display: block;
}
.accordion .close dl dt span,
.accordion .close dl dd {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
}
.accordion .close dl dd {
  line-height: 1.2;
}
/* + */
.accordion .open::before,
.accordion .open::after {
	display: block;
  content: '';
  width: 16px;
  height: 2px;
  background: #004ea1;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.accordion .open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}
/* - */
.accordion .hidden:checked + .open:after {
  transform: translateY(-50%) rotate(0);
}
@media screen and (max-width: 750px) {
  .accordion {
    border-left: none;
    border-right: none;
  }
  .accordion .open {
    height: 80px;
    background-size: 45px;
    background-position: center left 10px;
    padding: 0 15px 0 70px;
    font-size: 16px;
  }
  .accordion .open b,
  .accordion .open span {
    display: block;
    font-size: 10px;
  }
  /* answer */
  .accordion .hidden:checked + .open + .close {
    padding: 0 20px 25px;
  }
  .accordion .close dl {
    display: flex;
    align-items: center;
    height: 55px;
    text-align: center;
  }
  .accordion .close dl:not(.sso){
    margin-top: 10px;
  }
  .accordion .close dl.sso { border: 1px solid #4490ed; }
  .accordion .close dl.sso dd { background: #ecf4fd; }
  .accordion .close dl.ms { border: 1px solid #fb4483; }
  .accordion .close dl.ms dd { background: #ffecf2; }
  .accordion .close dl.sse { border: 1px solid #77449a; }
  .accordion .close dl.sse dd { background: #f1ecf5; }
  .accordion .close dl.ts { border: 1px solid #c76187; }
  .accordion .close dl.ts dd { background: #f9eff3; }
  .accordion .close dl.ssit { border: 1px solid #008fd0; }
  .accordion .close dl.ssit dd { background: #e5f4fa; }
  .accordion .close dl dt,
  .accordion .close dl dd {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .accordion .close dl dt {
    width: 58%;
    font-size: 10px;
    transform: scale(0.9);
  }
  .accordion .close dl dt span {
    font-size: 15px;
  }
  .accordion .close dl dd {
    width: 42%;
    height: 100%;
    font-size: 16px;
  }
}
@media screen and (min-width: 751px) {
  /* answer */
  .accordion .close {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    pointer-events: none;
  }
  .accordion .close a {
    pointer-events: none;
  }
  .accordion .close dl {
    width: 280px;
    margin-bottom: 50px;
    white-space: nowrap;
  }
  .accordion .close dl dt span {
    margin-bottom: 5px;
    vertical-align: top;
  }
  .accordion .close dl dd {
    margin-top: 3px;
  }
}
@media screen and (max-width: 360px) {
  .accordion .close dl dt {
    width: 61%;
  }
  .accordion .close dl dd {
    width: 39%;
    font-size: 14px;
  }
}


/* --------------------------------------------------
  input
-------------------------------------------------- */
#contactForm.input {
  max-width: 600px;
}
/* CLODR_RPL-251 2026.01.05 ここから修正 */
#content_area.slideWrap #contactForm.input {
  max-width: 610px;
}
body:not(#contact_input_2column) #contactForm.input .nextStepBtn a {
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
  font-size:0;
}
#contactForm.input select:invalid,
#contactForm.input select option:first-child {color: #aaa; }
#contactForm.input select option { color: #333; }
#contactForm.input select option,
#contactForm.input select:invalid.freeSelect,
#contactForm.input input.inputData:valid   { background: #fff; }
#contactForm.input select:invalid,
#contactForm.input input.inputData:invalid { background: #ffe8e8; }
#contactForm.input dl dd {
  position: relative;
}
#contactForm.input dl dd .errorText {
  color: #fd6969;
	background: url(/contact_n/image/ico_error.png) no-repeat;
  background-size: 20px;
  background-position: top 5% left 0;
  font-weight: bold;
  font-size: 14px;
  padding-left: 25px;
  margin-top: 10px;
}
#contactForm.input dl dd .errorText a {
  color: #fd6969;
  text-decoration: underline;
}
input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea {resize: none;}
input::-webkit-input-placeholder {  color: #aaa;}
input::-moz-placeholder {  color: #aaa; opacity: 1;}
input:-ms-input-placeholder {  color: #aaa;}
textarea::-webkit-input-placeholder {  color: #aaa; vertical-align: top;}
textarea::-moz-placeholder {  color: #aaa; opacity: 1; vertical-align: top;}
textarea:-ms-input-placeholder {  color: #aaa; vertical-align: top; display: table-cell; vertical-align: middle;}
input:not([type="radio"]) {
	height: 60px;
	line-height: 60px;
	padding: 0 20px;
  ime-mode: active;
}
textarea {
  height: 280px;
  padding: 20px;
}
select {
  height: 60px;
  text-indent: 0.01px;
  text-overflow: '';
  vertical-align: middle;
	padding: 0 20px;
  outline:none;
  -moz-appearance: none;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
input:not([type="radio"]),
textarea,
select {
  width: 100%;
  background: #fff;
	border: 1px solid #aaa;
	border-radius: 5px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 20px;
  line-height: 1.5;
	margin: 0;
}
/* CLODR_RPL-251 2026.01.05 ここから修正 */
#contact_input_2column input:not([type="radio"]) {
	height: 50px;
	line-height: 50px;
}
#contact_input_2column select {
  height: 50px;
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
.selectData {
  position: relative;
}
.selectData:before {
  content: "";
  width: 8px;
  height: 8px;
  border-width: 1.5px 1.5px 0px 0px;
  border-style: solid;
  border-color: #004ea1;
  margin-top: -7px;
  position: absolute;
  right: 4%;
  top: 50%;
  transform: rotate(135deg);
}
.selectData + input:not([type="radio"]) {
  margin-top: 10px;
}

#contactForm dl .selectPlan01 {
  display: none;
}
@media screen and (max-width: 750px) {
  #contactForm.input dl dd .errorText {
    background-size: 15px;
    font-size: 11px;
    padding-left: 15px;
  }
  textarea {
    height: 200px;
    padding: 15px;
  }
/* CLODR_RPL-251 2026.01.05 ここから修正 */
  #contact_input_2column textarea {
    height: 295px;
    }
/* CLODR_RPL-251 2026.01.05 ここまで修正 */      
  input:not([type="radio"]),
  select {
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
  }
  input:not([type="radio"]),
  textarea,
  select {
    font-size: 16px;
  }
  .selectData:before {
    right: 5%;
  }
}
/* CLODR_RPL-251 2026.01.05 ここから修正 */
@media screen and (min-width: 751px) {
  #contact_input_2column textarea {
    height: 430px;
  }
}
@media screen and (max-width: 1366px) {
  input:not([type="radio"]),
  textarea,
  select {
    font-size: 18px;
  }
}
@media screen and (min-width: 1367px) {
  #contact_input_2column textarea {
    height: 275px;
  }
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */      
#contactForm.input dl dd .addr_sub {
  background: #f9f9f9;
	border-radius: 5px;
  padding: 25px 20px;
  margin-top: 20px;
}
/* CLODR_RPL-251 2026.01.05 ここから修正 */
#contact_input_2column #contactForm.input dl dd .addr_sub {
  margin-top: 10px;
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
#contactForm.input dl dd .addr_radio,
#contactForm.input dl dd .addr_radio li + li {
  margin-top: 10px;
}
label {
  position: relative;
}
label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
label input[type="radio"] + span {
  display: flex;
  align-items: center;
}
label input[type="radio"] + span::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px #aaa solid;
  border-radius: 50%;
  box-sizing: border-box;
  margin-right: 20px;
}
label input[type="radio"]:checked + span::before {
  background: #0099ff;
  border: solid 3px #fff;
  box-shadow:0px 0px 1px 0px #000;
}
@media screen and (max-width: 750px) {
  #contactForm.input dl dd .addr_sub {
    padding: 15px 15px 20px;
    margin-top: 10px;
  }
  label input[type="radio"] + span::before {
    width: 15px;
    height: 15px;
    margin-right: 10px;
  }
}
/* CLODR_RPL-251 2026.01.05 ここから修正 */
@media screen and (max-width: 1366px) {
  #contactForm.input dl dd .addr_sub .fs_small {
    font-size: 13px;
  }
  label input[type="radio"] + span {
    font-size: 15px;
  }
  label input[type="radio"] + span::before {
    margin-right: 10px;
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
  }
}
#contactForm.input dl .addr2_checked {
  display: none;
}

/* Tooltip */

.tippy-box[data-theme~='SScustom'] {
  background: #FE3F8A;
  color: #fff;
}
.tippy-box[data-theme~='SScustom'] .tippy-content {
  font-size: 14px;
  padding: 15px 20px;
}
.tippy-box[data-theme~='SScustom'] .tippy-content ul{
  margin-top: 0.5rem;
}
.tippy-box[data-theme~='SScustom'] .tippy-content ul li {
  text-indent: -1rem;
  padding-left: 1rem;
}
.tippy-box[data-theme~='SScustom'] .tippy-arrow { color: #FE3F8A; }
@media screen and (max-width: 750px) {
  #tippy-1[data-tippy-root]{
    max-width:calc(100vw - 30px);
    padding-right: 10px;
  }
  .tippy-box[data-theme~='SScustom'] .tippy-content {
    font-size: 11px;
    padding: 15px;
  }
  .tippy-box[data-theme~='SScustom'] .tippy-content a {
    display: block;
    text-decoration: underline;
    text-align: center;
    margin-top: 0.5rem;
/* CLODR_RPL-251 2026.01.05 ここから修正 */
  }
}
/* スライド枠 */
.form-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}
/* 横並び */
.form-slide-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.25s ease;
  will-change: transform;
}
/* 各スライド */
.form-slide-item {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  padding: 0 5px;
}
/* SPは縦並び */
@media (max-width: 750px) {
  .form-slide-track {
    display: block;
    transform: none !important;
  }
  .form-slide {
    height: auto;
  }
}
@media only screen and (max-width: 750px) {
  .stepper,
  .form-slide-nav {
    display: none;
  }
}
@media only screen and (min-width: 751px) {
  .stepper {
    max-width: 310px;
    margin: 30px auto auto;
  }
  .form-slide-nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    row-gap: 12px;
    align-items: center;
    margin-top: 30px;
  }
  .form-slide-nav button {
    font-size: 20px;
    cursor: pointer;
  }
  .form-slide-nav .form-next {
    grid-column: 1 / -1; /* 全カラムを占有 */
    grid-row: 1;
    justify-self: center;
    width: calc(100% * 350 / 680);
    height: 60px;
    background: #ff7c13;
    border: none;
    border-radius: 0;
    color: #fff;
  }
  .form-slide-nav .form-next:hover {
    opacity: 0.8;
  }
  .form-slide-nav .form-next.disabled {
    background: #ccc;
    pointer-events: none;
  }
  .form-slide-nav .form-prev {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    background: none;
    border: none;
    padding-left: 8%;
    position: relative;
  }
  .form-slide-nav .form-prev:hover {
    text-decoration: underline;
  }
  .form-slide-nav .form-prev::before {
    content: "";
    width: 8px;
    height: 8px;
    border-width: 1.5px 1.5px 0px 0px;
    border-style: solid;
    border-color: #004ea1;
    margin-top: -5px;
    position: absolute;
    left: 3%;
    top: 50%;
    transform: rotate(-135deg);
  }
}
/* CLODR_RPL-251 2026.01.05 ここまで修正 */


/* --------------------------------------------------
  confirm
-------------------------------------------------- */
#contactForm.confirm {
  max-width: 800px;
}
#contactForm.confirm dl dd.note {
  word-break: break-all;
}
#contactForm.confirm dl dd .addr_sub .fs_small {
  margin-top: 25px;
}
@media screen and (max-width: 750px) {
  #contactForm.confirm dl dd .addr_sub .fs_small {
    margin-top: 20px;
  }
}
@media screen and (min-width: 751px) {
  #contactForm.confirm dl {
    display: flex;
    flex-wrap: wrap;
    align-items:flex-start;
    width: 100%;
    margin-top: 20px;
  }
  #contactForm.confirm dl dt {
    width: 37.5%;
    margin-top: 60px;
  }
  #contactForm.confirm dl dd {
    width: 62.5%;
    margin-top: 60px;
  }
}


/* --------------------------------------------------
  thanks
-------------------------------------------------- */
.formArea.thanks{
  padding-bottom: 100px;
}
.formArea.thanks .formArea_flow {
  justify-content: center;
}
.formArea.thanks .textArea {
  max-width: 700px;
  margin: 50px auto 50px;
}
.formArea.thanks .textArea :first-child {
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .formArea.thanks .textArea {
    margin: 5px auto 30px;
  }
  .formArea.thanks .textArea :first-child {
    margin-bottom: 25px;
  }
    .formArea.thanks {
      padding-bottom: 50px;
    }
}
@media screen and (max-width: 750px) {
  .formArea.thanks .textArea :first-child {
    font-size: 16px;
  }
}
@media screen and (min-width: 931px) {
  .formArea.thanks .formArea_flow ul {
    margin-top: 50px;
  }
}
/* clientFlow
-------------------------------------------------- */
.clientFlow {
  max-width: 100%;
}
.clientFlow .block01 {
  background: #f5f7f9;
  padding: 50px 0 80px;
  margin-top: 100px;
}
.clientFlow .block01 .title {
  font-size: 40px;
  margin: 50px 0;
}
.clientFlow .block01 .title span {
  font-size: 48px;
}
.clientFlow .block01 .title,
.clientFlow .block01 .title_sub {
  font-weight: bold;
  line-height: 1.2;
}
.clientFlow .block01 .title_sub {
  background: #004ea1;
  color: #fff;
  font-size: 24px;
  padding: 15px;
}
.clientFlow .block01 .title_sub span {
  font-size: 32px;
}
.clientFlow .block01 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.clientFlow .block01 ul li {
 width: 320px;
 background: #fff;
 border-top: 5px solid #004ea1;
 border-radius: 5px;
 padding: 40px 0;
}
.clientFlow .block01 ul li .adbantage_ttl {
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0;
}
.clientFlow .block01 ul li picture {
  display: block;
  margin: 40px auto;
}
.clientFlow .block01 ul li p {
  text-align: left;
  padding: 0 20px;
}
.clientFlow .block01 .inner,
.clientFlow .block02 {
  max-width: 1000px;
  text-align: center;
  margin: auto;
}
.clientFlow .block02 {
  padding-top: 80px;
}
.clientFlow .block02 :nth-child(1) {
  font-size: 24px;
  margin-bottom: 50px;
}
.clientFlow .block02 :nth-child(2) {
  display: inline;
  background: linear-gradient(transparent 70%, #ffdd1f 0%);
  font-weight: bold;
  font-size: 32px;
}
.clientFlow .block02 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 80px;
  border: 2px solid #004ea1;
  color: #004ea1;
  font-weight: bold;
  font-size: 24px;
  line-height: 0;
  margin: 80px auto 0;
  position: relative;
}
.clientFlow .block02 a:hover {
  text-decoration: none;
}
.clientFlow .block02 a::after {
  content: "";
  width: 13px;
  height: 13px;
  border-width: 2px 2px 0px 0px;
  border-style: solid;
  border-color: #004ea1;
  position: absolute;
  top: 40%;
  right: 20px;
  transform: rotate(45deg);
}
@media screen and (max-width: 960px) {
  .clientFlow .block01 {
    padding: 0 0 40px;
    margin-top: 40px;
  }
  .clientFlow .block01 .title {
    font-size: 20px;
    margin: 25px 0;
  }
  .clientFlow .block01 .title span {
    font-size: 28px;
  }
  .clientFlow .block01 .title_sub {
    font-size: 13px;
    padding: 10px;
  }
  .clientFlow .block01 .title_sub span {
    font-size: 16px;
  }
  .clientFlow .block01 ul li {
    width: 100%;
    border-top: 4px solid #004ea1;
    padding: 25px 0;
    margin: auto 25px;
  }
  .clientFlow .block01 ul li + li {
    margin-top: 15px;
  }
  .clientFlow .block01 ul li .adbantage_ttl {
    font-size: 16px;
  }
  .clientFlow .block01 ul li picture {
    margin: 25px auto;
  }
  .clientFlow .block01 ul li p {
    padding: 0 15px;
  }
  .clientFlow .block02 {
    padding-top: 40px;
  }
  .clientFlow .block02 :nth-child(1) {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .clientFlow .block02 :nth-child(2) {
    font-size: 20px;
  }
  .clientFlow .block02 a {
    width: 70%;
    height: 65px;
    font-size: 16px;
    margin-top: 40px;
  }
  .clientFlow .block02 a::after {
    width: 10px;
    height: 10px;
    right: 15px;
  }
}
@media screen and (min-width: 961px) {
  .clientFlow .block02 a {
    padding-right: 5px;
  }
}
.formArea_flow.only_text {
  max-width: 600px;
  padding-left: 0;
}
#contactForm.confirm dl{
  background: #f5f7f9;
  padding: 1em 2em 2em;
  margin-top: 0;
}
#contactForm.confirm dl dt {
  width: 37.5%;
  margin-top: 1em;
}
#contactForm.confirm dl dd {
  margin-top: 1em;
}

@media screen and (max-width: 960px) {
#contactForm.confirm dl {
    background: #f5f7f9;
    padding: 1em;
    margin-top: 0;
    margin-bottom: 0;
}
#contactForm.confirm dl dt {
  width: 100%;
  margin-top: 1em;
}
#contactForm.confirm dl dt:first-child {
  margin-top: 0;
}
}

.to_pagetop {
/* CLODR_RPL-251 2026.01.05 ここから修正 */
    font-size: 77%;
    text-align: right;
    margin: 15px 0;
    position: fixed;
}
body:not(#contact_input_2column) .to_pagetop {
  bottom: 20px;
  right: 20px;
  z-index: 2;

}
#contact_input_2column .to_pagetop {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 1000;
}
#contact_input_2column .to_pagetop.is-visible {
    opacity: 1;
    pointer-events: auto;
 }
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
.to_pagetop a {
    background-color: #cccccc;
    background-image: url("/contact_n/image/icon_pagetop.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border-radius: 5px;
    display: block;
    height: 50px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    width: 50px;
}
@media screen and (max-width: 750px) {
/* CLODR_RPL-251 2026.01.05 ここから修正 */
  body:not(#contact_input_2column) .to_pagetop {
    bottom: 80px;
    }
  .to_pagetop {
/* CLODR_RPL-251 2026.01.05 ここまで修正 */
    right: 10px;
    }
  .to_pagetop a {
    background-size: 60%!important;
    width: 40px;
    height: 40px;
  }
}