@charset "UTF-8";
/******初期設定ここから******/
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Tokumin:wght@400;500;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Tokumin&family=Zen+Old+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Tokumin:wght@400;500;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Tokumin&family=Zen+Old+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Tokumin:wght@400;500;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Tokumin&family=Zen+Old+Mincho&display=swap");
html, body, div, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
addres, ul, ol, dl, dt, dd, table, th, td, form, fieldset, header, article, figure, section {
  margin: 0;
  padding: 0;
  line-height: 140%;
  font-familu: "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul, ol {
  list-style: none;
  /*黒丸を消す*/
}

a {
  text-decoration: none;
  /*下線を消す*/
}

img {
  border: 0;
}

ing, input {
  vertical-aligin: bottom;
}

/*クリア*/
.clearfix:after {
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

/******初期設定ここまで******/
/***********ヘッダエリア***********/
html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  min-width: 1260px;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #666;
}

a {
  color: #666;
}

@media (max-width: 768px) {
  body {
    min-width: 100%;
  }
}

/******共通エリア******/
#main {
  background: url(../common/bg_all.jpg) no-repeat center top;
}

#head_main {
  width: 1280px;
  padding: 50px 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 999;
}

.l_logomenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l_logomenu h1 {
  margin-top: 5px;
}

.l_logomenu .pmenu {
  margin-left: 50px;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 400;
  font-style: normal;
}

.l_logomenu .pmenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l_logomenu .pmenu li {
  border-right: 1px dashed #b1b1b1;
}

.l_logomenu .pmenu li a {
  display: block;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
  margin: 0 10px;
  padding: 10px 10px 10px 10px;
}

.l_logomenu .pmenu li a:hover {
  background: #71d3bb;
  color: #FFF;
}

.l_logomenu .pmenu li.pm_contact {
  border: none;
}

.l_logomenu .pmenu li.pm_contact a {
  background-color: #c1435b;
  color: #FFF;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
  display: inline-block;
  -webkit-transition: .3s;
  transition: .3s;
}

.l_logomenu .pmenu li.pm_contact a::before {
  content: "";
  width: 90%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 5%;
  background: url(../common/minimiko3.png) no-repeat top center;
  background-size: 60px auto;
  z-index: -1;
  opacity: 0;
  -webkit-transition: .1s;
  transition: .1s;
  margin-top: -20px;
}

.l_logomenu .pmenu li.pm_contact a:hover {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.l_logomenu .pmenu li.pm_contact a:hover::before {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  opacity: 1;
}

.r_hlink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.r_hlink .smenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.r_hlink .smenu li {
  margin-left: 30px;
}

#commoncont {
  width: 1280px;
  margin: 0 auto;
}

.LParea {
  text-align: center;
  margin-top: 20px;
}

footer {
  padding-bottom: 50px;
}

.foot_txt {
  font-size: 14px;
  text-align: center;
  color: #666;
  margin: 50px 0 10px 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.foot_logo {
  text-align: center;
}

.copyadd {
  font-size: 10px;
  text-align: center;
  margin-top: 50px;
  color: #999;
  font-weight: normal;
  font-family: 'Noto Sans JP', sans-serif;
}

.go-top {
  position: fixed;
  /*固定表示*/
  bottom: 2em;
  right: 2em;
  text-decoration: none;
  text-align: center;
  display: none;
  /*通常は非表示に*/
  z-index: 9998;
  cursor: pointer;
}

.go-top p {
  background: url(../common/minimiko5.png) no-repeat bottom center;
  background-size: 50px;
  font-size: 12px;
  padding: 1.5em;
  padding-bottom: 80px;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

.go-top:hover p {
  color: #333;
}

.spmenu {
  display: none;
}

#overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

#modalWindow {
  width: 600px;
  position: fixed;
  background-color: #71d3bb;
  text-align: center;
  z-index: 99999;
}

#modalWindow h3 {
  padding: 15px 0;
  text-align: center;
  font-size: 24px;
  background-color: #000;
  color: #FFF;
}

#modalWindow h3.kariy {
  background: -webkit-gradient(linear, left top, left bottom, from(#db571a), to(#bd1439));
  background: linear-gradient(180deg, #db571a, #bd1439);
  background: -webkit-linear-gradient(-90deg, #db571a, #bd1439);
}

#modalWindow p {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  padding: 0 20px;
  font-size: 16px;
  line-height: 180%;
  text-align: left;
  margin-bottom: 20px;
  color: #333;
}

#modalWindow p span {
  font-size: 14px;
  font-weight: normal;
  padding: 10px 0 !important;
}

#modalWindow p.kariytx {
  margin-top: 20px;
  font-size: 20px;
  margin-bottom: 0 !important;
}

#modalWindow button#close {
  margin-bottom: 20px;
  padding: 15px 30px;
  font-size: 18px;
  background: #000;
  color: #FFF;
  border: none;
}

#modalWindow .yoyaback {
  margin: 50px 0;
}

#modalWindow .yoyaback a {
  margin-bottom: 20px;
  padding: 15px 30px;
  font-size: 18px;
  background: #333;
  color: #FFF;
}

#modalWindow .tkimg {
  margin: 0px !important;
  padding: 0px !important;
}

#modalWindow .mdhtit {
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-weight: bold;
  border-bottom: 2px dotted #7e7e7e;
}

#modalWindow .ptk {
  background-color: #eee;
  padding: 10px;
  margin: 20px;
  line-height: 200%;
}

.resetp {
  text-align: center !important;
  padding: 30px !important;
  font-size: 18px !important;
}

