@charset "utf-8";

/* custom property */
:root {
  --mc-black: #000;
  --mc-white: #FFF;
  --mc-yellow: #FF0;
  --mc-blue: #0062C6;
  --mc-orange: #f08300;
  --mc-navy: #0b3190;
  --mc-orange30: rgba(240,131,0,0.30);
}

.noto-sans-jp-500 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.noto-sans-jp-700 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

img { width: 100%; }

/* area_title */
.area_title {
  background-color: var(--mc-orange30);
  background-image: url(../../assets/img/bg_1.png);
  background-position: center center;
  margin: 0;
}
.area_title h1 {
	text-align: center;
}
.area_title h1 img {
  vertical-align: top;
}
@media screen and (max-width: 639px) {
  .area_title .inner {
    margin: 0;
  }
}

/* area_contents */
.area_contents {
  margin: 0 0 24px;
  padding: 64px 0;
}
.area_contents .box_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.area_contents .box_content {
  flex-basis: 45%;
  margin: 0 0 48px;
}
.area_contents .box_content .box_img {
  margin: 0;
	text-align: center;
}
.area_contents .box_content .box_img img {
  vertical-align: top;
}
.area_contents .box_content h2 {
  background-color: #fef3e6;
  padding: 16px 0;
  position: relative;
  text-align: center;
}
.area_contents .box_content h2:after {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 0px;
  border-color: #f9cc96 #fff #fff;
  border-style: solid;
  border-width: 15px 15px 0 0;
}
@media screen and (max-width: 639px) {
  .area_contents {
    margin: 0;
    padding: 32px 0;
  }
  .area_contents .box_flex {
    display: block;
  }
  .area_contents .box_content {
    margin: 0 8% 24px;
  }
  .area_contents .box_content h2 {
    padding: 16px 0;
  }
}
