/*共通*/

#container {
	font-family: var(--gothic);
}

#main-content {
	font-size: 16px;
}

.t-link {
	text-decoration: underline;
}

.t-link:hover {
	text-decoration-color: transparent;
}

.footer-company-name .num {
    font-size: 12px;
	border: 1px solid #ccc;
	padding:2px 7px;
	margin-left: 10px;
	display: inline-block;
}

/* @group accordion */

.accordion {}

.accordion dl {
	margin-bottom: 30px;
}

.accordion dt {
  align-items: center;
  display: flex;
  text-decoration: none;
  font-size: 15px;
  font-weight: var(--fw-mid);
  padding: 0;
  padding-right: 0px;
  height: 100%;
  width: 100%;
  letter-spacing: 0;
  position: relative;
  margin-bottom: 1px;
  transition: all .4s;
}

.accordion dt::before {
  background-color: var(--main);
  content: "";
  height: 1px;
  width: 48px;
  position: absolute;
  bottom: -1px;
  left: 0;
  transition: .4s;
  top: auto;
}

.accordion dt::after {
  background-color: var(--gray1);
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  transition: .4s;
  z-index: -1;
}

.accordion dt .ai {
  position: absolute;
  top: 20px;
  right: 15px;
  height: 22px;
  width: 22px;
}

.accordion dt .ai::after {
  transform: rotate(-90deg);
  background-image: url("/common/images/icon_arrow.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  bottom: 10px;
  right: 0px;
  transition: all .4s;
}

.accordion dt:not(.open) .ai::after {
  transform: rotate(90deg);
}

.accordion dt span {
	padding: 7px 10px;
}

.accordion dt:hover {
	cursor: pointer;
	background: var(--gray2);
}

.accordion dd {
  display: none;
  line-height: 1.64;
  margin-top: 25px;
  padding: 0 20px 10px;
}

.accordion dd p {
	margin-bottom: 10px !important;
}

.accordion dd:last-child {
  border-bottom: 1px solid var(--gray3);
}

.accordion dd > *:last-child {
  margin-bottom: 0;
}

.accordion .box {
	background: var(--gray2);
	padding: 15px;
	margin: 10px 0;
}


/* @end of accordion */

/* @group form */

.form-step {
	margin: 0 0 50pxx 0;
	padding: 0;
}

.form-area .row {
	margin: 0;
}

.form-area .row ul {
	margin: 0;
	padding: 0;
}

.kakunin label[for="privacy"] {
  margin-top: 0px;
}

.form-student h2.heading-h2 {
	font-size: 25px !important;
	margin-bottom: 1em !important;
}

.form-student ol {
	padding-left: 0;
}

label[for="privacy"] {
	margin-top: 0;
}

.form-number {
	display: flex;
	margin-bottom: 7px;
	flex-wrap: wrap;
}

.form-number .error-msg {
	width: 100%;
}

input#number {
	margin-right: 15px;
}

.form-area .caution {
	margin-left: 1em !important;
}

.form-area ul.caution li {
	margin-bottom: 7px;
}

.form-area .cell2 .cell {
	width: 100%;
}

.address-head {
	display: block;
	margin-bottom: 7px;
	margin-top: 15px;
}

* + .address-head {
	margin-top: 15px;
}


#main-content .form-area div.error-msg ~ select,
#main-content .form-area div.error-msg ~ .wrap select {
	border: 2px solid var(--red);
}

.form-area label {
	font-weight: var(--fw-mid);
}

/* @end */

@media screen and (min-width: 768px) {
.container {
    max-width: none !important; /* 領域幅の制限無し */
    width: 970px;               /* 固定幅の設定 */
}
.wrapper {
    width: 1000px;
    margin: 30px auto;
}

.center-block {
    padding:0;
}

#main-content {
	margin: 60px auto 120px;
}

#h1-area {
	margin: 100px auto 0;
}


/*.row-eq-height {*/
    /*display: flex;*/
    /*flex-wrap: wrap;*/
/*}*/


