@charset "UTF-8";

html, body {
    height: 100%;
}

html {
    overflow-y: scroll;
}

body {
    position: relative;
    height: auto!important;
    min-height: 100%;
    padding-bottom: 8px;
}

#header {
    margin-bottom: 20px;
    background: url(../img/header_bg.gif) left top repeat-x;
}

#header img {
    display: block;
    margin: auto;
}

#header_sp {
    border-bottom: 3px solid #eb6168;
    margin-bottom: 20px;
}

#header_ul {
    margin: 0 2.7vw;
    width: 94.6vw;
}

#header_ul li#header_logo {
    width: 45vw;
    /*margin-left: 10%;*/
    text-align: left;
    vertical-align: middle;
    display: table-cell;
    float: left;
}

#header_ul li#header_tel {
    width: 45vw;
    margin-top: 15px;
    /*margin-right: 10%;*/
    text-align: right;
    vertical-align: middle;
    display: table-cell;
    float: right;
}

#footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    border-top: 1px solid #e6e6e6;
    font-size: 0;
    line-height: 0;
    padding-top: 10px
}

#footer ul {
    float: left;
    padding: 0;
    margin: 0;
}

#footer ul li {
    background: url(../img/footer_bg.gif) 0 0/contain no-repeat;
    float: left;
    padding: 0 20px;
    font-size: 18px;
    list-style: none;
}
#footer ul li:first-child {
    background: 0 0;
    padding-left: 30px
}

#footer ul li a {
    line-height: 120%;
}

#footer address {
    float: right;
    padding-right: 30px
}

@media print,screen and (max-width: 767px) {
    #footer ul li {
        width: 70px;
        font-size: 12px;
        padding: 0 0 0 5px;
    }
    #footer ul li:first-child {
        padding: 0 3px 0 5px;
    }
    #footer address {
        padding: 2px 5px 0 0;
        width: 140px;
    }
}

h1 {
    padding: 8px;
    font-size: 25px;
    font-weight: 700;
    background: #abcd03;
    color: #fff;
}

img {
    vertical-align: middle;
    border: none;
    max-width: 100%;
    height: auto;
}

input[type=text].form-control, input[type=password].form-control, input[type=tel].form-control{
    border-radius: 0;
    border-color: #000;
    padding: 9px 2%;
}

label.control-label {
    margin-bottom: 5px;
    font-weight: 700;
}

