@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;
} 
.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: "M PLUS Rounded 1c", serif;
}
.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 #000000;
}
.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: #000000;
}
.font_accent {
  color: #838383;
}
.link_border {
  border-bottom: 1px solid #000000;
}
.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: 18px;
  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;
  }
}

/*-------------------------------------------------------------------
　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 #CCCCCC;
  padding: 2px 15px;
}
.tag_des.tag_xl {
  padding: 10px 30px;
}
.tag_des.tag_border {
  border: 1px solid #CCCCCC;
}
.tag_des.tag_accent {
  line-height: 1.8em;
  border: 1px solid #666666;
}
.tag_description {
  margin-top: 50px;
}
.tag_description .ttl {
  width: max-content;
  font-weight: bold;
  line-height: 1.0;
  border: 2px solid #CCCCCC;
  padding: 12px 30px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: block;
}

/*-------------------------------------------------------------------
　other
-------------------------------------------------------------------*/
.col2, .col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.txt_area {
  width: 40%;
}
.img_area {
  width: 56%;
}
@media screen and (max-width:750px) {
  .col2, .col {
    flex-flow: column;
    gap: 1rem;
  }
}
