@charset "UTF-8";

.page-top-area {
    background: url(../images/common/bg-pagetitle.jpg);
    height: 400px;
    position: relative;
}
.page-top-area .container {
    height: 100%;
    position: relative;
}
.page-top-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.4;
}
@media screen and (max-width: 991px) {
    .page-top-area {
        height: 250px;
    }
}


.btn{
    display: inline-block;
    padding: 1em 3em;
    background-color: #fdd23c;
    box-shadow: 2px 2px 0 0 #ffff00;
    border-radius: 8px;
    font-family: "Roboto Condensed";
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transition: .2s;
}
.btn.btn-large{
    font-size: 18px;
}
.btn.btn-contact{
    width: 100%;
}
.btn:hover{
    opacity: 0.7;
}
.btn:active{
    box-shadow: none;
    position: relative;
    top: 2px;
    left: 2px;
}
@media screen and (max-width:767px){
    .btn{
        display: block;
        width: 100%;
        padding: 1.2em 0;
    }
}

.btn-circle {
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
    border: solid 3px #87bf16;
    border-radius: 50%;
}
.btn-circle:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background-color: #87bf16;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0, 0);
    transition: transform ease 0.2s;
}
.btn-circle:hover:after {
    transform: translate(-50%, -50%) scale(1.1, 1.1);
}
.btn-circle:before {
    content: "";
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 45%;
    width: 15px;
    height: 15px;
    border-style: solid;
    border-color: #87bf16;
    border-width: 3px 0 0 3px;
    transform: translate(-50%, -50%) rotate(135deg);
    transition: border-color ease 0.1s;
}
.btn-circle:hover:before {
    border-color: #fff;
}

.list-check li{
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
}
.list-check li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}
.list-decimal {
    padding-left: 1em;
}
.list-decimal li {
    line-height: 1.8;
    margin-left: 1em;
    position: relative;
    list-style: decimal;
    margin-bottom: 5px;
}
.list-disc li {
    line-height: 1.8;
    padding-left: 1.2em;
    position: relative;
    margin-bottom: 5px;
}
.list-disc li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "・";
}

.list-indent li{
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 5px;
}


.card{
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fff;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px 30px;
    min-height: 0%; /*IEレイアウト崩れ対策*/
}
.card-detail figure{
    margin-bottom: 10px;
}
.card-detail p{
    font-size: 14px;
    margin-bottom: 50px;
    line-height: 1.8;
}
.card-ttl{
    margin-bottom: 20px;
    font-family: "Noto Sans JP";
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    background-color: #fdd23c;
}
.card-ttl span{
    display: inline-block;
    padding: 0 8px;
    background-color: #fff;
}
@media screen and (max-width:991px) {
    .card-ttl{
        font-size: 22px;
    }
}
@media screen and (max-width:767px) {
    .card{
        padding: 30px 20px 20px;
    }
    .card-ttl{
        font-size: 20px;
    }
}


.box-yellow{
    background: url(../images/common/bg-yellow.jpg) no-repeat top center / cover;
    padding: 50px;
}
@media screen and (max-width:991px) {
    .box-yellow{
        padding: 40px;
    }
}
@media screen and (max-width:767px) {
    .box-yellow{
        padding: 30px;
    }
}


.table01{
    width: 100%;
}
.table01 th,
.table01 td{
    padding: 15px;
    vertical-align: middle;
    border: 1px solid #eee;
}
.table01 th{
    background-color: #f5fbea;
    width: 20%;
}
.table01 td{
    background-color: #fff;
}
@media screen and (max-width:767px){
    .table01 th,
    .table01 td{
        display: block;
        width: 100%;
    }
}

.table02{
    width: 100%;
}
.table02 th,
.table02 td{
    padding: 15px;
    text-align: center;
}
.table02 thead th{
    background-color: #87bf16;
    color: #fff;
}
.table02 tbody tr:nth-child(odd){
    background-color: #fff;
}
.table02 tbody tr:nth-child(even){
    background-color: #f5fbea;
}
@media screen and (max-width:767px){
    .table02{
        width: 700px;
    }
}

.table-contact{
    width: 100%;
}
.table-contact th,
.table-contact td{
    padding: 15px;
    vertical-align: middle;
    border: 1px solid #eee;
}
.table-contact th{
    background-color: #ddd;
    width: 25%;
}
.table-contact td{
    background-color: #fff;
}
@media screen and (max-width:767px){
    .table-contact th,
    .table-contact td{
        display: block;
        width: 100%;
    }
}


@media screen and (max-width:767px){
    .table-wrap{
        width: 100%;
        overflow-x: scroll;
    }
}

.photo-ofi {
    height: 0;
    display: block;
    overflow: hidden;
    position: relative;
    padding-bottom: 62.5%;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.photo-ofi img {
    max-width: inherit;
    max-height: inherit;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    font-family: 'object-fit: contain;';
    position: absolute;
    left: 0;
    top: 0;
}
.photo-ofi.square {
    padding-bottom: 100%;
}
.photo-ofi.square img {
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: contain;';
}

.googlemap {
    position: relative;
    padding-bottom: 62.5%;
    height: 0;
    overflow: hidden;
}
.googlemap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/*　contact
------------------------------------------------------------------*/
.required {
    font-family: "Rounded Mplus 1c";
    font-weight: bold;
    display: inline-block;
    font-size: 14px;
    background-color: #cc0000;
    border-radius: 5px;
    line-height: 1;
    padding: 5px 7px;
    text-align: center;
    text-align: center;
    color: #fff;
    transform: rotate(0.05deg); /*フォントのジャギり対策*/
}

th .required{
    float: right;
}
th .required::after{
    display: block;
    content: "";
    clear: both;
}
.form-xs{
    width: 100px;
}
.form-s {
    width: 200px;
}
.form-m {
    width: 300px;
}
.form-l {
    width: 100%;
}
.form-h {
    width: 100%;
    height: 150px;
}
@media screen and (max-width: 767px) {
    .form-xs, .form-s, .form-m, .form-l, .form100 {
      width: 100%;
    }
    .form-h {
      width: 100%;
      height: 100px;
    }
}

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
select,
textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  line-height: normal;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border: 1px solid #fff;
  -webkit-box-shadow: 0 0 5px 0 #9cb4f8;
          box-shadow: 0 0 5px 0 #9cb4f8;
}
label:hover,
select:hover {
  cursor: pointer;
}
.select-box {
  position: relative;
  display: inline-block;
}
.select-box::before {
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #021401;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .select-box {
    display: block;
  }
}

.inputfile-box {
  margin-bottom: 15px;
}

::-webkit-input-placeholder {
  color: #aaa;
  opacity: 1;
}

:-moz-placeholder {
  color: #aaa;
}

::-moz-placeholder {
  color: #aaaaaa;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #aaa;
}

.radio-list label,
.checkbox-list label {
    display: inline-block;
    margin-right: 15px;
  }
.radio-list label input,
.checkbox-list label input {
    display: inline-block;
    margin-right: 5px;
  }

.policy {
  height: 300px;
  overflow-y: scroll;
  padding: 15px;
  border: 1px solid #e0e9f7;
  background: #fff;
  margin-bottom: 50px;
}