@charset "UTF-8";

/*-------------------------------------------------------------------

　parts

-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
　margin
-------------------------------------------------------------------*/
.mt0 {
  margin-top: 0 !important;
}
.mt5 {
  margin-top: 5px !important;
} 
.mt10 {
  margin-top: 10px !important;
} 
.mt20 {
  margin-top: 20px !important;
} 
.mt30 {
  margin-top: 30px !important;
} 
.mt40 {
  margin-top: 40px !important;
} 
.mb0 {
  margin-bottom: 0 !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
} 
.mb15 {
  margin-bottom: 15px !important;
} 
.mb20 {
  margin-bottom: 20px !important;
} 
.mb30 {
  margin-bottom: 30px !important;
} 
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mr5 {
  margin-right: 5px !important;
}
.mr0 {
  margin-right: 0 !important;
}
.m_auto {
  margin: auto;
}

/*-------------------------------------------------------------------
　padding
-------------------------------------------------------------------*/
.pt0 {
  padding-top: 0 !important;
}
.pt10 {
  padding-top: 10px !important;
} 
.pt20 {
  padding-top: 20px !important;
} 
.pt30 {
  padding-top: 30px !important;
} 
.pt40 {
  padding-top: 40px !important;
} 
.pb0 {
  padding-bottom: 0 !important;
}
.pb10 {
  padding-bottom: 10px !important;
} 
.pb20 {
  padding-bottom: 20px !important;
} 
.pb30 {
  padding-bottom: 30px !important;
} 
.pb40 {
  padding-bottom: 40px !important;
}
.pb50 {
  padding-bottom: 50px !important;
}
.pb60 {
  padding-bottom: 60px !important;
}
.pr5 {
  padding-right: 5px !important;
}

/*-------------------------------------------------------------------
　text
-------------------------------------------------------------------*/
.line_height_10 {
  line-height: 1.0em;
}
.line_height_12 {
  line-height: 1.2em;
}
.line_height_14 {
  line-height: 1.4em;
}
.font_bold {
  font-weight: bold;
}
.font_stroke {
  -webkit-text-stroke: 0.5px #333333;
}
.text_center {
  text-align: center;
}
.text_left {
  text-align: left;
}
.text_right {
  text-align: right;
}
/* size */
.font_xl {
  font-size: 1.8em;
  line-height: 1.4em;
}
.font_l {
  font-size: 1.5em;
  line-height: 1.4em;
}
.font_m {
  font-size: 1.1em;
}
.font_s {
  font-size: 0.95em;
}
.font_xs {
  font-size: 14px;
}
@media screen and (max-width:750px) {
  .font_xs {
    font-size: 12px;
  }
}
.font_color {
  color: #333333;
}
.font_c_main {
  color: #817180;
}
.font_c_accent {
  color: #BFA2BD;
}
.link_border {
  border-bottom: 1px solid #BFA2BD;
}
.link_border:hover {
  opacity: 0.6;
}
.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Sans JP","ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}


/*-------------------------------------------------------------------
　width
-------------------------------------------------------------------*/
.w100 {
  width: 100% !important;
}
.w70 {
  width: 70%;
}
.w50 {
  width: 50%;
}
.w30 {
  width: 50%;
}

/*-------------------------------------------------------------------
　arrow
-------------------------------------------------------------------*/
.arrow {
  position: relative;
  padding: 6px;
}
.arrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 2px #817180;
  border-right: solid 2px #817180;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border-radius: 1px;
}
@media screen and (max-width:750px) {
  .arrow::before {
    width: 6px;
    height: 6px;
  }
}
.arrow.arrow_top::before {
  transform: rotate(-45deg);
  top: 10px;
}
.arrow.arrow_bottom::before {
  transform: rotate(135deg);
}
.arrow.arrow_left::before {
  transform: rotate(-135deg);
}
.arrow.arrow_right::before {
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  margin-left: 10px;
}


/*-------------------------------------------------------------------
　bg
-------------------------------------------------------------------*/
.bg {
  padding: 160px 0;
  position: relative;
}
@media screen and (max-width:750px) {
  .bg {
    padding: 90px 0;
  }
}
.bg_purple {
  background-color: #BFA2BD !important;
}
.bg_purple h2, .bg_purple p, .bg_purple .subttl {
  color: #FFFFFF !important;
}
.bg_purple .section__ttl h2::before,
.bg_purple .section__ttl .subttl::before {
  background-color: #FFFFFF;
}
@media screen and (max-width:750px) {
  .top_wave, .bottom_wave {
    padding: 160px 0;
  }
  .top_wave::before, .bottom_wave::after {
    height: 25px;
  }
}

/*-------------------------------------------------------------------
　flex
-------------------------------------------------------------------*/
.flex {
  display: flex;
}
.flex_left {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_right {
  justify-content: end;
}
.flex_spacebetween {
  justify-content: space-between;
}
.flex_align_top {
  align-items: top;
}
.flex_align_center {
  align-items: center;
}
.flex_align_bottom {
  align-items: bottom;
}
.col2 {
  display: flex;
  justify-content: space-between;
}
.col2 > li {
  width: 46%;
}
@media screen and (max-width:750px) {
  .col2 {
    display: block;
  }
  .col2 > li {
    width: 100%;
  }
}

/*-------------------------------------------------------------------
　tag
-------------------------------------------------------------------*/
.tag_des {
  color: #FFFFFF;
  background-color: #817180;
  padding: 8px 25px;
  border-radius: 100vh;
  font-weight: bold;
  display: inline-block;
  margin-right: 20px;
}
.tag_des:last-child {
  margin-right: 0;
}
.tag_des.tag_s {
  padding: 2px 25px;
}
.tag_des.tag_accent {
  background-color: #BFA2BD;
}
.tag_des.tag_border {
  border: 1px solid #817180;
}
.tag_des.tag_accent {
  color: #FFFFFF;
  background-color: #BFA2BD;
}
.tag_description {
  margin-top: 50px;
}
.tag_description .ttl {
  width: max-content;
  font-weight: bold;
  line-height: 1.0;
  border: 2px solid #817180;
  padding: 12px 30px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: block;
}

/*-------------------------------------------------------------------
　other
-------------------------------------------------------------------*/
.border_bottom {
  border-bottom: 1px solid #E1E7F0;
}
.img_border {
  border: 3px solid #E1E7F0;
  border-radius: 20px;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.shadowbox {
  padding: 40px;
  box-shadow: 0px 0px 8px 0px rgba(126, 156, 203, .48);
  background-color: #FFFFFF;
  border-radius: 20px;
}
@media screen and (max-width:750px) {
  .shadowbox {
    padding: 20px;
  }
}
.sp_ver {
  display: none;
}
.border_none {
  border: none !important;
}
.radius_none {
  border-radius: 0;
}
@media screen and (max-width:750px) {
  .sp_ver {
    display: block;
  }
}
.pc_ver {
  display: block;
}
@media screen and (max-width:750px) {
  .pc_ver {
    display: none;
  }
}
