@charset "UTF-8";
/*--レスポンシブ--*/
/*--呼び出し例

@include mq("sp") {
  color: yellow;
}

@include mq("tab") {
  color: red;
}

--*/
/*--定義--*/
/*----共通部分----*/
html {
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #000;
  width: 100%;
  font-size: 0.9rem;
  background-color: white;
  margin: 0 auto;
}

.wrapper {
  margin: 0 10%;
}
@media screen and (max-width: 500px) {
  .wrapper {
    margin: 0 5%;
  }
}

/*---その他の設定---*/
/*--header--*/
header {
  background-color: white;
}
@media screen and (max-width: 500px) {
  header {
    position: sticky;
    top: 0;
    z-index: 1;
  }
}

#header {
  display: flex;
  justify-content: space-between;
  margin: 0.7% 4%;
}

@media screen and (max-width: 500px) {
  .header_left_pc {
    display: none;
  }
}
.header_left_pc a img {
  height: 50px;
}
@media screen and (max-width: 900px) {
  .header_left_pc a img {
    height: 40px;
  }
}

.header_left_sp {
  display: none;
}
@media screen and (max-width: 500px) {
  .header_left_sp {
    display: block;
  }
}
.header_left_sp a img {
  height: 50px;
}

.header_right_pc {
  display: flex;
}
@media screen and (max-width: 900px) {
  .header_right_pc {
    display: none;
  }
}
.header_right_pc img {
  height: 50px;
  margin-left: 3%;
}

.header_right_tab {
  display: none;
}
@media screen and (max-width: 900px) {
  .header_right_tab {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}
.header_right_tab img {
  height: 40px;
  margin-left: 3%;
}
.header_right_tab .tab_btn {
  height: 40px;
}

/*--top--*/
#top-pc {
  background-image: url(./img/TOPimg.jpg);
  background-size: cover;
  text-align: center;
}
@media screen and (max-width: 500px) {
  #top-pc {
    display: none;
  }
}
#top-pc img {
  width: 85%;
  margin: 5% auto;
}

#top-sp {
  display: none;
}
@media screen and (max-width: 500px) {
  #top-sp {
    display: block;
    text-align: center;
  }
}
#top-sp img {
  width: 100%;
  vertical-align: top;
}

/*--award--*/
#award {
  width: 100%;
  background-image: url(./img/curtain.jpg);
}
@media screen and (max-width: 500px) {
  #award {
    background-size: cover;
    padding-bottom: 5%;
  }
}
#award .wrapper .crown {
  display: flex;
  justify-content: space-between;
  padding: 8% 0 4%;
}
@media screen and (max-width: 500px) {
  #award .wrapper .crown {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
#award .wrapper .crown img {
  width: 30%;
}
@media screen and (max-width: 500px) {
  #award .wrapper .crown img {
    width: 80%;
    margin: 5% auto;
  }
}
#award .wrapper .info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 7%;
}
@media screen and (max-width: 500px) {
  #award .wrapper .info {
    display: block;
    text-align: center;
  }
}
#award .wrapper .info .left {
  padding-bottom: 3%;
}
@media screen and (max-width: 500px) {
  #award .wrapper .info .left {
    padding: 0;
  }
}
#award .wrapper .info .left img {
  width: 35%;
}
@media screen and (max-width: 500px) {
  #award .wrapper .info .left img {
    width: 30%;
    margin-right: 50%;
  }
}
#award .wrapper .info .left img:last-child {
  width: 90%;
  margin-right: 0;
}
#award .wrapper .info .right {
  width: 100%;
}
#award .wrapper .info .right a img {
  width: 90%;
}
@media screen and (max-width: 500px) {
  #award .wrapper .info .right a img {
    margin-top: 3%;
  }
}

/*--rain--*/
@media screen and (max-width: 500px) {
  #rain-pc {
    display: none;
  }
}
#rain-pc h2 img {
  width: 100%;
  display: block;
}

