@charset "UTF-8";
/* ================================================
	汎用
================================================ */
.btn_normal {
  padding: 8px 76px;
  background-color: #FA8072;
  font-size: 18px;
  border: none;
  margin-left: auto;
  margin-right: auto;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  display: block;
}

.main-color {
  color: #FA8072;
}

.align_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 8px;
  position: relative;
}

@media (max-width: 850px) {
  .title {
    display: none;
  }
}

.title span {
  position: relative;
  display: inline-block;
  background-color: #fff;
  width: 300px;
  z-index: 2;
}

.title::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  width: 80%;
  height: 2px;
  background-color: #000;
  z-index: 1;
  content: "";
}

.sub_title {
  font-size: 16px;
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 850px) {
  .sub_title {
    display: none;
  }
}

.title_bg {
  background-color: #484747;
  padding: 20px;
  text-align: center;
  margin-bottom: 40px;
}

.title_bg h2 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

/* ================================================
	header
================================================ */
.index main {
  margin-top: -78px;
}

@media (max-width: 850px) {
  .index main {
    margin-top: -60px;
  }
}

header {
  z-index: 1;
  position: relative;
}

header .header_box {
  padding: 5px 20px;
  background: rgba(241, 241, 241, 0.7);
  font-size: 18px;
  z-index: 999;
  /*
    height: 78px;
    */
}

@media (max-width: 850px) {
  header .header_box {
    height: 60px;
  }
}

@media (max-width: 850px) {
  header .header_box {
    padding: 5px 10px;
  }
}

header .header_box h1 {
  margin-right: 20px;
}

header .header_box h2 {
  font-size: 16px;
  color: #FA8072;
  font-weight: bold;
}

@media (max-width: 1300px) {
  header .header_box h2 {
    position: absolute;
    top: 115%;
    left: 20px;
  }
}

@media (max-width: 850px) {
  header .header_box h2 {
    position: static;
    font-size: 14px;
  }
}

header .header_box .pc_menu ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header_box .pc_menu ul li a {
  display: block;
  padding: 20px 20px;
}

@media (max-width: 1150px) {
  header .header_box .pc_menu ul li a {
    padding: 20px 10px;
  }
}

header .header_box .pc_menu ul li a.active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));
  background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);
  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.08);
          box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.08);
}

header .header_box .pc_menu ul li a:hover {
  color: #FA8072;
  opacity: 1 !important;
}

header .header_box .pc_menu ul li .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

header .header_box .pc_menu ul li .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  padding: 8px 15px;
  right: 0;
  background-color: #eee;
  border: 1px solid #000;
  border-radius: 0 0 4px 4px;
}

header .header_box .pc_menu ul li .dropdown-menu li {
  font-size: 14px;
  margin-bottom: 5px;
}

header .header_box .pc_menu ul li .dropdown-menu li a {
  padding: 5px;
}

header .header_box .pc_menu ul li .dropdown-menu.active {
  display: block;
}

header .header_box .pc_menu ul .header-btn a {
  background-color: #FA8072;
  padding: 5px 10px;
  border-radius: 7px;
  text-align: center;
  margin: 0 5px;
}

header .header_box .pc_menu ul .header-btn a:hover {
  color: #000;
  opacity: .8;
}

header .header_box .flex-l img {
  width: auto;
}

@media (max-width: 1150px) {
  header .header_box .flex-l {
    display: block;
  }
}

header .header_box .menu_btn {
  display: none;
}

@media (max-width: 850px) {
  header .header_box .menu_btn {
    display: block;
  }
}

header .sp_menu {
  display: none;
  background: rgba(241, 241, 241, 0.7);
  text-align: center;
  border-top: 1px solid #ddd;
}

header .sp_menu .sp_menu_inner ul li {
  font-size: 16px;
  line-height: 1.5;
}

header .sp_menu .sp_menu_inner ul li a {
  display: block;
  padding: 10px;
}

header .sp_menu .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

