@charset "UTF-8";
@font-face {
  /*フォントの名前*/
  font-family: "fontM";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("./font/fontM.woff2") format("woff2"), url("./font/fontM.woff") format("woff");
}

.mamelonClass {
  font-family: "fontM";
}

/*-----------
　全体の設定　
---------------*/
html {
  text-align: center;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  font-size: 14px;
  line-height: 150%;
  font-family: "fontM";
}

header > div {
  max-width: 768px;
  /*最大1000pxで自動伸縮*/
  margin: 0 auto;
}

main #flow > div, main #q_a > div {
  max-width: 768px;
  /*最大1000pxで自動伸縮*/
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  header > div {
    width: 950px;
    max-width: 1000px;
  }
  main #flow > div, main #q_a > div {
    width: 768px;
    max-width: 1000px;
  }
}

/*-----------
    header
-----------*/
header {
  position: fixed;
  z-index: 1;
  background-color: #fff;
  width: 100%;
  height: 66px;
  padding: 2px 0 8px 4%;
  /*;親要素の幅に合わせて指定比率で伸縮*/
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

header > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header h1 {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 180px;
  margin-top: 4px;
}

/* .fixed{
    position: fixed;
    top: 0;
    left: 0;
} */
/*------------------------------

    ここから下がハンバーガーメニュー
    に関するCSS

------------------------------*/
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  width: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 100;
  /* 重なり順を一番上に */
  cursor: pointer;
}

.drawer-open span {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #1DABE3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
}

.drawer-open span:before, .drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #1DABE3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
}

.drawer-open span:before {
  bottom: 8px;
}

.drawer-open span:after {
  top: 8px;
}

/* ハンバーガーメニューのアイコン */
/* 三本線のうち一番上の棒の位置調整 */
/* 三本線のうち一番下の棒の位置調整 */
/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
/* メニューのデザイン*/
.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  -webkit-transition: .5s;
  transition: .5s;
  padding-top: 70px;
  font-size: 18px;
  line-height: 300%;
}

.drawer-list {
  border-top: 1px solid #ddd;
}

.drawer-item {
  border-bottom: 1px solid #ddd;
}

.drawer-content a {
  display: block;
  color: #1DABE3;
  text-decoration: none;
}

.drawer-content a:visited {
  display: block;
  color: #1DABE3;
  text-decoration: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0;
  /* メニューを画面に入れる */
}

.header_container {
  position: relative;
}

.forrow {
    position: fixed;
    bottom: 0px;
    right: 0px;
    left: 0;
    margin: auto;

  /* position: absolute;
  top: 70px;
  right: 0; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* max-width: 768px; */
max-width: 330px;
  /*最大1000pxで自動伸縮*/
  /* margin: 0 4% 0 auto; */
  /* padding-right: 2%; */
}

/* .forrow p {
  width: 49%;
} */

.forrow img {
  max-height: 70px;
}

@media screen and (min-width: 767px) {
  .banner {
    position: absolute;
    top: 8px;
    right: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 70%;
    /* margin: 0 4% 0 auto; */
    /* padding-right: 2%; */
    /* background-color: palegreen; */
  }
  .banner p {
    width: 49%;
    margin-left: 5px;
  }
  .banner img {
    max-height: 60px;
  }
}

/*-----------
    Main
-----------*/
/* メインイメージ */
main {
  padding-top: 66px;
  background-color: #1DABE3;
}

main .main_cover {
  /* height: 663px; */
  /* margin-top: 10%; */
  /* max-height: 663px; */
  /* border-radius:0 0 50% 50%; */
  /* border-radius:0 0 50% 50% /0 0 30% 30% ; */
  background: url(images/sp_main_image_1130.png) top center no-repeat;
  background-size: cover;
}

main .main_cover_txt {
  position: relative;
  max-width: 768px;
  margin: 0 auto;
}

main .main_cover_txt p.copy {
  max-width: 768px;
  margin: 0 auto;
  text-align: left;
}

main .main_cover_txt p.copy img {
  margin-top: 150px;
  width: 260px;
  margin-left: 4%;
}

main .main_cover_txt p.newopen {
  position: absolute;
  top: 220px;
  right: 10px;
  max-width: 768px;
  text-align: right;
}

main .main_cover_txt p.newopen img {
  width: 180px;
  padding-bottom: 100px;
}

main #about {
  max-width: 768px;
  /*最大1000pxで自動伸縮*/
  margin: 0 auto;
  background-color: #1DABE3;
  color: #fff;
  padding-bottom: 20px;
}