#rain-sp {
  display: none;
}
@media screen and (max-width: 500px) {
  #rain-sp {
    width: 100%;
    display: block;
  }
}
#rain-sp h2 img {
  width: 100%;
  vertical-align: bottom;
}

/*--kaiketsu--*/
#kaiketsu-pc {
  background-color: #FFFEDB;
}
@media screen and (max-width: 500px) {
  #kaiketsu-pc {
    display: none;
  }
}
#kaiketsu-pc h2 img {
  width: 100%;
  padding: 5% 0 7%;
  display: block;
}

#kaiketsu-sp {
  display: none;
}
@media screen and (max-width: 500px) {
  #kaiketsu-sp {
    display: block;
  }
}
#kaiketsu-sp img {
  width: 100%;
  vertical-align: bottom;
}

/*--policy--*/
#policy {
  background-color: #007400;
  padding-bottom: 30%;
}
@media screen and (max-width: 900px) {
  #policy {
    padding-bottom: 45%;
  }
}
#policy .wrapper h2 {
  text-align: center;
  padding: 5% 0 0;
}
#policy .wrapper h2 img {
  width: 100%;
}
#policy .wrapper ul li {
  display: flex;
  list-style: none;
  background-color: white;
  margin-bottom: 10%;
}
@media screen and (max-width: 900px) {
  #policy .wrapper ul li {
    display: block;
  }
}
#policy .wrapper ul li .item {
  width: 15%;
}
@media screen and (max-width: 900px) {
  #policy .wrapper ul li .item {
    width: 30%;
  }
}
#policy .wrapper ul li .item img {
  width: 95%;
  height: auto;
  padding: 0 5%;
}
#policy .wrapper ul li .text-area {
  width: 60%;
  padding: 3%;
}
@media screen and (max-width: 900px) {
  #policy .wrapper ul li .text-area {
    width: 100%;
  }
}
#policy .wrapper ul li .text-area h3 {
  padding: 2% 0 5%;
  font-size: 1.8rem;
  font-weight: 900;
  color: #007400;
}
@media screen and (max-width: 900px) {
  #policy .wrapper ul li .text-area h3 {
    font-size: 5vw;
  }
}
#policy .wrapper ul li .text-area p {
  line-height: 200%;
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 3%;
}
@media screen and (max-width: 900px) {
  #policy .wrapper ul li .text-area p {
    font-size: 2.8vw;
  }
}
#policy .wrapper ul li .text-area p span {
  color: #007400;
}
#policy .wrapper ul li img {
  width: 25%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 900px) {
  #policy .wrapper ul li img {
    width: 100%;
    height: 200px;
    vertical-align: top;
  }
}

/*--plan--*/
#plan {
  background-color: #EDFFEB;
  position: relative;
  padding-top: 25%;
  height: auto;
}
@media screen and (max-width: 900px) {
  #plan {
    padding-top: 305%;
  }
}
#plan .wrapper {
  padding: 3% 0;
}
#plan .wrapper .plan-up {
  position: absolute;
  bottom: 35%;
  left: 10%;
  width: 80%;
}
@media screen and (max-width: 900px) {
  #plan .wrapper .plan-up {
    top: -15%;
  }
}
#plan .wrapper .plan-up .title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 5% 0;
}
#plan .wrapper .plan-up .title img {
  width: 7%;
  height: 7%;
  padding-bottom: 2%;
}
#plan .wrapper .plan-up .title h2 {
  text-align: center;
  width: 80%;
  font-size: 3vw;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  #plan .wrapper .plan-up .title h2 {
    font-size: 4.5vw;
  }
}
#plan .wrapper .plan-up .title h2 span {
  font-size: 5.5vw;
}
@media screen and (max-width: 900px) {
  #plan .wrapper .plan-up .title h2 span {
    font-size: 7vw;
  }
}
#plan .wrapper .plan-up .title h2 .tab {
  display: none;
}
@media screen and (max-width: 900px) {
  #plan .wrapper .plan-up .title h2 .tab {
    display: block;
  }
}
#plan .wrapper .plan-up .title h2 .yellow {
  color: #FED938;
}
#plan .wrapper .plans {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 900px) {
  #plan .wrapper .plans {
    display: block;
  }
}
#plan .wrapper .plans h3 {
  width: 30%;
}
@media screen and (max-width: 900px) {
  #plan .wrapper .plans h3 {
    width: 80%;
    margin: 5% auto;
  }
}
#plan .wrapper .plans h3 img {
  width: 100%;
}
#plan .wrapper .small-title {
  background-color: #007400;
  border-radius: 10px;
  margin: 5% 0;
  padding: 2%;
}
#plan .wrapper .small-title p {
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}