/*ナビバー調整*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
    z-index: 1000;
    border-bottom: solid 1px #ccc;
}

.nav-wrapper {
    width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.nav-col {
    padding-right: 0;
    margin-right: 0;
}

.logo {
    text-indent:100%;
    white-space:nowrap;
    overflow:hidden;
    width: 400px;
    height: 100px;
    margin: 0;
    padding: 0;
}

.logo > img {
    height: 50px;
    width: 336px;
}

.navbar-collapse {
    padding: 0;
}

.blue-arrow {
    font-weight: bold;
    margin-left: 1em;
    color: #0085B2;
}

.navbar-default{
    margin-bottom: 20px;
    margin-top: 20px;
    border-color: #ffffff;
    background-color: #ffffff;
}

.navbar-default a{
    height: 50px;
}

.navbar-nav {
    float: right;
}

.navbar-nav .contact {
	margin-left: 13px;
}

.navbar-nav .contact a {
    background: #0085B2;
	color: #fff !important;
	font-weight: bold;
	padding: 14px 35px 10px 25px;
	position: relative;
	text-align: center;
	border: 1px solid #0085B2;
}

.navbar-nav .contact a::before {
    position: absolute;
	content: ">";
	color: #fff;
	width: 15px;
	height: 15px;
	font-size: 14px;
	top: 12px;
	right:12px;
	font-weight: normal;
}

.navbar-nav .contact a:hover {
	color: #0085B2 !important;
}

.navbar-nav .contact a:hover::before {
	color: #0085B2;
}

.navbar-nav .contact .blue-arrow {
	display: none;
}

/*セクションタイトル*/

section, .section {
	margin-bottom: 0;
}

.section-title{
    padding-left: 1em;
    font-size: large;
    color: #fff;
    height: 2.5em;
    background-color: #0085B2;
    display: flex;
    align-items: center;
}

.section-arrow {
    display: flex;
    margin: 0 auto;
    padding-left: 24px;
}
.section-arrow img{
    width: 7px;
    height: 6px;
}

h3 {
    background: #0085B2;
    color: #FFF;
}

h4.description{
    color: #064E92;
	line-height: 1.3;
}

/*メイン画像*/
.main-img {
    display: block;
    margin: 0 auto;
    padding: 0;
    padding-top: 100px;
}
.main-img img {
    width: 100%;
    line-height: 0;
}

/*取扱保険 セクション*/
.plan {
    margin-bottom: 1.2em;
}

.plan-icon {
    padding-left: 1em;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
}

.plan-type {
    font-size: 21px;
	padding-left: 5px;
	line-height: 1;
}

.plan-list span{
    display: block;
	font-size: 15px;
	margin-bottom: 2px;
}

.company {
    padding: 5px;
    border: 4px solid #ddd;
}

.company ul {
    list-style: none;
    padding-left: 14px;
}

table, th, td {
    border-style:none!important;
}

/*会社情報　セクション*/
/*google map*/
.google-map iframe,
.google-map object,
.google-map embed {
    top: 0;
    left: 0;
    width: 970px;
    height: 400px;
}

a.google-map-link{
    text-decoration: underline;
}

.access {
    padding-top: 20px;
}

.table-striped tbody tr:nth-child(odd) td {
  background-color: #EEEEEE;
}

/*お問合せ*/
/*mail tellボタン*/
.tell-mail-button{
    width: 500px;
	margin: 30px auto 0px;
	text-align: center;
}

.tell-mail-button img {
    width: 450px;
    /*height: 110%;*/
}

.tell-mail-button a {
    display: inline-block;
    margin: 0.5em 0;
	width: 300px;
	padding: 15px 38px;
	background: #fff;
	border-radius: 30px;
	margin-top: 15px;
}

.tell-mail-button p {
    font-size: large;
    margin-bottom: 0;
	color: #fff;
}

.tell-main-text {
    color: #ff0000;
    font-weight: bold;
    font-size: large;
    margin-bottom: 0.5em!important;
}

.mail-main-text {
    font-weight: bold;
    font-size: large;
    margin-bottom: 0.5em!important;
}