main #about .intro {
  max-width: 768px;
  margin: 50px 4% 0 4%;
}

main #about .intro h2 {
  margin: 60px auto 0 auto;
}

main #about .intro p {
  line-height: 180%;
  margin-top: 20px;
}

main #about .post p {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

main #about .post section {
  position: relative;
  background-color: #fff;
  color: gray;
  border-radius: 30px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin: 30px auto 60px auto;
  padding: 50px 16px 30px;
  /* font-family: "M PLUS Rounded 1c";  */
}

main #about .post section .post_mark {
  position: absolute;
  top: 38px;
  left: -21px;
  height: 60px;
  height: 60px;
  margin: auto;
}

main #about .post h3, main #about .post h4 {
  text-align: center;
}

main #about .post section h3 {
  width: 100%;
  margin: 0 auto 20px auto;
}

main #about .post section h4 {
  background-color: #e0ffff;
  border: 3px solid #1DABE3;
  border-radius: 10px;
  width: 100%;
  margin: 10px auto;
  padding: 5px 0;
  font-size: 16px;
  color: #534741;
}

main #about .post section p.program {
  text-align: justify;
  padding-left: 1em;
  text-indent: -1em;
}

main #about .about_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main #about .about_icon img {
  width: 80%;
}

main #about h2 img {
  margin: 0 auto 20px;
}

main #point {
  background-color: #fff5e9;
  position: relative;
  padding: 80px 0;
}

main #point::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 30px;
  background-image: url(images/point_border.png);
  background-position: center;
}

main #point h2 {
  width: 260px;
  margin: 0 auto 50px;
}

main section h2 span {
  position: relative;
  display: inline-block;
  font-family: 'Itim', cursive;
  color: #1DABE3;
  margin-bottom: 1em;
  margin-bottom: 30px;
}

main section h2 span:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 40px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: yellow;
  border-radius: 2px;
}

main ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
  margin: auto;
  background-position: center center;
  background-repeat: no-repeat;
}

main ul li .point_img {
  width: 48%;
}

main ul li .point_img img {
  width: 100%;
}

@media screen and (min-width: 769px) {
  main #point {
    position: relative;
    padding: 80px 0;
  }
  main #point h3 {
    font-size: 37px;
    line-height: 4rem;
    margin-bottom: 20px;
  }
  main #point p {
    font-size: 18px;
    line-height: 2.4rem;
  }
  main #point .inr {
    position: relative;
    margin: auto;
    height: 100%;
    width: 1000px;
  }
  main #point li:nth-child(1) {
    background-image: url(./images/pointbg_01.png);
    height: 521px;
    top: 20px;
  }
  main #point li:nth-child(1) .point_txt {
    top: 60px;
    padding-left: 30px;
  }
  main #point li:nth-child(2) {
    background-image: url(./images/pointbg_02.png);
    height: 521px;
  }
  main #point li:nth-child(2) .point_txt {
    top: 60px;
    padding-right: 30px;
  }
  main #point li:nth-child(3) {
    background-image: url(./images/pointbg_03.png);
    height: 521px;
  }
  main #point li:nth-child(3) .point_txt {
    top: 80px;
    padding-left: 30px;
  }
  main #point li:nth-child(4) {
    background-image: url(./images/pointbg_04.png);
    height: 521px;
  }
  main #point li:nth-child(4) .point_txt {
    left: 0;
    top: 60px;
    padding-right: 30px;
  }
  main #point li:nth-child(2),
  main #point li:nth-child(4) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  main #point li:nth-child(2) .point_txt,
  main #point li:nth-child(4) .point_txt {
    left: 0;
  }
  main #point .point_txt {
    position: absolute;
    right: 0;
    top: 40px;
    width: 48%;
  }
  main #point .point_txt h3 span {
    color: #fff;
    background-color: #1DABE3;
    padding: 0.1em 1.2rem;
    line-height: 2.5rem;
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  main main ul li .inr {
    height: auto;
    width: auto;
  }
  main #point {
    padding: 80px 0 0;
  }
  main #point ul li {
    display: block;
  }
  main #point ul li .point_img {
    width: 100%;
  }
  main #point ul li .point_txt {
    font-size: 4vw;
    margin: initial;
    padding: 2% 6% 4%;
    max-width: initial;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  main .main_cover_txt p.copy img {
    width: 480px;
  }
}