/*--example-*/
#example {
  margin-bottom: 10%;
}
#example .wrapper h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #007400;
  text-align: center;
  margin: 5% auto;
}
#example .wrapper .example-list .small-title {
  background-color: #007400;
  border-radius: 10px;
  margin: 5% 0 2%;
  padding: 2%;
}
#example .wrapper .example-list .small-title p {
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}
#example .wrapper .example-list ul {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  #example .wrapper .example-list ul {
    align-items: center;
    justify-content: space-between;
  }
}
#example .wrapper .example-list ul li {
  list-style: none;
  width: 30%;
  margin-right: 3%;
  margin-top: 2%;
}
@media screen and (max-width: 900px) {
  #example .wrapper .example-list ul li {
    width: 45%;
    margin: 8% 0 0 0;
  }
}
#example .wrapper .example-list ul li img {
  width: 100%;
}

/*--voice-*/
#voice {
  background-image: url(./img/back_voice.jpg);
  background-size: cover;
  padding-bottom: 5%;
}
@media screen and (max-width: 900px) {
  #voice {
    background-image: none;
    background-color: #007400;
    padding-bottom: 0;
  }
}
#voice h2 {
  color: white;
  font-size: 5vw;
  font-weight: bold;
  text-align: center;
  padding: 2.2% 0;
}
#voice h2 span {
  font-size: 3.5vw;
}
@media screen and (max-width: 900px) {
  #voice .wrapper {
    background-image: url(./img/curtain.jpg);
    background-size: cover;
    height: 100%;
    padding-bottom: 10%;
    margin: 0;
  }
}
#voice .wrapper img {
  width: 35%;
}
#voice .wrapper .over {
  text-align: center;
  padding: 8.5% 0 2%;
}
#voice .wrapper .over img {
  width: 70%;
}
#voice .wrapper p {
  color: white;
  font-weight: bold;
  font-size: 2vw;
  text-align: center;
  margin: 3% 0;
}
#voice .wrapper .voice-1 {
  text-align: center;
}
#voice .wrapper .voice-1 img {
  margin: 2% 0 0;
  width: 40%;
}
@media screen and (max-width: 900px) {
  #voice .wrapper .voice-1 img {
    width: 60%;
  }
}
@media screen and (max-width: 500px) {
  #voice .wrapper .voice-1 img {
    width: 80%;
  }
}
#voice .wrapper .voice2-3 {
  text-align: center;
}
#voice .wrapper .voice2-3 img {
  margin: 2%;
  width: 40%;
}
@media screen and (max-width: 900px) {
  #voice .wrapper .voice2-3 img {
    display: block;
    margin: 4% auto 0;
    width: 60%;
  }
}
@media screen and (max-width: 500px) {
  #voice .wrapper .voice2-3 img {
    width: 80%;
  }
}

