@charset "UTF-8";

/* ------------------------------------------------------------------
<< 追加 >>
--------------------------------------------------------------------- */
.inner h1 span {
	text-align:center;
	display:block;
}

/* 入力必須エラー
------------------------------------------------------------------ */
.form span.error_txt  {
	color: #D40000;
	font-weight: 700;
}

/* コメント欄 改行対策
------------------------------------------------------------------ */
.form_box table.form_tbl td.linefeed {
    white-space: pre-line;
}
/* 完了画面
------------------------------------------------------------------ */
.send_complete p {
	margin-top:15.0rem;
	font-size:3.0rem;
	text-align:center;
}
/* 入力エリア
------------------------------------------------------------------ */
.inputarea1 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 190px;
}
.inputarea2 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 85px;
}
.inputarea3 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 120px;
}
.inputarea4 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 350px;
}
.inputarea5 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 210px;
}
.inputarea6 {
    padding: 6px;
    font-size: 1.2em;
    color: #444444;
    width: 80%;
    height: 100px;
}
.inputarea7 {
    padding: 6px;
    font-size: 1.2em;
    color: #444444;
    width: 350px;
    height: 80px;
}
.inputarea8 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 40px;
}
.inputarea9 {
    padding: 6px;
    font-size: 1.2em;
    color: #444444;
    width: 450px;
    height: 80px;
}
.inputarea10 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 130px;
}
.inputarea11 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 180px;
}
.inputarea12 {
    padding: 6px;
    font-size: 1.2em;
    color: #444444;
    width: 510px;
    height: 80px;
}
.inputarea13 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 270px;
}
.inputarea14 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 39px;
}
.inputarea15 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 48px;
    border: solid 1px #707070;
}
.inputarea16 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 75px;
}
.inputarea17 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 40px;
}
.inputarea18 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 60px;
}
.inputarea19 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 40px;
}
.inputarea20 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 15%;
}
.inputarea22 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 50px;
}
.inputarea23 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 60px;
}
@media screen and (max-width: 767px) {
    .inputarea20 {
        width: 25%;
    }
}
.inputarea21 {
    padding: 6px;
    font-size: 1.2em;
    color: #444444;
    width: 80%;
    height: 150px;
}
.inputarea22 {
    padding: 2px;
    font-size: 1.2em;
    color: #444444;
    width: 300px;
}

/* ラジオボタンと選択肢文字の上下、左右のバランス
------------------------------------------------------------------ */
td.radio {
/*	display: flex;	*/
/*	align-items: center;	*/
	gap: 0.5em; /* ラジオとテキストの間隔を調整 */
}

/* PC表示なし
------------------------------------------------------------------ */
@media screen and (min-width: 768px) {
    .pc_none {
        display: none !important;
    }
}
/* スマホ表示なし
------------------------------------------------------------------ */
@media screen and (max-width: 767px) {
    .sp_none {
        display: none !important;
    }
}
/* 団体総合「相談・お問い合わせフォーム」送付先分岐
------------------------------------------------------------------ */
.flex_dl dd {
    position: relative; /* ddを基準にする */
}

.input-msg {
    position: absolute;
    background-color: #f5f5f5;
    color: #d35400;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 9999;
    white-space: nowrap;

    /* 位置調整 */
    top: 50%;
    transform: translateY(-50%);
    /* 住所検索ボタンの右端に重ねる */
/*    left: calc(100% - 20px);  ボタンの幅に応じて調整 */
}

/* スマホでは下に表示 */
@media (max-width: 768px) {
    .input-msg {
        position: static;
        display: block;
        margin-top: 4px;
        margin-left: 0;
    }
}

/* 戻るボタン */
.form .submit_back {
  position: relative;
  width: 60%;
  max-width: 160px;
  margin: 40px auto 0;
  text-align: center;
}

.form .submit_back::after {
  content: "\e815";
  font-family: "fontello", serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 20px;
	transform: translateY(-50%) scaleX(-1); /* ← 左右反転を追加 */
  font-size: 220%;
  color: #fff;
}

.form .submit_btn_back {
  display: block;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 50px;
  background-color: #A2A2A2;
  color: #fff;
  box-shadow: 0 5px 0 0 #C3C3C3;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.form .submit_btn_back:hover {
  background-color: #808080;
}
.form .submit_btn_back:focus {
  outline: 0;
  background-color: #808080;
}

/* ペット保険資料請求 */
.headcount {
    margin: 5px 0 10px 0;
}
.headcount_inner {
    position: relative;
}

.headcount_inner dl dd.headcount_list_under7 {
    margin: -35px 0px 10px 70px;
    padding: 4px 0px 3px 0;
}
.headcount_inner dl dd.headcount_list_more8 {
    margin: -35px 0px 0px 70px;
    padding: 4px 0 3px 0;
}

.headcount_inner dl dd.headcount_text {
    position: absolute;
    top: 0;
    left: 150px;
}

