@charset "UTF-8";
/* Color */
.sp-fixed {
  display: none;
}

@media screen and (max-width: 1058px) {
  .sp-fixed {
    z-index: 9999;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 2vw;
    background-color: #303030;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    box-sizing: border-box;
  }
  .sp-fixed-tel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48%;
    height: 40px;
    margin: 0 1.5vw;
    box-sizing: border-box;
    font-size: 3.5vw;
    letter-spacing: 0.05em;
    color: #fff;
    border-radius: 6px;
    background: linear-gradient(0deg, #353535, #525252);
    border: solid 1px #2d2d2d;
    box-shadow: 0 0 3px 0px rgba(255, 255, 255, 0.2) inset, 0 0px 10px -5px #000;
    text-decoration: none;
  }
  .sp-fixed-reserve {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48%;
    height: 40px;
    margin: 0 1.5vw;
    box-sizing: border-box;
    font-size: 3.5vw;
    letter-spacing: 0.05em;
    color: #fff;
    background: linear-gradient(#ff8b6c, #d4355a);
    border-radius: 6px;
    text-decoration: none;
    border: solid 1px #d25c60;
    box-shadow: 0 0 3px 0px rgba(255, 255, 255, 0.4) inset, 0 0px 10px -5px #000;
    text-shadow: 0 0 10px rgba(191, 23, 70, 0.5);
  }
}
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove list styles (bullets/numbers) */
ol,
ul {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  margin: 0 !important;
  padding: 0 !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

a img {
  transition: 0.3s all ease-in-out;
}

a img:hover {
  opacity: 0.6;
}

@media (max-width: 767px) {
  img {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .sp-none {
    display: none !important;
  }
  .pc-none {
    display: block !important;
  }
}
@media (min-width: 769px) {
  .sp-none {
    display: block !important;
  }
  .pc-none {
    display: none !important;
  }
}
.c-red {
  color: #f23333;
}

/*btn*/
.c-btn_type1_in {
  margin-top: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: transparent;
  padding: 0 40px;
  font-weight: bold;
  border: 2px solid #454545;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
}

.c-btn_type1_in::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 12px;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background-image: url(/ad/assets/img/btn_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-btn_type1_in.is-arrow_under::after {
  transform: rotate(90deg);
  transform-origin: top;
}

.c-btn_type1_in:hover {
  opacity: 100;
  transition: all 0.3s;
  background: #454545;
  color: #fff;
}

.c-btn_type1_in:hover::after {
  background-image: url(/ad/assets/img/btn_arrow_hov.svg);
}

.c-btn_type2 {
  width: 280px;
  position: relative;
}

.c-btn_type2 > a {
  display: block;
  padding: 12px 0 14px;
  border-radius: 100px;
  background: #ac9977;
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.2;
  text-decoration: none;
}

.c-btn_type2 > a::after {
  position: absolute;
  top: calc(50% - 6px);
  right: 6px;
  content: "";
  width: 21px;
  height: 12px;
  background-image: url(/ad/assets/img/btn_arrow_hov.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/*modal*/
.l-modal {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
}

.l-modal_wrap {
  position: relative;
  width: 1120px;
  max-height: 78vh;
}

.l-modal_in {
  max-height: 78vh;
  padding: 50px 100px;
  background: #fff;
  border-radius: 10px;
  overflow-y: scroll;
}

.l-modal_in_scroll {
  max-height: 55vh;
  padding: 0 20px 20px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.l-modal_in_scroll::-webkit-scrollbar {
  display: none;
}

.l-modal_close {
  position: absolute;
  right: 0;
  top: -80px;
  width: 58px;
  height: 58px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .l-modal_wrap {
    width: 96%;
  }
  .l-modal_in {
    padding: 4.37vw 4.37vw;
  }
  .l-modal_in_scroll {
    max-height: 56vh;
    padding: 0 0 4vw;
  }
  .l-modal_close {
    top: -40px;
    width: 30px;
    height: 30px;
  }
}
.c-table.l-price_menu_table td {
  color: #eb6c89;
  font-size: 1.75rem;
  font-weight: bold;
}
.c-table.l-price_menu_table .l-price_label_caption {
  color: initial;
  font-weight: initial;
  font-feature-settings: "palt";
  display: block;
}

/*monitor*/
#monitor {
  padding: 40px 0;
}

#insta + #monitor {
  background: #fffbef;
}

#monitor + .bg_first {
  margin-top: 0;
}

.l-campaign_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.l-campaign_list.l-campaign_list_center {
  justify-content: center;
}

.l-campaign_list.l-campaign_list_single {
  justify-content: center;
}

.l-campaign_list::after {
  content: "";
  flex-basis: 345px;
}

.l-campaign_list.l-campaign_list_center::after,
.l-campaign_list.l-campaign_list_single::after {
  content: none;
}

.l-campaign_list + .c-btn_type1 {
  margin: 20px auto 0;
  width: 200px;
}

.l-campaign_list_item {
  position: relative;
  flex-basis: 345px;
  margin-top: 30px;
  cursor: pointer;
}

.l-campaign_list_item:nth-child(n+7) {
  display: none;
}

.l-campaign_list.l-campaign_list_center .l-campaign_list_item {
  margin-left: 16px;
  margin-right: 16px;
}

.l-campaign_list_item_img {
  text-align: center;
}

.l-campaign_list_item_img img {
  max-width: 345px;
}

.l-campaign_list_item_data_ttl {
  margin: 60px 0 30px;
  padding-bottom: 16px;
  border-bottom: 2px solid #1c1c1c;
  font-size: 2.4rem;
  font-family: inherit;
  font-weight: normal;
  text-align: left;
  color: #272727;
}

.l-campaign_list_item_data_menu {
  display: none;
}

.l-modal .l-campaign_list_item_data_menu {
  display: block;
}

.l-modal .l-campaign_list_item_data_menu + .l-campaign_list_item_data_menu {
  margin-top: 24px;
}

.l-modal .l-campaign_list_item_link {
  display: block;
  margin: 0 auto;
}

.l-modal .l-campaign_list_item_link a {
  position: relative;
}

.l-modal .l-campaign_caution {
  font-size: 1.3rem;
  margin-top: 30px;
}

.l-campaign_list_item_data_menu_ttl {
  margin-bottom: 12px;
  text-align: left;
  font-family: inherit;
  font-weight: bold;
}

.l-campaign_list_item_data_menu_ttl a {
  display: block;
  padding-left: 22px;
  background: url(../../img/icn_circle_arrow_right.svg) left 5px/14px no-repeat;
  font-weight: normal;
  font-size: 1.8rem;
  text-decoration: none;
  color: #272727;
}

.l-campaign_list_item_data_menu_ttl span {
  display: block;
  font-size: 1.8rem;
  text-decoration: none;
  color: #272727;
}

.l-campaign_list_item_data_menu_txt {
  font-size: 15px;
  line-height: 1.7;
}

.af .l-campaign_list_item_data_menu_ttl {
  display: block;
  font-weight: normal;
  font-size: 1.8rem;
  text-decoration: none;
  color: #272727;
}

.l-campaign_list_item_link {
  display: none;
  padding-top: 50px;
  text-align: center;
}

.l-campaign_list_item_link a {
  display: block;
  margin: 0 auto;
}

.l-campaign_list_item_data_menu_clinic {
  display: none;
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.l-modal .l-campaign_list_item_data_menu_clinic {
  display: block;
}

@media screen and (max-width: 768px) {
  .l-campaign {
    margin-top: 13vw;
  }
  .l-campaign .c-lead {
    margin-bottom: 11vw;
  }
  .l-campaign_list {
    padding: 0 4vw;
  }
  .l-campaign_list.l-campaign_list_center {
    justify-content: space-between;
  }
  .l-campaign_list_item {
    flex-basis: 48.6%;
    margin-top: 2.8vw;
  }
  .l-campaign_list.l-campaign_list_center .l-campaign_list_item {
    margin: 2.8vw 0 0;
  }
  .l-campaign_list_item_data_ttl {
    margin: 4vw 0 6vw;
    padding-bottom: 3vw;
    border-width: 0 0 1px 0;
    font-size: 5vw;
  }
  .l-campaign_list_item_img img {
    max-width: 100%;
  }
  .l-modal .l-campaign_list_item_data_menu_ttl {
    margin-bottom: 2vw;
  }
  .l-modal .l-campaign_list_item_data_menu_ttl a {
    background-position: 3px 5px;
    font-size: 4.4vw;
  }
  .l-modal .l-campaign_list_item_data_menu + .l-campaign_list_item_data_menu {
    margin-top: 6vw;
  }
  .l-modal .l-campaign_list + .c-btn_type1 {
    width: auto;
  }
  .l-modal .l-campaign_list_item_data_menu_clinic {
    margin-bottom: 2vw;
    font-size: 4vw;
    line-height: 1.4;
  }
  .l-modal .l-campaign_caution {
    font-size: 3.4vw;
    margin-top: 6vw;
  }
}
.c-list li {
  margin-top: 4px;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.access_modal_btn {
  display: none;
}

.l-campaign_list_item_doctar_item {
  display: none;
}

.c-caution_block .c-caution_block_ttl {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.c-caution_block .c-txt {
  font-size: 1.5rem;
  line-height: 1.6;
}

.c-caution_block .c-list {
  margin-bottom: 20px;
}

/* .l-instagram */
.l-instagram_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.l-instagram_list::after {
  content: "";
  flex-basis: 31.25%;
}

.l-instagram_list + .c-btn_type1 {
  margin: 20px auto 0;
  width: 16vw;
}

.l-instagram_list_item {
  position: relative;
  flex-basis: 31.25%;
  margin-bottom: 40px;
  cursor: pointer;
}

.l-instagram_list_item:nth-child(n+7) {
  display: none;
}

.l-instagram_list_item_img {
  text-align: center;
}

.l-instagram_list_item_img img,
.l-instagram_list_item_img video {
  max-width: 100%;
}

.l-instagram_list_item_img video {
  opacity: 0;
  transition: opacity 0.5s linear;
}
.l-instagram_list_item_img video[data-loaded=true] {
  opacity: 1;
}

.l-instagram_list_item_doctar {
  display: none;
  justify-content: flex-end;
  margin: 12px 0 25px;
  font-size: 1.6rem;
}

.l-instagram_list_item_doctar .l-campaign_list_item_doctar_item {
  display: none;
  font-feature-settings: "palt";
  line-height: 1.35;
}

.l-instagram_list_item_data_ttl {
  margin: 60px 0 30px;
  padding-bottom: 16px;
  border-bottom: 2px solid #1c1c1c;
  font-size: 2.4rem;
}

.l-instagram_list.is-open_item {
  display: block;
}

.l-instagram_list_item_img:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.l-instagram_list_item_img {
  display: flex;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  max-width: 345px;
  max-height: 345px;
  background-color: #000;
  position: relative;
}

.l-modal_in .l-instagram_list_item_img::before {
  content: none;
}
.l-modal_in .l-instagram_list_item_img {
  display: block;
  width: 100%;
  max-width: 40%;
  overflow: unset;
  height: auto;
  max-height: unset;
  background-color: transparent;
}

@media screen and (max-width: 1120px) {
  .l-modal_in .l-instagram_list_item_img {
    max-width: 80%;
  }
}
.l-instagram_list_item img,
.l-instagram_list_item video {
  position: absolute;
}

.c-caution + .l-instagram_list {
  margin-top: 20px;
}

.l-instagrampage .l-instagram_list_item {
  display: none;
}

.l-instagram_list_item_data_menu {
  display: none;
}

.l-modal .l-instagram_list_item_data_menu {
  display: block;
}

.l-modal .l-instagram_list_item_data_menu + .l-instagram_list_item_data_menu {
  margin-top: 24px;
}

.l-modal .l-instagram_list_item_link {
  display: block;
  margin: 0 auto;
}

.l-modal .l-instagram_list_item_link a {
  position: relative;
}

.l-modal .l-instagram_caution {
  font-size: 1.3rem;
  margin-top: 30px;
}

.l-instagram_list_item_data_menu_ttl {
  margin-bottom: 12px;
}

.l-instagram_list_item_data_menu_ttl a {
  display: block;
  padding-left: 22px;
  background: url(/ad/assets/img/btn_arrow.svg) left 4px/14px no-repeat;
  font-weight: normal;
  font-size: 1.8rem;
}

.l-instagram_list_item_link {
  display: none;
  padding-top: 50px;
  text-align: center;
}

.l-instagram_list_item_link a {
  display: block;
  width: 320px;
  margin: 0 auto;
  padding-top: 16px;
  padding-bottom: 20px;
}

.l-instagram_list_item_data_menu_clinic {
  display: none;
  margin-bottom: 16px;
  font-size: 1.6rem;
  line-height: 1.4;
}

.l-modal .l-instagram_list_item_img + .l-instagram_list_item_data {
  margin-top: 40px;
}

.l-modal .l-instagram_list_item_data_menu_clinic {
  display: block;
}

/*もっと見るボタン*/
.c-btn_typeBtn {
  display: block;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16vw;
  height: 50px;
  padding: 0 40px;
  font-weight: bold;
  border: 2px solid #454545;
  border-radius: 50px;
  margin: 0 auto;
  background: transparent;
  color: initial;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.c-btn_typeBtn:hover {
  opacity: 100;
  transition: all 0.3s;
  background: #454545;
  color: #fff;
}

.c-btn_typeBtn:hover::after {
  background-image: url(/ad/assets/img/btn_arrow_hov.svg);
}

.c-btn_typeBtn::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 12px;
  top: 40%;
  right: 14px;
  transform: translateY(-50%) rotate(90deg);
  background-image: url(/ad/assets/img/btn_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}

.c-btn_typeBtn.c-btn_typePlain::after {
  content: none;
}

.c-btn_typeBtn.c-btn_typeLink::after {
  transform: rotate(0deg);
}

.c-btn_typeBtn.c-btn_typeBack::after {
  transform: translateY(-50%) rotate(-90deg);
}

@media screen and (max-width: 1120px) {
  .c-btn_typeBtn {
    width: 70%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    padding: 4vw 0;
    font-size: 3.8vw;
    border-radius: 10vw;
  }
  .c-btn_typeBtn::after {
    width: 3.3vw;
    height: 2.5vw;
    top: 50%;
    right: 3.5vw;
  }
  .c-btn_typeBtn.c-btn_typeLink::after {
    transform: translateY(-50%) rotate(0deg);
  }
  .c-btn_typeBack::after {
    top: 32%;
  }
}
@media screen and (max-width: 1120px) {
  .l-instagram {
    margin-top: 13vw;
  }
  .l-instagram .c-lead {
    margin-bottom: 6vw;
  }
  .l-instagram_list + .c-btn_type1 {
    width: 100%;
  }
  .l-instagram_list_item {
    flex-basis: 48.6%;
    margin-bottom: 2.8vw;
  }
  .l-instagram_list_item_data_ttl {
    margin: 8vw 0 6vw;
    padding-bottom: 3vw;
    border-width: 0 0 1px 0;
    font-size: 5vw;
  }
  .l-instagram_list_item_img img {
    max-width: 100%;
  }
  .l-modal .l-instagram_list_item_data_menu_ttl {
    margin-bottom: 2vw;
  }
  .l-modal .l-instagram_list_item_data_menu_ttl a {
    background-position: 4px 2px;
    font-size: 4.4vw;
  }
  .l-modal .l-instagram_list_item_data_menu + .l-instagram_list_item_data_menu {
    margin-top: 6vw;
  }
  .l-modal .l-instagram_list_item_img + .l-instagram_list_item_data {
    margin-top: 6vw;
  }
  .l-modal .l-instagram_list + .c-btn_type1 {
    width: auto;
  }
}
/* line_list */
.p-line_link_bnr {
  max-width: 1120px;
  margin: 30px auto 0;
}

.p-line_link_bnr button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.4s ease;
}

.p-line_link_bnr button:hover {
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.p-line_link_bnr img {
  height: auto;
}

/* .l-line */
.l-line {
  display: none;
}

.l-line_catch {
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.03em;
}

.l-line_catch_strong {
  font-size: 30px;
  font-weight: bold;
  color: #a67921;
}

.l-line_catch_font {
  padding-right: 4px;
  font-size: 20px;
}

.l-line_catch_num {
  padding-right: 2px;
  font-size: 30px;
  font-family: "Oswald", sans-serif;
}

.l-line_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.l-line_list_item {
  position: relative;
  flex: 0 0 23%;
  padding: 20px 32px;
  background: #faf8f5;
  border-radius: 10px;
  margin-bottom: 24px;
  box-sizing: border-box;
}

.l-line_list_item_name {
  height: 32px;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}

.l-line_list_item_line {
  width: 36%;
  margin: 16px auto 0;
}

.l-line_list_item_line_icon {
  display: block;
  padding: 8px;
  background: #528853;
  border-radius: 10px;
}

.l-line_list_item_line_icon img {
  display: block;
}

.l-line_list_item_line_icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.l-line_list::before {
  content: "";
  flex: 0 0 23%;
  order: 2;
  box-sizing: border-box;
}

.l-line_list::after {
  content: "";
  flex: 0 0 23%;
  order: 3;
  box-sizing: border-box;
}

.l-line_list_center:after {
  content: none;
}

.l-line_list_center:before {
  content: none;
}

.l-line_list_center {
  justify-content: center;
}

.l-line_list_center .l-line_list_item {
  margin: 0 1%;
}

.l-line .c-list li {
  font-size: 13px;
}

.l-modal .l-line {
  display: block;
}

@media screen and (max-width: 1120px) {
  .p-line_link_bnr {
    margin: 7vw 5vw 10vw;
  }
  .p-line_link_bnr img {
    width: 100%;
    height: auto;
  }
  .l-line {
    padding: 4vw;
  }
  .l-line_catch {
    text-align: center;
    font-size: 5vw;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .l-line_catch_strong {
    font-size: 6vw;
  }
  .l-line_catch_font {
    font-size: 4vw;
  }
  .l-line_catch_num {
    font-size: 5.8vw;
  }
  .l-line_list {
    display: block;
    margin-top: 5vw;
  }
  .l-line_list_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 3vw 0;
    background: 0;
    border-top: 1px dotted #aaa;
    border-radius: 0;
  }
  .l-line_list_item_name:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 12px;
    top: 50%;
    right: 26%;
    transform: translateY(-50%);
    background-image: url(/ad/common/assets/images/icn/btn_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .l-line_list_item_name {
    height: auto;
    font-size: 4.4vw;
    text-align: left;
  }
  .l-line_list_item_line {
    width: 15%;
    margin: 0;
  }
  .l-line_list_item_line_icon {
    padding: 14%;
    border-radius: 8px;
  }
  .l-line_list_item:last-child {
    padding-bottom: 10px;
    border-bottom: 1px dotted #aaa;
  }
  .l-line_list::before {
    display: none;
  }
  .l-line_list::after {
    display: none;
  }
  .l-line .c-list {
    margin-top: 4vw;
  }
  .l-line .c-list li {
    font-size: 3.4vw;
  }
}
.Risk {
  max-width: 1128px;
  margin: 36px auto 0;
  padding: 56px 44px;
  background: #fff;
}
.Risk__ttl {
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", HanaMinA, "Noto Serif JP", serif;
  font-size: 2.4rem;
  line-height: 1.55;
  font-weight: 500;
  text-align: left;
}
.Risk__list dt {
  margin-top: 24px;
  font-size: 1.6rem;
  line-height: 1.78;
  font-weight: 600;
  color: #a68e42;
}
.Risk__list dd {
  font-size: 1.4rem;
  line-height: 1.78;
  font-weight: 400;
}

@media screen and (max-width: 1120px) {
  .Risk {
    padding: 22px;
  }
  .Risk__ttl {
    font-size: 1.5rem;
    line-height: 1;
  }
  .Risk__list dt {
    margin-top: 14px;
    font-size: 1.2rem;
  }
  .Risk__list dd {
    font-size: 1.05rem;
  }
}
header .l-pc-header {
  z-index: 100;
}

.p-tel_resevation {
  padding: 0 0 5px;
}
.p-tel_resevation.l-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.p-tel_resevation__in__ttl {
  position: relative;
  z-index: 1;
}
.p-tel_resevation__in__ttl__sub {
  margin: 0;
}
.p-tel_resevation__in__ttl__main {
  margin: 0;
}
.p-tel_resevation .p-tel_resevation_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px 0 0;
  font-size: 0;
}
.p-tel_resevation .p-tel_resevation_list_item {
  display: inline-block;
  padding: 12px 15px 10px;
  flex-basis: calc(25% - 15px);
  border-radius: 10px;
  background: #2c2f34;
  margin: 0 0;
  box-sizing: border-box;
  background-size: 100vw;
  font-size: 0;
  box-shadow: 0px 1px 6px -2px #2c2f34;
  text-decoration: none;
  pointer-events: none;
}
.p-tel_resevation .p-tel_resevation_list_item:nth-of-type(4n) {
  margin-right: 0;
}
.p-tel_resevation .p-tel_resevation_list_item:nth-child(n+5) {
  margin-top: 0px;
}
.p-tel_resevation .p-tel_resevation_list_item_name {
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 0px 0px 6px;
  text-align: center;
  color: #ffffff;
}
.p-tel_resevation .p-tel_resevation_list_item_time {
  font-size: 1.15rem;
  padding: 3px 20px 1px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.05);
  font-weight: 500;
  color: #ffda98;
  border-radius: 60px;
  margin: 6px 0 0;
}
.p-tel_resevation .p-tel_resevation_list_item_tel {
  display: block;
  border-radius: 50px;
  text-align: center;
  font-size: 2.25rem;
  font-weight: bold;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 6px 0 2px;
  margin: 0 0 0;
}

@media screen and (max-width: 1058px) {
  .p-tel_resevation.l-container {
    padding: 5vw 0vw 5vw;
    box-sizing: border-box;
  }
  .p-tel_resevation .p-tel_resevation_in_ttl {
    padding-bottom: 20px;
  }
  .p-tel_resevation .p-tel_resevation_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 10px 0;
    gap: 5px;
  }
  .p-tel_resevation .p-tel_resevation_list_item {
    display: inline-block;
    padding: 6px;
    flex-basis: calc(50% - 5px);
    margin: 0 0 5px;
    border-radius: 8px;
    pointer-events: inherit;
  }
  .p-tel_resevation .p-tel_resevation_list_item_name {
    font-size: 3vw;
    line-height: 1.5;
    padding: 0px 0px 8px;
    color: #ffffff;
  }
  .p-tel_resevation .p-tel_resevation_list_item_time {
    font-size: 2vw;
    color: #fcefa1;
    padding: 2px 6px 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 6px 0 0;
  }
  .p-tel_resevation .p-tel_resevation_list_item_tel {
    display: flex;
    background-repeat: no-repeat;
    padding: 5px 0 3px;
    border-radius: 30px;
    border: none;
    text-align: right;
    font-size: 4vw;
    font-weight: bold;
    text-indent: 7vw;
    color: #fff;
    font-feature-settings: "palt";
    letter-spacing: 0.25px;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .p-tel_resevation .p-tel_resevation_list_item_tel span {
    background-image: url("../../assets/img/phone.svg");
    background-size: 3.5vw;
    background-repeat: no-repeat;
    background-position: 0px center;
    padding: 6px 0 6px 4vw;
    font-size: 3.5vw;
    letter-spacing: 0;
  }
}
/* 交通費補助 */
.p-subsidy {
  width: 1190px;
  margin: 0 auto;
  padding: 60px 0 0;
}

.p-subsidy_ttl {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.p-subsidy_box {
  background: #faf8f5;
  padding: 60px 116px;
  margin: 30px 0 125px;
}
.p-subsidy_box .c-red {
  margin-top: 50px;
  text-align: center;
  line-height: 1.6;
}

.p-subsidy_box_description {
  margin-bottom: 30px;
  line-height: 2;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

.p-subsidy_img {
  position: relative;
  margin: 70px 0 0;
  height: 151px;
  background: url(../../../common/assets/images/subsidy_img_pc.png) center/627px no-repeat;
}
.p-subsidy_img_txt {
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
}

.p-subsidy_details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 90px;
}

.p-subsidy_details_block:not(:last-child) {
  margin-bottom: 64px;
}
.p-subsidy_details_block:not(:last-child).u-half {
  flex-basis: 47%;
}

.p-subsidy_details_block_title {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #c0a77a;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.p-subsidy_details_block_title p {
  margin-bottom: 20px;
}

.p-subsidy_details_block_text p {
  margin-bottom: 20px;
  line-height: 1.8;
}
.p-subsidy_details_block_text ul li {
  margin-bottom: 4px;
}
.p-subsidy_details_block_text ul + p {
  margin-bottom: 20px;
}

.p-parking {
  margin: 50px auto;
}

.p-parking_ttl {
  position: relative;
  padding: 18px 28px;
  border-radius: 10px;
  background-color: #c0a77a;
  color: #fff;
  transition: background-color 0.6s ease;
  cursor: pointer;
}
.p-parking_ttl::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-10%);
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top: 8px solid #fff;
}
.p-parking_ttl.is-open::after {
  transform: rotate(180deg) translateY(60%);
}
.p-parking_ttl:hover {
  background-color: #454545;
  transition: background-color 0.6s ease;
}

.p-parking_details {
  display: none;
  margin-top: 30px;
}
.p-parking_details dt {
  margin-bottom: 2px;
}
.p-parking_details dd:not(:last-child) {
  margin-bottom: 30px;
}
.p-parking_details a {
  text-decoration: underline;
}

@media screen and (max-width: 1120px) {
  .p-subsidy {
    width: 100%;
    padding-top: 40px;
  }
  .p-subsidy_ttl {
    margin: 0 0 5vw;
    font-size: 5.6vw;
    line-height: 1.6;
  }
  .p-subsidy_box {
    margin: 0;
    padding: 9.2vw 4vw;
  }
  .p-subsidy_box .c-red {
    margin-top: 6vw;
    font-size: 3.2vw;
    line-height: 1.6;
  }
  .p-subsidy_box_description {
    margin-bottom: 0;
    font-size: 4vw;
    text-align: left;
    line-height: 1.5;
  }
  .p-subsidy_img {
    height: 32.5vw;
    margin: 4vw 0 0;
    background: url(../../../common/assets/images/subsidy_img_pc.png) center/98% no-repeat;
  }
  .p-subsidy_img p {
    font-size: 3.2vw;
  }
  .p-subsidy_details {
    margin-top: 12vw;
    display: block;
  }
  .p-subsidy_details_block:not(:last-child) {
    margin-bottom: 10vw;
  }
  .p-subsidy_details_block_title {
    text-align: center;
    margin: 0 auto 6vw;
    padding-bottom: 2.4vw;
    font-size: 1.4rem;
  }
  .p-subsidy_details_block_text {
    -moz-text-align-last: left;
    text-align-last: left;
  }
  .p-subsidy_details_block_text p {
    margin-bottom: 9.2vw;
  }
  .p-subsidy_details_block_text ul + p {
    margin-bottom: 9.2vw;
  }
  .p-parking_details {
    margin-top: 7.2vw;
  }
  .p-parking {
    margin: 12vw auto;
    padding-bottom: 12vw;
  }
  .p-parking_ttl {
    padding: 5.2vw 8vw 5.2vw 4.4vw;
    font-size: 4vw;
  }
  .p-parking_ttl::after {
    right: 5.6vw;
    border-width: 6px 4px 4px 4px;
  }
  .p-parking_ttl:hover {
    background: #c0a77a;
  }
  .p-parking_details dd:not(:last-child) {
    margin-bottom: 5vw;
  }
}
/* Guarantee System */
.guaranteeSystem {
  padding: 110px 0;
  background: url(../../assets/images/guaranteeSystem_back.jpg) center top/100%;
}
.guaranteeSystem__ttl__sub {
  margin-bottom: 15px;
  font-size: 2.4rem;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", HanaMinA, "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width: 1058px) {
  .guaranteeSystem__ttl__sub {
    margin-bottom: 4vw;
    font-size: 3.6vw;
  }
}
.guaranteeSystem__ttl__sub__in {
  position: relative;
}
.guaranteeSystem__ttl__sub__in::before {
  content: "";
  position: absolute;
  left: -20px;
  bottom: 0px;
  width: 1px;
  height: 30px;
  background: #aa8f25;
  transform: rotate(-20deg);
}
@media screen and (max-width: 1058px) {
  .guaranteeSystem__ttl__sub__in::before {
    height: 4vw;
    left: -2vw;
    bottom: 0.5vw;
  }
}
.guaranteeSystem__ttl__sub__in::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 0px;
  width: 1px;
  height: 30px;
  background: #aa8f25;
  transform: rotate(20deg);
}
@media screen and (max-width: 1058px) {
  .guaranteeSystem__ttl__sub__in::after {
    height: 4vw;
    right: -2vw;
    bottom: 0.5vw;
  }
}
.guaranteeSystem__ttl__main {
  font-size: 4.4rem;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", HanaMinA, "Noto Serif JP", serif;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1058px) {
  .guaranteeSystem__ttl__main {
    font-size: 7vw;
    font-weight: bold;
  }
}
.guaranteeSystem__ttl__main span {
  color: #aa8f25;
}
.guaranteeSystem__card {
  max-width: 1120px;
  margin: 44px auto 0;
  background: #faf8f5;
  padding: 60px 86px;
}
.guaranteeSystem__card__catch {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 700px;
  margin: 0 auto;
  background: url(../../assets/images/wing_left.png) no-repeat left center, url(../../assets/images/wing_right.png) no-repeat right center;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}
.guaranteeSystem__card__catch__ttl {
  font-size: 4.85rem;
  font-weight: bold;
  letter-spacing: -0.1rem;
  line-height: 5.5rem;
  margin: 0 1rem 0 0;
}
.guaranteeSystem__card__catch__ttl small {
  font-size: 4.5rem;
  font-feature-settings: "palt";
  letter-spacing: -2px;
}
.guaranteeSystem__card__catch__period {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12rem;
  font-weight: 500;
  color: #bba274;
}
.guaranteeSystem__card__catch__period__num {
  margin-right: 14px;
  font-weight: 500;
  letter-spacing: -0.1em;
  transform: scaleY(1.12);
}
.guaranteeSystem__card__catch__txt {
  flex: 0 0 100%;
  margin-top: 20px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
.guaranteeSystem__card__description {
  margin-top: 36px;
  text-align: center;
}
.guaranteeSystem__card__description p {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.guaranteeSystem__card__description p span {
  color: #b58122;
}
.guaranteeSystem__card__detail__caution {
  display: none;
}
.guaranteeSystem__card__detail__list {
  margin-top: 40px;
}
.guaranteeSystem__card__detail__list li {
  margin-top: 4px;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.guaranteeSystem__card__popup__trigger {
  margin-top: 20px;
  font-size: 1.5rem;
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.4s ease;
  color: #b58122;
}
.guaranteeSystem__card__popup__trigger:hover {
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.4s ease;
}

@media screen and (max-width: 1058px) {
  .guaranteeSystem {
    width: 100%;
    padding: 9.3vw 5vw;
  }
  .guaranteeSystem__in {
    margin-top: 5vw;
    background: #faf8f5;
    padding: 0 5vw;
  }
  .guaranteeSystem__ttl__sub {
    margin-bottom: 5vw;
  }
  .guaranteeSystem__ttl__main {
    white-space: nowrap;
    text-indent: -2.6vw;
    width: 100%;
  }
  .guaranteeSystem__card {
    margin-top: 5vw;
    padding: 10vw 6vw;
  }
  .guaranteeSystem__card__catch {
    display: block;
    width: auto;
  }
  .guaranteeSystem__card__catch__ttl {
    padding-top: 1.2vw;
    font-size: 7.2vw;
    text-align: center;
    letter-spacing: 0.05em;
  }
  .guaranteeSystem__card__catch__ttl small {
    font-size: 7.2vw;
  }
  .guaranteeSystem__card__catch__period {
    margin-top: 3vw;
    padding-right: 10px;
    font-size: 18vw;
  }
  .guaranteeSystem__card__catch__period__num {
    margin-right: 0px;
    font-size: 18vw;
    letter-spacing: 0;
  }
  .guaranteeSystem__card__catch__txt {
    margin-top: 5vw;
    padding: 0 0;
    font-size: 3.4vw;
    letter-spacing: 0;
    line-height: 1.4;
  }
  .guaranteeSystem__card__description {
    margin-top: 8vw;
    padding: 0 1vw;
  }
  .guaranteeSystem__card__description p {
    font-size: 3.4vw;
  }
  .guaranteeSystem__card__detail .c-popup {
    margin-top: 0;
  }
  .guaranteeSystem__card__detail__caution {
    display: block;
    margin: 0 0 0;
    font-size: 3vw;
    text-align: right;
  }
}
.c-telCautionModalContent {
  display: none;
}
.c-telCautionModalContent .c-txt + .c-txt {
  margin-top: 30px;
}

.slider01 {
  padding: 40px 0;
}
.slider01 .c-support_slider_list {
  padding-inline-start: 0;
}
.slider01 .slick-slide {
  margin: 0 18px;
  text-align: center;
}
.slider01 .slick-slide img {
  display: inline;
  max-width: 100%;
  height: auto;
}
.slider01 .slick-slide p {
  text-align: center;
  font-size: 1.7rem;
  margin-block-start: 0;
}

.wpcf7-textarea {
  white-space: pre-wrap;
}

@media (max-width: 999px) {
  .slider01 {
    padding: 20px 0;
  }
}