header .sp_menu .dropdown-toggle.active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));
  background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);
  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.1);
}

header .sp_menu .dropdown-menu {
  display: none;
}

header .sp_menu .dropdown-menu li {
  font-size: 14px !important;
  color: #333;
}

header .sp_menu .dropdown-menu li a {
  padding: 5px !important;
}

header .sp_menu .dropdown-menu.active {
  display: block;
}

/*=============================
.btn-trigger
=============================*/
.btn-trigger {
  position: relative;
  width: 44px;
  height: 34px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.btn-trigger:hover {
  background-color: #ddd;
}

.btn-trigger span {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 22px;
  height: 2px;
  background-color: #888;
  border-radius: 1px;
}

.btn-trigger,
.btn-trigger span {
  display: inline-block;
}

.btn-trigger span:nth-of-type(1) {
  top: 9px;
}

.btn-trigger span:nth-of-type(2) {
  top: 15px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 9px;
}

/* ================================================
	footer
================================================ */
footer {
  text-align: center;
}

footer img {
  width: auto;
}

footer .to-top {
  padding: 5px 0;
  background-color: #787878;
}

footer .bg-black {
  padding: 15px 0;
  background-color: #000;
}

footer .copyright {
  font-size: 13px;
  padding: 10px 0;
}

footer .footer_link {
  padding: 40px 0;
  background: url("assets/img/bg_footer.jpg") no-repeat center;
  background-size: cover;
}

@media (max-width: 850px) {
  footer .footer_link ul li {
    margin-bottom: 12px;
  }
}

footer .footer_link ul li a {
  padding: 0 20px;
  font-size: 14px;
  color: #FFF;
  border-right: 1px solid #fff;
}

@media (max-width: 850px) {
  footer .footer_link ul li a {
    padding: 0 12px;
  }
}

footer .footer_link ul li:last-child a {
  border-right: none;
}

/* ================================================
	index.html
================================================ */
/*main-visual*/
.main_visual {
  position: relative;
  height: 750px;
}

@media (max-width: 850px) {
  .main_visual {
    height: 100vh;
  }
}

.main_visual img {
  height: 750px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 850px) {
  .main_visual img {
    height: 100vh;
  }
}

.main_visual .main_visual_top {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  max-width: 700px;
  width: 100%;
}

.main_visual .main_visual_top .caption {
  text-align: center;
  color: #FA8072;
  font-size: 35px;
  font-weight: bold;
}

.main_visual .main_visual_top .search .item {
  margin: 0 20px;
}

@media (max-width: 850px) {
  .main_visual .main_visual_top .search .item {
    text-align: center;
    margin-bottom: 5px;
  }
}

.main_visual .main_visual_top .search .item .search_input {
  border-radius: 4px;
  font-size: 18px;
  background-color: rgba(241, 241, 241, 0.8);
  border: 1px solid #999;
  height: 35px;
  padding: 0 10px;
  width: 230px;
  text-align: center;
}

.main_visual .main_visual_top .search .item ::-webkit-input-placeholder {
  color: #000;
}

.main_visual .main_visual_top .search .item :-ms-input-placeholder {
  color: #000;
}

.main_visual .main_visual_top .search .item ::-ms-input-placeholder {
  color: #000;
}

.main_visual .main_visual_top .search .item ::placeholder {
  color: #000;
}

.main_visual .main_visual_top .search-btn {
  display: block;
  width: 230px;
  font-size: 18px;
  background-color: #FA8072;
  color: #000;
  border-radius: 6px;
  text-align: center;
  margin: 0 auto;
  padding: 10px 0;
}

/*datepicker*/
.ui-datepicker {
  font-size: 20px;
}

/*index.sec1*/
.index .feature {
  background-color: #ececec;
}

.index .feature .title span {
  background-color: #ececec;
}

.index .feature .icon {
  width: 30px;
}

.index .feature .content .main_content {
  width: 74%;
}

@media (max-width: 850px) {
  .index .feature .content .main_content {
    width: 100%;
    margin-bottom: 30px;
  }
}

.index .feature .content .main_content ul {
  background-color: #fff;
  padding: 30px 50px;
  border-radius: 8px;
}

@media (max-width: 850px) {
  .index .feature .content .main_content ul {
    padding: 15px;
  }
}

.index .feature .content .main_content ul li {
  font-size: 18px;
  line-height: 1.4;
  font-weight: bold;
  padding: 15px 0px;
  border-bottom: 1px dotted #acacac;
}

.index .feature .content .main_content ul li a:hover {
  color: #ff4000;
  opacity: 1;
}

.index .feature .content .side_bar {
  width: 25%;
}

@media (max-width: 850px) {
  .index .feature .content .side_bar {
    width: 100%;
  }
}

.index .feature .content .side_bar .fb_iframe_widget,
.index .feature .content .side_bar .fb_iframe_widget span,
.index .feature .content .side_bar .fb_iframe_widget iframe[style] {
  width: 100% !important;
}

/* ================================================
	search.html
================================================ */
/*main-visual*/
.search .wrap_inner {
  max-width: 1000px;
}

@media (max-width: 850px) {
  .search .map iframe {
    height: 300px;
  }
}

.search .main_visual {
  position: relative;
  height: auto;
}

@media (max-width: 850px) {
  .search .main_visual {
    height: 40vh;
  }
}

.search .main_visual img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 850px) {
  .search .main_visual img {
    height: 40vh;
  }
}

