/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 09 2025 | 06:44:33 */
/*　2020.05.02追加　*/

/*==============
    other
==============*/
.housin p{
    margin: 10px 0;
    font-size: 1.8em;
    font-weight: bold;
}
.privacy {
  width:80%;
  background-color: #515151;
  padding: 15px;
  color: #fff;
  font-size: 1.0em;
    font-weight: bold;
}
.noter{
  color: #f00;
 
}
/*==============
    h2
==============*/
h2 {
    position: relative;
  border-bottom: solid 4px #ddd;
  font-weight: bold;
}

h2:after {
  position: absolute;
  content: "";
  display: block;
  border-bottom: solid 4px #c80a0a;
  bottom: -4px;
  width: 30%;
}

/*==============
    h3
==============*/
h3 {
    border-left: 4px solid #c80a0a;
    border-bottom: none;
    padding-top: 8px;
    padding-left: 10px;
    color: #0B1D64;
    font-weight: bold;
}
h3::before,
h3::after {
    content: none;
}

/*==============
    h4
==============*/
h4 {
    position: relative;
    padding-top: 5px;
    padding-left: 25px;
    color: #0B1D64;
    font-weight: bold;
}
h4::before {
    display: inline-block;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    margin: auto;
    margin-right: 4px;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background-color: #c80a0a;
    content: '';
}
h4::after {
    display: inline-block;
    position: absolute;
    top:0;
    bottom: 0;
    margin: auto;
    left:4px;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    background-color: #fff;
    content: '';
}

/*==============
    h5
==============*/
h5 {
    border-bottom: 1px dashed #0B1D64;
    padding: 0 0 4px 10px;
    position: relative;
    color: #0B1D64;
    font-weight: bold;
}
h5::before {
    display: inline-block;
    position: absolute;
    top:0;
    bottom: 0;
    margin: auto;
    left: 0;
    margin-right: 5px;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    background-color: #c80a0a;
    transform: translateY(-2px);
    content: '';
}

/*==============
    table
==============*/

/* standard */
.standard {
    margin: 30px 0;
    border-collapse: collapse;
    font-size: .8em;
    line-height: 1.25;
}
.standard td {
    background-color: #fff;
    border-bottom: 1px dashed #222;
    padding: 5px;
}
.standard th {
    padding-left: 5px;
    width: 100px;
    font-weight: bold;
    background-color: #eee;
    border-bottom: 1px dashed #222;
    text-align: left;
}
.standard td img {
    display: block;
    margin: 0 0 0 auto;
    width: 60%;
}

/* maching */
.maching {
    margin: 30px auto;
    border-collapse: collapse;
    border-left: 1px solid #ccc;
    font-size: .8em;
    line-height: 1.25;
}
.maching th,
.maching td {
    padding: 8px 5px!important;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    text-align: center;
}
.maching thead th {
    background-color: #E3F4FF;
}
.maching tbody th {
    background-color: #eee;
}


/* standard3 */
.standard3 {
    margin: 30px auto;
    border-collapse: collapse;
    border-left: 1px solid #ccc;
    font-size: .8em;
    line-height: 1.25;
}
.standard3 th {width:30%}

.standard3 th,
.standard3 td {
    padding: 5px 5px;
    border: 1px solid #ccc;
/*    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc; */
    text-align: left;
}
.standard3 thead th {
    background-color: #E3F4FF;
}
.standard3 tbody th {
    background-color: #eee;
}

/*==============
    layout
==============*/
.layout {
    margin: 30px 0;
}
.layout_inner:first-child {
    margin-bottom: 20px;
}
.layout_inner img {
    width: 100%;
    height: auto;
}
.layout_inner table {
    margin: 0;
}