@media screen and (min-width: 768px) {
  main .main_cover {
    height: 663px;
    /* height: 450px;
      max-height: 600px; */
    background-position: center -50px;
    background: url(images/main_image_1130.png) top center no-repeat;
  }
  main .main_cover_txt p.copy img {
    margin-top: 200px;
  }
  main .main_cover_txt p.newopen {
    top: 300px;
  }
}

@media screen and (min-width: 1000px) {
  main .main_cover {
    /* height: 500px; */
    height: 663px;
    max-height: 700px;
    /* background-position: center -100px; */
  }
  main .main_cover_txt p.copy img {
    margin-top: 250px;
  }
  main .main_cover_txt p.newopen {
    top: 370px;
  }
}

/*-----------
    About
-----------*/
.rowbox .rowbox_l {
  margin-top: 40px;
}

.rowbox .rowbox_r {
  font-family: "fontM";
}

.rowbox .rowbox_r p {
  color: #000000;
  text-align: left;
  font-family: "fontM" !important;
}

.rowbox .rowbox_r ul {
  margin-top: 30px;
}

.rowbox .rowbox_r ul li {
  color: #000000;
  padding-left: 1em;
  text-indent: -1em;
}

.rowbox div {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  /* background-color: palevioletred; */
}

@media screen and (min-width: 768px) {
  main #about {
    max-width: 1000px;
  }
  main #about .intro, main #about .post {
    max-width: 1000px;
  }
  main #about .intro section h3, main #about .post section h3 {
    text-align: left;
  }
  main #about .intro section h3, main #about .post section h3 {
    text-align: left;
    width: 73%;
    margin: 0 0 0 0;
  }
  .rowbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .rowbox .rowbox_l {
    width: 40%;
    margin-top: 40px;
  }
  .rowbox .rowbox_r {
    width: 50%;
    margin-left: 40px;
  }
  .rowbox .rowbox_r p {
    margin-top: 30px;
    font-size: 18px;
    text-align: left;
    line-height: 2.2rem;
  }
  .rowbox .rowbox_r ul {
    margin-top: 30px;
    font-size: 16px;
    line-height: 2.5rem;
  }
  .rowbox div {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    /* background-color: palevioletred; */
  }
}

@media screen and (max-width: 768px) {
  .rowbox .rowbox_l {
    width: 80%;
    margin: auto;
  }
  .post {
    margin: 50px 4% 0 4%;
  }
  main #about .post section .post_mark {
    top: -24px;
    right: 0;
    left: 0;
    width: 60%;
    height: auto;
  }
  main #about .post p {
    margin-top: 5%;
    font-size: 4vw;
    line-height: 1.7rem;
  }
  main #about .post ul {
    font-size: 3.5vw;
    line-height: 1.5rem;
  }
  main #about .post section h3 {
    margin: 5% auto 10%;
    width: 90%;
  }
  main #about .post section h3 .post_mark {
    top: -32px;
    right: 0;
    left: 0;
  }
}

/* intro */
/* post */
@media screen and (max-width: 768px) {
  main #about .about_icon {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  main #about .about_icon img {
    width: 90%;
  }
  main #about .about_icon li {
    width: 45%;
  }
  main #about .about_icon li:nth-child(1), main #about .about_icon li:nth-child(2) {
    margin-bottom: 5%;
  }
  main #about .about_icon li:nth-child(1), main #about .about_icon li:nth-child(3) {
    margin-right: 3%;
  }
  main #about h2 {
    margin-bottom: 5%;
  }
  main #about h2 img {
    width: 50%;
    margin: auto;
  }
}

/*-----------
    Point
-----------*/
/*-----------
    To contact
-----------*/
.to_contact {
  border-top: 3px dotted #ddd;
  border-bottom: 3px dotted #ddd;
  padding: 40px 20px 50px;
  background-color: #FFF;
  color: #777;
}

.to_contact p {
  font-size: 16px;
  margin-bottom: 10px;
}

.to_contact .to_contact_text::after {
  display: inline-block;
  content: "";
  width: 80px;
  height: 30px;
  background-image: url(images/flower.png);
  background-size: cover;
}

.to_contact .to_contact_tel {
  font-size: 13px;
}

.to_contact .to_contact_tel span {
  font-size: 23px;
  color: #1DABE3;
}

.to_contact .to_contact_mail {
  position: relative;
  border: 3px solid #1DABE3;
  border-radius: 14px;
  padding: 10px;
  color: #1DABE3;
}

.to_contact .to_contact_mail::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "";
  display: block;
  width: 50px;
  height: 34px;
  background: url(images/tocontact_arrow.png);
  background-size: cover;
}