/*--flow-*/
#flow {
  background-image: url(./img/back_flow.jpg);
  background-size: cover;
}
#flow h2 {
  color: #007400;
  font-size: 4vw;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px white, -1px -1px 0 white, -1px 1px 0 white, 1px -1px 0 white, 1px 0 0 white, -1px 0 0 white, 0 1px 0 white, 0 -1px 0 white;
  padding: 3% 0 5%;
}
@media screen and (max-width: 500px) {
  #flow h2 {
    font-size: 5.5vw;
  }
}
#flow .wrapper {
  padding-bottom: 5%;
}
#flow .wrapper .step {
  display: flex;
  background-color: white;
  width: 100%;
}
#flow .wrapper .step .step-bg {
  width: 10%;
  background-color: #007400;
  text-align: center;
  padding: 3% 1%;
}
#flow .wrapper .step .step-bg img {
  width: 100%;
}
#flow .wrapper .step p {
  width: 90%;
  padding: 3.8% 5% 3%;
  font-size: 1.1rem;
  font-weight: bold;
}
@media screen and (max-width: 500px) {
  #flow .wrapper .step p {
    font-size: 2.7vw;
  }
}
#flow .wrapper .triangle {
  width: 0;
  height: 0;
  margin: 0.8% auto;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 20px solid #007400;
}
@media screen and (max-width: 500px) {
  #flow .wrapper .triangle {
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid #007400;
  }
}

/*--price-*/
#price {
  background-color: #FFFEDB;
  padding-bottom: 5%;
}
#price .small-title {
  background-color: #007400;
  border-radius: 10px;
  margin: 5% 0 2%;
  padding: 2%;
}
#price .small-title p {
  color: white;
  font-size: 2.2vw;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #price .small-title p {
    font-size: 3vw;
  }
}
@media screen and (max-width: 500px) {
  #price .small-title p {
    font-size: 3.5vw;
  }
}
#price h3 {
  color: #007400;
  font-size: 3.5vw;
  font-weight: bold;
  text-align: center;
  padding: 2% 0 1%;
}
#price p {
  text-align: center;
  font-weight: bold;
  font-size: 2vw;
}
#price .priceTitle {
  background-color: #007400;
}
#price .priceTitle h2 {
  color: white;
  font-size: 4.5vw;
  font-weight: bold;
  text-align: center;
  padding: 2.5% 0 2.7%;
}
@media screen and (max-width: 500px) {
  #price .priceTitle h2 {
    font-size: 5.5vw;
  }
}
#price .triangle-bg .triangle {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 30px solid #007400;
}
@media screen and (max-width: 900px) {
  #price .triangle-bg .triangle {
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 20px solid #007400;
  }
}
@media screen and (max-width: 500px) {
  #price .triangle-bg .triangle {
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid #007400;
  }
}
#price .another {
  padding: 0 5%;
}
#price .another .another-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5% 0;
}
@media screen and (max-width: 900px) {
  #price .another .another-step {
    flex-wrap: wrap;
  }
}
#price .another .another-step .triangle {
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-left: 30px solid #FED938;
  border-bottom: 25px solid transparent;
}
@media screen and (max-width: 900px) {
  #price .another .another-step .triangle {
    border-top: 15px solid transparent;
    border-left: 20px solid #FED938;
    border-bottom: 15px solid transparent;
  }
}
@media screen and (max-width: 500px) {
  #price .another .another-step .triangle {
    border-top: 10px solid transparent;
    border-left: 15px solid #FED938;
    border-bottom: 10px solid transparent;
  }
}
#price .another .another-step img {
  width: 20%;
}
@media screen and (max-width: 900px) {
  #price .another .another-step img {
    width: 40%;
    margin-bottom: 10%;
  }
}
@media screen and (max-width: 900px) {
  #price .another .another-step img:last-child {
    margin-right: 20px;
  }
}
#price .goldHome {
  padding: 0 5%;
}
#price .goldHome .goldHome-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5% 0;
}
@media screen and (max-width: 900px) {
  #price .goldHome .goldHome-step {
    flex-wrap: wrap;
  }
}
#price .goldHome .goldHome-step .triangle {
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-left: 30px solid #FED938;
  border-bottom: 25px solid transparent;
}
@media screen and (max-width: 900px) {
  #price .goldHome .goldHome-step .triangle {
    border-top: 15px solid transparent;
    border-left: 20px solid #FED938;
    border-bottom: 15px solid transparent;
  }
}
@media screen and (max-width: 500px) {
  #price .goldHome .goldHome-step .triangle {
    border-top: 10px solid transparent;
    border-left: 15px solid #FED938;
    border-bottom: 10px solid transparent;
  }
}
#price .goldHome .goldHome-step img {
  width: 20%;
}
@media screen and (max-width: 900px) {
  #price .goldHome .goldHome-step img {
    width: 40%;
    margin-bottom: 10%;
  }
}

