@charset "UTF-8";
/* CSS Document */
.top_img {
    background-image: url("../images/top_bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.top_img_s {
    background: url("../images/top_s.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}
/*タブ切り替え全体のスタイル*/
.tabs {
    margin-top: 50px;
    padding-bottom: 40px;
    background-color: #fff;
    /*
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 700px;
*/
    margin: 0 auto;
}
/*タブのスタイル*/
.tab_item {
    width: calc(100%/5);
    height: 50px;
    /*  border-bottom: 3px solid #00aaeb;*/
    /*  background-color: #d9d9d9;*/
    line-height: 50px;
    font-size: 0.75rem;
    text-align: center;
    color: #00aaeb;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
}
.tab_item:hover {
    opacity: 0.75;
}
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
    display: none;
}
/*タブ切り替えの中身のスタイル*/
.tab_content {
    display: none;
    padding: 40px 40px 0;
    clear: both;
    overflow: hidden;
}
/*選択されているタブのコンテンツのみを表示*/
#koe1:checked ~ #koe1_content, #koe2:checked ~ #koe2_content, #koe3:checked ~ #koe3_content, #koe4:checked ~ #koe4_content, #koe5:checked ~ #koe5_content {
    display: block;
}
/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
    background-color: #00aaeb;
    color: #fff;
}
.multicolumnbox {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    -moz-column-width: 10em;
    -webkit-column-width: 10em;
    column-width: 10em;
    -moz-column-gap: 40px;
    -webkit-column-gap: 40px;
    column-gap: 40px;
}

p.p_title {
    position: relative;
    line-height: 2em;
    padding-left: 3em;
}
p.p_title:before {
    position: absolute;
    left: 0;
    content: "";
    display: inline-block;
    width: 2em;
    height: 2em;
    background: url("../images/Q.png") no-repeat;
    background-size: contain;
}
p.p_body {
    position: relative;
    line-height: 2em;
    padding-left: 3em;
}
p.p_body:before {
    position: absolute;
    left: 0;
    content: "";
    display: inline-block;
    width: 2em;
    height: 2em;
    background: url("../images/A.png") no-repeat;
    background-size: contain;
}
.accbox {
    margin: auto;
    padding: 0;
    max-width: 400px;
}
.accbox label {
    display: block;
    margin: 1.5px 0;
    padding: 11px 12px;
    color: #2f8fcf;
    font-weight: bold;
    background: #00aaeb;
    cursor: pointer;
    transition: all 0.5s;
    height: 100px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: medium solid #1480a7;
}
.accbox label:hover {
    background: #85baef;
}
.accbox input {
    display: none;
}
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    /*    transition: 0.8s;*/
    border-bottom: medium solid #1480a7
}
.cssacc:checked + .accshow {
    height: auto;
    padding: 5px;
    background: #fff;
    opacity: 1;
}

.contact {
  border:none;
  border-radius:10px;
  box-shadow: none;
  padding: 2px 8px;
}

.contact_btn {
  color: #fff;
   background-color: #00aaeb;
   border: 1px solid #3c7fb1; /* 枠線 */
   border-radius: 0.3em;      /* 角丸 */
}
