@charset "UTF-8";
/**
 * CSSリセット
 * 参照元：http: //meyerweb.com/eric/tools/css/reset/
**/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
}
input.btn, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 1.6rem;
}
/* iOS */
input[type=submit], input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus, input[type=button]::focus {
  outline-offset: -2px;
}
.select select {
  height: 5rem;
  line-height: 4.3rem;
  padding: 0 2.5rem 0 1.5rem;
  background: #fff;
  border: 1px solid #e9eced;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.select select::-ms-expand {
  display: none;
}
.select span:after {
  content: "";
  margin-top: -0.5rem;
  top: 50%;
  right: 1.6rem;
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  position: absolute;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(135deg);
  color: #000;
}
@media screen and (max-width: 959px) {
  .select select {
    padding-left: 0.5rem;
    font-size: 1.2rem;
  }
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  transition: 0.6s;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}
/**
 * 再定義
**/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.5rem;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  font-weight: 300;
  color: #000;
}
body::before {
  content: "";
  background: url(../images/bg_main.jpg) top center no-repeat;
  background-size: cover;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  body::before {
    padding-top: 200%;
  }
}
body.bg_none {
  background-color: #61b9d1;
}
body.bg_none::before {
  content: none;
}
body > .wrap {
  overflow: hidden;
}
table {
  letter-spacing: 0;
  empty-cells: show;
}
tbody {
  position: unset;
}
table tr, table th, table td {
  empty-cells: show;
  transition: 0.6s;
  position: unset;
}
input, select, textarea {
  font-size: 90%;
  background: none;
  transition: 0.6s;
  background-color: #fff;
  width: 100%;
  height: 51px;
  border: 1px solid #ccc;
  padding: 6px 12px;
}
input[type=checkbox], input[type=radio] {
  width: 1.8rem;
  height: 1.8rem;
  margin: 0.1rem 0.5rem 0 0;
}
a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}
a:hover {
  cursor: pointer;
  color: #555;
}
img {
  border: none;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
  vertical-align: bottom;
  transition: 0.6s;
}
*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: relative;
}
/**
 * font color
**/
.fc__color {
  color: #61b8d0;
}
.fc__pink {
  color: #88d9d5;
}
.fc__blue {
  color: #aee5d8;
}
/**
 * background color
**/
.bg__color {
  background: #ebf5ff;
}
.bg__gray {
  background: #e9eeef;
}
/**
 * display
**/
/** SP以下表示 **/
.sp--disp {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .sp--disp {
    display: block;
  }
}
/** tablet以下表示 **/
.tl--disp {
  display: none !important;
}
@media only screen and (max-width: 959px) {
  .tl--disp {
    display: block;
  }
}
/** tablet以上表示 **/
@media only screen and (max-width: 767px) {
  .pc--disp {
    display: none !important;
  }
}
/**
 * section
**/
section {
  padding: 8rem 0;
}
@media only screen and (max-width: 959px) {
  section {
    padding: 5rem 0;
  }
}
.contact, .terms, .policy {
  padding-top: 0;
}
.faq, .guide, .bg_f2f6f8 {
  background-color: #fff;
}
/**
 * container
**/
.l-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 8rem;
  position: relative;
}
@media only screen and (max-width: 959px) {
  .l-container {
    max-width: unset;
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .l-container {
    padding: 0 1.5rem;
  }
}
/**
 * display flex
**/
.c-flex {
  display: flex;
}
.c-flex--wrap {
  flex-wrap: wrap;
}
.c-flex--between {
  justify-content: space-between;
}
/**
 * subpage-head
**/
.subpage-head {
  padding: 4rem 0 2rem !important;
}
.subpage-head .c-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-bottom: 0;
  color: #fff;
}
.subpage-head .c-head .banner_request{
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .subpage-head .c-head {
    flex-direction: column;
  }
}
.subpage-head .c-head__ttl {
  font-size: 3rem;
}
.subpage-head .c-head__txt {
  margin-top: 1.6rem;
  font-weight: 500;
  color: #fff;
}
/**
 * TITLE
**/
.c-head {
  margin-bottom: 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/**
.c-head + .tableset {
  display: block;
  padding: 2rem;
}
**/
.c-head--second {
  margin-top: 8rem;
}
.c-head--center {
  align-items: center;
}
.c-head__logo {
  width: 26rem;
  margin-bottom: 4rem;
  padding: 3rem;
}
.c-head__ttl {
  font-size: 2.4rem;
  font-weight: 700;
}
.c-head__ttl-link {
  display: inline-block;
  letter-spacing: -1rem;
  transform: scale(0.6, 1);
}
.c-head__txt {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 959px) {
  .c-head {
    margin-bottom: 3rem;
  }
  .c-head--second {
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-head__ttl {
    font-size: 2rem !important;
  }
}
/**
 * button
**/
.btn {
  width: 100%;
  margin-top: 4rem;
  max-width: 25rem;
  font-weight: 700;
  position: relative;
}
.btn a, .btn input, .btn button, .btn > span {
  width: 100%;
  height: 4.5rem;
  background: #ff9c00;
  color: #fff;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;
}
.btn a:hover, .btn input:hover, .btn button:hover, .btn > span:hover {
  background: #ffbb00;
}
@media only screen and (max-width: 959px) {
  .btn {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .btn a::after {
    margin-left: 0.5rem;
  }
}
.btn--small {
  width: 100%;
  max-width: 25rem;
  position: relative;
}
.btn--small a, .btn--small button, .btn--small input, .btn--small > span {
  width: 100%;
  height: 3.5rem;
  padding: 0 1rem;
  background: #fff;
  color: #61b8d0;
  font-size: 1.2rem;
  font-weight: 700;
  border: 1px solid #61b8d0;
  border-radius: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .btn--small a, .btn--small button, .btn--small input, .btn--small > span {
    height: 3rem;
    padding: 0 0.5rem;
    font-size: 1rem;
  }
}
.btn--like a, .btn--like a:hover {
  color: #e73656;
  background: #fff;
  border: 1px solid #e73656;
  width: 20rem;
  margin: 0 auto;
}
.btn--like a::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url("../images/icon__btn--likeoff.png") center center/100% no-repeat;
  display: inline-block;
  position: relative;
  top: 0;
  right: 5px;
  transition: 0.2s;
}
.btn--like a:hover::before, .btn--likeoff a::before {
  background-image: url("../images/icon__btn--like.png");
}
.btn--message a {
  color: #61b8d0;
  background: #fff;
  border: 1px solid #61b8d0;
}
.btn--message a::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url("../images/icon__btn--message.png") center center/100% no-repeat;
  display: inline-block;
  position: relative;
  top: 0;
  right: 5px;
  transition: 0.2s;
}
.btn--message a:hover {
  background: #edf9ff;
}
.btn-under-txt {
  margin-top: 2rem;
  text-align: center;
}
.btn-under-txt a {
  color: #fff;
}
.btn-under-txt a:hover {
  opacity: 0.7;
}
/** 横並びボタン **/
.btnBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.btnBox .btn {
  width: 49%;
  max-width: none;
}
.btnBox .btn--small {
  width: 24.5%;
}
/**
 * swipe
**/
@media only screen and (max-width: 767px) {
  .swipe {
    width: auto;
    padding: 1rem;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow: auto;
  }
}
.formset {
  margin-bottom: 3rem;
  padding: 4rem;
  background: #fff;
  border: 1px solid #e9eced;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.formset__item {
  width: 100%;
  display: table;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e9eced;
}
.formset__item:last-child {
  margin-bottom: 0;
  border: none;
}
.formset__item:last-child .formset__ttl, .formset__item:last-child .formset__input {
  padding-bottom: 0;
}
.formset__ttl {
  width: 28rem;
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 2rem 1rem;
  font-weight: 700;
}
.formset__must {
  height: 2rem;
  padding: 0 0.8rem;
  color: #fff;
  font-size: 1rem;
  background: #ec5937;
  border-radius: 0.5rem;
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
}
.formset__input {
  display: table-cell;
  padding: 0 0 2rem 4rem;
}
.formset__input img {
  width: 18rem;
  height: 18rem;
  margin-bottom: 1rem;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  border-radius: 0.5rem;
}
.formset__input ul li {
  display: inline-flex;
  margin: 0 1rem 1rem 0;
}
.input_select, .formset__input input[type=text], .formset__input input[type=email], .formset__input input[type=password], textarea {
  width: 100%;
  max-width: 50rem;
  padding: 1.5rem;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
}
.input_select {
  width: auto;
}
textarea {
  max-width: none;
}
.formset__btn {
  margin-left: auto;
  margin-right: auto;
}
.formset__btn--back {
  margin-top: 1rem;
}
.formset__btn--back button {
  color: #61b8d0;
  background: #fff;
  border: 1px solid #61b8d0;
}
.formset__btn--back button:hover {
  background: #edf9ff;
}
.txt-delete {
  top: -3px;
}
@media only screen and (max-width: 959px) {
  .formset__ttl {
    width: 21rem;
  }
}
@media screen and (max-width: 767px) {
  .formset {
    padding: 2rem;
    border-bottom: 1px solid #e9eced;
  }
  .formset__ttl, .formset__input {
    width: 100%;
    display: block;
    padding: 0 0 2rem;
  }
  .formset__input img {
    width: 12rem;
    height: 12rem;
  }
}
.tableset {
  width: 100%;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .tableset {
    margin-bottom: 3rem;
    padding: 4rem;
    border: 1px solid #e9eced;
    border-radius: 0.5rem;
  }
}
.tableset__list {
  width: 100%;
  text-align: left;
}
.tableset__list:first-child {
  margin-top: 4rem;
}
.tableset__list:last-child {
  margin-bottom: 4rem;
}
.tableset__ttl {
  width: 32rem;
  display: table-cell;
  vertical-align: middle;
  padding: 2rem 4rem;
  font-weight: 700;
  color: black;
  border-bottom: 1px solid #e9eced;
}
.tableset__must {
  height: 2rem;
  padding: 0 0.8rem;
  color: #fff;
  font-size: 1rem;
  background: #ec5937;
  border-radius: 0.5rem;
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tableset__txt {
  display: table-cell;
  padding: 2rem;
  border-bottom: 1px solid #e9eced;
}
.tableset__txt img {
  width: 18rem;
  height: 18rem;
  margin-bottom: 1rem;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  border-radius: 0.5rem;
}
.tableset__txt ul li {
  display: inline-flex;
  margin: 0 1rem 1rem 0;
}
.input_select, .tableset__txt input[type=text], .tableset__txt input[type=email], .tableset__txt input[type=password], textarea {
  width: 100%;
  max-width: 50rem;
  padding: 1.5rem;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
}
.input_select {
  width: auto;
}
textarea {
  max-width: none;
}
.tableset__btn {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 959px) {
  .tableset__ttl {
    width: 21rem;
  }
}
@media screen and (max-width: 767px) {
  .tableset__ttl, .tableset__txt {
    width: 100%;
    display: block;
    padding: 1rem;
  }
  .tableset__txt {
    padding: 2rem
  }
  .tableset__txt img {
    width: 12rem;
    height: 12rem;
  }
}
.data-tableset {
  border: solid 1px #cacaca;
  font-size: 1.4rem;
}
.data-tableset thead {
  background-color: #e5ebec;
}
.data-tableset thead .tableset__ttl {
  color: #000;
  font-weight: 500;
}
.data-tableset thead .tableset__txt {
  font-weight: 500;
}
.data-tableset .tableset__list:first-child {
  margin-top: 0;
}
.data-tableset .tableset__list:last-child {
  margin-bottom: 0;
}
.data-tableset .tableset__list:nth-child(even) {
  background-color: #f6f8f9;
}
.data-tableset .tableset__ttl {
  color: #44bdf2;
  width: 20%;
  padding: 2rem;
  border-right: solid 1px #cacaca;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .data-tableset .tableset__ttl {
    display: table-cell;
    width: 40%;
    padding: 1rem;
  }
}
.data-tableset .tableset__txt {
  width: 80%;
  padding: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .data-tableset .tableset__txt {
    display: table-cell;
    width: 60%;
    padding: 1rem;
  }
}
/**
 * エフェクト
**/
.effect-fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 1000ms;
}
.effect-fade-2 {
  transform: translate(0, 90px);
}
.effect-fade-3 {
  transform: translate(0, 135px);
}
.effect-fade-4 {
  transform: translate(0, 180px);
}
.effect-fade-5 {
  transform: translate(0, 225px);
}
.effect-fade-6 {
  transform: translate(0, 270px);
}
.fade-t {
  transform: translate(0, -45px);
}
.fade-r {
  transform: translate(45px, 0);
}
.fade-l {
  transform: translate(-45px, 0);
}
.effect-fade.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}
.import_box {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-top: 2rem;
  margin: -2rem 0;
  border-top: dotted 1px #fff;
}
.import_box > li:first-child {
  width: 36%
}

