@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

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

　parts

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

/*-------------------------------------------------------------------
　margin
-------------------------------------------------------------------*/
.mt0 {
  margin-top: 0 !important;
}
.mt5 {
  margin-top: 5px !important;
} 
.mt10 {
  margin-top: 10px !important;
} 
.mt15 {
  margin-top: 15px !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;
} 
.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
-------------------------------------------------------------------*/
.font {
  font-family: var(--font);
}
.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;
}
.text_center {
  text-align: center;
}
.text_left {
  text-align: left;
}
.text_right {
  text-align: right;
}
/* size */
.font_n {
  font-size: 1.0em;
}
.font_m {
  font-size: 1.2em;
}
.font_l {
  font-size: 1.5em;
  line-height: 1.6em;
}
.font_xl {
  font-size: 1.8em;
}
.font_s {
  font-size: 0.95em;
}
.font_xs {
  font-size: 12px;
}
@media screen and (max-width:750px) {
  .font_xs {
    font-size: 10px;
    line-height: 1.4em;
  }
}
.font_color {
  color: var(--fontcolor);
}
.font_subcolor {
  color: var(--maincolor);
}
.font_accent {
  color: var(--accentcolor);
}
.link_border {
  border-bottom: 1px solid var(--accentcolor);
}
.link_border:hover {
  opacity: 0.6;
}


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

/*-------------------------------------------------------------------
　arrow
-------------------------------------------------------------------*/
.arrow {
  position: absolute;
  padding: 8px;
  right: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.arrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #CCCCCC;
  border-right: solid 1px #CCCCCC;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.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);
}

/*-------------------------------------------------------------------
　bg
-------------------------------------------------------------------*/
.bg {
  padding: 120px 0;
}
@media screen and (max-width:750px) {
  .bg {
    padding: 60px 0;
  }
}
.bg_green {
  background-color: var(--bgcolor);
}
.bg_beige {
  background-color: var(--bgbeige);
}

/*-------------------------------------------------------------------
　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-center {
  align-items: center;
}

/*-------------------------------------------------------------------
　tag
-------------------------------------------------------------------*/
.tag_des {
  border: 1px solid var(--maincolor);
  padding: 5px 15px;
}
.tag_des.tag_xl {
  padding: 10px 30px;
}
.tag_des.tag_border {
  border: 1px solid var(--maincolor);
}
.tag_des.tag_accent {
  line-height: 1.8em;
  border: 1px solid var(--accentcolor);
}
.tag_description {
  margin-top: 50px;
}
.tag_description .ttl {
  width: max-content;
  font-weight: bold;
  line-height: 1.0;
  border: 2px solid var(--maincolor);
  padding: 12px 30px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: block;
}

/*-------------------------------------------------------------------
　other
-------------------------------------------------------------------*/
.shadowbox {
  padding: 40px;
  box-shadow: var(--shadow);
}
@media screen and (max-width:750px) {
  .shadowbox {
    padding: 20px;
  }
}
.col2 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width:750px) {
  .col2 {
    gap: 1rem;
  }
}
.sp_ver {
  display: none;
}
@media screen and (max-width:750px) {
  .sp_ver {
    display: block;
  }
}
.pc_ver {
  display: block;
}
@media screen and (max-width:750px) {
  .pc_ver {
    display: none;
  }
}
