
/* sp向け */
html * {
    box-sizing:border-box;
}
header {
    text-align: center;
}
header p img{
    max-width: 100%;
    height: auto;
}
p {
    line-height: 1.5;
}
h2 {
    padding: 0.5em;/*文字周りの余白*/
    color: #010101;/*文字色*/
    background: #eaf3ff;/*背景色*/
    border-bottom: solid 3px #516ab6;/*下線*/
    font-weight: bold;
    margin: 1em 0;
}
h3 {
    padding: 0.5rem;
    border-left: 6px double #000;
    font-weight: bold;
    text-align: left;
}
section {
    padding: 1em;
}
section div {
    margin: 2em 0;
}
table th,
td{
    padding-bottom: 0.5em;
}
footer {
    background-color: #05639a;
    color: #fff;
    padding: 1em;
    font-size: 13px;
    width: 100%;
}
.nitiji {
    position: relative;
    color: black;
    background: #d0ecff;
    line-height: 1.4;
    padding: 0.5em 0.5em;
    margin: 2em 0.5em;
    border-radius: 0 5px 5px 5px;
    text-align: left;
}
.nitiji:after {
    /*タブ*/
    position: absolute;
    font-family: "Font Awesome 5 Free",'Quicksand','Avenir','Arial',sans-serif;
    font-weight: 900;
    content: '\f00c Check';
    background: #2196F3;
    color: #fff;
    left: 0px;
    bottom: 100%;
    border-radius: 5px 5px 0 0;
    padding: 3px 7px 1px;
    font-size: 0.7em;
    line-height: 1;
    letter-spacing: 0.05em
}
.flex_box.txt_c.container img {
    width: 255px;
}
.tizu_area {
    margin: 2.5em 0;
}
.tizu_area img {
    padding-bottom: 0.5em;
}
.flex_box div p {
    margin-bottom: 1em;
}
.txt_c {
    text-align: center;
}
.txt_l {
    text-align: left;
}
.margin_l {
    margin-left: 1em;
}
.color_orange {
    color: orange;
}
.color_red {
    color: red;
}
.description {
    background-color: rgb(250, 252, 202);
    padding: 1em;
}
.width75 img {
    width: 75%;
}
/* ボタン */
a.btn.btn--red.btn--radius.btn--cubic {
    background: #eb6100;
    color: #fff;
    padding: 0.5em;
    text-decoration: none;
}
a.btn--shadow {
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}
a.btn--red.btn--cubic {
    border-bottom: 5px solid #9f000c;
}
a.btn--red.btn--cubic:hover {
    margin-top: 3px;
    border-bottom: 2px solid #9f000c;
}
a.btn--radius {
    border-radius: 100vh;
}
.fa-position-right {
    position: absolute;
    top: calc(50% - .5em);
    right: 1rem;
}
/* フォームボタン */
.form .btn_07 {
    width: 70%;
    margin: 0 auto;
}
a.btn_07 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #228bc8;
    border: 1px solid #228bc8;
    box-sizing: border-box;
    width: 100%;
    height: 80px;
    padding: 0 25px;
    color: #fff;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
}
a.btn_07:hover {
    background: #fff;
    border: 1px solid #05639a;
    color: #05639a;
}
a.btn_07:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 40px 50px;
    border-color: transparent transparent #228bc8 transparent;
}
a.btn_07 span {
    position: absolute;
    bottom: 12px;
    right: 20px;
    display: inline-block;
}
a.btn_07 span:before {
    content: '';
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -8px;
}
a.btn_07 span:after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: 2px solid #228bc8;
    border-right: 2px solid #228bc8;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 4px;
    margin-top: -3px;
}
/* フォームボタン受付終了 */
.btn_07 {
    background: #ccc;
    border: 1px solid #ccc;
    box-sizing: border-box;
    width: 100%;
    height: 80px;
    padding: 16px 25px 0;
    color: #fff;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
}
/* テーブル */
table{
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
}

table tr{
    border-bottom: solid 2px white;
}

table tr:last-child{
    border-bottom: none;
}

table th{
    position: relative;
    text-align: left;
    width: 30%;
    background-color: #52c2d0;
    color: white;
    text-align: center;
    padding: 10px 0;
}

table th:after{
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top:calc(50% - 10px);
    right:-10px;
    border-left: 10px solid #52c2d0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.padding {
    padding: 1em;
}
table td{
    text-align: left;
    width: 70%;
    text-align: center;
    background-color: #eee;
    padding: 10px 0;
}
/* pc向け */
@media screen and (min-width: 481px){
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 20px;
    }
    p {
        font-size: 18px;
    }
    main {
        width:1050px;
        margin: 0 auto;
    }
    .flex_box {
        display: flex;
        justify-content: space-evenly;
        margin-top: 0;
    }
    .pc {
        display: none;
    }
}
/* タブレット */
@media screen and (min-width: 678px){
    img {
        max-width: 1050px;
    }
}