/*--contact-*/
#contact {
  background-image: url(./img/back_flow.jpg);
  background-size: cover;
  padding-bottom: 3%;
}
#contact .contactTitle {
  background-color: #007400;
  background-size: cover;
}
#contact .contactTitle h2 {
  color: white;
  font-size: 4vw;
  font-weight: bold;
  text-align: center;
  padding: 2.5% 0 2.7%;
}
@media screen and (max-width: 500px) {
  #contact .contactTitle h2 {
    font-size: 5.5vw;
    margin: 0 5%;
  }
}
#contact .wrapper {
  /*-form-*/
}
#contact .wrapper .bg-img {
  background-color: #EDFFEB;
}
#contact .wrapper .bg-img .area {
  display: flex;
  padding: 8% 8% 5% 5%;
  margin-bottom: 2%;
}
#contact .wrapper .bg-img .area .left {
  width: 60%;
}
#contact .wrapper .bg-img .area .left h3 {
  position: relative;
  color: #007400;
  font-size: 3vw;
  font-weight: bold;
}
#contact .wrapper .bg-img .area .left h3::after {
  content: "";
  width: 50px;
  height: 3px;
  display: inline-block;
  background-color: #FED938;
  position: absolute;
  bottom: -10px;
  left: 0;
}
#contact .wrapper .bg-img .area .left p {
  margin: 15% 0 10%;
  font-size: 1.8vw;
  font-weight: bold;
  line-height: 300%;
}
#contact .wrapper .bg-img .area .right {
  width: 40%;
}
#contact .wrapper .bg-img .area .right img {
  width: 100%;
}
#contact .wrapper .form {
  background-color: white;
  margin-bottom: 5%;
  font-weight: bold;
  height: auto;
}
#contact .wrapper .form .title {
  background-color: #007400;
  padding: 1.2% 0;
}
#contact .wrapper .form .title h3 {
  color: white;
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 500px) {
  #contact .wrapper .form .title h3 {
    font-size: 4vw;
  }
}
#contact .wrapper .form .send {
  background: url(./img/inputButton.png);
  background-size: contain;
  background-repeat: no-repeat;
}
#contact .wrapper .form .container {
  padding: 5% 5% 0;
}
#contact .wrapper .form .container .column.is-half {
  width: 100%;
}
#contact .wrapper .form .container .column.is-half .form-element {
  display: flex;
  margin-top: -1px;
}
@media screen and (max-width: 500px) {
  #contact .wrapper .form .container .column.is-half .form-element {
    display: block;
  }
}
#contact .wrapper .form .container .column.is-half .form-element label {
  background-color: #F8F8F8;
  width: 200px;
  height: 75px;
  padding: 3.4% 0;
  text-align: left;
  border: solid thin #AAA9A9;
  margin-right: -1px;
  display: flex;
  font-size: 90%;
}
@media screen and (max-width: 500px) {
  #contact .wrapper .form .container .column.is-half .form-element label {
    width: 100%;
    height: 10%;
  }
}
#contact .wrapper .form .container .column.is-half .form-element label span {
  font-size: 85%;
}
#contact .wrapper .form .container .column.is-half .form-element label .must {
  background-color: #FED938;
  padding: 2px 10px;
  margin: 0 5% 0 9%;
  width: 45px;
  height: 20px;
  text-align: center;
  border-radius: 10px;
}
#contact .wrapper .form .container .column.is-half .form-element label .must p {
  color: white;
  font-size: 80%;
  font-weight: bold;
}
#contact .wrapper .form .container .column.is-half .form-element label .must-not {
  background-color: #9A9A9A;
  padding: 2px 10px;
  margin: 0 5% 0 9%;
  width: 45px;
  height: 20px;
  text-align: center;
  border-radius: 10px;
}
#contact .wrapper .form .container .column.is-half .form-element label .must-not p {
  color: white;
  font-size: 80%;
  font-weight: bold;
}
#contact .wrapper .form .container .column.is-half #label2 {
  width: 200px;
  height: 200px;
  display: flex;
}
@media screen and (max-width: 500px) {
  #contact .wrapper .form .container .column.is-half #label2 {
    width: 100%;
    height: 10%;
  }
}
#contact .wrapper .form .container .column.is-half #label2 .must {
  background-color: #FED938;
  padding: 2px 10px;
  margin: 0 5% 0 9%;
  border-radius: 10px;
}
#contact .wrapper .form .container .column.is-half #label2 .must p {
  color: white;
  font-size: 80%;
  font-weight: bold;
}
#contact .wrapper .form .container .column.is-half .input-bg2 {
  width: 80%;
  height: 200px;
  padding: 2.2% 0;
  text-align: center;
  border: solid thin #AAA9A9;
}
@media screen and (max-width: 500px) {
  #contact .wrapper .form .container .column.is-half .input-bg2 {
    width: 100%;
    margin: -1px 0;
  }
}
#contact .wrapper .form .container .column.is-half .input-bg2 textarea {
  width: 90%;
  height: 150px;
  border: solid thin #AAA9A9;
  padding: 2%;
}
@media screen and (max-width: 500px) {
  #contact .wrapper .form .container .column.is-half .input-bg2 textarea {
    width: 90%;
    height: 100%;
  }
}
#contact .wrapper .form .container .column.is-half .input-bg {
  width: 80%;
  height: 75px;
  padding: 2.2% 0;
  text-align: center;
  border: solid thin #AAA9A9;
}
@media screen and (max-width: 500px) {
  #contact .wrapper .form .container .column.is-half .input-bg {
    width: 100%;
    margin: -1px 0;
  }
}
#contact .wrapper .form .container .column.is-half .input-bg input {
  border: solid thin #AAA9A9;
  width: 90%;
  height: 100%;
  padding: 2%;
}
#contact .wrapper .form .container .column.is-half .input-bg input::-moz-placeholder {
  font-weight: 300;
  font-size: 12px;
}
#contact .wrapper .form .container .column.is-half .input-bg input::placeholder {
  font-weight: 300;
  font-size: 12px;
}
#contact .wrapper .form .container .column.is-half .submit {
  margin-top: 2%;
  text-align: center;
}
#contact .wrapper .form .container .column.is-half .submit .submit_btn {
  border: 0px;
  width: 30vw;
  height: 120px;
  background: url(./img/inputButton.png) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  #contact .wrapper .form .container .column.is-half .submit .submit_btn {
    width: 40vw;
  }
}
@media screen and (max-width: 500px) {
  #contact .wrapper .form .container .column.is-half .submit .submit_btn {
    width: 50vw;
  }
}