@media (max-width: 768px) {
  #overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  #modalWindow {
    width: 100%;
    position: fixed;
    text-align: center;
    z-index: 2;
  }
  #modalWindow h3 {
    padding: 15px 0;
    text-align: center;
    font-size: 21px;
  }
  #modalWindow p {
    padding: 0 20px;
    font-size: 14px;
    line-height: 180%;
    text-align: left;
  }
  #modalWindow p span {
    font-size: 12px;
  }
  #modalWindow button#close {
    margin-bottom: 20px;
    padding: 15px 30px;
    font-size: 18px;
    background: #333;
    color: #FFF;
  }
}

@media (max-width: 768px) {
  #head_main {
    width: 100%;
    padding: 30px 0;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 999;
  }
  .l_logomenu {
    display: block;
    text-align: center;
  }
  .l_logomenu h1 img {
    width: 200px;
    height: auto;
  }
  .l_logomenu .pmenu {
    display: none;
  }
  .r_hlink {
    display: none;
  }
  #commoncont {
    width: 100%;
    margin: 0 auto;
  }
  .foot_txt {
    font-size: 12px;
    text-align: center;
    color: #666;
    margin: 50px 0 10px 0;
  }
  .foot_logo {
    text-align: center;
  }
  .copyadd {
    font-size: 12px;
    text-align: center;
    margin-top: 50px;
    color: #999;
    font-weight: normal;
    padding-bottom: 20px;
  }
  .go-top {
    position: fixed;
    /*固定表示*/
    bottom: 2em;
    right: 2em;
    text-decoration: none;
    text-align: center;
    display: none;
    /*通常は非表示に*/
    z-index: 9998;
    cursor: pointer;
  }
  .go-top p {
    background: url(../common/minimiko5.png) no-repeat bottom center;
    background-size: 50px;
    font-size: 12px;
    padding: 1.5em;
    padding-bottom: 80px;
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
  }
  .go-top:hover p {
    color: #333;
  }
  /***SPMENU***/
  .spmenu {
    display: block;
    position: fixed;
    top: 33px;
    left: 0;
    width: 62px;
    height: 52px;
    z-index: 999;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .spmenu.change-color {
    background-color: #FFFFFF;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  /*　ハンバーガーメニューボタン　*/
  .hambm {
    display: block;
    z-index: 3;
    right: 20px;
    top: 20px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hambm span {
    display: block;
    position: absolute;
    width: 40px;
    height: 4px;
    left: 10px;
    background: #FFF;
    border: 1px solid #999 !important;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 9999;
  }
  .hambm span:nth-child(1) {
    top: 10px;
  }
  .hambm span:nth-child(2) {
    top: 20px;
  }
  .hambm span:nth-child(3) {
    top: 30px;
  }
  .hambm p.mtxt {
    margin-top: 1px;
    font-size: 12px;
    color: #666 !important;
    background-color: none !important;
    display: block;
    position: absolute;
    top: 28px;
    left: 13px;
  }
  /* スマホメニューを開いてる時のボタン */
  .hambm.active span:nth-child(1) {
    top: 16px;
    right: 10px;
    background: #fff;
    border: none !important;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hambm.active span:nth-child(2),
  .hambm.active span:nth-child(3) {
    top: 16px;
    background: #fff;
    border: none !important;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /* メニュー背景　*/
  nav.gMenuSp {
    position: fixed;
    z-index: 2;
    top: 0px;
    left: 0;
    color: #FFF;
    background: #71d3bb;
    text-align: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: none;
    overflow: scroll;
  }
  nav div.splogo {
    padding: 20px;
    padding-top: 30px;
    margin-top: 0px;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Kaisei Opti', serif;
    line-height: 70%;
    letter-spacing: 0.6em;
    background-color: #333;
    text-align: center;
    width: calc(100% - 40px);
  }
  nav div.splogo span {
    font-size: 10px;
    letter-spacing: 0;
    font-weight: normal;
    padding: 0 !important;
    margin: 0 !important;
  }
  nav.gMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: block;
    font-weight: bold;
  }
  nav.gMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    -webkit-transition: .4s all;
    transition: .4s all;
    border-bottom: 1px solid #000;
    font-size: 18px;
  }
  nav.gMenuSp ul li:last-child {
    padding-bottom: 0;
  }
  nav.gMenuSp ul li:hover {
    background: #ddd;
  }
  nav.gMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 2em 0;
    text-decoration: none;
  }
  .goiraisp {
    background-color: #c1435b;
    border: none !important;
  }
  /* クリックでjQueryで追加・削除 */
  nav.gMenuSp.active {
    opacity: 100;
    display: block;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
  /***ここまで***/
  .go-top {
    position: fixed;
    /*固定表示*/
    bottom: 1em;
    right: 0em;
    text-decoration: none;
    text-align: center;
    display: none;
    /*通常は非表示に*/
    z-index: 998;
    cursor: pointer;
  }
  .go-top p {
    background: url(../common/minimiko5.png) no-repeat bottom center;
    background-size: 40px;
    font-size: 10px;
    padding: 1.5em;
    padding-bottom: 65px;
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
  }
  .go-top:hover p {
    color: #333;
  }
}

/**トップページPCエリアコーディング**/
.mg20 {
  margin: 15px 0;
}

#main_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../top/mainimage3.jpg?1) no-repeat;
  background-size: cover;
  height: 900px;
}

#main_head h2 {
  padding-left: 30px;
  padding-bottom: 40px;
}

#main_head .maincharimg {
  width: 40%;
  line-height: 0;
  margin-top: -100px;
}