/*フッター部*/
.bottom-footer{
    background-color: #333;
    color: #fff;
    height: 140px;
    padding: 20px 0;
}

.bottom-footer .wrapper {
    margin: 0 auto;
}

.footer-company-name {
    font-size: medium;
}

.footer-company-address {
    font-size: small;
}

.footer-address {
    background-color: #333;
}
.footer-copyright{
    text-align: center;
    font-size: smaller;
}

.footer-info-area {
	display: flex;
	justify-content: space-between;
}

.footer-info-area .footer-link a {
	color: #fff;
}

.footer-info-area .footer-link a:hover {
	text-decoration: none;
	color: #ccc;
}

.footer-info-area .footer-link ul {
	display: flex;
	margin-top: 5px;
}

.footer-info-area .footer-link ul li {
	display: flex;
	padding-right: 10px;
}

.footer-info-area .footer-link ul li a {
	padding-right: 30px;
	position: relative;
}

.footer-info-area .footer-link ul li a::before {
	position: absolute;
	content: ">";
	font-size: 14px;
	color: #fff;
	right: 5px;
	top: -1px;
	width: 14px;
	height: 14px;
}

.top-btn-block {
	width: 70px;
	height: 70px;
	position: absolute;
	right: 30px;
	bottom: 30px;
}

/*ジャンプ時のヘッダー分のズレを修正*/
#business {
    margin-top: -100px;
    padding-top: 100px;
}

#insurance {
    margin-top: -100px;
    padding-top: 100px;
	margin-bottom: 0;
	z-index: 1;
}

#information {
    margin-top: -100px;
    padding-top: 100px;
}

#contact {
	background: #eeeded;
	background: #0085B2;
	margin-bottom: 0;
	padding: 60px 0;
}

.contact-btn {
	margin: 0 auto;
	height: 70px;
	width: 450px;
}

.contact-btn a {
	display: block;
	text-align: center;
	font-size: 25px;
	background: #fff;
	color: #0085B2;
	font-weight: bold;
	height: 100%;
	text-decoration: none;
	letter-spacing: .04em;
	line-height: 1.9;
	padding: .5em 2em .5em 1em !important;
	position: relative;
	border: 1px solid #fff;
}

.contact-btn a:hover {
	background: #0085B2;
	color: #FFF;
}

.contact-btn .arrow {
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	background: #0085B2;
	right: 35px;
	top: 20px;
	border-radius: 9999px;
}

.contact-btn .arrow::before {
	position: absolute;
	content: "";
	height: 10px;
	width: 8px;
	aspect-ratio: cos(30deg);
	clip-path: polygon(0 0,100% 50%,0 100%);
	background: #FFF;
	right: 10px;
	top: 10px;
}

.contact-btn .arrow::after {
	position: absolute;
	content: "";
	background-color: rgba(255, 255, 255, 0);
	width: 30px;
	height: 30px;
	right: 0px;
	border-radius: 9999px;
	transition: all .3s;
}

.contact-btn a:hover .arrow::before {
  background: #0085B2;
  z-index: 1;
}

.contact-btn a:hover .arrow::after {
	background-color: rgba(255, 255, 255, 1);
}

.col-md-8 {
	width: 100%;
}

.plan-area {
	display: flex;
	justify-content: space-between;
}

.plan-area .plan {
	width: calc(50% - 10px);
	display: flex;
}

.col-md-1 {
	width: 21%;
}

.company {
	margin-bottom: 20px;
}

.company a {
	text-decoration: underline !important;
}

.company a:hover {
	text-decoration:none !important;
}

a[href^="tel:"] {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
    cursor: default;
}

/* @group form */

#main-content .form-area .error-box p {
	font-size: 18px;
}

#contact-form.kakunin .address-head {
	display: inline-block;
	width: 9.5em;
}


/* @end */
}

@media screen and (max-width: 767px) {
	/*共通*/
.wrapper {
    width: auto;
    margin: 10px auto;
}

section {
    margin-bottom: 20px;
}

#main-content {
	margin: 30px auto 120px;
}

#h1-area {
	margin: 59px auto 0;
}




