@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@400;700&family=BIZ+UDPGothic:wght@400;700&family=M+PLUS+1p:wght@100;300;400;500;700;800;900&family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Shippori+Mincho+B1:wght@400;500;600;700;800&family=Shippori+Mincho:wght@400;500;600;700;800&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
.main_visual {
  background: url(../img/mv_bg_1366.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 640px) {
  .main_visual {
    background: url(../img/mv_bg_640.jpg) center center/cover no-repeat;
  }
}

.area01 {
  padding: 0;
}
.area01_inner {
  width: 91.875%;
  max-width: 1000px;
  margin: auto;
}
.area01_inner .contents_title {
  width: 100%;
  margin: auto;
  height: 60px;
  box-sizing: border-box;
  border: solid #925a92;
  border-width: 1px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 32px;
  color: #925a92;
}
@media screen and (max-width: 640px) {
  .area01_inner .contents_title {
    font-size: 34px;
    height: 68px;
  }
}
.area01_inner_inner {
  width: 100%;
  max-width: 960px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 30px 40px;
}
@media screen and (max-width: 768px) {
  .area01_inner_inner {
    grid-template-columns: 480px;
    justify-content: center;
    gap: 0;
  }
  .area01_inner_inner div:nth-child(even) {
    margin-top: 30px;
  }
  .area01_inner_inner div:nth-child(odd) {
    margin-top: 40px;
  }
  .area01_inner_inner div:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 640px) {
  .area01_inner_inner {
    grid-template-columns: 1fr;
  }
  .area01_inner_inner div:nth-child(even) {
    margin-top: 30px;
  }
  .area01_inner_inner div:nth-child(odd) {
    margin-top: 50px;
  }
  .area01_inner_inner div:first-child {
    margin-top: 0;
  }
}
.area01_inner_inner h3 {
  font-size: 24px;
  line-height: 36px;
  padding-left: 18px;
  font-weight: 700;
  position: relative;
}
.area01_inner_inner h3::before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  content: "";
  width: 6px;
  height: 36px;
  background: linear-gradient(180deg, #c499c4, #5287c5);
}
@media screen and (max-width: 640px) {
  .area01_inner_inner h3 {
    font-size: 30px;
    line-height: 46px;
  }
  .area01_inner_inner h3::before {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    content: "";
    width: 7px;
    height: 46px;
    background: linear-gradient(180deg, #c499c4, #5287c5);
  }
}
.area01_inner_inner p {
  margin-top: 1.5em;
  line-height: 1.75;
}
@media screen and (max-width: 640px) {
  .area01_inner_inner p {
    font-size: 24px;
    margin-top: 1em;
  }
}

.area02 {
  padding: 100px 0 0;
}
.area02_inner {
  width: 91.875%;
  max-width: 1000px;
  margin: auto;
}
.area02_inner .contents_title {
  width: 100%;
  margin: auto;
  height: 60px;
  box-sizing: border-box;
  border: solid #925a92;
  border-width: 1px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 32px;
  color: #925a92;
}
@media screen and (max-width: 640px) {
  .area02_inner .contents_title {
    font-size: 34px;
    height: 68px;
  }
}
.area02_inner_inner {
  width: 100%;
  max-width: 960px;
  margin: 40px auto 0;
}
.area02_inner_inner .item01 {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .area02_inner_inner .item01 {
    grid-template-columns: 480px;
    justify-content: center;
    gap: 26px;
  }
}
@media screen and (max-width: 640px) {
  .area02_inner_inner .item01 {
    grid-template-columns: 1fr;
  }
}
.area02_inner_inner .item01 .equipment ul li {
  box-sizing: border-box;
  padding: 18px 25px;
  border: solid #ccc;
  border-width: 1px 2px 0 2px;
}
@media screen and (max-width: 640px) {
  .area02_inner_inner .item01 .equipment ul li {
    border-width: 2px 4px 0 4px;
  }
}
.area02_inner_inner .item01 .equipment ul li:first-child {
  border-width: 2px 2px 0 2px;
  border-radius: 1em 1em 0 0;
}
@media screen and (max-width: 640px) {
  .area02_inner_inner .item01 .equipment ul li:first-child {
    border-width: 4px 4px 0 4px;
  }
}
.area02_inner_inner .item01 .equipment ul li:last-child {
  border-width: 1px 2px 2px 2px;
  border-radius: 0 0 1em 1em;
}
@media screen and (max-width: 640px) {
  .area02_inner_inner .item01 .equipment ul li:last-child {
    border-width: 2px 4px 4px 4px;
  }
}
.area02_inner_inner .item01 .equipment ul li dl {
  display: flex;
  align-items: center;
  gap: 12px;
}
.area02_inner_inner .item01 .equipment ul li dl dt {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #a960a3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .area02_inner_inner .item01 .equipment ul li dl dt {
    width: 51px;
    height: 51px;
    font-size: 31px;
  }
}
.area02_inner_inner .item01 .equipment ul li dl dd {
  font-size: 20px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
  font-weight: 700;
  color: #a960a3;
}
@media screen and (max-width: 640px) {
  .area02_inner_inner .item01 .equipment ul li dl dd {
    font-size: 27px;
  }
}
.area02_inner_inner .item01 .equipment ul li p {
  line-height: 1.75;
  margin-top: 0.5em;
}
@media screen and (max-width: 640px) {
  .area02_inner_inner .item01 .equipment ul li p {
    font-size: 24px;
  }
}
.area02_inner_inner .item02 {
  box-sizing: border-box;
  margin-top: 70px;
  padding: 20px;
  border: 2px solid #5287c5;
  border-radius: 1em;
}
@media screen and (max-width: 768px) {
  .area02_inner_inner .item02 {
    width: 480px;
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 640px) {
  .area02_inner_inner .item02 {
    width: 100%;
    border: 4px solid #5287c5;
  }
}
.area02_inner_inner .item02 h3 {
  font-size: 20px;
  font-weight: 700;
  color: #5287c5;
}
@media screen and (max-width: 640px) {
  .area02_inner_inner .item02 h3 {
    font-size: 28px;
  }
}
.area02_inner_inner .item02 hr {
  border: none;
  border-top: 1px solid #5287c5;
  margin: 18px auto;
}
.area02_inner_inner .item02 .nbi_info {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .area02_inner_inner .item02 .nbi_info {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .area02_inner_inner .item02 .nbi_info .img_area {
    display: none;
  }
}
.area02_inner_inner .item02 .nbi_info .text_area p {
  line-height: 1.75;
}
@media screen and (max-width: 640px) {
  .area02_inner_inner .item02 .nbi_info .text_area p {
    font-size: 24px;
  }
}
.area02_inner_inner .item02 .nbi_info .text_area p + h4 {
  margin-top: 1.75em;
}
.area02_inner_inner .item02 .nbi_info .text_area .img {
  display: none;
}
@media screen and (max-width: 768px) {
  .area02_inner_inner .item02 .nbi_info .text_area .img {
    display: block;
    width: 400px;
    margin: 1.75em auto 1.5em;
  }
}
@media screen and (max-width: 640px) {
  .area02_inner_inner .item02 .nbi_info .text_area .img {
    width: 410px;
  }
}
.area02_inner_inner .item02 .nbi_info .text_area h4 {
  width: 400px;
  margin: auto;
  height: 34px;
  border-radius: 17px;
  background: #c59ac5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 21px;
  white-space: nowrap;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .area02_inner_inner .item02 .nbi_info .text_area h4 {
    width: 410px;
  }
}
.area02_inner_inner .item02 .nbi_info .text_area h4.mt {
  margin-top: 30px;
}
.area02_inner_inner .item02 .nbi_info .text_area dl {
  width: 384px;
  margin: 8px auto 0;
  display: grid;
  grid-template-columns: 208px 1fr;
  gap: 10px;
}
@media screen and (max-width: 640px) {
  .area02_inner_inner .item02 .nbi_info .text_area dl {
    width: 394px;
    grid-template-columns: 213px 1fr;
  }
}
.area02_inner_inner .item02 .nbi_info .text_area dl dd {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .area02_inner_inner .item02 .nbi_info .text_area dl dd {
    font-size: 19px;
  }
}
.area02_inner_inner .item02 .nbi_info .text_area .triangle {
  width: 0;
  height: 0;
  border-top: 41px solid #96b6dc;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  margin: 0.75em auto;
}

.area03 {
  padding: 100px 0 0;
}
.area03_inner {
  width: 91.875%;
  max-width: 1000px;
  margin: auto;
}
.area03_inner .contents_title {
  width: 100%;
  margin: auto;
  height: 60px;
  box-sizing: border-box;
  border: solid #925a92;
  border-width: 1px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 32px;
  color: #925a92;
}
@media screen and (max-width: 640px) {
  .area03_inner .contents_title {
    font-size: 34px;
    height: 68px;
  }
}
.area03_inner_inner {
  width: 100%;
  max-width: 960px;
  margin: 40px auto 0;
}
.area03_inner_inner .read {
  line-height: 1.75;
}
@media screen and (max-width: 640px) {
  .area03_inner_inner .read {
    font-size: 24px;
  }
}
.area03_inner_inner h3 {
  font-size: 24px;
  line-height: 36px;
  padding-left: 18px;
  margin-top: 46px;
  font-weight: 700;
  position: relative;
}
.area03_inner_inner h3::before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  content: "";
  width: 6px;
  height: 36px;
  background: linear-gradient(180deg, #c499c4, #5287c5);
}
@media screen and (max-width: 640px) {
  .area03_inner_inner h3 {
    font-size: 30px;
    line-height: 46px;
  }
  .area03_inner_inner h3::before {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    content: "";
    width: 7px;
    height: 46px;
    background: linear-gradient(180deg, #c499c4, #5287c5);
  }
}
.area03_inner_inner .read2 {
  line-height: 1.75;
  margin-top: 1.5em;
}
@media screen and (max-width: 640px) {
  .area03_inner_inner .read2 {
    font-size: 24px;
  }
}
.area03_inner_inner .point {
  margin-top: 24px;
  padding: 1em;
  background: #f2f2f2;
  border-radius: 1em;
}
.area03_inner_inner .point ul li {
  line-height: 1.75;
  position: relative;
  padding-left: 1.25em;
}
.area03_inner_inner .point ul li:nth-child(n+2) {
  margin-top: 0.5em;
}
.area03_inner_inner .point ul li::before {
  position: absolute;
  left: 0;
  top: 0.875em;
  display: inline-block;
  transform: translateY(-50%);
  content: "";
  width: 1em;
  height: 1em;
  background: url(../../img/common/dot_16.png) center center/cover no-repeat;
}
@media screen and (max-width: 640px) {
  .area03_inner_inner .point ul li {
    font-size: 24px;
  }
}

.area04 {
  padding: 40px 0 0;
}
.area04_inner {
  width: 91.875%;
  max-width: 1000px;
  margin: auto;
}
.area04_inner .links {
  width: 100%;
  height: 58px;
  box-sizing: border-box;
  border: solid #5287c5;
  border-width: 1px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .area04_inner .links {
    height: inherit;
    font-size: 24px;
    padding: 1em 0;
    display: block;
    text-align: center;
  }
}
.area04_inner .links a {
  font-weight: 700;
  color: #5185c5;
}
.area04_inner .links a:hover {
  text-decoration: underline;
}

.area05 {
  margin-top: 60px;
}
.area05_inner {
  width: min(91.875%, 1000px);
  margin: auto;
}
.area05_inner_title {
  font-size: 24px;
  line-height: 36px;
  padding-left: 18px;
  font-weight: 700;
  position: relative;
}
.area05_inner_title::before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  content: "";
  width: 6px;
  height: 36px;
  background: linear-gradient(180deg, #c499c4, #5287c5);
}
@media screen and (max-width: 640px) {
  .area05_inner_title {
    font-size: 30px;
    line-height: 46px;
  }
  .area05_inner_title::before {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    content: "";
    width: 7px;
    height: 46px;
    background: linear-gradient(180deg, #c499c4, #5287c5);
  }
}
.area05_inner .read {
  line-height: 1.75;
  margin: 28px 0;
}
@media (width <= 640px) {
  .area05_inner .read {
    font-size: 22px;
  }
}
.area05_inner .box {
  margin-top: 24px;
  padding: 1.5em;
  background: #f2f2f2;
  border-radius: 1em;
}
.area05_inner .box ul li {
  line-height: 1.75;
  position: relative;
  padding-left: 1.25em;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .area05_inner .box ul li {
    font-size: 24px;
  }
}
.area05_inner .box ul li.text1::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "■";
  color: #be95be;
}
.area05_inner .box ul li.text1 + .text1 {
  margin-top: 0.5em;
}
.area05_inner .box ul li.type1::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "①";
}
.area05_inner .box ul li.type2::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "②";
}
.area05_inner .box ul li.type3::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "③";
}
.area05_inner .box ul li.type4::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "④";
}
.area05_inner .box ul li.type5::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "⑤";
}
.area05_inner .box ul li.type6::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "⑥";
}
.area05_inner .box ul li.type7::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "⑦";
}
.area05_inner .sub_text {
  margin-top: 24px;
  line-height: 1.75;
  padding: 0 1.5em;
}
@media screen and (max-width: 640px) {
  .area05_inner .sub_text {
    font-size: 24px;
  }
}/*# sourceMappingURL=style.css.map */