#main_head .maincharimg img {
  width: 100%;
  height: auto;
}

#main_cont {
  background: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#eff3f7));
  background: linear-gradient(#f9f9f9, #eff3f7);
}

#in_top_cont {
  position: relative;
  background: #FFF;
  border-top: 8px solid #71d3bb;
  width: calc(800px - 200px);
  margin: 0 auto;
  top: -100px;
  margin-bottom: -100px;
  padding: 0px 100px 0 100px;
}

#in_top_cont .itcblock {
  position: relative;
  top: -70px;
}

#in_top_cont .tpicon {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}

#in_top_cont h3 {
  text-align: center;
}

#in_top_cont h3 img {
  width: 90%;
  height: auto;
}

#in_top_cont .theadp {
  margin: 40px 0;
  font-size: 20px;
  line-height: 180%;
  color: #5f5f5f;
  padding-bottom: 30px;
  border-bottom: 2px solid #ececec;
  font-family: 'Noto Sans JP', sans-serif;
}

#in_top_cont h4 {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#e8f8f6), to(#faeafa));
  background: linear-gradient(90deg, #e8f8f6, #faeafa);
  padding: 10px 20px;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

#in_top_cont p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #777;
  font-family: 'Noto Sans JP', sans-serif;
}

#in_top_cont .h_profile {
  margin-bottom: 50px;
}

#in_top_cont .h_list {
  margin-bottom: 50px;
}

#in_top_cont .h_list h5 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: normal;
}

#in_top_cont .h_list .hmtp {
  margin-top: 50px;
}

#in_top_cont .h_list .bparts {
  padding: 10px 0 20px 0;
}

#in_top_cont .h_sns {
  border-top: 3px solid #ddd;
  margin-top: 50px;
  padding-top: 50px;
}

#in_top_cont .h_sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#in_top_cont .h_sns li {
  text-align: center;
  border: 2px solid #777;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 32%;
  line-height: 0;
}

#in_top_cont .h_sns li a {
  display: block;
  height: 100px;
}

#in_top_cont .h_sns li a:hover {
  background-color: #71d3bb;
  -webkit-transition: .3s;
  transition: .3s;
}

#in_top_cont .h_sns p {
  font-size: 12px;
}

#in_top_cont .h_sns .hs_yt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#in_top_cont .h_sns .hs_yt .dicen {
  display: block;
  margin: 0 auto;
}

#in_top_cont .h_sns .hs_yt dl {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#in_top_cont .h_sns .hs_yt .dipa {
  padding-top: 15px;
}

#in_top_cont .h_sns .hs_yt dt {
  margin-top: 5px;
  margin-right: 10px;
}

#in_top_cont .h_sns .hs_yt dd {
  font-size: 24px;
}

#in_top_cont .h_sns .hs_x {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#in_top_cont .h_sns .hs_x img {
  margin: 0 auto;
}

#foot_link {
  width: 80%;
  margin: 0 auto;
  position: relative;
  padding: 50px 0;
}

#foot_link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#foot_link li {
  width: 49%;
  height: 180px;
  border: 5px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -o-border-image: linear-gradient(to top, #baecca, #eceda2) 1;
     border-image: -webkit-gradient(linear, left bottom, left top, from(#baecca), to(#eceda2)) 1;
     border-image: linear-gradient(to top, #baecca, #eceda2) 1;
  background: #FFF;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

#foot_link li h6 {
  font-size: 18px;
  font-weight: normal;
}

#foot_link li .fl_irai {
  background: url(../common/icon_file_black.png) no-repeat center top;
  background-size: 30px auto;
  padding-top: 40px;
}

#foot_link li .fl_script {
  background: url(../common/icon_script_black.png) no-repeat center top;
  background-size: 40px auto;
  padding-top: 40px;
}

#foot_link li .fl_sample {
  background: url(../common/icon_mike_black.gif) no-repeat center top;
  background-size: 30px auto;
  padding-top: 40px;
}

#foot_link li .fl_form {
  background: url(../common/icon_mail_black.png) no-repeat center top;
  background-size: 40px auto;
  padding-top: 40px;
}

#foot_link li p {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 12px;
}

#foot_link li a {
  display: block;
  width: 100%;
}