/*ナビバー調整*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    z-index: 1000;
    border-bottom: solid 1px #ccc;
}

.logo {
    text-indent:100%;
    white-space:nowrap;
    overflow:hidden;
    width: 80%;
    height: 55px;
    margin:0;
    padding: 0;
}

.logo > img {
    object-fit: scale-down;
    margin-top: 8px;
    margin-left: 8px;
    height: 38px;
    width: 255px;
}

.blue-arrow {
    float: right;
    color: #0085B2;
}

.navbar-collapse {
    margin: 0;
    padding:0;
}
.navbar-default{
    border-color: #ffffff;
    background-color: #ffffff;
    margin-bottom: 0;
}

.navbar-nav {
    float: snap;
    margin: 0;
}

.navbar-nav ul {
    padding: 0;
}
.navbar-nav li {
    border-bottom: solid 1px #ccc;
}

.navbar-nav .contact a {
	font-weight: bold;
	color: #000;
}

.navbar-nav .contact .blue-arrow {
	display: block;
}

/*セクションタイトル*/
.section-title {
    font-size: large;
    color: #fff;
    height: 50px;
    background-color: #0085B2;
    display: flex;
    align-items: center;
}

.section-title > div {
    margin-left: 10px;
}

.section-arrow {
    display: flex;
    margin: 0 auto;
    padding-left: 24px;
}

.section-arrow img {
    width: 7px;
    height: 6px;
}

h3 {
    background: #0085B2;
    color: #FFF;
}

h4.description{
    color: #064E92;
	line-height: 1.3;
}

/*メイン画像*/
.main-img {
    display: block;
    margin: 0 auto;
    padding: 0;
    padding-top: 58px;
}
.main-img img {
    width: 100%;
    line-height: 0;
}

/*事業内容 セクション*/
.business-img {
    margin-bottom: 1em;
}

/*取扱保険 セクション*/
.plan {
    margin-bottom: 1em;
	display: flex;
}

.plan-icon {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
	width: 18vw;
	max-width: 80px;
}

.plan-type {
    font-size: 19px;
    margin-bottom: 5px;
	padding-left: 5px;
}

.plan-list {
	display: flex;
	justify-content: space-between;
    font-size: small;
	margin-bottom: 2px;
	flex-wrap: wrap;
}

.plan-list span{
	display: block;
    font-size: small;
	margin-bottom: 2px;
	width: calc(50% - 10px);
}

.company {
    border: 4px solid #ddd;
}

.company > div {
    margin: 5px;
}

.company p {
    font-size: small;
    margin-bottom: 0;
}

.company ul {
    font-size: smaller;
    list-style: none;
    padding-left: 14px;
    margin-bottom: 0;
}

.table-responsive {
    border-style: none;
}

.table-responsive table, th, td {
    border-style:none!important;
    font-size: 13px;
}

/*会社情報　セクション*/
/*google map*/
.google-map {
    position: relative;
    padding-top: 10px;
    height: 400px;
    overflow: hidden;
}

.google-map iframe,
.google-map object,
.google-map embed {
    position: relative;
    width: 100%;
    height: 100%;
}

a.google-map-link{
    text-decoration: underline;
}

.access {
    padding-top: 20px;
}

.table-striped tbody tr:nth-child(odd) td {
  background-color: #EEEEEE;
}

/*お問合せ*/
/*mail tellボタン*/
.tell-mail-button{
    margin: 1.5em 0;
	color: #fff;
	text-align: center;
}

.tell-mail-button img {
    width: 190px;
    height: 100%;
}

.tell-mail-button a {
       display: inline-block;
    margin: 0.5em 0;
	width: 270px;
	padding: 15px 38px;
	background: #fff;
	border-radius: 30px;
	margin-top: 15px;
}

.tell-mail-button p {
    font-size: 1em;
    margin-bottom: 0;
}

.tell-main-text {
    color: #ff0000;
    font-weight: bold;
    font-size: 1.2em!important;
    margin-bottom: 0.5em!important;
}

.mail-main-text {
    font-weight: bold;
    font-size: 1.2em!important;
    margin-bottom: 0.5em!important;
}

