@charset "UTF-8";

/*主な共通部分は省略*/

.fa-position-left {
    position: absolute;
    top: calc(50% - .5em);
    left: 1rem;
}

.fa-position-right {
    position: absolute;
    top: calc(50% - .5em);
    right: 1rem;
}


/*主な共通部分は省略*/

a.btn--orange {
    color: #fff;
    background-color: #eb6100;
}

a.btn--orange:hover {
    color: #fff;
    background: #f56500;
}

a.btn--shadow {
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

a.btn--circle {
    border-radius: 50%;
    line-height: 200px;
    /* width: 100px; */
    height: 200px;
    padding: 0;
    font-size: 3rem;
}

img {
    max-width: 100%;
}

*,
*.* {
    box-sizing: border-box;
}

.* {
    box-sizing: border-box;
}

body {
    color: #606c76;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Verdana, "メイリオ", Meiryo, sans-serif;
    font-size: 1.6em;
    font-weight: 300;
    letter-spacing: .01em;
    line-height: 1.6;
}

a {
    color: #303E7D;
    text-decoration: none;
}

a:hover {}

a:hover {
    opacity: 1;
    -webkit-animation-duration: 1s;
    -webkit-animation-name: flash;
    animation-duration: 1s;
    animation-name: flash;
}

a:focus,
a:hover {}

@-webkit-keyframes flash {
    0% {
        opacity: .4;
    }
    100% {
        opacity: 1;
    }
}

@keyframes flash {
    0% {
        opacity: .4;
    }
    100% {
        opacity: 1;
    }
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

.mt {
    margin-top: 40px;
}

.pt {
    padding-top: 40px;
}

.ptm {
    padding-top: 20px;
}

.pw {
    box-sizing: border-box;
    padding-left: 2%;
    padding-right: 2%;
}

.mb {
    margin-bottom: 40px;
}

.mbm {
    margin-bottom: 20px;
}

.mbx2 {
    margin-bottom: 80px;
}

.pb {
    padding-bottom: 40px;
}

.pbx2 {
    padding-bottom: 80px;
}

.cen {
    text-align: center;
}

.right {
    text-align: right;
}

.flexb {
    display: flex;
    justify-content: space-between;
}

.flexai {
    align-items: center;
}

.flexw {
    flex-wrap: wrap;
}

.flexa {
    display: flex;
    justify-content: space-around;
}

.col1 {
    width: 100%;
}

.col2 {
    width: 49%;
}

.col2l {
    width: 19%;
}

.w20 {
    width: 19%;
}

.w80 {
    width: 78%;
}

.w50 {
    width: 49%;
}

.w100 {
    width: 100%;
}

.centermiddle {
    align-items: center;
    justify-content: center;
    display: flex;
}

.underline {
    border-bottom: 2px solid #cccccc;
    padding-top: 10px;
    padding-bottom: 10px;
}

.flexb .center {
    align-items: center;
    display: flex;
    justify-content: center;
}

.col4 {
    width: 24%;
    display: inline-block;
}

dl {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.flexb dl {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    color: #303e7d;
}

.flexb dl dt {
    width: 14%;
}

.flexb dl dd {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #333;
    font-size: 22px;
}

.flexb .w50 dl dt {
    width: 29%;
}

.flexb .w50 dl dd {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.flexb dl.w100 {
    display: flex;
    flex-wrap: wrap;
}

.flexb dl.w100 dt {
    width: 100%;
}

.flexb dl.w100 dd {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.flexb dl.w100 dd.left {
    justify-content: flex-start;
}

.flexb .col1 dl {
    width: 100%;
    flex-direction: column;
    text-align: left;
}

.flexb .col1 dl dt {
    width: 100%;
    text-align: left;
}

.flexb .col1 dl dd {
    width: 100%;
    text-align: left;
    margin: 0;
}

input[type='email'],
input[type='number'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='url'],
textarea,
select {
    background-color: #ffffff;
    border: 0.1rem solid #d1d1d1;
    border-radius: 0.4rem;
}

input,
select,
textarea {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Verdana, "メイリオ", Meiryo, sans-serif;
    width: 100%;
    line-height: 1.15;
    margin: 0;
    padding: 5px;
    font-size: 20px;
}

input[type=date] {
    max-width: 180px;
}

input[type=time] {
    max-width: 100px;
}

textarea {
    width: 100%;
    min-height: 6em;
}

.innerbox {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2%;
    padding-right: 2%;
    width: 100%;
    max-width: 600px;
    background: #ffffff;
}

.innerbox_b {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2%;
    padding-right: 2%;
    width: 100%;
    max-width: 1900px;
    background: #ffffff;
}

.inner {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2%;
    padding-right: 2%;
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    box-sizing: border-box;
}

.big_inner {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2%;
    padding-right: 2%;
    width: 100%;
    max-width: 1800px;
    background: #ffffff;
    box-sizing: border-box;
}

.txt {
    font-size: 20px;
}

.txt02 {
    font-size: 16px;
}

.txt03 {
    font-size: 20px;
    font-weight: bold;
    color: #31c386;
}

.txtbg01 {
    color: #fff;
    background-color: #ff6868;
    margin-left: 20px;
    padding: 5px 10px;
}

.err {
    color: #f97c78;
}

.attr {
    font-size: 20px;
}

label.em:before {
    content: "必須";
    color: #ffffff;
    font-size: 12px;
    font-weight: 100;
    padding: 2px 3px;
    background: #c3313e;
    margin-right: 5px;
}

header {
    font-size: 140%;
    color: #303e7d;
}

.footer {
    font-size: 12px;
    text-align: center;
    opacity: 0.9625;
}

.h2 {
    font-size: 120%;
    font-weight: bold;
}

.bg01 {
    background: #eeeeee;
    padding: 10px 5px;
    box-sizing: border-box;
}

.bg01.pw {
    padding: 10px 2%;
}
input[type='checkbox'], input[type='radio'] {
    display: inline;
    width: auto;
}
.btn {
    background-color: #cccccc;
    border: 0.1rem solid transparent;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    width: 200px;
    height: 4.8rem;
    letter-spacing: .1rem;
    line-height: 4.8rem;
    padding: 0 3rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn01 {
    background-color: #303e7d!important;
    color: #ffffff!important;
}

.btn02 {
    background-color: #ffffff!important;
    border: 2px solid #606c76!important;
    color: #606c76!important;
}

.btn03 {
    background-color: #434758;
    line-height: normal;
    height: auto;
    padding: 5px 20px;
    width: auto;
}

.btn04 {
    background-color: #2c935a;
    line-height: normal;
    height: auto;
    padding: 5px 20px;
    width: auto;
}

.btn05 {
    background-color: #303e7d;
    line-height: normal;
    height: auto;
    padding: 5px 20px;
    width: auto;
}

.btn_navi01 {
    max-width: 180px;
    text-align: center;
    padding: 0;
    background: #88b8c2;
    color: #ffffff!important;
}

.btn_navi01.active {
    background: #72d9ef;
}

.previewbtn {
    background-color: #31c386;
}

.submitbtn {
    background-color: #c3313e;
}

.logout {
    text-align: right;
}

.logout .btn {
    width: 20%;
}

table.contact td:first-child,
table.contact th:first-child {
    padding-left: 1.2rem;
}

#result_table_length > label > select {
    width: 57% !important;
}

#result_table_filter > label > input[type=search] {
    width: 200px;
}

table tr.even td {
    background-color: #f5f8fe;
    word-break: break-all;
}

.powered {
    font-weight: bold;
}

.wrap {
    display: flex;
    justify-content: space-between;
}

select,
select:active,
select:focus {
    background: url(../img/arrow.png) center right no-repeat;
    background-size: 25px 15px;
    background-position: right 8px center;
    color: #333333;
    padding-right: 35px;
    overflow: hidden;
}


/**main*/

.main h2 {
    font-size: 28px;
    font-weight: bold;
    color: #303e7d;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.main h2 img {
    width: 30px;
    margin-right: 20px;
}

.chatch {
    color: #ef5e3e;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4em;
}

.title {
    color: #333333;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4em;
}

.triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 40px solid transparent;
    border-left: 40px solid transparent;
    border-top: 35px solid #555555;
    border-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

.form_input {
    margin-bottom: 16px;
}

.color_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.color_list li {
    width: 46%;
}

.form_ref label {
    color: #2c935a;
}

.answer {
    color: #7c7c7c;
    border-bottom: 1px solid #999999;
    padding-bottom: 3px;
}

select.error {
    border: 1px solid #ff0000;
}

input.error {
    border: 1px solid #ff0000;
}

label.error {
    color: #ff0000;
    display: block;
    width: 60%;
    padding: 0px 5px;
}

.scrollbar {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
}

.scrollbar .inner02 {
    width: 100%;
    height: 1px;
}

.scrollbox {
    width: 100%;
    margin-top: 5px;
    overflow-x: scroll;
    overflow-y: hidden;
}

.scrollbox .inner02 {
    width: 100%;
    margin-bottom: 5px;
    background-color: #F9F8F6;
}

.scrollbox .txt {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .loginbox {
        width: 100%;
        max-width: 400px;
    }
    .spbtns {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}


.comment p{
    font-size:18px;
    font-weight:600;
    color:#000;
    margin:0;
    text-align:center;
    line-height:1.6;
}
.plan_btn {
    position: relative;
    display: inline-block;
    min-width: 100%;
    background-color: #f89500;
    padding: 12px 10px 12px 24px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    font-size: 16px;
    color: #fff;
    text-align: left;
    margin: 0 10px;
    transition: all .5s;
    text-decoration: none;
    border-radius: 5em;
  }
  

  /*--- 矢印 ---*/
  .plan_btn::before{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;   
    width: 34px;
    height: 1px;
    background:#fff;
    transition: all .5s;
  }
  .plan_btn::after{
    content: '';
    position: absolute;
    top: 40%;
    right: 31px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    transition: all .5s;
  }
  .plan_btn:hover {
    opacity: .8;
    color: #fff !important;
  }

  .plan_btn:hover::before {
    right: 23px;
  }
  .plan_btn:hover::after {
    right: 24px;
  }
  
  @media only screen and (max-width:768px) {
      .plan_btn {
          margin-top: 14px;
          margin-bottom: 15px;
      }
  }
  