.search .attendant_wrap .item {
  width: 24%;
  margin-right: 1%;
  margin-right: calc(4% / 3);
  margin-bottom: 1%;
  background-color: #f5f5f5;
  padding: 10px;
}

@media (max-width: 850px) {
  .search .attendant_wrap .item {
    width: 49%;
    margin-right: 1%;
    margin-right: 2%;
  }
}

.search .attendant_wrap .item .img {
  margin-bottom: 8px;
}

.search .attendant_wrap .item .img img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.search .attendant_wrap .item .name {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
}

.search .attendant_wrap .item .tag {
  margin-bottom: 8px;
}

.search .attendant_wrap .item .tag .tag_item {
  display: inline-block;
  font-size: 15px;
  padding: 5px 8px;
  margin-right: 10px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.search .attendant_wrap .item .tag .tag_item_pink {
  border: 1px solid #FA8072;
}

.search .attendant_wrap .item .good {
  text-align: right;
}

.search .attendant_wrap .item .good .good_img {
  margin-right: 2%;
}

.search .attendant_wrap .item .good .good_img img {
  width: 50%;
  vertical-align: middle;
}

.search .attendant_wrap .item .good .count {
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  background: #fa8072;
  padding: 3px 8px;
  border-radius: 6px;
}

.search .attendant_wrap .item:nth-child(4n) {
  margin-right: 0;
}

@media (max-width: 850px) {
  .search .attendant_wrap .item:nth-child(2n) {
    margin-right: 0;
  }
}

/* ================================================
	profile
================================================ */
.profile .wrap_inner {
  max-width: 1000px;
}

.profile .bg_pink_ttl {
  color: white;
  text-align: center;
  max-width: 1000px;
  margin: 0px auto 40px;
  padding: 25px 0px;
  font: bold 30px / 40px "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background: salmon;
}

@media (max-width: 850px) {
  .profile .bg_pink_ttl {
    padding: 15px 0px;
    font-size: 20px;
    line-height: 1.5;
  }
}

.profile .sec1 .pic .flex-pc {
  max-width: 450px;
  margin: 0 auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 850px) {
  .profile .sec1 .pic .flex-pc {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.profile .sec1 .pic .flex-pc .item {
  width: 50%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

@media (max-width: 850px) {
  .profile .sec1 .pic .flex-pc .item {
    padding: 0;
    border: none;
    border-radius: 0px;
  }
}

.profile .sec1 .pic .flex-pc .item2 {
  width: 50%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 850px) {
  .profile .sec1 .pic .flex-pc .item2 {
    width: 100%;
  }
}

@media (max-width: 850px) {
  .profile .sec1 .pic .flex-pc .item1 {
    width: 100%;
  }
}

.profile .sec1 .info table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 20px;
}

@media (max-width: 850px) {
  .profile .sec1 .info table {
    border-spacing: 0px;
  }
}

.profile .sec1 .info table tr td:first-child {
  width: 28%;
  font: normal bold 18px/24px "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  color: #FFF;
  background: #484747;
  margin: 0px 2% 0 0;
  padding: 10px 0;
}

@media (max-width: 850px) {
  .profile .sec1 .info table tr td:first-child {
    font-size: 14px;
    line-height: 1.44;
    padding: 10px 5px;
    margin-bottom: 5px;
  }
}

@media (max-width: 850px) {
  .profile .sec1 .info table tr td:last-child {
    padding-left: 10px;
  }
}

.profile .sec1 .info table tr td {
  vertical-align: middle;
}

.profile .sec1 .info table tr td .btn {
  padding: 5px 10px;
  background-color: #ccc;
  border: 1px solid #000;
  font-weight: bold;
  border-radius: 2px;
}

.profile .sec1 .info table tr td .btn-pink {
  padding: 5px 10px;
  border: 2px solid #FA8072;
  font-weight: bold;
  border-radius: 2px;
  display: inline-block;
  margin: 2px;
}

@media (max-width: 850px) {
  .profile .sec1 .info table tr td .btn-pink {
    padding: 3px 5px;
    border: 1px solid #FA8072;
  }
}

.profile .sec1 .info table tr td .point span {
  padding: 5px;
  color: #fff;
  background-color: #FA8072;
  border-radius: 8px;
  font-weight: bold;
}

.profile-edit .btn {
  display: inline-block;
  background-color: #fa8072;
  padding: 15px 40px;
  margin-top: 20px;
  font-size: 18px;
  border-radius: 5px;
}

.profile-edit .wrap_inner {
  max-width: 1240px;
}

.profile-edit input[type="text"] {
  width: 80%;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
}

.profile-edit input[type="text"].w50 {
  width: 50%;
}

.profile-edit .textarea {
  width: 100%;
}

.profile-edit .select {
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
}

.profile-edit .checkbox-inline {
  margin-right: 15px;
}

.profile-edit input[type="checkbox"] {
  margin-right: 5px;
}

.profile-edit .timepart,
.profile-edit .areapart,
.profile-edit .genrepart {
  font-size: 16px;
  font-weight: bold;
}

.profile-edit .areapart label {
  width: 7em;
  margin-bottom: 0.7em;
  display: inline-block;
}

@media (max-width: 850px) {
  .profile-edit .areapart label {
    width: auto;
  }
}

.profile-edit .genrepart label {
  width: 10.3em;
  margin-bottom: 0.7em;
  display: inline-block;
}

@media (max-width: 850px) {
  .profile-edit .genrepart label {
    width: auto;
  }
}

.profile-edit .bgspan {
  padding: 0 !important;
  background: #fff !important;
  vertical-align: top !important;
}

.profile-edit .bgspan p {
  background: #484747;
  padding: 10px 0;
}

.profile-edit .laungarea {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.profile-edit .launge {
  display: inline-block;
  width: 8em;
}

.profile-edit .launglevel {
  display: inline-block;
}

/* ================================================
	register
================================================ */
.register .sec1 {
  padding: 50px 0;
}

.register .sec1 .wrap_inner {
  max-width: 1300px;
}

.register .sec1 .box {
  border: solid 2px #FA8072;
  border-radius: 7px;
  padding: 40px;
}

.register .sec1 .box .link {
  color: #00F;
  text-decoration: underline;
}

.register .sec1 .box .btn p {
  width: 60%;
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.register .sec1 .box button {
  background-color: #e2e2e2;
  border: 1px solid #333;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 4px;
}

/* ================================================
	register-info
================================================ */
.register-info .rulestext {
  overflow-y: scroll;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  border: solid 1px #000000;
  padding: 15px;
}

.register-info .rulesinline {
  margin-left: 2em;
  position: relative;
  top: -1.8em;
  display: block;
  margin-bottom: -1em;
}

.register-info table {
  width: 100%;
  max-width: 750px;
  font-size: 18px;
  border-collapse: separate;
  border-spacing: 20px;
}

.register-info table td:first-child {
  text-align: right;
}

@media (max-width: 850px) {
  .register-info table td:first-child {
    text-align: center;
  }
}

@media (max-width: 850px) {
  .register-info table td {
    display: block;
    margin-bottom: 10px;
  }
}

.register-info table input[type="text"] {
  padding: 1em;
  width: 100%;
}

.register-info table select {
  padding: 0.3em;
  font-size: 16px;
}

.register-info .btn {
  display: inline-block;
  background-color: #fa8072;
  padding: 15px 40px;
  margin-top: 20px;
  font-size: 18px;
  border-radius: 5px;
}

/* ================================================
	login
================================================ */
.login .form-control {
  display: block;
  margin: 0 auto;
  width: 400px;
  max-width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #000;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}

/* ================================================
	about
================================================ */
.about .sec1 {
  background-color: #000;
  color: #fff;
}

.about .sec1 .title::before {
  background-color: #fff;
}

.about .sec1 .title span {
  background-color: #000;
}

.about .sec2 .sec2_ttl {
  font-size: 25px;
  width: 350px;
  max-width: 100%;
  text-align: center;
  padding: 10px;
  margin: 0 auto;
}

.about .sec2 .sec2_ttl1 {
  border: 3px solid #fa7262;
  color: #fa7262;
}

.about .sec2 .sec2_ttl2 {
  border: 3px solid #434343;
  color: #434343;
}

.about .sec2 .flex {
  max-width: 1000px;
  margin: 0 auto;
}

.about .sec2 .flex .item {
  color: #fa7262;
  text-align: center;
  font-size: 16px;
  margin: 15px;
  line-height: 1.6;
}

.about .sec2 .flex .item .circle {
  border: 3px solid #fa7262;
  border-radius: 100%;
  height: 160px;
  width: 160px;
  margin-bottom: 8px;
  position: relative;
}

.about .sec2 .flex .item .circle p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 95%;
}

.about .sec2 .flex .item .circle p img {
  width: auto;
}

.about .sec2 .flex .item .step {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: #fa7262;
}

.about .sec2 .flex .item_btn {
  cursor: pointer;
  color: #fff;
}

.about .sec2 .flex .item_btn .circle {
  background-color: #fa7262;
}

.about .sec2 .flex2 .item {
  color: #434343;
}

.about .sec2 .flex2 .item .circle {
  border: 3px solid #434343;
}

.about .sec2 .flex2 .item .step {
  color: #434343;
}

.about .sec2 .flex2 .item_btn {
  color: #fff;
}

.about .sec2 .flex2 .item_btn .circle {
  background-color: #434343;
}

/* ================================================
	location
================================================ */
.location .box {
  border: solid 2px #FA8072;
  padding: 40px 20px 60px;
  text-align: center;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
  margin: 30px 0;
  -webkit-box-shadow: 0 0 8px #acacac;
          box-shadow: 0 0 8px #acacac;
}

.location .box input {
  width: 80%;
  margin: 0 auto;
  padding: 5px;
}

.location .box .btn_normal {
  margin: 0 10px;
}

/* ================================================
	contact
================================================ */
.contact form {
  max-width: 1050px;
  margin: 0 auto;
  font-size: 18px;
}

.contact .formpart01 {
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  word-break: break-all;
}

.contact .formpart01 span.formlabel {
  display: inline-block;
  width: 20%;
  vertical-align: top;
  margin-right: 1%;
  min-width: 191px;
  text-align: right;
}

.contact .formpart01 input {
  vertical-align: top;
  padding: 0 0.5em;
  width: 60%;
  height: 1.5em;
  line-height: 1em;
  min-width: 210px;
}

.contact .formpart01 textarea {
  /* margin: 0.55em 0; */
  padding: 0.5em;
  line-height: 1.2em;
  width: 60%;
  height: 14em;
  min-width: 210px;
}

.contact .formpart01 .required-lbl {
  color: #FF0000;
}

.contact #button_default,
.contact #back,
.contact #send {
  padding: 8px 76px;
  background-color: #FA8072;
  font-size: 18px;
  border: none;
  margin-left: auto;
  margin-right: auto;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  display: block;
}

/* ================================================
	company
================================================ */
.company .companytb {
  margin: 0px auto;
  padding: 0px;
  max-width: 760px;
  width: 90%;
  vertical-align: top;
}

.company .companytb td.tbleft {
  padding: 30px 0;
  width: 25%;
  font: normal normal 16px/24px "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #484747;
  text-align: center;
  background: #f1f1f1;
  border: 1px solid #FFF;
  vertical-align: middle;
}

.company .companytb td.tbright,
.company .companytb td.tbright2 {
  padding: 30px 10%;
  width: 55%;
  font: normal normal 16px/24px "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #484747;
  text-align: left;
  border: 1px solid #dfdfdf;
}

/* ================================================
	service
================================================ */
.service .sec1 .inner {
  max-width: 800px;
  margin: 0 auto;
}

.service .sec1 .service {
  text-align: left;
  max-width: 800px;
  padding: 50px 50px;
  font: 16px / 28px "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background: whitesmoke;
}

.service .sec1 .service p {
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.service .sec1 .service .servicelist {
  padding-left: 2em;
}

.service .sec1 .service .servicelist li {
  text-indent: -1em;
  padding-left: 1em;
}

/* ================================================
	faq
================================================ */
.faq .faq_box {
  margin: 0px auto 30px;
  padding: 2%;
  width: 90%;
  color: #484747;
  text-align: left;
  max-width: 800px;
  background: #f1f1f1;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.66;
}

.faq .faq_box img {
  width: auto;
  vertical-align: middle;
  margin-right: 1em;
}

@media (max-width: 850px) {
  .faq .faq_box img {
    display: block;
  }
}

.faq .faq_box .question {
  margin-bottom: 2em;
}

.faq .faq_box .answer {
  padding-left: 2em;
}

/* ================================================
	main-visual bg
================================================ */
.main_visual_main {
  height: auto;
  background-image: url("assets/img/profile/bg_profile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.main_visual_main h2 {
  color: #fff;
  font-weight: bold;
  font-size: 45px;
}

@media (max-width: 850px) {
  .main_visual_main {
    background-position: center;
    padding: 30px 0;
  }
  .main_visual_main h2 {
    font-size: 25px;
  }
}

.profile .main_visual_main {
  background-image: url("assets/img/profile/bg_profile.jpg");
}

.about .main_visual_main {
  background-image: url("assets/img/about/bg_about.jpg");
}

.company .main_visual_main {
  background-image: url("assets/img/company/bg_company.jpg");
}

.service .main_visual_main {
  background-image: url("assets/img/service/bg_service.jpg");
}

.faq .main_visual_main {
  background-image: url("assets/img/faq/bg_faq.jpg");
}

/* ================================================
	modal
================================================ */
/*モーダルを開くボタン*/
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 40px 20px;
  overflow: auto;
  display: none;
  visibility: hidden;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  display: block;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 700px;
  width: 90%;
  border-radius: 5px;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
  border-radius: 5px;
  background: #fff;
  text-align: left;
  padding: 30px;
}

.modal-content p {
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  font-weight: bold !important;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  margin-bottom: 16px;
}

.modal-content .btn {
  margin: 0 auto;
  padding: 10px 15px;
  width: 80%;
  font-size: 14px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #fa8072;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border: none;
  display: block;
  font-weight: bold !important;
}

/* ================================================
	chat
================================================ */
.chat .sec1 .maintitleh02 {
  margin-bottom: 40px;
  font-size: 25px;
  text-align: center;
}

.chat .sec1 .maintitleh02 .attendantname {
  font-weight: bold;
  margin-right: 30px;
}

.chat .sec1 .container .row {
  margin-bottom: 10px;
}

.chat .sec1 .container .row .item-date {
  width: 10%;
}

.chat .sec1 .container .row .item-date p {
  color: #777;
  font-size: 16px;
  line-height: 1.66;
}

.chat .sec1 .container .row .item-txt {
  line-height: 1.66;
  font-size: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #a9fa8a;
  width: 70%;
}

.chat .sec1 .container .row-l .item-txt {
  background: #e6e6e6;
  margin-right: 40px;
}

.chat .sec1 .container .row-l .img img {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  margin-right: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.chat .sec1 .container .form-control {
  display: block;
  width: 60%;
  margin: 0 auto;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #000;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  height: auto;
}

.chat .sec1 .flex1 .img img {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  margin-right: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.chat .sec1 .flex1 .name-wrap .name {
  font-size: 18px;
  line-height: 1.66;
}

.chat .sec1 .flex1 .name-wrap .name:hover {
  color: #ff0000;
}

.chat .sec1 .flex1 .name-wrap p {
  font-size: 16px;
  color: #777;
}

.chat.chat2 .container {
  width: 70%;
}

.chat.chat2 .container .form-control {
  width: 100%;
}

.chat.chat2 .main_visual_main h2 {
  color: #fff;
  font-weight: 400;
  font-size: 30px;
}

.chat.chat2 .img {
  position: relative;
}

.chat.chat2 .img .new_message_num {
  position: absolute;
  top: 0%;
  left: 0%;
  background-color: #FA8072;
  border-radius: 100px;
  width: 20px;
  height: 20px;
}

.chat.chat2 .img .new_message_num span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 10px;
  font-weight: bold;
}

.header-btn .new_message_num {
  position: relative;
  vertical-align: top;
  display: inline-block;
  background-color: #fff;
  border-radius: 100px;
  width: 20px;
  height: 20px;
}

.header-btn .new_message_num span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: bold;
}

.sp_menu_inner .sp_message .new_message_num {
  position: relative;
  vertical-align: top;
  display: inline-block;
  background-color: #FA8072;
  border-radius: 100px;
  width: 25px;
  height: 25px;
}

.sp_menu_inner .sp_message .new_message_num span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 11px;
  font-weight: bold;
  color: #fff;
}

.advertisement {
  padding: 40px 0;
}

.advertisement .item {
  max-width: 33%;
}

@media (max-width: 850px) {
  .advertisement .item {
    max-width: 100%;
  }
}

.advertisement .item img {
  max-width: 100%;
  width: auto;
}

.p-ad2 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

@media (max-width: 850px) {
  .p-ad2 {
    top: 0;
    bottom: auto;
  }
}

.p-ad2__button {
  width: 60px;
  text-align: center;
  padding: 5px 10px;
  border: #ccc 1px solid;
  border-radius: 3px 3px 0 0;
  background-color: #fff;
  cursor: pointer;
}

.p-ad2__button svg {
  width: 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.p-ad2__button.hidden svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 850px) {
  .p-ad2__button {
    border-radius: 0px 0px 3px 3px;
  }
  .p-ad2__button svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .p-ad2__button.hidden svg {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.p-ad2__content {
  background-color: #fff;
  padding: 20px;
}

.p-ad2__contentInner {
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 850px) {
  .p-ad2__contentInner {
    max-width: 350px;
  }
}

.p-ad2__contentInner iframe {
  width: 100%;
}
/*# sourceMappingURL=style.css.map */