.headcount_inner dl dd.headcount_text_conf {
    position: absolute;
    top: 0;
    left: 80px;
}

@media screen and (max-width: 767px) {
    .headcount .sendinfo p {
    	position: absolute;
    	top: 35px;
    	left: 0px;
    }
}
@media screen and (min-width: 768px) {
		.headcount .sendinfo p {
		    position: absolute;
		    top: -25px;
		    left: 240px;
	}
}
@media screen and (max-width: 767px) {
    .headcount .sendinfo p {
    	position: absolute;
    	top: 35px;
    	left: 0px;
    }
}
/* 電話の下ボーダーを消す + うち余白調整 */
table.tel_write tr td:nth-child(2) {
	border-bottom:none;
}
/* 電話番号うち余白調整 */
table.tel_write th,
table.tel_write td {
  padding: 0 5px !important;
}

/* synergy!タイトル背景画像 PC
-------------------------------*/
/* 資料請求 */
.service .title_box.style_01 {
  background: #A3D8D4 url(/assets/img/syng/bg_icon_01.png) 32px bottom no-repeat;
  color: #35948D;
}
/* 住所変更 */
.service .title_box.style_02 {
  background: #A3D8D4 url(/assets/img/syng/bg_icon_02.png) 32px bottom no-repeat;
  color: #35948D;
}
/* 保険診断 */
.service .title_box.style_03 {
  background: #A3D8D4 url(/assets/img/syng/bg_icon_03.png) 32px bottom no-repeat;
  color: #35948D;
}
/* ご相談・お問い合わせ */
.service .title_box.style_04 {
  background: #A3D8D4 url(/assets/img/syng/bg_icon_04.png) 32px bottom no-repeat;
  color: #35948D;
}
/* 火災保険お見積り */
.service .title_box.style_05 {
  background: #A3D8D4 url(/assets/img/syng/bg_icon_05.png) 32px bottom no-repeat;
  color: #35948D;
}
/* 事故報告 */
.service .title_box.style_06 {
  background: #A3D8D4 url(/assets/img/syng/bg_icon_06.png) 32px bottom no-repeat;
  color: #35948D;
}
/* synergy!タイトル背景画像 SP
-------------------------------*/
@media screen and (max-width: 767px) {
	/* 資料請求 */
	.service .title_box.style_01 {
		background: #A3D8D4 url(/assets/img/syng/bg_icon_01.png) 24px bottom no-repeat;
		background-size: 100px auto;
    }
	/* 住所変更 */
	.service .title_box.style_02 {
		background: #A3D8D4 url(/assets/img/syng/bg_icon_02.png) 24px bottom no-repeat;
		background-size: 100px auto;
    }
	/* 保険診断 */
	.service .title_box.style_03 {
		background: #A3D8D4 url(/assets/img/syng/bg_icon_03.png) 24px bottom no-repeat;
		background-size: 100px auto;
    }
	/* ご相談・お問い合わせ */
	.service .title_box.style_04 {
		background: #A3D8D4 url(/assets/img/syng/bg_icon_04.png) 24px bottom no-repeat;
		background-size: 100px auto;
    }
	/* 火災保険お見積り */
	.service .title_box.style_05 {
		background: #A3D8D4 url(/assets/img/syng/bg_icon_05.png) 24px bottom no-repeat;
		background-size: 100px auto;
    }

}

/* お名前入力フィールド */
input.ph-selfname::placeholder {
  color: #6b7280;          /* gray-500 */
  opacity: 1;              /* Safari の薄すぎ対策 */
  font-size: 0.9em;        /* 例：フォントサイズを少し小さく */
  line-height: 1.4;        /* 高さ調整（必要に応じて） */
}

/* フォーカス時はプレースホルダーを見えなくする（既存の仕様） */
input.ph-selfname:focus::placeholder {
  color: transparent;
}

/* 文字制限 */
.error1, .error2, .error3, .error4 {
    background-color: #FFCCCC;
}

.alert1, .alert2, .alert3, .alert4 {
    color: #FF0000;
}

.hint {
    color: #bbbbbb !important;
}

.tipped {
    color: #bbbbbb !important;
}

.kana_alert {
    color: #ED1C24;
    font-size: 14px;
}

.kana_alert:empty {
    display: none;
}

/* 条件よって必須(グレー) */
.form .required2 {
  display: block;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  width: fit-content;
  height: fit-content;
  margin: auto;
  padding: 2px 5px;
  background-color: #a6a6a6;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
}

/* 火災見積依頼フォーム SP不要な下線を消す */
@media screen and (max-width: 767px) {
    .form .form_tbl td.underline_none  {
        border-bottom: none !important;
    }
}