#foot_link li:hover {
  background-color: #71d3bb;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (max-width: 768px) {
  /**トップページPCエリアコーディング**/
  #main_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    background: url(../top/mainimage3.jpg) no-repeat;
    background-position: -70px 0px;
    background-size: cover;
    height: 350px;
  }
  #main_head h2 {
    padding-right: 0px;
    padding-bottom: 10px;
  }
  #main_head h2 img {
    width: 200px;
    height: auto;
  }
  #main_head .maincharimg {
    width: 35%;
    line-height: 0;
    margin-top: -20px;
  }
  #main_head .maincharimg img {
    width: 100%;
    height: auto;
  }
  #main_cont {
    background: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#eff3f7));
    background: linear-gradient(#f9f9f9, #eff3f7);
  }
  #in_top_cont {
    position: relative;
    background: #FFF;
    border-top: 8px solid #71d3bb;
    width: 100%;
    margin: 0 auto;
    top: 0px;
    padding: 0px 0;
  }
  #in_top_cont .itcblock {
    position: relative;
    top: -20px;
  }
  #in_top_cont .tpicon {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
  }
  #in_top_cont .tpicon img {
    width: 80px;
    height: auto;
  }
  #in_top_cont h3 {
    text-align: center;
    margin-bottom: 30px;
  }
  #in_top_cont h3 img {
    width: 90%;
    height: auto;
  }
  #in_top_cont .theadp {
    width: 90%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 180%;
    color: #5f5f5f;
    padding-bottom: 30px;
    border-bottom: 2px solid #ececec;
  }
  #in_top_cont .theadp p {
    padding: 0 !important;
  }
  #in_top_cont h4 {
    display: inline-block;
    background: -webkit-gradient(linear, left top, right top, from(#e8f8f6), to(#faeafa));
    background: linear-gradient(90deg, #e8f8f6, #faeafa);
    padding: 10px 20px;
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
  }
  #in_top_cont p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #777;
    padding-left: 15px;
  }
  #in_top_cont .h_profile {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 50px;
    margin-top: 30px;
  }
  #in_top_cont .h_list {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  #in_top_cont .h_list h5 {
    font-size: 21px;
    margin-bottom: 20px;
    font-weight: normal;
  }
  #in_top_cont .h_list .hmtp {
    margin-top: 50px;
  }
  #in_top_cont .h_list .bparts {
    padding: 10px 0 20px 0;
  }
  #in_top_cont .h_sns {
    width: 95%;
    margin: 0 auto;
    border-top: 3px solid #ddd;
    margin-top: 50px;
    padding-top: 50px;
  }
  #in_top_cont .h_sns ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #in_top_cont .h_sns li {
    text-align: center;
    border: 2px solid #777;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 32%;
    line-height: 0;
  }
  #in_top_cont .h_sns li a {
    display: block;
    height: 100px;
  }
  #in_top_cont .h_sns li a img {
    width: 20px;
    height: auto;
  }
  #in_top_cont .h_sns li a:hover {
    background-color: #71d3bb;
    -webkit-transition: .3s;
    transition: .3s;
  }
  #in_top_cont .h_sns p {
    font-size: 10px;
    padding: 0  10px !important;
  }
  #in_top_cont .h_sns .hs_yt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #in_top_cont .h_sns .hs_yt dl {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #in_top_cont .h_sns .hs_yt .dicen {
    margin: 0 auto;
  }
  #in_top_cont .h_sns .hs_yt .dipa {
    padding-top: 30px;
  }
  #in_top_cont .h_sns .hs_yt dt {
    margin-top: 5px;
    margin-right: 10px;
  }
  #in_top_cont .h_sns .hs_yt dd {
    font-size: 18px;
  }
  #in_top_cont .h_sns .hs_x {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #in_top_cont .h_sns .hs_x img {
    margin: 0 auto;
  }
  #foot_link {
    width: 95%;
    margin: 0 auto;
    position: relative;
    top: 0px;
    padding: 20px 0;
  }
  #foot_link ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #foot_link li {
    width: 49%;
    height: 130px;
    margin-bottom: 15px;
    border: 3px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -o-border-image: linear-gradient(to top, #baecca, #eceda2) 1;
       border-image: -webkit-gradient(linear, left bottom, left top, from(#baecca), to(#eceda2)) 1;
       border-image: linear-gradient(to top, #baecca, #eceda2) 1;
    background: #FFF;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  #foot_link li h6 {
    font-size: 14px;
    font-weight: normal;
  }
  #foot_link li .fl_irai {
    background: url(../common/icon_file_black.png) no-repeat center top;
    background-size: 20px auto;
    padding-top: 30px;
  }
  #foot_link li .fl_script {
    background: url(../common/icon_script_black.png) no-repeat center top;
    background-size: 30px auto;
    padding-top: 35px;
  }
  #foot_link li .fl_sample {
    background: url(../common/icon_mike_black.gif) no-repeat center top;
    background-size: 20px auto;
    padding-top: 30px;
  }
  #foot_link li .fl_form {
    background: url(../common/icon_mail_black.png) no-repeat center top;
    background-size: 30px auto;
    padding-top: 30px;
  }
  #foot_link li p {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 10px;
  }
  #foot_link li a {
    display: block;
    width: 100%;
  }
  #foot_link li:hover {
    background-color: #71d3bb;
    -webkit-transition: .3s;
    transition: .3s;
  }
}

/***サンプルページ***/
#in_commoncont {
  background: url(../common/combg.jpg);
  padding-bottom: 50px;
}

#in_commoncont h1 {
  font-size: 54px;
  line-height: 70%;
  padding-top: 70px;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(40%, #dbffb6), color-stop(80%, #e9ffdc));
  background: linear-gradient(90deg, #fff 0%, #dbffb6 40%, #e9ffdc 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#in_commoncont h1 span {
  font-size: 20px;
  font-weight: normal;
}

#in_comwhite {
  background: #FFF;
  width: calc(800px - 100px);
  margin: 0 auto;
  padding: 50px 50px 50px 50px;
  margin-top: 50px;
}

#in_comwhite h2 {
  text-align: center;
  padding-top: 50px;
  margin-bottom: 50px;
  font-size: 38px;
  font-weight: 800;
  line-height: 50%;
}

#in_comwhite h2 span {
  font-size: 14px;
}

#in_comwhite h3 {
  padding: 15px 0;
  text-align: center;
  font-size: 24px;
  background: -webkit-gradient(linear, left top, right top, from(#e4eeff), to(#f1e8ec));
  background: linear-gradient(90deg, #e4eeff, #f1e8ec);
}

#samplearea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 50px;
}

.samplebox {
  margin-top: 30px;
  width: calc(48% - 30px);
  background-color: whitesmoke;
  padding: 15px;
  border-radius: 10px;
  font-family: 'Noto Sans JP', sans-serif;
}

.samplebox dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin-bottom: 15px;
}