.btn.common {
  margin: 0 0 10px 10px;
  width: 270px;
  height: 50px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  background-image: linear-gradient(to bottom,#abcd03,#8eb903);
  background-image: -moz-linear-gradient(to bottom,#abcd03,#8eb903);
  box-shadow: 0 0 1px rgba(0,0,0,.3);
}

.btn.meun {
  width: 270px;
  height: 50px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  background-image: linear-gradient(to bottom,#abcd03,#8eb903);
  background-image: -moz-linear-gradient(to bottom,#abcd03,#8eb903);
  box-shadow: 0 0 1px rgba(0,0,0,.3);
}

/* 以下、仮です */
.btn.light {
    margin: 0 0 10px 10px;
    width: 270px;
    height: 50px;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #dcd9d9;
    box-shadow: 0 0 1px rgba(000, 000, 000, 3);
}
.btn.modal_common {
    margin: 0 0 10px 10px;
    width: 200px;
    height: 50px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 10px;
    background-image: linear-gradient(to bottom, #abcd03, #8eb903);
    background-image: -moz-linear-gradient(to bottom, #abcd03, #8eb903);
    box-shadow: 0 0 1px rgba(000, 000, 000, 3);
}
.btn.modal_light {
    margin: 0 0 10px 10px;
    width: 200px;
    height: 50px;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #dcd9d9;
    box-shadow: 0 0 1px rgba(000, 000, 000, 3);
}

.btn.common[disabled] {
    cursor: not-allowed;
    background-image: linear-gradient(to bottom,#dcd9d9,#ccc);
    background-image: -moz-linear-gradient(to bottom,#dcd9d9,#ccc);
}

.btn.meun[disabled] {
    cursor: not-allowed;
    background-image: linear-gradient(to bottom,#dcd9d9,#ccc);
    background-image: -moz-linear-gradient(to bottom,#dcd9d9,#ccc);
}

.btn.back {
    margin: 0 0 10px 10px;
    width: 270px;
    height: 50px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 10px;
    background-image: linear-gradient(to bottom,#272525,#ccc);
    background-image: -moz-linear-gradient(to bottom,#272525,#ccc);
    box-shadow: 0 0 1px rgba(000,000,000,3);
    line-height: 35px;
}

.toggle-triangle.collapsed:before {
    content: "▼"
}

.toggle-triangle:before {
    content: "▲"
}

input[type="checkbox"]{
    transform: scale(150%);
}

.circle_allow_left {
    position: relative;
    display: inline-block;
    padding-left: 22px;
    color: #fff;
    text-decoration: none;
}
.circle_allow_left:before {
    content: '';
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -9px;
    transform: rotate(180deg); /*「<」*/
}
.circle_allow_left:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 6px 4px 0; /* 逆向きの三角形 */
    border-color: transparent #000 transparent transparent;
    position: absolute;
    top: 50%;
    left: 6px;
    margin-top: -4px;
    margin-left: -1px;
}

.circle_allow_right {
    position: relative;
    display: inline-block;
    padding-left: 22px;
    color: #fff;
    text-decoration: none;
}
.circle_allow_right:before {
    content: '';
    width: 18px;
    height: 18px;
    background: #fff; /* 丸の背景色を設定 */
    border-radius: 50%; /* 丸を丸くするための設定 */
    position: absolute;
    top: 10%;
    left: 0;
    margin-top: -16px;
    margin-left: 3px;
    transform: rotate(180deg); /* 三角形の向きを設定 */
}
.circle_allow_right:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 6px 4px 0; /* 逆向きの三角形 */
    border-color: transparent #000 transparent transparent;
    position: absolute;
    top: 10%;
    left: 6px;
    margin-top: -11px;
    margin-left: 4px;
    transform: rotate(180deg); /* 三角形の向きを逆にする */
}

/* .midashi_green {
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
    vertical-align: middle;
    display: inline-block;
}

.midashi_green::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 100%;
    margin-right: 10px;
    background-color: #abcd03;
    vertical-align: middle;
} */


.midashi_green {
  font-size: 16px;
  font-weight: bold;
  height: 40px;            /* 見出しの高さを決める */
  line-height: 40px;       /* ← 高さと同値で縦中央（1行限定） */
  display: inline-block;   /* 行内で使うなら inline-block のままでOK */
  position: relative;      /* ::before の基準 */
  padding-left: 15px;      /* 棒 5px + 余白 10px （文字は左寄せのまま） */
  box-sizing: border-box;
}

.midashi_green::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;               /* 親の高さに合わせて上下ぴったり */
  width: 5px;
  background-color: #abcd03;
}


.moreButton {
    width: 85%;
}

/*---------------------------------------------------------*/
/* 		2-10.	dialog								   */
/*---------------------------------------------------------*/

.dialogBg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(241, 241, 241, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dialogBlock {
    max-width: 1000px;
    margin: 0 auto;
    width: 75%;
}

.dialogBlock .wrapper {
    background: #fff;
    border: 1px solid;
    padding: 40px 125px 52px;
}

.dialogBlock .content {
    text-align: center;
    margin-bottom: 36px;
}

.dialogBlock .content .img {
    margin-bottom: 20px;
}

.dialogBlock .content h2 {
    font-size: 20px;
    margin-bottom: 18px;
}

.dialogBlock .content p {
    font-weight: bold;
    line-height: 1.8;
}

ul.dialogButton {
    overflow: hidden;
}

ul.dialogButton.center {
    padding-left: 0px;
}

ul.dialogButton li {
    max-width: 350px;
    width: 45%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

ul.dialogButton.center li {
    display: inline-block;
}

ul.dialogButton li.left-side {
    float: left;
}

ul.dialogButton li.right-side {
    float: right;
}

ul.dialogButton li a {
    display: block;
    padding: 15px 0;
}

ul.dialogButton li a.active {
    background: #9FD000;
    color: #fff;
    border: 1px solid #9FD000;
}

ul.dialogButton li a.nonactive {
    border: 1px solid #f1f1f1;
}

ul.dialogButton li a.active:hover {
    color: #9FD000;
    background: #fff;
}

ul.dialogButton li a.nonactive:hover {
    background: #999;
    color: #fff;
    border: 1px solid #999;
}

/* 2026/02/25 追加 */
/* 5%　→　1%に修正 */
/* padding-bottom:　追加 */
.num_list_div {
    display: flex;
    padding-top: 1%;
    padding-bottom: 1%;
}

.num_list {
    background-color: #abcd03;
    text-align: center;
    font-size: 16px;
    width: 30px;
    height: 20px;
    line-height: 20px;
}

.num_list_text {
    padding-left: 1%;
    width: 87%;
}


.caution_blue_img{
    padding-left: 10px;
    padding-top: 2%;
    padding-bottom: 1%;
    width: 5%;
    height: auto;
}

.menu_bottom{
    width: 20%;
    height: auto; 
}

.eid_text{
    width: 100%;
}
/* 画面幅768px以下（スマホ想定） */
@media screen and (max-width: 768px) {
    .num_list {
        width: 30px;
        height: 20px;
    }
    .caution_blue_img{
        width: 20%;   
    }
    .menu_bottom{
    	width: 70%;
	}
}