/*--sideMenu-*/
#sideMenu {
  padding-bottom: 5px;
  text-align: right;
  position: fixed;
  /*bottom: 0;*/top: 150px;
  right: 0;
  display: block;
}

#sideMenu a:hover img{
opacity:0.7;
filter:alpha(opacity=70);
-ms-filter: "alpha( opacity=70 )";
}
@media screen and (max-width : 768px){
  #sideMenu {
    top: 0px;
  }
}
@media screen and (max-width: 768px) {
  #sideMenu {
    display: none !important;
  }
}

#sideMenu .sns a img {
  display: block;
  margin-bottom: 2px;
  margin-right: 0;
  margin-left: auto;
}

/*--footer-*/
footer {
  color: white;
  background-color: #302518;
  text-align: center;
  padding: 1% 0;
}/*# sourceMappingURL=style.css.map */

@media screen and (max-width : 768px){
footer {
		padding-bottom: 20%;
}
}

@media screen and (max-width : 640px){
footer {
		padding-bottom: 40%;
}
}
@media screen and (max-width : 480px){
footer {
		padding-bottom: 50%;
}
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.banner_div_pc { display: block !important; }
.banner_div_sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 640px) {
.banner_div_pc { display: none !important; }
.banner_div_sp { display: block !important; }
}
.items-footer_area {
	display: -webkit-flex;
  display: flex;
  box-sizing: border-box;
    width: 100%;
	margin:0 auto;
  }	 