.samplebox dt {
  background-color: #71d3bb;
  font-size: 22px;
  padding: 5px;
  padding-top: 3px;
  padding-bottom: 8px;
  border: none;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #FFF;
  line-height: 90%;
}

.samplebox dt span {
  font-size: 10px;
}

.samplebox dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  font-size: 18px;
}

.samplebox .svoice audio {
  width: 100%;
  background-color: #eee !important;
}

.mikotube {
  text-align: center;
  padding: 50px 0;
}

@media (max-width: 768px) {
  #in_commoncont {
    padding-bottom: 50px;
  }
  #in_commoncont h1 {
    font-size: 34px;
    line-height: 70%;
    padding-top: 70px;
    text-align: center;
    background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(40%, #dbffb6), color-stop(80%, #e9ffdc));
    background: linear-gradient(90deg, #fff 0%, #dbffb6 40%, #e9ffdc 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  #in_commoncont h1 span {
    font-size: 16px;
    font-weight: normal;
  }
  #in_comwhite {
    background: #FFF;
    width: 95%;
    margin: 0 auto;
    padding: 0px;
    padding-top: 10px;
    margin-top: 50px;
    padding-bottom: 50px;
  }
  #in_comwhite h3 {
    width: 95%;
    margin: 0 auto;
    padding: 15px 0;
    text-align: center;
    font-size: 18px;
    background: -webkit-gradient(linear, left top, right top, from(#e4eeff), to(#f1e8ec));
    background: linear-gradient(90deg, #e4eeff, #f1e8ec);
  }
  #samplearea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 50px;
  }
  .samplebox {
    margin: 0 auto;
    margin-top: 30px;
    width: calc(90% - 20px);
    background-color: whitesmoke;
    padding: 15px 10px;
    border-radius: 10px;
  }
  .samplebox dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    margin-bottom: 15px;
  }
  .samplebox dt {
    background-color: #71d3bb;
    font-size: 18px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #FFF;
  }
  .samplebox dt span {
    font-size: 10px;
  }
  .samplebox dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 10px;
    font-size: 16px;
  }
  .samplebox .svoice audio {
    width: 100%;
    background-color: #eee !important;
  }
  .mikotube {
    text-align: center;
    padding: 50px 0;
  }
  .mikotube iframe {
    width: 90%;
    height: auto;
  }
}

/********プライバシーポリシー**********/
.privacyarea {
  font-family: 'Noto Sans JP', sans-serif;
  padding-bottom: 20px;
}

.privacyarea p {
  line-height: 160%;
  font-size: 14px;
  border-bottom: 1px dotted #ddd;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.privacyarea h4 {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .privacyarea {
    padding: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    padding-bottom: 20px;
  }
  .privacyarea p {
    line-height: 160%;
    font-size: 14px;
    border-bottom: 1px dotted #ddd;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .privacyarea h4 {
    margin-bottom: 10px;
  }
}

/********ご依頼フォーム**********/
.contactbox {
  margin-top: 30px;
  margin-bottom: 70px;
}

.contactbox p {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 180%;
  font-size: 16px;
}