a:link {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .to_contact .to_contact_tel {
    font-size: 16px;
  }
  .to_contact .to_contact_tel span {
    font-size: 26px;
    color: #1DABE3;
  }
  .to_contact .to_contact_mail {
    width: 500px;
    margin: 0 auto;
  }
}

/*-----------
    Flow
-----------*/
main #flow {
  padding: 80px 0 160px;
  background-color: #FFE4B9;
}

main #flow h2 {
  width: 260px;
  margin: 0 auto 20px;
}

main #flow section {
  position: relative;
  background-color: #FFF;
  border-radius: 30px;
  width: 94%;
  margin: 60px auto 0;
  padding: 20px;
}

main #flow section p.step {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 10px;
  width: 70px;
  height: 70px;
  background-color: #FFF;
  border-radius: 100%;
}

main #flow section p.step img {
  height: 100%;
}

main #flow section h3 {
  border-bottom: 1px gray dotted;
  margin: 20px auto;
  padding-bottom: 10px;
  width: 300px;
}

main #q_a {
  position: relative;
  padding: 30px 0 80px;
  background-color: #FFF;
}

main #q_a::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100px;
  background-image: url(images/q_a_border.png);
  background-position: center;
}

main #q_a h2 {
  width: 260px;
  margin: 0 auto 50px;
}

main #q_a dl {
  border-top: 1px solid #1DABE3;
}

main #q_a dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #1DABE3;
  padding: 20px;
  font-size: 18px;
  text-align: left;
}

main #q_a dd {
  text-align: left;
  padding: 20px;
  font-size: 14px;
  line-height: 160%;
}

main #q_a dt span {
  color: #1DABE3;
}

main #q_a .title:hover {
  color: #999;
}

main #q_a .title:after {
  content: "▼";
  color: #1DABE3;
}

main #q_a .title.open:after {
  content: "▲";
  color: #1DABE3;
}

main #q_a .box {
  background: #ffffe0;
}

main #access {
  padding: 80px 0 0 0;
  background-color: #E4E6D7;
}

main #access h2 {
  width: 200px;
  margin: 0 auto 20px;
}

main #access p {
  font-size: 12px;
}

main #access .map {
  position: relative;
  margin-top: 20px;
  padding-top: 50%;
}

main #access .map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

main #contact {
  padding: 80px 0;
  background-color: #FFF;
}

main #contact h2 {
  width: 260px;
  margin: 0 auto 20px;
}

/*-----------
    Q & A
-----------*/
/*-----------
    Access
-----------*/
/*-----------
    Contact
-----------*/
.Form {
  margin: 80px auto 0;
  max-width: 728px;
}

.Form p {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.Form-Item-Label {
  text-align: left;
}

span.error_m {
  font-size: 15px;
  font-weight: normal;
  color: #FF4040;
  display: block;
  margin: 0;
  text-align: right;
}

input[type="text"].inp_error, input[type="email"].inp_error, input[type="tel"].inp_error {
  border: 1px solid #F88A8A;
  background: #F4D4D4;
}

select.inp_error, textarea.inp_error {
  border: 1px solid #F88A8A;
  background: #F4D4D4;
}

@media screen and (max-width: 720px) {
  .Form {
    margin-top: 40px;
  }
}

.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 720px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

@media screen and (max-width: 720px) {
  .Form-Item-Label {
    max-width: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 15px;
  }
}

@media screen and (max-width: 720px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}

.Form-Item-Label-Required {
  /* border-radius: 6px; */
  margin-right: 8px;
  padding-top: 0;
  /* padding-bottom: 8px; */
  /* width: 48px; */
  display: inline-block;
  text-align: center;
  /* background: #5bc8ac; */
  color: #1DABE3;
  font-size: 14px;
}

@media screen and (max-width: 720px) {
  .Form-Item-Label-Required {
    /* border-radius: 4px; */
    padding-top: 0;
    /* padding-bottom: 4px; */
    /* width: 32px; */
    font-size: 10px;
  }
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  /* max-width: 410px; */
  background: #eaedf2;
  font-size: 18px;
}

@media screen and (max-width: 720px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    font-size: 15px;
  }
}

.Form-Item-Select {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  height: 48px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  /* max-width: 440px; */
  background: #eaedf2;
  font-size: 18px;
}

.selectbox {
  /* margin:1em auto; */
  position: relative;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.selectbox::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 3%;
  /* top:35%; */
  border-bottom: #333 2px solid;
  border-right: #333 2px solid;
  -webkit-transform: rotate(45deg) translateY(-30%);
          transform: rotate(45deg) translateY(-30%);
}

