@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* 共通
----------------------------------------------*/
.content_block {
  padding: 0 20px;
}

.section {
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .section {
    margin-top: 60px;
  }
}
@media print, screen and (min-width: 960px) {
  .section {
    margin-top: 100px;
  }
}

.policy_page_ttl {
  text-align: center;
  background-color: transparent;
  position: relative;
  font-weight: bold;
  color: #fff;
  z-index: 1;
  display: block;
  width: 100%;
  line-height: 2;
  font-size: 20px;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 960px) {
  .policy_page_ttl {
    font-size: 32px;
  }
}
.policy_page_ttl:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/bg-blue.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  border-radius: 10px;
}

/* ************************************************
 *	お問い合わせページ
 * ************************************************ */
.page_contact .text {
  text-align: center;
  font-size: 17px;
}
@media print, screen and (min-width: 960px) {
  .page_contact .text {
    font-size: 20px;
  }
}
.page_contact .page_contact_contents {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  margin-top: 20px;
}
@media print, screen and (min-width: 768px) {
  .page_contact .page_contact_contents {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 40px;
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 30px;
  }
}
.page_contact .page_contact_contents .contact_list_box {
  width: 100%;
  border-radius: 10px;
  margin-top: 30px;
  border: 1px solid #fbf8f5;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  .page_contact .page_contact_contents .contact_list_box {
    width: calc(50% - 15px);
    margin-top: 0;
  }
}
@media screen and (min-width: 1100px) {
  .page_contact .page_contact_contents .contact_list_box {
    width: calc(33.333% - 20px);
  }
}
.page_contact .page_contact_contents .contact_list_box:first-child {
  margin-top: 0;
}
.page_contact .page_contact_contents .contact_list_box a {
  transition: all ease 0.3s;
  display: block;
}
.page_contact .page_contact_contents .contact_list_box a:hover {
  opacity: 0.7;
}
.page_contact .page_contact_contents .contact_list_box .contact_text_box h2 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  white-space: nowrap;
}
.page_contact .page_contact_contents .contact_list_box .contact_text_box p {
  margin-top: 10px;
  line-height: 1.8;
}
.page_contact .page_contact_contents .contact_list_box .contact_text_box .btn {
  margin-top: 20px;
  text-align: center;
  bottom: 0;
}
@media print, screen and (min-width: 960px) {
  .page_contact .page_contact_contents .contact_list_box .contact_text_box .btn {
    margin-top: 30px;
  }
}
.page_contact .page_contact_contents .contact_list_box .contact_text_box .btn span {
  padding: 10px 65px 10px 35px;
  background-color: #fbf8f5;
  border-radius: 25px;
  width: 300px;
  display: inline-block;
  transition: all ease 0.5s;
  position: relative;
  color: #fff;
  border-radius: 40px;
  white-space: nowrap;
}
.page_contact .page_contact_contents .contact_list_box .contact_text_box .btn span:hover {
  background-color: #00860B;
}
.page_contact .page_contact_contents .contact_list_box .contact_text_box .btn span:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.page_contact .page_contact_contents .contact_list_box .contact_text_box .btn span:hover::after {
  right: 1em;
}
.page_contact .page_contact_contents .contact_list_box .contact_text_box .btn span::after {
  position: absolute;
  display: block;
  content: "";
  background: url("images/arrow-main.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  transition: all ease 0.5s;
}
.page_contact .page_contact_contents .contact_list_box .contact_text_box .dl_link_wrapper {
  margin-top: 20px;
}
.page_contact .page_contact_contents .contact_list_box .contact_text_box .dl_link_wrapper a {
  display: block;
  text-decoration: underline;
  padding: 5px 0;
  transition: color ease 0.3s;
}
.page_contact .page_contact_contents .contact_list_box .contact_text_box .dl_link_wrapper a:hover {
  color: #f8b62d;
}

/* ************************************************
 *	サンクスページ
 * ************************************************ */
.thanks .contact_tel {
  display: block;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  white-space: nowrap;
  margin-top: 20px;
}
.thanks .contact_tel .tel {
  display: inline-block;
  font-size: 32px;
  padding-left: 35px;
  position: relative;
  line-height: 1;
  margin-right: 10px;
  font-family: "Akshar";
}
.thanks .contact_tel .tel::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url("images/header-tel.svg");
  width: 1.2em;
  height: 1.2em;
  top: -2px;
  left: -8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.thanks .contact_tel p {
  font-size: 16px;
  color: #4c3f3a;
  text-align: center;
  font-family: "Noto Sans JP";
  font-weight: 500;
  margin-top: 0;
}
@media print, screen and (min-width: 960px) {
  .thanks .contact_tel p {
    padding: 0 10px;
    text-align: start;
    font-size: 18px;
  }
}
.thanks .mt20 {
  margin-top: 20px !important;
}

/* ************************************************
 *	プライバシーポリシー
 * ************************************************ */
.policy_wrapper {
  margin-top: 40px;
}

.policy_wrapper ul {
  padding-left: 0.5em;
  list-style: none;
}
.policy_wrapper ul li {
  margin-left: 1em;
  position: relative;
}
.policy_wrapper ul li:before {
  position: absolute;
  display: block;
  content: "";
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #4c3f3a;
  top: 0.6em;
  left: -1.5em;
}

.mb {
  margin-bottom: 1.5em;
}

.policy_ttl {
  margin-top: 30px;
  margin-bottom: 5px;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-size: 20px;
}
@media print, screen and (min-width: 960px) {
  .policy_ttl {
    margin-top: 60px;
  }
}/*# sourceMappingURL=page.css.map */