/*フッター部*/
.bottom-footer{
    background-color: #333;
    color: #fff;
    padding: 20px 15px;
}

.bottom-footer .wrapper {
    margin: 0 auto;
}

.footer-company-name {
    font-size: small;
}

.footer-company-address {
    font-size:x-small;
}

.footer-company-name .num {
    font-size: x-small;
}

.top-btn-block {
    padding: 0 0.5em 0 0;
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 50px;
	height: 50px;
	z-index: 2;
}

.top-btn-block a{
    display: inline-block;
}

.top-btn-block img{
    width: 100%;
}

.footer-copyright{
    text-align: center;
    font-size: xx-small;
}

.footer-info-area .footer-link a {
	color: #fff !important;
	font-size: 14px;
}

.footer-info-area .footer-link ul {
	margin: 20px 0 30px 0;
	padding: 0;
}

.footer-info-area .footer-link ul li {
	position: relative;
}

.footer-info-area .footer-link ul li::before,
.footer-info-area .footer-link ul li:first-child::after {
	border-top: 1px solid #909090;
	position: absolute;
	content: "";
	width: calc(100% + 30px);
	height: 1px;
	bottom: 0;
	left: -15px;
}

.footer-info-area .footer-link ul li:first-child::after {
	bottom: auto;
	top: 0;
	left: -15px;
}

.footer-info-area .footer-link ul a {
	display: block;
	padding: 12px 0 12px 10px;
	font-size: 13px;
	position: relative;
}

.footer-info-area .footer-link ul a::before {
	position: absolute;
	content: ">";
	color: #fff;
	right: 15px;
}

.footer-info-area .footer-link ul a:hover {
	text-decoration: none;
}

/*ジャンプ時のヘッダー分のズレを修正*/
#business {
    margin-top: -60px;
    padding-top: 60px;
}

#insurance {
    margin-top: -60px;
    padding-top: 60px;
	z-index: 1;
}

#information {
    margin-top: -60px;
    padding-top: 60px;
}

#contact {
	background: #eeeded;
	background: #0085B2;
	margin-bottom: 0;
	padding: 30px 0 10px;
}

.contact-btn {
	height: 50px;
	width: 100％;
}

.contact-btn a {
	display: block;
	text-align: center;
	font-size: 19px;
	background: #fff;
	color: #0085B2;
	font-weight: bold;
	height: 100%;
	text-decoration: none;
	letter-spacing: .04em;
	line-height: 1.9;
	padding: .28em 1.8em .5em 1em !important;
	position: relative;
	border: 1px solid #fff;
}

.contact-btn .arrow {
	display: block;
	position: absolute;
	width: 20px;
	height: 20px;
	background: #0085B2;
	right: 25px;
	top: 15px;
	border-radius: 9999px;
}

.contact-btn .arrow::before {
	position: absolute;
	content: "";
	height: 10px;
	width: 8px;
	aspect-ratio: cos(30deg);
	clip-path: polygon(0 0,100% 50%,0 100%);
	background: #FFF;
	right: 5px;
	top: 5px;
}

.contact-btn .arrow::after {
	position: absolute;
	content: "";
	background-color: rgba(255, 255, 255, 0);
	width: 30px;
	height: 30px;
	right: 0px;
	border-radius: 9999px;
	transition: all .3s;
}

.contact-btn a:hover .arrow::before {
  background: #FFF;
}

.contact-btn a:hover .arrow::after {
	display: none;
}

a[href^="tel:"] {
    color: inherit;
}

/* @group form */

#main-content .form-area .error-box p {
	font-size: 18px;
}

.form-area .wrap select {
	margin-bottom: 15px;
}

.form-area .text-s.p-postal-code {
	width: 100% !important;
}

#contact-form.kakunin .address-head {
	display: inline;
}

/* @end */

}

@media screen and (max-width: 490px) {

#main-content .form-area .text-ss {
	width: calc(100% - 2.5em) !important;
}

}

@media screen and (max-width: 435px) {

.plan-list span{
	width: 100%;
}

}