.item-justify-content-sb {
  justify-content: space-between;
}
/*768px～PC　PC上では見えないようにする*/
@media screen and (min-width:768px){
	.footer_area{
		display: none;
}	
}
	.footer_area a:hover img{
opacity:0.7;
filter:alpha(opacity=70);
-ms-filter: "alpha( opacity=70 )";
}
/*スマホ～768pxの幅サイズまで*/
@media screen and (max-width:768px){
.footer_area {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba( 255, 255, 255, 0.6 );/*( 0, 0, 0, 0.8 )*/
	z-index: 10000;
}
.footer_area .footer_area_inner {
    position: relative;
    width: 90%;/*80%*/
    margin: 0px auto;
    padding: 10px 0;
	margin-right: 0px;
}
.footer_area .footer_area_inner .footer_area_inner_btn {
    width: 95%;/*85%*/
    padding: 11px 0;
    font-size: 20px;
    font-weight: bold;
    margin-left: 15px;
	line-height: 1.3;
    
}
.footer_area_inner img {
    width: 95%;/*85%*/
}
.inquiry_btn {
    background-color: #12a73b;/*068BF1*/
    -webkit-border-radius: 3px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
	width: 90%;/*80%*/
    padding: 5px 0;
    font-size: 18px;
    font-weight: bold;
}
.footer_area_inner a:hover  {
    text-decoration: none;background-color: rgba( 18, 167, 59, 0.6 );color: #333;
}
.inquiry_btn:link, .inquiry_btn:visited {
    color: #FFFFFF !important;
}
.footer_area_inner span{
	color: #fff;
}
#siteBottom{
	margin-bottom: 85px;
}

/* 20210928 二つ並べる */
.inquiry_btn_1 {
    background-color: #12a73b;/*068BF1*/
    display: inline-block;
    text-align: center;
    text-decoration: none;
	width: 100%;/*80%*/
    padding:10px;
    font-size: 18px;
    font-weight: bold;
}
.inquiry_btn_1 img {
	width: 100%;
}
.inquiry_btn_1 a {
    color: #fff;text-decoration: none;
}

.inquiry_btn_2 {
    background-color: #de561a;/*068BF1*/
    display: inline-block;
    text-align: center;
    text-decoration: none;
	width: 100%;/*80%*/
    padding: 10px ;
    font-size: 18px;
    font-weight: bold;line-height: 1.5;
}
.inquiry_btn_2 img {
	width: 100%;
}
.inquiry_btn_2 a {
    color: #fff;text-decoration: none;
}
/*.inquiry_btn_2 a:hover  {
    color: #333;
}*/

/* 20211101 さらに下に追加 */
.inquiry_btn_bottom {
    background-color: #fff;/*068BF1*/
    display: block;
    text-align: center;
    text-decoration: none;
	width: 100%;/*80%*/
    padding: 4px 4px 10px  ;
    font-size: 85%;
    font-weight: bold;line-height: 1.1;
}



.inquiry_btn_bottom_header {
    background-color: #fff;/*068BF1*/
    display: block;
    text-align: center;
    text-decoration: none;
	width: 100%;/*80%*/
    padding: 4px 4px 4px  ;
    font-size: 85%;
    font-weight: bold;line-height: 1.1;
}
}

.inquiry_btn_bottom_fix {
    background-color: #fff;/*068BF1*/
    display: block;
    text-align: left;
    text-decoration: none;
	width: 100%;/*80%*/
    padding: 5px ;
    font-size: 1em;
    font-weight: bold;line-height: 1.5;margin: 0px 1px 0px 0px;

	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