/*===================================================================================*/
/* ------> webフォント - fontello <<<------------------------------------------------*/
/*===================================================================================*/
@font-face {
  font-family: 'close';
  src: url('./fonts2/close.eot?39201824');
  src: url('./fonts2/close.eot?39201824#iefix') format('embedded-opentype'),
       url('./fonts2/close.woff2?39201824') format('woff2'),
       url('./fonts2/close.woff?39201824') format('woff'),
       url('./fonts2/close.ttf?39201824') format('truetype'),
       url('./fonts2/close.svg?39201824#close') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'close';
    src: url('../font/close.svg?39201824#close') format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "close";
  font-style: normal;
  font-weight: normal;
  speak: never;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-cancel-circled-outline:before { content: '\e901'; } /* '$E901' */
.icon-cancel-circled:before { content: '\e902'; } /* '$E902' */
.icon-cancel:before { content: '\e903'; } /* '$E903' */

/*===================================================================================*/

/* 小窓-この画面を閉じる */
.close_area {
	position: relative;
	top:-40px;
    max-width: var(--contents-width-under);
    margin: auto;
    margin-bottom: 10px;
    box-sizing: content-box;
}
.close_screen {
	margin-left: auto;
	margin-right:15px;
	position: relative;
/*	width: 25%;	*/
	max-width: 180px;
}
@media screen and (max-width: 767px) {
	.close_screen {
		margin-right:12%;
    }
}
.close_screen::after {
  content: "\e903";
  font-family: "close", serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 140%;
  color: #fff;
}
.close_screen_btn {
  display: block;
  width: 100%;
  padding: 10px 10px 10px 0;
  border: none;
  border-radius: 10px;
  background-color: #A2A2A2;
  color: #fff;
  box-shadow: 5px 5px 0 0 #EBEBEB;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.close_screen_btn:hover {
  background-color: #cccccc;
}
.close_screen_btn:focus {
  outline: 0;
  background-color: #EBEBEB;
}

/* リスト */
ul.caution1 {
	padding-left:15px !important;
}
ul.caution1 li {
	margin-left:0;
	padding:1.0rem 0;
	text-indent:-1.6rem !important;
}
/* リスト - スマホ */
@media (max-width: 768px) {
	ul.caution1  {
		padding-left:4vw;
	}
}

/* 事故報告フォーム */
.box_terms {
    width: 80%x;
    margin: 0px 0px 20px 0px;
}
.box_terms .inner {
    border: inset 2px #DDDDDD;
}
.terms_frame {
    padding: 15px;
    height: 230px;
    overflow: auto;
}

.ttl_icon_red {
  position: relative;
  padding-left: 15px;
  font-size: 100%;
  font-weight: bold;
  line-height: 1.2;
}

.ttl_icon_red::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 8px;
  height: 8px;
  background-color: #d00;
  border-radius: 2px;
}
.list_number li {
    margin: 0px 0px 5px 25px;
    padding: 0px;
    list-style: decimal outside;
    line-hight: 150%;
}
textarea.help {
	font-size:1.2em;
}
@media (max-width: 768px) {
	textarea.help {
		font-size:1.0em;
	}
}
.acc_example {
    margin-top: 10px;
    padding: 5px;
    border: solid;
    border-width: 1px;
    border-color: #fe904b;
    color: #545454;
    background-color: #fff9e6;
}
.acc_example ul.acc_example_word {
    margin-left: 15px
}

ul.cation_list4 li {
    padding-left: 8px;
    background: url(../images/list_cation4.gif) no-repeat left top;
}
/* ===================================================================
CSS information

 style info :switchHat.jsのサンプル用の指定
=================================================================== */
.allOpenBtn,
.switchHat {
	display: none;
}

.switchOn {
	display: block;
}

span.switchOn {
	display: inline;
}

.closeBtnHat {
	margin: 30px 0 20px;
}

.allOpenBtn,
.closeBtnHat span,
.switchHat {
	color: #00c;
}

.closeBtnHat span {
	padding: 5px 10px;
	border: 1px solid #ccc;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.allOpenBtn:after,
.switchHat:after {
	content: " ＋";
}

.allOpenBtn:hover,
.closeBtnHat span:hover,
.switchHat:hover {
	color: #090;
}

.nowOpen {
	color: #f0f;
}

.nowOpen:after {
	content: " －";
}

.faq dt.nowOpen:after {
	content: "";
}

.faq {
	margin-top: 20px;
}

.faq dt {
	/zoom: 1;
	margin-top: 20px;
	margin-bottom: 1px;
	padding: 5px 15px;
	background: #eee;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.faq dt.switchOn {
	margin-top: 0;
}

.faq dt.nowOpen,
.faq dt.switchOn:hover {
	background: #eef;
}
.faq dd {
	padding: 10px 20px;
}
/* =================================================================== */

/* フォームの入力フィールドの文字の大きさを調整 */
.form {
  font-size: 16px;
}
.form input[type="text"], .form textarea {
  font: inherit;            /* UA差を打ち消す */
  box-sizing: border-box;   /* レイアウトを安定させる */
  border: 1px solid #BFBFBF;
  border-radius: 4px;
}
/* synergy!フォーム右固定バナー非表示 */
#floating_bnr {
	display: none;
}