/*==============
    contact
==============*/
.contact {
    margin: 30px 0;
    border: 3px solid #FF9F05;
    padding: 30px;
    background-color: #FFF5E0;
}
.contact_heading {
    margin-bottom: 20px;
    text-align: center;
}
.contact_title {
    border: none;
    font-weight: bold;
    color: inherit;
}
.contact_title-strong {
    font-size: 1.5em;
    border-bottom: 6px solid #FCBA04;
}
.contact_desc {
    margin-bottom: 20px;
    text-align: center;
    font-size: .9em;
}
.contact_btn_area {
    margin: auto;
    max-width: 780px;
}
.contact_btn {
    border: 2px solid #FCBA04;
    padding: 18px 45px 18px 26px;
    width: 100%;
    color: #fff;
    background-color: #FCBA04;
    font-weight: bold;
    line-height: 1.25;
    box-shadow: 0 3px 6px rgba(0,0,0,0.24);
    transform: translateY(0);
    transition: transform .3s;

}
.contact_btn:hover {
    color: #FCBA04;
    background-color: #fff;
    box-shadow: 0 6px 10px rgba(0,0,0,0.36);
    transform: translateY(-3px);
}
.contact_btn::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
    background-color: #fff;
}
.contact_btn:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

/*==============
    段落ち
==============*/
.layerDown {
    margin: 20px 0;
}
.layerDown dt {
    position: relative;
    margin-bottom: 6px;
    border-left: none;
    padding-left: 10px;
    font-size: 1.1em;
    font-weight: normal;
    color: #0B1D64;
}
.layerDown dt::before {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    background-color: #0B1D64;
    content: '';
}
.layerDown dd {
    margin-bottom: 20px;
    border-left: none;
    padding-left: 20px;
}

/*==============
    ol
==============*/
.custom-template ol {
    margin: 20px 0;
    padding-left: 25px;
}
.custom-template ol li {
    list-style-type: decimal;
}

/*==============
    ul
==============*/
.custom-template ul {
    margin: 20px 0;
    padding-left: 16px;
}
.custom-template ul li {
    list-style-type: disc;
}

/*==============
    mouseover
==============*/
.mouseover a {
    display: inline-block;
    background-color: #c80a0a;
    border-radius: .3em;
    padding: .3em .8em .2em;
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.3em;
}

/*==============
    page-top
==============*/
#page-top {
  position: absolute;
  top: -22px;
  right: 30px;
}
#page-top a {
    display: inline-block;
    background-color: rgba(0, 0, 0, .8);
    border-radius: .3em;
    padding: .3em .8em .2em;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.3em;
}

/*==============
    footer
==============*/
footer {
	position: relative;
}

/*==============
    レスポンシブ: Bootstrap4のブレイクポイントを採用
==============*/
@media (min-width: 576px) {

}

@media (min-width: 768px) {
    /*==============
        table
    ==============*/

    /* standard */
    .standard {
        font-size: .9em;
    }
    .standard th {
        width: 150px;
    }
    .standard td {
        padding: 5px 30px 10px 5px;
    }
    .standard td img {
        width: 35%;
    }

    /* maching */
    .maching {
        font-size: .9em;
    }
    .maching th,
    .maching td {
        padding: 5px 50px;
    }

    /* standard3 */
    .standard3 {
        font-size: .9em;
    }
    .standard3 th,
    .standard3 td {
        padding: 5px 50px;
    }

    /*==============
        layout
    ==============*/
    .layout {
        display: flex;
        justify-content: space-between;
    }
    .layout_inner {
        flex-basis: 48%;
    }
    .layout_inner table {
        font-size: .7em;
    }
    .layout_inner table th,
    .layout_inner table td {
        padding: 3px 5px;
    }
}

@media (min-width: 992px) {
    .layout_inner {
        flex-basis: 49%;
    }
    .layout_inner table {
        font-size: .8em;
    }

    .layout_inner table th,
    .layout_inner table td {
        padding: 5px 10px;
    }
}

@media (min-width: 1200px) {

}

/*　2022.07.03追加 metisflow.com*/
#pg-570-0{
	display: none;
}

/*　20250908追加 拡散接合 */
.highlight-box {
  background: #f0f6ff;         /* 薄い青背景 */
  border-left: 6px solid #005bac; /* コーポレートカラーで強調 */
  padding: 1em;
  margin-top: 1.5em;
  font-size: 1.1em;
  line-height: 1.6;
}

.highlight-box strong {
  font-size: 1.2em;
  color: #005bac; /* タイトル部分を濃い青で強調 */
}

.highlight-box span {
  color: #d62b2b; /* 強調ワードを赤系に */
  font-weight: bold;
}