@media screen and (max-width: 720px) {
  .Form-Item-Select {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    font-size: 15px;
  }
  .selectbox::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 7%;
    top: 65%;
    border-bottom: #333 2px solid;
    border-right: #333 2px solid;
    -webkit-transform: rotate(45deg) translateY(-30%);
            transform: rotate(45deg) translateY(-30%);
  }
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  /* max-width: 410px; */
  background: #eaedf2;
  font-size: 18px;
}

@media screen and (max-width: 720px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    font-size: 15px;
  }
}

input[type="submit"] {
  -webkit-appearance: none;
  /* border-radius: 20px; */
}

.Form-Btn {
  border-radius: 20px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #ff814f;
  color: #000;
  font-weight: bold;
  font-size: 20px;
  border: none;
}

@media screen and (max-width: 720px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 200px;
    font-size: 16px;
  }
}

/*-----------
    Footer
-----------*/
footer {
  position: relative;
  background-color: #1DABE3;
  background-image: url(images/contact_border.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 180px 0 20px 0;
}

footer p {
  width: 200px;
  margin: 0 auto 30px;
}

footer small {
  font-size: 12px;
  color: #FFF;
}

/* footer::before{
    content: "";
    position: absolute;
    top:-300px;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 300px;
    background-image: url(images/contact_border.png);
    background-position: center;
} */
.button {
  position: absolute;
  width: 100px;
  height: 100px;
  /* position: fixed; */
  top: -10px;
  right: 2%;
  /* bottom: 2%; */
  /* transition: .3s; */
  /* opacity: 0; */
  /* visibility: hidden; */
}

.active {
  opacity: 1;
  visibility: visible;
}

/*このクラスが付与されると表示する*/
/* .absolute{
    position: absolute;
    top: -70px;
    bottom: auto;
}
 */
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .sp_fl {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .pc_fl {
    display: none;
  }
}

.line_btn_h {
  width: 200px;
  margin: 0 auto;
  background-color: #00C300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  color: #fff;
}

.line_btn_h p {
  font-size: 12px;
  margin-bottom: 0;
}

.line_btn_h img {
  width: 20%;
}

.line_btn {
  width: 500px;
  margin: 0 auto;
  padding: 0px 40px;
  background-color: #00C300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 17px;
  color: #fff;
  margin-top: 10px;
}

.line_btn p {
  font-size: 15px;
  margin-bottom: 0;
}

.fixed_btn {
  position: fixed;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: auto;
  width: 80%;
  padding: 2px 30px;
  background-color: #00C300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  color: #fff;
  z-index: 99;
}

.fixed_btn p {
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .fixed_btn {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .line_btn {
    width: 100%;
  }
  .line_btn_h {
    display: none;
  }
}


#insta{
    padding: 80px 0;
    /* background: #fff5e9; */
    background: #ddebf1;
}

#insta h2{
    width: 260px;
    margin: 0 auto 50px;
}

#insta h2 p{
    font-size:37px;
    color: #4e423c;
    font-weight: bold;
}

#insta iframe{
    height:520px
}

#insta .insta_more{
    max-width: 258px;
    margin-top: 45px;
    border-radius: 50px;
    background-color: #1DABE3;
    background: rgb(207,46,146);
    background: linear-gradient(90deg, rgba(207,46,146,1) 0%, rgba(242,105,57,1) 66%, rgba(255,221,131,1) 100%);
    transition: all 0.15s ease;
}
#insta .insta_more p{
    font-size: 16px;
}


#insta .insta_more a img{
    width: 10%;
    margin-right: 2%;
}

#insta .insta_more a{
    display: flex;
    justify-content: center;
    color: #fff;
    font-family: "fontM";
    padding: 14px 12px;
    border-radius: 50px;
}

#insta .insta_more:hover{
    /* background-color: #fff; */
    opacity:0.8;
}






@media screen and (min-width: 768px) {
    #insta > div{
        width: 768px;
        max-width: 1000px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px) {
    #insta{
        padding: 50px 0;
    }
    #insta h2{
        margin: 0 auto 30px;
    }
    #insta .insta_wiget{
        height: auto;
        padding: 0 3%;
    }
    #insta .insta_more{
        margin: 10% auto 0;
    }
    .insta_wiget iframe{
        /* height: auto!important; */
        height: 63vw!important;
    }
}


#insta iframe{
    width: 100%;
}

/*# sourceMappingURL=style.css.map */