.import_box > li:last-child {
  text-align: left;
  position: relative;
  width: 64%;
}
.import_box > li:last-child .btn {
  position: absolute;
  right: 1px;
  top: 6px;
  margin-top: 0;
}

.import_box > li:last-child input[type="file"] {
  color: #fff;
  margin-top: 0.8rem;
  font-weight: bold;
  letter-spacing: .1rem;
  font-size: 1.4rem;
}
.search_box {
  padding: 3rem 8rem !important;
}
.search_box .search__item button {
  width: 100%;
  height: 5.5rem;
  padding: 0 1rem;
  background: #1eb4dc;
  color: #fff;
  font-weight: 700;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: 0 0 1rem rgb(0 0 0 / 10%);
  box-shadow: 0 0 1rem rgb(0 0 0 / 10%);
}
.search_box .select2 select {
  height: 4.5rem;
  line-height: 4.3rem;
  padding: 0 2.5rem 0 1.5rem;
  background: #fff;
  border: 1px solid #e9eced;
  color: #000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}
.search_box .search__filter {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}
.search_box .search__item {
  margin-left: 0 !important;
  flex-basis: 33.333% !important;
  margin-right: 0.5rem;
}
.search_box input[type="text"] {
  height: 47px;
}
@media screen and (max-width: 890px) {
  .import_box {
    display: block;
  }
  .import_box > li:first-child,
  .import_box > li:last-child  {
    width: 100%;
  }
  .import_box > li:first-child {
    padding-bottom: 1rem;
  }
  .import_box > li:last-child .btn {
    max-width: 11rem;
    font-size: 1.2rem;
    font-weight: bold;
    height: 4rem;
  }
  .import_box > li:last-child input[type="file"] {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 798px) {
  .search_box {
    padding: 2rem 1rem !important;
  }
}
@media screen and (max-width: 480px) {
  .search_box .search__filter {
    flex-wrap: wrap;
  }
  .search__area--second {
    margin-top: 1rem !important;
  }
  .search_box .search__item:first-child {
    margin-right: 1%;
    flex-basis: 48% !important;
  }
  .search_box .search__item:nth-child(2) {
    margin-right: 0;
    flex-basis: 45% !important;
  }
  .search_box .search__item:last-child {
    width: 100%;
    display: block;
    flex-basis: unset !important;
    margin-right: 0;
    padding-top: 1rem;
  }
  .search__item button {
    height: 4.5rem;
    font-weight: normal;
  }
  .search_box .select2 select {
    font-size: 1.3rem;
  }
}

/** SP以下のみ表示 **/
.sp_disp {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .pc_disp {
    display: none !important;
  }

  .sp_disp {
    display: block !important;
  }
}