.contactbox .uke_txt {
  background: -webkit-gradient(linear, left bottom, left top, from(#cf5a91), to(#f56285));
  background: linear-gradient(0deg, #cf5a91, #f56285);
  padding: 30px 0;
  color: #FFF;
  font-size: 32px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 25px;
}

.contactbox .contbigtxt {
  text-align: center;
  font-size: 22px;
}

.contactbox .contbiggreen a {
  display: block;
  border: 3px solid #71d3bb;
  text-decoration: underline;
  color: #71d3bb;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 15px 0;
  margin: 25px 0;
}

.contactbox .contbiggreen a:hover {
  background-color: #71d3bb;
  color: #FFF;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

.contactbox .saimail {
  border: 3px solid #ccc;
  padding: 3px 0;
  margin-top: 10px;
  text-align: center;
}

.contactbox .saima_tyu {
  font-size: 14px;
  color: #777;
  text-align: right;
}

.contactbox ul {
  background-color: whitesmoke;
  padding: 20px;
  margin: 30px 0;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 220%;
  font-size: 14px;
}

.contactbox ul li a {
  color: #cf5a91;
  font-size: 16px;
}

.contactbox ul li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contactbox ul li dt {
  width: 65%;
  margin-right: 15px;
  line-height: 220%;
}

.contactbox ul li dd {
  width: 30%;
  font-weight: bold;
}

.contactbox ul li dd h6 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
}

.formarea {
  padding-bottom: 100px;
  font-family: 'Noto Sans JP', sans-serif;
}

.formarea dl {
  margin-bottom: 25px;
  background-color: #f8f8f8;
  padding: 10px 20px;
  border-radius: 10px;
}

.formarea .fmrebg {
  background-color: #f8f8f8;
}

.formarea .formbg1 {
  background-color: #edf7e1;
  padding: 15px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.formarea .formbg1 dl {
  background-color: #FFF;
}

.formarea .formbg2 {
  background-color: #fff6f6;
  padding: 15px;
  border-radius: 20px;
}

.formarea .formbg2 dl {
  background-color: #FFF;
}

.formarea h5 {
  font-size: 20px;
  padding-left: 10px;
  padding-top: 10px;
  margin-bottom: 20px;
}

.formarea h6 {
  font-size: 16px;
  padding-left: 10px;
  padding-top: 10px;
  margin-bottom: 10px;
}

.formarea dt {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.formarea dt span {
  color: #f56285;
}

.formarea dt .tyuui_bik {
  margin-top: 10px;
  background-color: #f7f7f7;
  padding: 10px 20px;
  font-weight: normal;
  font-size: 14px;
  color: #000;
}

.formarea .bikou {
  padding-left: 10px;
  padding-top: 10px;
  margin-top: 20px;
}

.formarea p.mdtyuui {
  font-size: 14px !important;
  margin-top: 5px;
  font-weight: normal;
  color: #777;
}

.formarea dd input {
  width: calc(100%-10px);
  background-color: #fdfdfd;
  border: 1px solid #ddd;
  padding: 5px;
  font-size: 15px;
}

.formarea dd textarea {
  width: 100%;
  font-size: 16px;
}

.formarea .fobt {
  margin-top: 0px;
  text-align: center;
}

.formarea .fobt button {
  background-color: #929292;
  color: #FFF;
  font-weight: bold;
  display: inline-block;
  padding: 15px 100px;
  border: none;
  font-size: 18px;
  cursor: default;
}

.formarea .fobt button.enabled {
  background-color: #38b39f;
  cursor: pointer;
}

.fobt_bt {
  background-color: #f8f8f8;
  font-size: 14px;
  padding: 15px !important;
  border-radius: 10px;
  margin-top: 10px;
  text-align: center;
}

.fobt_bt p {
  margin-top: 10px;
}

.sendm_txt {
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 10px;
}

.sendm_txt p {
  font-size: 14px;
  padding: 0 10px;
}

.ddtyuu {
  background-color: #f3f3f3;
  margin-top: 10px;
  padding: 5px;
  font-size: 14px;
}

.mami {
  margin-bottom: 5px !important;
}

.fm2 {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.fm2 dl {
  margin-right: 10px;
}

.fm3 {
  background-color: #FFF;
  border-radius: 10px;
}

.takup a {
  font-size: 14px;
  font-weight: bold;
  color: #cf5a91;
  text-decoration: underline;
}

input::-webkit-input-placeholder {
  color: #999;
}

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

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

input::placeholder {
  color: #999;
}

.mabnasi {
  margin-bottom: 30px;
}

.mabbor {
  margin-bottom: 0px;
  padding-bottom: 30px;
  border-bottom: 1px dotted #999;
}

.txtrei {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 10px;
  font-size: 14px;
  margin-top: 15px;
}

.formhisu {
  font-size: 14px;
  margin-bottom: 15px;
}

.errbox {
  padding-bottom: 20px !important;
}

.daihontxt {
  margin: 15px 0;
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 10px;
}

.daihontxt h6 {
  font-size: 14px;
}

.daihontxt p, .daihontxt ul {
  padding-left: 15px;
}

.daihontxt ul {
  padding-top: 15px;
}

.daihontxt p, .daihontxt li {
  font-size: 14px;
}

.daihontxt li {
  list-style: disc;
  margin-left: 10px;
}

.yoteiontxt {
  margin: 0 15px !important;
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 10px;
  margin-top: 0px !important;
}

.yoteiontxt p {
  font-size: 14px;
  line-height: 160%;
  font-weight: bold;
}

.yoteiontxt p .redy {
  color: #f14867;
}

.yoteiontxt p .ytbm {
  font-weight: normal;
}

.rpd_numtime {
  margin-bottom: 30px;
}

.matop {
  margin-top: 25px;
}

.chkrev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  padding-top: 15px !important;
  padding-bottom: 5px !important;
}

.redbgd {
  background-color: #ffdfe2 !important;
  color: #412828;
}

.redbgd a {
  color: #e01818;
}

.about_etcbox {
  background: -webkit-gradient(linear, left top, right top, from(#ffc6c6), to(#ffb8c9));
  background: linear-gradient(90deg, #ffc6c6, #ffb8c9);
  margin-bottom: 30px;
  padding: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
}

.ae_gy {
  background: #f3f3f3 !important;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  /********ご依頼フォーム**********/
  .contactbox {
    width: 95%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .contactbox p {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 180%;
    font-size: 14px;
  }
  .contactbox .uke_txt {
    background: -webkit-gradient(linear, left bottom, left top, from(#cf5a91), to(#f56285));
    background: linear-gradient(0deg, #cf5a91, #f56285);
    padding: 30px 0;
    color: #FFF;
    font-size: 28px;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 25px;
  }
  .contactbox .contbigtxt {
    text-align: center;
    font-size: 16px;
  }
  .contactbox .contbiggreen a {
    display: block;
    border: 3px solid #71d3bb;
    text-decoration: underline;
    color: #71d3bb;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 0;
    margin: 25px 0;
  }
  .contactbox .contbiggreen a:hover {
    background-color: #71d3bb;
    color: #FFF;
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
  }
  .contactbox .saimail {
    border: 3px solid #ccc;
    padding: 5px 0;
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
  }
  .contactbox .saima_tyu {
    font-size: 12px;
    color: #777;
    text-align: right;
  }
  .contactbox ul li a {
    color: #cf5a91;
    font-size: 16px;
  }
  .contactbox ul li dl {
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contactbox ul li dt {
    width: 100%;
    margin-right: 15px;
    line-height: 220%;
  }
  .contactbox ul li dd {
    width: 100%;
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
  }
  .contactbox ul li dd h6 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
  }
  .formarea {
    width: 95%;
    margin: 0 auto;
    padding-bottom: 100px;
  }
  .formarea dl {
    margin-bottom: 15px;
  }
  .formarea .formbg1 {
    background-color: #edf7e1;
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 20px;
  }
  .formarea .formbg1 dl {
    background-color: #FFF;
  }
  .formarea .formbg2 {
    background-color: #fff6f6;
    padding: 10px;
    border-radius: 20px;
  }
  .formarea .formbg2 dl {
    background-color: #FFF;
  }
  .formarea h5 {
    font-size: 18px;
  }
  .formarea dt {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .formarea dd input {
    width: 90%;
    background-color: #fdfdfd;
    border: 1px solid #ddd;
    padding: 5px;
    font-size: 14px;
  }
  .formarea dd textarea {
    width: 90%;
    font-size: 14px;
  }
  .formarea .rabt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    text-align: left;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 14px;
  }
  .formarea .rabt input {
    margin-bottom: 10px;
    width: auto !important;
  }
  .formarea .fobt {
    margin-top: 0px;
    text-align: center;
  }
  .formarea .fobt button {
    background-color: #929292;
    color: #FFF;
    font-weight: bold;
    display: inline-block;
    padding: 15px 100px;
    border: none;
    font-size: 16px;
  }
  .saicontsi {
    font-size: 28px !important;
  }
  .fm2 {
    display: block !important;
  }
  .fm2 dl {
    margin-right: 10px;
  }
  .fm3 {
    background-color: #FFF;
    border-radius: 10px;
  }
  input::-webkit-input-placeholder {
    color: #999;
  }
  input:-ms-input-placeholder {
    color: #999;
  }
  input::-ms-input-placeholder {
    color: #999;
  }
  input::placeholder {
    color: #999;
  }
  .about_etcbox {
    width: calc(95% - 40px);
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 20px;
    line-height: 180%;
    font-size: 14px;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
  }
}

/********ご依頼について**********/
.upd_t {
  background: -webkit-gradient(linear, left top, right top, from(#f9f9f9), to(#eff3f7));
  background: linear-gradient(90deg, #f9f9f9, #eff3f7);
  margin: 20px 0;
  padding: 10px 0;
  text-align: center;
  font-size: 18px;
}

.abarea {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 3px dotted #f1f1f1;
}

.aboutbox {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 50px 0;
}

.aboutbox ul {
  padding: 0 10px;
}

.aboutbox li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  border-bottom: 1px solid #ddd;
}

.aboutbox li span {
  font-size: 14px;
}

.aboutbox h4 {
  margin-bottom: 10px;
}

.aboutbox h5 {
  font-size: 18px;
  margin-bottom: 25px;
  padding: 10px;
  background-color: #f1f1f1;
}

.aboutbox h6 {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 25px;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.aboutbox .abgbtm {
  padding-bottom: 30px;
}

.aboutbox .abgrbox {
  width: 95%;
  text-align: center;
  margin: 0 auto;
  background-color: #eee;
  padding: 15px 10px;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 30px;
}

.aboutbox .abgrbox_rs {
  width: 95%;
  text-align: center;
  margin: 0 auto;
  background-color: #eee;
  padding: 15px 10px;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 30px;
  font-size: 16px;
}

.aboutbox .abgrbox_rs a {
  color: #fa5d7a;
}

.aboutbox .ab_one_area {
  padding-top: 10px;
  margin-top: 10px;
}

.aboutbox .ab_one_area li {
  background-color: #f8f8f8;
  border-bottom: none;
  padding: 10px;
}

.komeab {
  background-color: #f8f8f8;
  padding: 10px !important;
  line-height: 100%;
  font-size: 14px;
  border: none !important;
}

.ab_nagare_tx {
  background-color: #f7f7f7;
  padding: 15px;
  margin-bottom: 25px;
}

.ab_nagare_tx span {
  font-weight: bold;
}

.mag15 {
  margin-top: 15px;
}

.mag_top {
  margin-top: 40px !important;
}

.ryoarea {
  background-color: #fafafa;
  padding: 5px;
}

.ryotyu {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  padding: 10px 20px;
  margin-bottom: 20px;
  background-color: white;
  font-weight: bold;
}

.ryotyu span {
  text-align: left;
  font-size: 14px;
  font-weight: normal;
}

.ryotyu_red {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  padding: 10px 20px;
  background: -webkit-gradient(linear, left top, right top, from(#ffc6c6), to(#ffb8c9));
  background: linear-gradient(90deg, #ffc6c6, #ffb8c9);
  font-weight: bold;
}

.ryotyu_min {
  background-color: white;
  padding: 10px 20px;
  font-size: 14px;
  margin-bottom: 50px;
  font-family: 'Noto Sans JP', sans-serif;
}

.ryo_table {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  padding-bottom: 50px;
}

.ryo_table table {
  width: 100%;
  margin-top: 50px;
}

.ryo_table tr {
  border-bottom: 3px solid #ffffff;
}

.ryo_table th, .ryo_table td {
  padding: 20px 10px;
}

.ryo_table th {
  width: 30%;
  text-align: left;
}

.ryo_table th span {
  font-size: 16px;
}

.ryo_table td {
  width: 34%;
  text-align: center;
  border-left: 3px solid #ffffff;
}

.ryo_table td span {
  font-size: 14px;
}

.ryo_table p {
  text-align: left;
  margin-top: 20px;
  font-size: 14px;
}

.fontb {
  font-weight: bold;
}

.gigali {
  font-weight: bold;
  color: #f56285;
  text-decoration: underline;
}

.boto {
  border-top: 3px solid #ffffff;
}

@media (max-width: 768px) {
  .abarea {
    padding-bottom: 50px;
  }
  .aboutbox li {
    font-size: 14px;
  }
  .aboutbox h5 {
    width: calc(95% - 20px);
    font-size: 16px;
    margin: 0 auto;
    margin-bottom: 25px;
    padding: 10px;
    background-color: #f1f1f1;
  }
  .aboutbox .abgbtm {
    padding-bottom: 30px;
  }
  .aboutbox .abgrbox {
    width: calc(95% - 30px);
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    background-color: #eee;
    padding: 15px;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .aboutbox .abgrbox_rs {
    width: calc(95% - 30px);
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    background-color: #eee;
    padding: 15px;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .ryo_table {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    padding-bottom: 20px;
  }
  .ryo_table table {
    width: 95%;
    margin: 0 auto;
    margin-top: 50px;
  }
  .ryo_table th, .ryo_table td {
    width: 33%;
    padding: 20px 15px;
  }
  .ryo_table th {
    text-align: left;
  }
  .ryo_table td {
    font-size: 14px;
  }
  .ryo_table td span {
    font-size: 10px;
  }
  .ryo_table p {
    text-align: left;
    padding: 0 10px;
    font-size: 12px;
  }
  .ryotyu {
    font-size: 14px;
  }
  .ryotyu span {
    font-size: 12px;
    font-weight: normal;
  }
  .fontb {
    font-weight: bold;
    font-size: 12px !important;
  }
}

.ps_head {
  background-color: #f5f5f5;
  padding: 15px;
  margin-bottom: 30px;
  text-align: center;
}

.ps_head h4 {
  color: #703b44;
  font-size: 20px;
  background: #ffc1d1;
  text-align: center;
  padding: 10px 0;
}

.ps_suisyo {
  margin-top: 60px !important;
}

.ps_suisyo h4 {
  color: #3f3b70;
  background: #e4eaff !important;
}

@media (max-width: 768px) {
  .ps_head {
    background-color: #f5f5f5;
    padding: 15px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 14px;
  }
  .ps_head h4 {
    color: #703b44;
    font-size: 16px;
    background: #ffc1d1;
    text-align: center;
    padding: 10px 0;
  }
  .ps_suisyo {
    margin-top: 60px !important;
  }
  .ps_suisyo h4 {
    color: #3f3b70;
    background: #e4eaff !important;
  }
}

.top_anc {
  width: 1280px;
  margin: 0 auto;
  background-color: #fcfcfc;
  padding: 20px 0;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
}

.top_anc h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 21px;
  color: #c1435b;
}

.top_anc p {
  display: inline-block;
  text-align: left;
  line-height: 150%;
}

@media (max-width: 768px) {
  .top_anc {
    width: 100%;
    margin: 0 auto;
    background-color: #fcfcfc;
    padding: 20px 0;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
  }
  .top_anc h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: #c1435b;
  }
  .top_anc p {
    display: block;
    width: 95%;
    margin: 0 auto;
    text-align: left;
    line-height: 150%;
    font-size: 14px;
  }
}

.prhead {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.prhbt {
  width: 130px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(#ecf0f7), to(#e1d8eb));
  background: linear-gradient(90deg, #ecf0f7, #e1d8eb);
  font-weight: bold;
  font-size: 20px;
}

.btnow {
  background: -webkit-gradient(linear, left top, right top, from(#f17261), to(#e05684));
  background: linear-gradient(90deg, #f17261, #e05684);
  color: #FFF;
}

.prhtit {
  background: -webkit-gradient(linear, left bottom, left top, from(#f7f7f7), to(#f2f5f7));
  background: linear-gradient(0deg, #f7f7f7, #f2f5f7);
  width: 630px;
  font-size: 22px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 100%;
  padding: 0 0 5px 15px;
}

.prhtit span {
  line-height: 40%;
  font-size: 14px;
}

.oubop {
  font-size: 16px;
  display: inline-block;
  padding: 5px 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  border-bottom: 2px dotted #9eb8ae;
}

.primg img {
  width: 100%;
  height: auto;
}

.prbtn {
  width: 80%;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
}

.prbtn img {
  width: 100%;
  height: auto;
}

.btl {
  margin-bottom: 70px;
  padding-bottom: 70px;
  border-bottom: 2px solid #baecca;
}

@media (max-width: 768px) {
  .sppre {
    padding: 10px;
  }
  .btl {
    margin-bottom: 40px !important;
    padding-bottom: 40px !important;
    border-bottom: 2px solid #baecca;
  }
  .prhead {
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .prhbt {
    width: 25%;
    height: auto;
    font-size: 16px;
  }
  .prhtit {
    background: -webkit-gradient(linear, left bottom, left top, from(#f7f7f7), to(#f2f5f7));
    background: linear-gradient(0deg, #f7f7f7, #f2f5f7);
    width: 75%;
    font-size: 16px;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 95%;
    padding: 0 0 5px 5px;
  }
  .prhtit span {
    font-size: 12px;
  }
  .oubop {
    width: auto;
    font-size: 16px;
    display: inline-block;
    padding: 5px 10px;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 20px;
    border-bottom: 2px dotted #9eb8ae;
  }
  .primg img {
    width: 100%;
    height: auto;
  }
  .prbtn {
    width: 80%;
    text-align: center;
    margin: 0 auto;
    margin-top: 40px;
  }
  .prbtn img {
    width: 100%;
    height: auto;
  }
}

.yoteitable table {
  width: 100%;
  margin-top: 30px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.yoteitable th, .yoteitable td {
  padding: 20px 5px;
  text-align: center;
}

.yoteitable th {
  font-size: 14px;
  padding: 20px 10px;
  background-color: #fde6ec;
}
/*# sourceMappingURL=mainstyle.css.map */