@charset "utf-8";
html {
  font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
}
body {
  font-size: 1.6rem; /* 16px */
  font-family: -apple-system, blinkMacSystemFont, YuGothic-M, YuGothic, "M PLUS Rounded 1c", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  margin: 0px;
  width: 100%;
  color: #3e3a39;
  line-height: 2.6rem;
  background-color: #FFFFFF;
  font-weight: 800;
}
h1, h2, h3, h4, h5 {
  font-weight: normal;
  margin: 0px;
}
p {
  margin: 0px;
}
ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
a img {
  border-style: none;
}
img {
  image-rendering: -webkit-optimize-contrast;
}
.fix-header {
  left: 0;
  width: 100%;
  padding-top: 0px;
  position: fixed;
  z-index: 1000;
  float: left;
  font-family: "IBM Plex Sans JP", sans-serif;
  background-color: #FFFFFF;
  margin: 0;
  height: 150px;
}
.fix-header-contents {
  width: 80%;
  margin: 0 auto;
  padding-right: 10%;
  padding-left: 10%;
  text-align: right;
}
@media (max-width: 1666px) {
  .fix-header-contents {
    width: 90%;
    margin: 0 auto;
    padding-right: 5%;
    padding-left: 5%;
  }
}
.ttl-star {
  position: relative;
  display: inline-block; /* 見出し幅をテキストに合わせる */
  padding-top: 22px; /* ★の分だけ上に余白 */
  line-height: 1.3;
}
.ttl-star::before {
  content: "★";
  position: absolute;
  top: 7px;
  left: 0;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 6px;
  opacity: .9;
}
.ttl-star-hover {
  position: relative;
  display: inline-block;
  padding-top: 22px; /* ★の分の余白 */
  line-height: 1.3;
}
/* 初期：見えない（上に少しズラして透明） */
.ttl-star-hover::before {
  content: "★";
  position: absolute;
  top: 7px;
  left: 0;
  transform: translateX(-50%) translateY(6px);
  font-size: 10px;
  letter-spacing: 6px;
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}
.ttl-star-hover:hover::before {
  opacity: .95;
  transform: translateX(-50%) translateY(0);
}
#fix-header-logo {
  float: left;
  width: 20%;
  padding-top: 22px;
  height: 168px;
  background-color: #FFFFFF;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  text-align: center;
  box-shadow: 2px 2px 4px gray;
}
#fix-header-center {
  float: right;
  width: 76%;
  margin-left: 2%;
}
.fix-header-center-box {
  float: left;
  width: 100%;
  margin-top: 20px;
}
.fix-header-center-box ul {
  float: left;
  width: 100%;
  text-align: right;
}
.fix-header-center-box ul li {
  width: 20%;
  margin-left: 2%;
  display: inline-block;
}
.fix-header-center-box2 {
  float: left;
  width: 100%;
  margin-top: 30px;
}
.fix-header-center-box2 ul {
  float: left;
  width: 100%;
  text-align: right;
}
.fix-header-center-box2 ul li {
  width: 14%;
  margin-left: 4%;
  display: inline-block;
}
.fix-header-center-box2 ul li a {
  color: #3E3A39;
  text-decoration: none;
}
#slidemenu {
  display: none;
}
#wrap {
  overflow: hidden;
  font-family: "IBM Plex Sans JP", sans-serif;
}
#header {
  width: 90%;
  float: left;
  padding-top: 150px;
  padding-bottom: 100px;
  margin-right: 5%;
  margin-left: 5%;
}
.header_box {
  width: 100%;
  float: left;
}
.header_box img {
  width: 100%;
  border-radius: 20px;
}
/* 2枚スライド（フェード） */
.header_box.js-hero-slider {
  position: relative;
  overflow: hidden;
}
/* JSで高さを入れるので、画像は枠いっぱいに表示 */
.header_box.js-hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  display: block;
}
.header_box.js-hero-slider img.is-active {
  opacity: 1;
}
/* 動きが苦手な人向け */
@media (prefers-reduced-motion: reduce) {
  .header_box.js-hero-slider img {
    transition: none;
  }
}
#header2 {
  width: 100%;
  float: left;
  margin-top: 200px;
  position: relative;
  background-color: #E1F0D2;
  height: 460px;
}
#header2_c {
  width: 47%;
  float: left;
}
#header2_e {
  width: 47%;
  float: right;
}
.header_box2 {
  width: 70%;
  float: left;
  position: absolute;
  top: -200px;
  margin-right: 15%;
  margin-left: 15%;
}
@media (max-width: 1666px) {
  .header_box2 {
    width: 90%;
    float: left;
    position: absolute;
    top: -200px;
    margin-right: 5%;
    margin-left: 5%;
  }
}
.header_box2 h1 {
  width: 100%;
  float: left;
  font-size: 3rem;
  font-weight: 900;
  line-height: 4rem;
}
.header_box2 h1 span {
  font-size: 1.6rem;
  font-family: "Acme", sans-serif;
  display: block;
}
.header_box2 h1 span:before {
  content: '\ef4a';
  font-family: 'Material Icons';
  top: 4px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
}
.header_box2_box {
  width: 100%;
  float: left;
  border: 3px solid #E1F0D2;
  background-color: #FFFFFF;
  height: 450px;
  border-radius: 20px;
  margin-top: 30px;
}
.header_box2_box h2 {
  width: 100%;
  float: left;
  font-size: 2rem;
  font-weight: 900;
}
.header_box2_box h2:before {
  content: '\e15b';
  font-family: 'Material Icons';
  top: 3px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
  color: #81BE3E;
}
.header_box2_box2 {
  width: 90%;
  float: left;
  border: 3px solid #E1F0D2;
  background-color: #FFFFFF;
  height: 370px;
  border-radius: 20px;
  margin-top: 30px;
  padding-right: 5%;
  padding-left: 5%;
}
.header_box2_box2 h2 {
  width: 100%;
  float: left;
  font-size: 2rem;
  font-weight: 900;
  margin-top: 25px;
  margin-bottom: 10px;
}
.header_box2_box2 h2:before {
  content: '\e15b';
  font-family: 'Material Icons';
  top: 3px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
  color: #81BE3E;
}
.cp_ipselect02 {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 3em;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0em;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
}
.cp_ipselect02 select {
  width: 100%;
  padding-top: 15px;
  padding-right: 45px;
  padding-left: 10px;
  padding-bottom: 15px;
  cursor: pointer;
  text-overflow: ellipsis; /*テキストがオーバーしたら'...'で省略*/
  z-index: 1;
  /* 標準のスタイルを無効にする */
  border: none;
  appearance: none;
  outline: none;
  background: transparent;
  font-size: 1.6rem;
  font-family: "IBM Plex Sans JP", sans-serif;
}
/*プルダウンの三角と枠を設定*/
.cp_ipselect02::before {
  position: absolute;
  right: 15px;
  content: '';
  width: 16px;
  height: 8px;
  background: #666666;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.cp_ipselect02:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 45px;
  content: '';
  border-left: 1px solid #bbbbbb;
}
.cp_ipselect03 {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0em;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  background-color: #FFFFFF;
}
.cp_ipselect03 select {
  width: 100%;
  padding-top: 10px;
  padding-right: 45px;
  padding-left: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  text-overflow: ellipsis; /*テキストがオーバーしたら'...'で省略*/
  z-index: 1;
  /* 標準のスタイルを無効にする */
  border: none;
  appearance: none;
  outline: none;
  background: transparent;
  font-size: 1.6rem;
  font-family: "IBM Plex Sans JP", sans-serif;
}
/*プルダウンの三角と枠を設定*/
.cp_ipselect03::before {
  position: absolute;
  right: 15px;
  content: '';
  width: 16px;
  height: 8px;
  background: #666666;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.cp_ipselect03:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 45px;
  content: '';
  border-left: 1px solid #bbbbbb;
}
a.btn_blue {
  display: block;
  max-width: 350px;
  margin: 0 auto;
  padding: 1.5rem 3.0rem;
  background-color: #4478d4;
  border-radius: 8px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.3s;
}
a.btn_blue span.bl__text {
  display: block;
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  padding-left: 30px;
}
a.btn_blue span.bl__text:before {
  content: '';
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
a.btn_blue span.bl__text:after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 3px solid #1755aa;
  border-right: 3px solid #1755aa;
  box-sizing: border-box;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 5px;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
a.btn_blue:hover {
  background-color: #01b5d0;
}
a.btn_blue:hover span.bl__text:after {
  border-top: 3px solid #01b5d0;
  border-right: 3px solid #01b5d0;
}
@media (max-width: 736px) {
  a.btn_blue {
    max-width: 280px;
    padding: 1.5rem 2.0rem;
  }
  a.btn_blue span.bl__text {
    font-size: 14px;
  }
}
a.btn_blue2 {
  display: inline-block;
  margin-top: 0;
  margin-right: 3%;
  margin-left: 3%;
  margin-bottom: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4478d4;
  border-radius: 8px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.3s;
  color: #FFFFFF;
  width: 43%;
}
a.btn_blue2:hover {
  background-color: #01b5d0;
}
a.btn_blue2:hover span.bl__text:after {
  border-top: 3px solid #01b5d0;
  border-right: 3px solid #01b5d0;
}
a.btn_blue3 {
  display: block;
  margin-bottom: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4478d4;
  border-radius: 8px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.3s;
  color: #FFFFFF;
  width: 100%;
  margin-right: 0px;
  text-align: center;
}
a.btn_blue3:hover {
  background-color: #01b5d0;
}
a.btn_blue3:hover span.bl__text:after {
  border-top: 3px solid #01b5d0;
  border-right: 3px solid #01b5d0;
}
a.btn_blue3_2 {
  display: block;
  margin-bottom: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #4478d4;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.3s;
  color: #FFFFFF;
  width: 100%;
  margin-right: 0px;
  text-align: center;
}
a.btn_blue3_2:hover {
  background-color: #01b5d0;
}
a.btn_blue3_2:hover span.bl__text:after {
  border-top: 3px solid #01b5d0;
  border-right: 3px solid #01b5d0;
}
a.btn_blue4 {
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e0be50;
  border-radius: 8px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.3s;
  color: #FFFFFF;
  width: 100%;
  margin-right: 0px;
  text-align: center;
}
a.btn_blue4:hover {
  background-color: #F4D367;
}
a.btn_blue4:hover span.bl__text:after {
  border-top: 3px solid #F4D367;
  border-right: 3px solid #F4D367;
}
a.btn_blue4_2 {
  display: block;
  margin-bottom: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e0be50;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.3s;
  color: #FFFFFF;
  width: 100%;
  margin-right: 0px;
  text-align: center;
}
a.btn_blue4_2:hover {
  background-color: #F4D367;
}
a.btn_blue4_2:hover span.bl__text:after {
  border-top: 3px solid #F4D367;
  border-right: 3px solid #F4D367;
}
.header_box2_box_left {
  width: 31%;
  float: left;
  margin-left: 3%;
  margin-top: 30px;
}
.header_box2_box_center {
  width: 31%;
  float: left;
  margin-left: 3%;
  margin-top: 30px;
}
.header_box2_box_right {
  width: 25%;
  float: right;
  margin-right: 3%;
  margin-top: 30px;
  padding-top: 45px;
}
.header_box2_box_text {
    width: 90%;
    float: left;
    margin-left: 5%;
    margin-top: 20px;
    margin-right: 5%;
    font-size: 1.4rem;
    line-height: 2.2rem;
    text-align: center;
}
.header_box2_box_left {
  width: 31%;
  float: left;
  margin-left: 3%;
  margin-top: 30px;
}
.header_box2_box_center {
  width: 31%;
  float: left;
  margin-left: 3%;
  margin-top: 30px;
}
.header_box2_box_right {
  width: 25%;
  float: right;
  margin-right: 3%;
  margin-top: 30px;
  padding-top: 45px;
}
.header_box2_box_right2 {
  width: 100%;
  float: left;
  margin-top: 30px;
}
.header_box2_box_text {
  width: 90%;
  float: left;
  margin-left: 5%;
  margin-top: 20px;
  margin-right: 5%;
  font-size: 1.4rem;
  line-height: 2.2rem;
}
#header3 {
  width: 70%;
  float: left;
  background-color: #D0DDF4;
  padding-bottom: 100px;
  padding-top: 80px;
  padding-right: 15%;
  padding-left: 15%;
  height: 600px;
}
@media (max-width: 1666px) {
  #header3 {
    width: 90%;
    float: left;
    background-color: #D0DDF4;
    padding-bottom: 100px;
    padding-top: 80px;
    padding-right: 5%;
    padding-left: 5%;
    height: 600px;
  }
}
.header_box3_box {
  width: 100%;
  float: left;
}
.header_box3_box h2 {
  width: 100%;
  float: left;
  font-size: 3rem;
  font-weight: 900;
  line-height: 4rem;
}
.header_box3_box h2 span {
  font-size: 1.6rem;
  font-family: "Acme", sans-serif;
  display: block;
}
.header_box3_box h2 span:before {
  content: '\ef4a';
  font-family: 'Material Icons';
  top: 4px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
}
.header_box3_box_left {
  width: 25%;
  float: left;
}
.header_box3_box_right {
  width: 70%;
  float: right;
}
.header_box3_box_right_page {
  width: 94%;
  float: left;
  border: 1px solid #4478D4;
  background-color: #FFFFFF;
  height: 153px;
  border-radius: 10px;
  padding-right: 3%;
  padding-left: 3%;
  margin-top: 15px;
  transition: background-color .25s ease, box-shadow .25s ease;
}
.header_box3_box_right_page:hover {
  background-color: rgba(0, 0, 0, .01); /* 好みで変更 */
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08); /* ふわっと感（不要なら消してOK） */
}
.header_box3_box_right_page h3 {
  width: 100%;
  float: left;
  font-size: 1.8rem;
  font-weight: 900;
  margin-top: 12px;
}
.header_box3_box_right_page h3 a {
  color: #3E3A39;
  text-decoration: none;
}
.header_box3_box_right_page p {
  width: 100%;
  float: left;
  margin-top: 10px;
}
.header_box3_box_right_page p span {
  background-color: #4478D4;
  color: #FFFFFF;
  display: inline-block;
  margin-left: 10px;
  border-radius: 10px;
  padding-top: 3px;
  padding-right: 15px;
  padding-bottom: 0px;
  padding-left: 15px;
  margin-top: 15px;
}
.header_box3_box_right_page {
  position: relative;
  padding-right: 2.4em; /* 矢印ぶんの余白 */
}
/* 右向き「>」風の矢印（CSSだけ） */
.header_box3_box_right_page::after {
  content: "";
  position: absolute;
  right: 1em; /* 右端からの距離 */
  top: 50%;
  width: 0.55em;
  height: 0.55em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none; /* クリック邪魔しない */
}
.header_box3_box2 {
  width: 100%;
  float: left;
  margin-top: 50px;
}
.header_box4 {
  width: 100%;
  float: left;
  text-align: center;
  margin-top: 100px;
}
.header_box4 h2 {
  width: 100%;
  float: left;
  font-size: 4rem;
  font-weight: bold;
}
.header_box h1 br {
  display: none;
}
.header_box h2 {
  width: 100%;
  float: left;
  font-size: 5rem;
  line-height: 5rem;
  font-weight: bold;
  color: #06aeeb;
  margin-top: 40px;
}
.header_box h2 span {
  font-size: 2rem;
  display: block;
  color: #3E3A39;
}
.marker {
  background: linear-gradient(transparent 90%, #45b515 0%);
}
.button_box {
    width: 100%;
    float: left;
    text-align: center;
    margin-top: 50px;
    padding-bottom: 100px;
}
.button-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  margin: 0 auto;
  padding: .9em 2em;
  border: 2px solid #81be3e;
  border-radius: 40px;
  background-color: #fff;
  color: #81be3e;
  font-size: 1.6rem;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-weight: bold;
  text-decoration: none;
}
.button-1::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #45b515;
  border-right: 2px solid #45b515;
  content: '';
}
.button-1:hover {
  cursor: pointer
}
#main {
  width: 100%;
  float: left;
}
#main2 {
  width: 100%;
  float: left;
}
/* パンくず */
.pankuzu {
  width: 70%;
  margin-right: 15%;
  margin-left: 15%;
  padding: 0 10px;
  box-sizing: border-box;
  float: left;
  margin-top: 15px;
}
@media (max-width: 1666px) {
.pankuzu {
  width: 80%;
  margin-right: 10%;
  margin-left: 10%;
  padding: 0 10px;
  box-sizing: border-box;
  float: left;
  margin-top: 15px;
}
}
.pankuzu__list {
  list-style: none;
  margin-top: 0px;
  margin-right: 0px;
  margin-left: 0px;
  margin-bottom: 0px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.pankuzu__item {
  display: inline-flex;
  align-items: center;
}
.pankuzu__item + .pankuzu__item::before {
  content: ">";
  margin: 0 6px 0 2px;
  opacity: .6;
}
.pankuzu a {
  text-decoration: none;
  color: #4478d4;
}
.pankuzu a:hover {
  text-decoration: underline;
}
.main_box {
  width: 70%;
  float: left;
  background-image: url(../photo/top.jpg);
  background-size: cover;
  padding-right: 15%;
  padding-left: 15%;
  background-position: center center;
  text-align: center;
  padding-top: 75px;
  padding-bottom: 75px;
}
@media (max-width: 1666px) {
.main_box {
  width: 90%;
  float: left;
  background-image: url(../photo/top.jpg);
  background-size: cover;
  padding-right: 5%;
  padding-left: 5%;
  background-position: center center;
  text-align: center;
  padding-top: 75px;
  padding-bottom: 75px;
}
}
.main_box_page {
    width: 100%;
    float: left;
}
.main_box_page h2 {
    width: 100%;
    float: left;
    font-size: 1.8rem;
    font-weight: 900;
    margin-top: 25px;
    margin-bottom: 10px;
    background-color: #81BE3E;
    color: #FFFFFF;
    border-radius: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.main_box_page h3 {
    width: 100%;
    float: left;
    font-size: 1.8rem;
    font-weight: 900;
    margin-top: 15px;
    text-align: left;
}
.main_box_page ul {
    width: 90%;
    float: left;
    margin-top: 10px;
    line-height: 2.4rem;
    font-weight: normal;
    margin-right: 5%;
    margin-left: 5%;
    font-size: 1.5rem;
    color: #6E6E6E;
    list-style-position: outside;
    list-style-type: circle;
    text-align: left;
}
.main_box_page ul li {
    width: 100%;
    float: left;
    margin-top: 5px;
}
.main_box_page_left {
    width: 26%;
    float: left;
    height: 740px;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    border: 1px solid #81BE3E;
    padding-right: 2%;
    padding-left: 2%;
}
@media (max-width: 1666px) {
.main_box_page_left {
    width: 26%;
    float: left;
    height: 700px;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    border: 1px solid #81BE3E;
    padding-right: 2%;
    padding-left: 2%;
}
}
.main_box_page_center {
    width: 26%;
    float: left;
    margin-left: 5%;
    height: 740px;
	background:rgba(255,255,255,0.9);
	border-radius: 20px;
    border: 1px solid #81BE3E;
    padding-right: 2%;
    padding-left: 2%;
}
@media (max-width: 1666px) {
.main_box_page_center {
    width: 26%;
    float: left;
    margin-left: 5%;
    height: 700px;
	background:rgba(255,255,255,0.9);
	border-radius: 20px;
    border: 1px solid #81BE3E;
    padding-right: 2%;
    padding-left: 2%;
}
}
.main_box_page_right {
    width: 26%;
    float: right;
    height: 740px;
	background:rgba(255,255,255,0.9);
	border-radius: 20px;
    border: 1px solid #81BE3E;
    padding-right: 2%;
    padding-left: 2%;
}
@media (max-width: 1666px) {
.main_box_page_right {
    width: 26%;
    float: right;
    height: 700px;
	background:rgba(255,255,255,0.9);
	border-radius: 20px;
    border: 1px solid #81BE3E;
    padding-right: 2%;
    padding-left: 2%;
}
}
.main_box2 {
  width: 70%;
  float: left;
  padding-right: 15%;
  padding-left: 15%;
  margin-top: 50px;
}
@media (max-width: 1666px) {
  .main_box2 {
    width: 90%;
    float: left;
    padding-right: 5%;
    padding-left: 5%;
    margin-top: 50px;
  }
}
.main_box2 h2 {
  width: 100%;
  float: left;
  font-size: 3rem;
  font-weight: 900;
  line-height: 4rem;
}
.main_box2 h2 span {
  font-size: 1.6rem;
  font-family: "Acme", sans-serif;
  display: block;
}
.main_box2 h2 span:before {
  content: '\ef4a';
  font-family: 'Material Icons';
  top: 4px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
}
.main_box2_box {
  width: 100%;
  float: left;
  border-top: 1px solid #B5B5B4;
  margin-top: 30px;
}
.main_box2 ul {
  width: 100%;
  float: left;
  border-bottom: 1px solid #B5B5B4;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #FFFFFF;
}
.main_box3 {
  width: 70%;
  float: left;
  padding-right: 15%;
  padding-left: 15%;
  background-color: #4478D4;
  padding-top: 100px;
  text-align: center;
  margin-top: 150px;
  opacity: 0.9;
  background-image: radial-gradient(#FFF 0.5px, #4478d4 0.5px);
  background-size: 10px 10px;
  height: 130px;
}
@media (max-width: 1666px) {
.main_box3 {
  width: 80%;
  float: left;
  padding-right: 10%;
  padding-left: 10%;
  background-color: #4478D4;
  padding-top: 100px;
  text-align: center;
  margin-top: 150px;
  opacity: 0.9;
  background-image: radial-gradient(#FFF 0.5px, #4478d4 0.5px);
  background-size: 10px 10px;
  height: 130px;
}
}
.main_box3 h1 {
  width: 100%;
  float: left;
  font-size: 4rem;
  color: #FFFFFF;
  font-weight: bold;
}
.main_box3_2 {
  width: 70%;
  float: left;
  padding-right: 15%;
  padding-left: 15%;
  background-color: #4478D4;
  padding-top: 55px;
  text-align: center;
  margin-top: 150px;
  opacity: 0.9;
  background-image: radial-gradient(#FFF 0.5px, #4478d4 0.5px);
  background-size: 10px 10px;
  height: 175px;
}
@media (max-width: 1666px) {
.main_box3_2 {
  width: 80%;
  float: left;
  padding-right: 10%;
  padding-left: 10%;
  background-color: #4478D4;
  padding-top: 55px;
  text-align: center;
  margin-top: 150px;
  opacity: 0.9;
  background-image: radial-gradient(#FFF 0.5px, #4478d4 0.5px);
  background-size: 10px 10px;
  height: 175px;
}
}
.main_box3_2 h1 {
  width: 100%;
  float: left;
  font-size: 4rem;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 6rem;
}
.main_box3_2 h1 span {
  background-color: #FFFFFF;
  color: #4478D4;
  padding-top: 1px;
  padding-right: 25px;
  padding-bottom: 1px;
  padding-left: 25px;
  font-size: 2rem;
  border-radius: 10px;
}
.main_box4 {
  width: 70%;
  float: left;
  margin-top: 30px;
  margin-right: 15%;
  margin-left: 15%;
}
@media (max-width: 1666px) {
.main_box4 {
  width: 80%;
  float: left;
  margin-top: 30px;
  margin-right: 10%;
  margin-left: 10%;
}
}
.main_box4_box {
  width: 100%;
  float: left;
  border: 3px solid #E1F0D2;
  background-color: #FFFFFF;
  height: 170px;
  border-radius: 20px;
  margin-top: 30px;
}
.main_box4 h2 {
  width: 100%;
  float: left;
  font-size: 2rem;
  font-weight: 900;
}
.main_box4 h2:before {
  content: '\e15b';
  font-family: 'Material Icons';
  top: 3px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
  color: #81BE3E;
}
.main_box4_box_left {
  width: 31%;
  float: left;
  margin-left: 3%;
  margin-top: 30px;
}
.main_box4_box_center {
  width: 31%;
  float: left;
  margin-left: 3%;
  margin-top: 30px;
}
.main_box4_box_center div {
  width: 100%;
  float: left;
  margin-top: 17px;
}
.main_box4_box_right {
  width: 25%;
  float: right;
  margin-right: 3%;
  margin-top: 30px;
  padding-top: 45px;
}
.main_box5 {
  width: 66%;
  float: left;
  margin-top: 50px;
  text-align: center;
  padding-left: 19%;
  background-color: #F3F3F3;
  padding-right: 15%;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1666px) {
.main_box5 {
  width: 76%;
  float: left;
  margin-top: 50px;
  text-align: center;
  padding-left: 14%;
  background-color: #F3F3F3;
  padding-right: 10%;
  padding-top: 100px;
  padding-bottom: 100px;
}
}
.main_box5_box {
  width: 30%;
  height: 400px;
  display: inline-block;
  margin-right: 2%;
  border-radius: 20px;
  background-color: #FFFFFF;
  border: 1px solid #81be3e;
  margin-top: 50px;
  float: left;
}
.main_box5_box h3 {
  width: 100%;
  float: left;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 3rem;
  margin-top: 20px;
}
.main_box5_box h3 span {
  display: block;
  font-size: 1.6rem;
  font-weight: normal;
}
.main_box5_box p {
  width: 100%;
  float: left;
  text-align: center;
  margin-top: 15px;
}
.main_box5_box p a {
  color: #E0BE50;
}
.main_box5_box2 {
  width: 100%;
  float: left;
}
.main_box5_box2_left {
  width: 50%;
  float: left;
}
.main_box5_box2_left h2 {
  width: 100%;
  float: left;
  font-size: 3rem;
  font-weight: 900;
  line-height: 4rem;
  text-align: left;
  margin-top: 5px;
}
.main_box5_box2_left h2:before {
  content: '\ef4a';
  font-family: 'Material Icons';
  top: 0px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
}
.main_box5_box2_right {
  width: 30%;
  float: right;
}
.main_box5_2 {
  width: 66%;
  float: left;
  margin-top: 0px;
  text-align: center;
  padding-left: 19%;
  padding-right: 15%;
}
@media (max-width: 1666px) {
.main_box5_2 {
  width: 76%;
  float: left;
  margin-top: 0px;
  text-align: center;
  padding-left: 14%;
  padding-right: 10%;
}
}
.main_box5_2_box {
  width: 30%;
  height: 400px;
  display: inline-block;
  margin-right: 2%;
  border-radius: 20px;
  background-color: #FFFFFF;
  border: 1px solid #81be3e;
  margin-top: 50px;
  float: left;
}
.main_box5_2_box h3 {
  width: 100%;
  float: left;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 3rem;
  margin-top: 20px;
}
.main_box5_2_box h3 span {
  display: block;
  font-size: 1.6rem;
  font-weight: normal;
}
.main_box5_2_box p {
  width: 100%;
  float: left;
  text-align: center;
  margin-top: 15px;
}
.main_box5_2_box p a {
  color: #E0BE50;
}
.main_box6 {
  width: 70%;
  float: left;
  margin-top: 50px;
  text-align: center;
  padding-left: 15%;
  padding-right: 15%;
}
@media (max-width: 1666px) {
.main_box6 {
  width: 80%;
  float: left;
  margin-top: 50px;
  text-align: center;
  padding-left: 10%;
  padding-right: 10%;
}
}
.main_box7 {
  width: 70%;
  float: left;
  margin-top: 50px;
  padding-left: 15%;
  padding-right: 15%;
}
@media (max-width: 1666px) {
.main_box7 {
  width: 80%;
  float: left;
  margin-top: 50px;
  padding-left: 10%;
  padding-right: 10%;
}
}
.main_box7_box {
  width: 100%;
  float: left;
}
.main_box7_box_left {
  width: 67%;
  float: left;
}
.main_box7_box_left_img {
  width: 30%;
  float: left;
}
.main_box7_box_left_img img {
  width: 100%;
}
.main_box7_box_left_text {
  width: 67%;
  float: right;
}
.main_box7_box_right {
  width: 30%;
  float: right;
  text-align: right;
  margin-top: 30px;
}
.main_box8 {
  width: 70%;
  float: left;
  margin-top: 50px;
  background-color: #E1F0D2;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 15%;
  padding-left: 15%;
}
@media (max-width: 1666px) {
.main_box8 {
  width: 80%;
  float: left;
  margin-top: 50px;
  background-color: #E1F0D2;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 10%;
  padding-left: 10%;
}
}
.main_box8 h2 {
  width: 100%;
  float: left;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 3rem;
  text-align: left;
  margin-top: 5px;
}
.main_box8 h2:before {
  content: '\ef4a';
  font-family: 'Material Icons';
  top: 0px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
}
.main_box8 p {
  width: 100%;
  float: left;
  margin-top: 15px;
}
.main_box8_2 {
  width: 70%;
  float: left;
  background-color: #F3F3F3;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 15%;
  padding-left: 15%;
}
@media (max-width: 1666px) {
.main_box8_2 {
  width: 80%;
  float: left;
  background-color: #F3F3F3;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 10%;
  padding-left: 10%;
}
}
.main_box8_2 h2 {
  width: 100%;
  float: left;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 3rem;
  text-align: left;
  margin-top: 5px;
}
.main_box8_2 h2:before {
  content: '\ef4a';
  font-family: 'Material Icons';
  top: 0px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
}
.main_box8_2 h3 {
  width: 98%;
  float: left;
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #F0E2B7;
  padding-top: 7px;
  padding-bottom: 5px;
  padding-right: 1%;
  padding-left: 1%;
  margin-top: 20px;
}
.main_box8_2 p {
  width: 98%;
  float: left;
  padding-right: 1%;
  padding-left: 1%;
  margin-top: 20px;
}
.main_box9 {
  width: 70%;
  float: left;
  margin-top: 50px;
  padding-right: 15%;
  padding-left: 15%;
}
@media (max-width: 1666px) {
.main_box9 {
  width: 80%;
  float: left;
  margin-top: 50px;
  padding-right: 10%;
  padding-left: 10%;
}
}
.main_box9 h2 {
  width: 100%;
  float: left;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 3rem;
  text-align: left;
  margin-top: 5px;
}
.main_box9 h2:before {
  content: '\ef4a';
  font-family: 'Material Icons';
  top: 0px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
}
.main_box9_box {
  width: 94%;
  float: left;
  border: 1px solid #E0E0E0;
  padding-top: 25px;
  padding-right: 3%;
  padding-bottom: 25px;
  padding-left: 3%;
  margin-top: 20px;
}
.main_box9_box h3 {
  width: 100%;
  float: left;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.main_box9_box h3 span {
  display: inline-block;
  margin-right: 10px;
  height: 50px;
}
.main_box9_box h3 span img {
  object-fit: cover;
  width: 100%;
  height: 50px;
}
.main_box9_box p {
  width: 100%;
  float: left;
  margin-top: 15px;
  font-weight: normal;
}
.main_box10 {
  width: 70%;
  float: left;
  padding-right: 15%;
  padding-left: 15%;
  margin-top: 50px;
  align-items: flex-start;
  display: flex;
}
@media (max-width: 1666px) {
.main_box10 {
  width: 80%;
  float: left;
  padding-right: 10%;
  padding-left: 10%;
  margin-top: 50px;
  align-items: flex-start;
  display: flex;
}
}
.main_box10_left {
  width: 50%;
  float: left;
  padding: 0;
  margin: 0;
}
.main_box10_right {
  width: 50%;
  float: right;
  padding: 0;
  margin: 0;
}
.main_box11 {
  width: 70%;
  float: left;
  margin-top: 30px;
  margin-right: 15%;
  margin-left: 15%;
}
@media (max-width: 1666px) {
.main_box11 {
  width: 80%;
  float: left;
  margin-top: 30px;
  margin-right: 10%;
  margin-left: 10%;
}
}
.main_box11 h2 {
  width: 100%;
  float: left;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-top: 50px;
}
.main_box11 p {
  width: 100%;
  float: left;
  margin-top: 15px;
  text-align: center;
}
.main_box11_box {
  width: 100%;
  float: left;
  border: 3px solid #E1F0D2;
  background-color: #FFFFFF;
  border-radius: 20px;
  margin-top: 20px;
  padding-right: 3%;
  padding-left: 3%;
  padding-top: 5px;
  padding-bottom: 25px;
}
.main_box11_box h3 {
  width: 100%;
  float: left;
  font-size: 2rem;
  font-weight: 900;
  margin-top: 20px;
}
.main_box11_box h3:before {
  content: '\e15b';
  font-family: 'Material Icons';
  top: 3px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
  color: #81BE3E;
}
.main_box11_box div {
  width: 100%;
  float: left;
  margin-top: 10px;
}
.main_box12 {
  width: 70%;
  float: left;
  margin-top: 50px;
  text-align: center;
  padding-left: 15%;
  background-color: #F3F3F3;
  padding-right: 15%;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1666px) {
.main_box12 {
  width: 80%;
  float: left;
  margin-top: 50px;
  text-align: center;
  padding-left: 10%;
  background-color: #F3F3F3;
  padding-right: 10%;
  padding-top: 100px;
  padding-bottom: 100px;
}
}
.main_box12_box {
  width: 94%;
  float: left;
  border: 1px solid #E0E0E0;
  padding-top: 25px;
  padding-right: 3%;
  padding-bottom: 25px;
  padding-left: 3%;
  margin-top: 20px;
}
.main_box12_box h3 {
  width: 100%;
  float: left;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.main_box12_box h3 span {
  display: inline-block;
  margin-right: 10px;
  height: 50px;
}
.main_box12_box h3 span img {
  object-fit: cover;
  width: 100%;
  height: 50px;
}
.main_box12_box h4 {
  width: 100%;
  float: left;
  font-size: 2rem;
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-top: 20px;
  color: #4478D4;
}
.main_box12_box p {
  width: 100%;
  float: left;
  margin-top: 15px;
  font-weight: normal;
  text-decoration: none;
  text-align: left;
}
.main_box12_box2 {
  width: 100%;
  float: left;
}
.main_box12_box2_left {
  width: 50%;
  float: left;
}
.main_box12_box2_left h2 {
  width: 100%;
  float: left;
  font-size: 3rem;
  font-weight: 900;
  line-height: 4rem;
  text-align: left;
  margin-top: 5px;
}
.main_box12_box2_left h2:before {
  content: '\ef4a';
  font-family: 'Material Icons';
  top: 0px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
}
.main_box12_box2_right {
  width: 30%;
  float: right;
}
.main_box13 {
    width: 70%;
    float: left;
    margin-top: 50px;
    padding-left: 15%;
    padding-right: 15%;
}
@media (max-width: 1666px) {
.main_box13 {
    width: 80%;
    float: left;
    margin-top: 50px;
    padding-left: 10%;
    padding-right: 10%;
}
}
.main_box13_box {
    width: 90%;
    float: left;
    background-color: #EAEAEA;
    padding-right: 5%;
    padding-left: 5%;
    padding-top: 25px;
    padding-bottom: 90px;
    border-radius: 20px;
}
.main_box13_layout {
    width: 100%;
    float: left;
    border-bottom: 1px solid #CCCCCC;
    padding-top: 50px;
    padding-bottom: 50px;
}
.main_box13_layout_left {
    width: 20%;
    float: left;
}
.main_box13_layout_left h3 {
    width: 100%;
    float: left;
    text-align: left;
    position: relative;
    padding-top: 13px;
}
.main_box13_layout_left span {
    background-color: #F74043;
    color: #FFFFFF;
    padding-top: 2px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-left: 10px;
    border-radius: 5px;
    display: inline-block;
    position: absolute;
    right: 0px;
    font-size: 1.6rem;
    top: 9px;
}
.main_box13_layout_right {
    width: 77%;
    float: right;
}
.main_box13_layout2 {
    width: 100%;
    float: left;
    padding-top: 50px;
    padding-bottom: 50px;
}
.main_box13_layout2 h3 {
    width: 90%;
    float: left;
    text-align: left;
    border-left: 3px solid #4478D4;
    font-weight: bold;
    padding-left: 10px;
}
.main_box13_layout2 div {
    width: 90%;
    float: left;
    height: 300px;
    overflow-y: auto;
    background-color: #FFFFFF;
    padding-right: 5%;
    padding-left: 5%;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 20px;
}
.main_box13_layout2 div h4 {
    width: 100%;
    float: left;
    margin-top: 30px;
}
.main_box13_layout2 div p {
    width: 100%;
    float: left;
    margin-top: 0px;
}
.main_box13_layout2 div ul {
    width: 94%;
    float: left;
    margin-top: 0px;
    list-style-position: outside;
    list-style-type: circle;
    margin-right: 3%;
    margin-left: 3%;
}
.main_box13_layout2 div ul li {
    width: 100%;
    float: left;
    margin-top: 0px;
}
.main_box13_layout3 {
    width: 100%;
    float: left;
}
.main_box14 {
    width: 70%;
    float: left;
    margin-top: 50px;
    padding-left: 15%;
    padding-right: 15%;
}
@media (max-width: 1666px) {
.main_box14 {
    width: 80%;
    float: left;
    margin-top: 50px;
    padding-left: 10%;
    padding-right: 10%;
}
}
.main_box14 h2 {
  width: 100%;
  float: left;
  margin-top: 50px;
  border-bottom: 1px solid #A3A3A3;
  padding-top: 0.2em;
  padding-right: 0.5em;
  padding-left: 0.5em;
  padding-bottom: 0.5em;
  border-left: solid 5px #007aff;
  font-size: 2rem;
  font-weight: bold;
  color: #007aff;
}
.main_box14 h3 {
  width: 100%;
  float: left;
  margin-top: 50px;
  border-bottom: 1px solid #A3A3A3;
  padding-bottom: 0.5em;
  font-size: 2rem;
  font-weight: bold;
}
.main_box14 h4 {
  width: 98%;
  float: left;
  margin-top: 50px;
  font-size: 1.8rem;
  background-color: #DBDBDB;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 1%;
  padding-left: 1%;
}
.main_box14 p {
  width: 100%;
  float: left;
  margin-top: 50px;
}
.main_box14 ul {
  width: 96%;
  float: left;
  margin-top: 40px;
  list-style-position: outside;
  list-style-type: circle;
  margin-right: 2%;
  margin-left: 2%;
}
.main_box14 ul li {
  width: 100%;
  float: left;
  margin-top: 10px;
}
.main_box14 ol {
  width: 96%;
  float: left;
  margin-top: 40px;
  list-style-position: outside;
  list-style-type: decimal;
  margin-right: 2%;
  margin-left: 2%;
}
.main_box14 ol li {
  width: 100%;
  float: left;
  margin-top: 10px;
}
.main_box14 table {
  width: 100%;
  float: left;
  margin-top: 50px;
  border-top: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
}
.main_box14 table th {
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #F7F2F2;
}
.main_box14 table td {
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}
.main_box14 table td span {
  font-size: 1.2rem;
  margin-left: 5px;
}
.main_box14 div {
  width: 100%;
  float: left;
  margin-top: 50px;
}
.main_box14 div img {
  width: 25%;
}
.main_box15 {
    width: 70%;
    float: left;
    margin-top: 50px;
    padding-left: 15%;
    padding-right: 15%;
}
@media (max-width: 1666px) {
.main_box15 {
    width: 80%;
    float: left;
    margin-top: 50px;
    padding-left: 10%;
    padding-right: 10%;
}
}
.main_box15 h2 {
  width: 100%;
  float: left;
  margin-top: 50px;
  border-bottom: 1px solid #A3A3A3;
  padding-bottom: 0.5em;
  font-size: 2rem;
  font-weight: bold;
}
.main_box15 p {
    width: 100%;
    float: left;
    margin-top: 15px;
}
.main_box15 ul {
  width: 96%;
  float: left;
  margin-top: 5px;
  list-style-position: outside;
  list-style-type: circle;
  margin-right: 2%;
  margin-left: 2%;
}
.main_box15 ul li {
  width: 100%;
  float: left;
  margin-top: 10px;
}
.main_box15 ol {
  width: 96%;
  float: left;
  margin-top: 5px;
  list-style-position: outside;
  list-style-type: decimal;
  margin-right: 2%;
  margin-left: 2%;
}
.main_box15 ol li {
  width: 100%;
  float: left;
  margin-top: 10px;
}
.main_box16 {
    width: 70%;
    float: left;
    margin-top: 50px;
    margin-right: 15%;
    margin-left: 15%;
}
@media (max-width: 1666px) {
.main_box16 {
    width: 80%;
    float: left;
    margin-top: 50px;
    margin-right: 10%;
    margin-left: 10%;
}
}
.main_box16 table {
    width: 100%;
    float: left;
}
.main_box17 {
    width: 70%;
    float: left;
    margin-top: 50px;
    padding-left: 15%;
    padding-right: 15%;
}
@media (max-width: 1666px) {
.main_box17 {
    width: 80%;
    float: left;
    margin-top: 50px;
    padding-left: 10%;
    padding-right: 10%;
}
}
.main_box17_box {
    width: 100%;
    float: left;
    margin-top: 30px;
    text-align: center;
}
.main_box17_box2 {
    width: 100%;
    float: left;
}
.main_box17_box h2 {
    width: 50%;
    float: left;
    background-color: #F54043;
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: bold;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-right: 25%;
    margin-left: 25%;
}
.main_box17_box h3 {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    line-height: 3.4rem;
}
.main_box17_box h3 span {
    color: #4478D4;
}
.main_box17_box ol {
    width: 94%;
    float: left;
    margin-top: 15px;
    text-align: left;
    list-style-position: outside;
    list-style-type: decimal;
    margin-right: 3%;
    margin-left: 3%;
}
.main_box17_box ol li {
    width: 100%;
    float: left;
    margin-top: 0px;
    text-align: left;
}
.main_box17_box_left {
    width: 41%;
    float: left;
    margin-top: 30px;
    padding-top: 50px;
    padding-right: 3%;
    padding-left: 3%;
    border-radius: 20px;
    height: 415px;
    opacity: 0.9;
    background-image: radial-gradient(#000 0.5px, #F2F2F2 0.5px);
    background-size: 10px 10px;
}
.main_box17_box_right {
    width: 41%;
    float: right;
    margin-top: 30px;
    padding-top: 50px;
    padding-right: 3%;
    padding-left: 3%;
    border-radius: 20px;
    height: 415px;
    opacity: 0.9;
    background-image: radial-gradient(#000 0.5px, #F2F2F2 0.5px);
    background-size: 10px 10px;
}
.main_box18 {
    width: 70%;
    float: left;
    margin-top: 50px;
    padding-left: 15%;
    padding-right: 15%;
}
@media (max-width: 1666px) {
.main_box18 {
    width: 80%;
    float: left;
    margin-top: 50px;
    padding-left: 10%;
    padding-right: 10%;
}
}
.main_box18_box {
    width: 100%;
    float: left;
    margin-top: 30px;
    text-align: center;
}
.main_box18_box h2 {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 3rem;
    line-height: 4.6rem;
    font-weight: bold;
}
.main_box18_box p {
    width: 100%;
    float: left;
    margin-top: 20px;
    text-align: center;
}
.main_box18_box2 {
    width: 100%;
    float: left;
    margin-top: 30px;
    text-align: center;
}
.main_box18_box2 div {
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
    width: 100%;
    float: left;
    text-align: center;
    margin-top: 15px;
}
.main_box18_box2 p {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 3rem;
    line-height: 4.6rem;
    font-weight: bold;
    margin-top: 20px;
}
.main_box18_box3 {
    width: 92%;
    float: left;
    margin-top: 50px;
    padding-left: 4%;
    background-color: #F3F3F3;
    padding-right: 4%;
    padding-top: 40px;
    padding-bottom: 50px;
}
.main_box18_box3_box {
  width: 100%;
  float: left;
}
.main_box18_box3_box h2 {
  width: 100%;
  float: left;
  font-size: 2rem;
  font-weight: 900;
  line-height: 3rem;
  text-align: left;
  margin-top: 5px;
}
.main_box18_box3_box h2:before {
  content: '\ef4a';
  font-family: 'Material Icons';
  top: 0px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
}
.main_box18_box3_box h3 {
    color: #3E3A39;
    text-decoration: none;
    width: 100%;
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 20px;
    float: left;
}
.main_box18_box3_box h3:before {
  content: '\e15b';
  font-family: 'Material Icons';
  top: 3px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
  color: #3E3A39;
}
.main_box18_box3_box p {
  width: 100%;
  float: left;
  margin-top: 5px;
}
.main_box18_box4 {
    width: 92%;
    float: left;
    margin-top: 50px;
    padding-left: 4%;
    background-color: #F3F3F3;
    padding-right: 4%;
    padding-top: 40px;
    padding-bottom: 50px;
}
.main_box18_box4_box {
  width: 100%;
  float: left;
}
.main_box18_box4_box h2 {
  width: 100%;
  float: left;
  font-size: 2rem;
  font-weight: 900;
  line-height: 3rem;
  text-align: left;
  margin-top: 5px;
}
.main_box18_box4_box h2:before {
  content: '\ef4a';
  font-family: 'Material Icons';
  top: 0px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
}
.main_box18_box4_box ul {
    width: 94%;
    float: left;
    list-style-position: outside;
    list-style-type: circle;
    margin-right: 3%;
    margin-left: 3%;
    margin-top: 10px;
}
.main_box18_box4_box ul li {
    width: 100%;
    float: left;
    margin-top: 0px;
}
.main_box18_box5 {
    width: 100%;
    float: left;
    margin-top: 50px;
    text-align: center;
}
.main_box19 {
    width: 30%;
    float: left;
    margin-top: 50px;
    text-align: center;
    margin-right: 35%;
    margin-left: 35%;
}
@media (max-width: 1666px) {
.main_box19 {
    width: 40%;
    float: left;
    margin-top: 50px;
    text-align: center;
    margin-right: 30%;
    margin-left: 30%;
}
}
.main_box19_box {
    width: 100%;
    float: left;
}
.main_box19_box h2 {
    width: 100%;
    float: left;
}
.main_box19_box h2 img {
    width: 40%;
}
.main_box19_box p {
    width: 100%;
    float: left;
    margin-top: 15px;
    font-size: 1.6rem;
}
.main_box19_box p span {
    color: #FF6B6B;
}
.main_box19_box2 {
    width: 100%;
    float: left;
    margin-top: 15px;
}
.main_box20 {
    width: 70%;
    float: left;
    margin-top: 50px;
    padding-left: 15%;
    padding-right: 15%;
}
@media (max-width: 1666px) {
.main_box20 {
    width: 80%;
    float: left;
    margin-top: 50px;
    padding-left: 10%;
    padding-right: 10%;
}
}
.main_box20 h2 {
    width: 100%;
    float: left;
    margin-top: 50px;
    padding-bottom: 0.5em;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}
.main_box20_box {
    width: 100%;
    float: left;
}
.main_box20_box p {
    width: 100%;
    float: left;
    margin-top: 15px;
    text-align: center;
}
.main_box20_box2 {
    width: 100%;
    float: left;
}
.main_box20_box2 h3 {
    width: 98%;
    float: left;
    background-color: #DEDEDE;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 1%;
    padding-left: 1%;
    margin-top: 50px;
}
.main_box20_box2 h4 {
    width: 98%;
    float: left;
    border-bottom: 1px solid #3E3A39;
    padding-bottom: 5px;
    padding-right: 1%;
    padding-left: 1%;
    margin-top: 25px;
    font-size: 1.6rem;
    font-weight: bold;
}
.main_box20_box2 h5 {
    width: 98%;
    float: left;
    padding-right: 1%;
    padding-left: 1%;
    margin-top: 25px;
    font-size: 1.6rem;
    font-weight: bold;
}
.main_box20_box2 ul {
    width: 98%;
    float: left;
    margin-top: 10px;
    margin-right: 1%;
    margin-left: 1%;
    list-style-position: inside;
    list-style-type: circle;
    font-weight: normal;
}
.main_box20_box2 ul li {
    width: 100%;
    float: left;
    margin-top: 5px;
}
.main_box20_box3 {
    width: 100%;
    float: left;
}
.main_box20_box3 p {
    width: 98%;
    float: left;
    margin-top: 15px;
    text-align: left;
    padding-right: 1%;
    padding-left: 1%;
    font-weight: normal;
}
/* ログインフォームのスタイル */
.login {
    float: left;
    width: 80%;
    margin-right: 10%;
    margin-left: 10%;
}
.form-group {
    margin-bottom: 1.5rem;
    float: left;
    width: 100%;
}
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.6rem;
    text-align: left;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  box-sizing: border-box;
}
.form-control:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}
.login .btn-login {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.login .btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}
.login .form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.login .form-check-input {
  margin-right: 0.5rem;
}
.login .form-check-label {
  font-size: 14px;
  color: #666;
}
.login .forgot-password {
  text-align: center;
  margin-top: 1rem;
}
.login .forgot-password a {
  color: #ff6b6b;
  text-decoration: none;
  font-size: 14px;
}
.login .forgot-password a:hover {
  text-decoration: underline;
}
.original-box-shadow {
    align-items: center;
    justify-content: center;
    background-color: #FFF;
    font-size: 30px;
    width: 100%;
    border-radius: 3px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.21);
    padding-top: 50px;
    padding-bottom: 40px;
    float: left;
}
.speechBubble {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 16px 20px;
    border: 1px solid #949494;
    border-radius: 15px;
    background-color: #81be3e;
    text-align: left;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
    color: #ffffff;
}
.speechBubble::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 75%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #949494 transparent transparent;
  translate: -50% 100%;
}
.speechBubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 75%;
  border-style: solid;
  border-width: 17.8px 8.9px 0 8.9px;
  border-color: #81be3e transparent transparent;
  translate: -50% 100%;
}
.pagination-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
    list-style-type: none;
    padding: 0;
}
.pagination-3 a {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border-bottom: 2px solid #f2f2f2;
  color: #333;
  text-decoration: none;
}
.pagination-3 .current a {
  border-bottom: 2px solid #4478d4;
  pointer-events: none;
}
.pagination-3 .prev a, .pagination-3 .next a {
  gap: 0 4px;
  width: auto;
  padding: .5em .8em;
  line-height: 1;
}
.pagination-3 .prev a::before, .pagination-3 .next a::after {
  display: inline-block;
  transform: rotate(45deg);
  width: .3em;
  height: .3em;
  content: '';
}
.pagination-3 .prev a::before {
  border-bottom: 1px solid #333;
  border-left: 1px solid #333;
}
.pagination-3 .next a::after {
  border-top: 1px solid #333;
  border-right: 1px solid #333;
}
.text {
  width: 98%;
  padding-top: 6px;
  padding-right: 1%;
  padding-bottom: 6px;
  padding-left: 1%;
  border: 1px solid #CDCDCD;
  border-radius: 5px;
  font-size: 2rem;
  line-height: 4rem;
  font-family: "IBM Plex Sans JP", sans-serif;
}
.text2 {
  width: 98%;
  padding-top: 6px;
  padding-right: 1%;
  padding-bottom: 6px;
  padding-left: 1%;
  border: 1px solid #CDCDCD;
  border-radius: 5px;
  font-size: 2rem;
  line-height: 4rem;
  font-family: "IBM Plex Sans JP", sans-serif;
  height: 200px;
}
.text3 {
  width: 98%;
  padding-top: 6px;
  padding-right: 1%;
  padding-bottom: 6px;
  padding-left: 1%;
  border: 1px solid #CDCDCD;
  font-size: 2rem;
  line-height: 4rem;
  font-family: "IBM Plex Sans JP", sans-serif;
}
.text4 {
    width: 40%;
    padding-top: 6px;
    padding-right: 3%;
    padding-bottom: 6px;
    border: 1px solid #CDCDCD;
    border-radius: 5px;
    font-size: 2rem;
    line-height: 4rem;
    font-family: "IBM Plex Sans JP", sans-serif;
    padding-left: 3%;
    margin-right: 30px;
}
.text5 {
  width: 92%;
  padding-top: 6px;
  padding-right: 3%;
  padding-bottom: 6px;
  padding-left: 3%;
  border: 1px solid #CDCDCD;
  border-radius: 5px;
  font-size: 2rem;
  line-height: 4rem;
  font-family: "IBM Plex Sans JP", sans-serif;
}
.text6 {
    width: 92%;
    padding-top: 6px;
    padding-right: 3%;
    padding-bottom: 6px;
    padding-left: 3%;
    border: 1px solid #CDCDCD;
    border-radius: 5px;
    font-size: 2rem;
    line-height: 4rem;
    font-family: "IBM Plex Sans JP", sans-serif;
    height: 200px;
}
.radioItem {
    display: inline-flex;
    align-items: center;
    column-gap: 9px;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: #3E3A39;
    margin-top: 8px;
    width: 20%;
}
.radioItem:not(:last-of-type) {
  margin-right: 30px;
}
.radioItem2 {
    display: inline-flex;
    align-items: center;
    column-gap: 9px;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: #3E3A39;
    margin-top: 8px;
    width: 30%;
    float: left;
}
.radioItem2:not(:last-of-type) {
  margin-right: 30px;
}
.radioButton:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  border-radius: 9999px;
  background-color: #4478d4;
}
.Form {
  margin-top: 80px;
  width: 60%;
  float: left;
  margin-left: 20%;
  margin-right: 20%;
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  float: left;
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 80%;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 1.8rem;
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #d82624;
  color: #fff;
  font-size: 14px;
}
.Form-Item-Label-Required2 {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background-color: #C8C5C5;
  color: #fff;
  font-size: 14px;
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 70%;
  background: #eaedf2;
  font-size: 1.8rem;
  float: right;
  font-family: "Noto Sans JP", sans-serif;
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 90%;
  background: #eaedf2;
  font-size: 1.8rem;
  margin-top: 10px;
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #5bc8ac;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
#antiSpamFields {
  width: 100%;
}
/* ============ Radio / Checkbox design ============ */
.choice-group {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}
.choice-title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 1.8rem;
}
.choice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #D9D9D9;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  user-select: none;
  transition: transform .05s ease, box-shadow .2s ease, border-color .2s ease;
}
.choice:hover {
  border-color: #BDBDBD;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}
.choice:active {
  transform: translateY(1px);
}
.choice__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.choice__box {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 2px solid #3E3A39;
  background: #fff;
  display: grid;
  place-items: center;
}
.choice--radio .choice__box {
  border-radius: 999px;
}
.choice--check .choice__box {
  border-radius: 6px;
}
.choice__input:checked + .choice__box {
  background: #3E3A39;
  border-color: #3E3A39;
}
.choice--radio .choice__input:checked + .choice__box::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  display: block;
}
.choice--check .choice__input:checked + .choice__box::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  display: block;
  margin-top: -1px;
}
.choice__input:checked ~ .choice__text {
  font-weight: 700;
}
.choice__input:focus-visible + .choice__box {
  outline: 3px solid rgba(62, 58, 57, .25);
  outline-offset: 2px;
}
.choice__text {
  font-size: 15px;
  line-height: 1.3;
}
.choice-group.is-inline {
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}
@media (max-width: 640px) {
  .choice-group.is-inline {
    grid-auto-flow: row;
  }
}
#foot {
  width: 80%;
  float: left;
  margin-right: 10%;
  margin-left: 10%;
  margin-top: 100px;
  padding-bottom: 50px;
}
@media (max-width: 1666px) {
  #foot {
    width: 90%;
    float: left;
    margin-right: 5%;
    margin-left: 5%;
    margin-top: 100px;
    padding-bottom: 50px;
  }
}
.foot_box {
  width: 100%;
  float: left;
  padding-bottom: 20px;
  border-bottom: 1px solid #BDBDBD;
  margin-top: 30px;
}
.foot_box a {
  color: #3E3A39;
  text-decoration: none;
}
.foot_box a:before {
  content: '\e15b';
  font-family: 'Material Icons';
  top: 3px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
  color: #81BE3E;
}
.foot_box ul {
  width: 100%;
  float: left;
  text-align: center;
}
.foot_box ul li {
  width: auto;
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;
  position: relative;
}
.foot_box2 {
  width: 100%;
  float: left;
  margin-top: 20px;
  text-align: center;
}
.foot_box2 a {
  color: #3E3A39;
  text-decoration: none;
}
.foot_box2 ul {
  width: 100%;
  float: left;
}
.foot_box2 ul li {
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;
}
.foot_box2 p {
  width: 100%;
  float: left;
  text-align: center;
  margin-top: 15px;
  font-family: "Acme", sans-serif;
}
.foot_box3 {
  width: 100%;
  float: left;
  text-align: center;
}
.foot_box3 h3 {
  width: 100%;
  float: left;
  font-size: 1.6rem;
  font-weight: bold;
}
.foot_box3 span {
  color: #81be3e;
  font-weight: bold;
  margin-right: 5px;
}
.foot_box3 p {
  width: 100%;
  float: left;
  font-size: 1.4rem;
  margin-top: 10px;
  line-height: 2rem;
  color: #929292;
}
.foot_box4 {
    width: 100%;
    float: left;
    margin-top: 5px;
    text-align: center;
    font-size: 1.4rem;
    color: #8E8E8E;
}
.fuwa {
  position: fixed;
  bottom: -200px;
  right: 10px;
  display: inherit;
}
.des1 {
  background-color: #4478D4;
  border-radius: 10px;
  display: block;
  text-align: center;
  padding-top: 10px;
  height: 40px;
  color: #FFFFFF;
  border: 2px solid #4478D4;
  text-decoration: none;
}
.des1:before {
  content: '\e7fd';
  font-family: 'Material Icons';
  top: 3px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
}
.des1_2 {
  border-radius: 10px;
  display: block;
  text-align: center;
  padding-top: 10px;
  height: 40px;
  color: #81be3e;
  border: 2px solid #81BE3E;
  text-decoration: none;
}
.des1_2:before {
  content: '\e898';
  font-family: 'Material Icons';
  top: 3px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
}
.des1_3 {
  display: block;
  text-align: right;
  padding-top: 10px;
  height: 40px;
  color: #3e3a39;
  text-decoration: none;
}
.des1_3:after {
  content: '\eaaa';
  font-family: 'Material Icons';
  top: 3px;
  position: relative;
  margin-left: 5px;
  font-size: 2rem;
}
.des1_4 {
  width: 20%;
  float: left;
  font-family: "Google Sans", sans-serif;
  margin-left: 2%;
}
.des1_4_2 {
  width: 78%;
  float: right;
  text-align: left;
  font-family: "Acme", sans-serif;
}
.des1_4_2 a {
  color: #3E3A39;
  text-decoration: none;
}
.des1_4_2 span {
  background-color: #81BE3E;
  color: #FFFFFF;
  padding-top: 3px;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: 5px;
  border-radius: 5px;
  font-size: 1.4rem;
  padding-bottom: 2px;
}
.des1_5 {
  border-radius: 10px;
  display: block;
  text-align: center;
  padding-top: 10px;
  height: 40px;
  color: #e0be50;
  border: 2px solid #e0be50;
  text-decoration: none;
}
.des1_5:before {
  content: '\e2c7';
  font-family: 'Material Icons';
  top: 3px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
}
.des1_6 {
  width: 100%;
  float: left;
}
.des2 {
  width: 100%;
  float: left;
}
.des2 img {
  width: 100%;
  object-fit: cover;
  height: 200px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.des2_2 {
  width: 100%;
  float: left;
  margin-top: 15px;
}
.des2_3 {
  display: block;
  color: #909090;
  letter-spacing: 3px;
  font-size: 1.4rem;
}
.des2_4 {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
}
.des2_5 {
  width: 100%;
  float: left;
  line-height: 3rem;
  margin-top: 30px;
}
.des2_5_2 {
  width: 100%;
  float: left;
  margin-top: 10px;
}
.des2_6 {
    width: 96%;
    float: left;
    margin-top: 10px;
    border-bottom: 1px dashed #3E3A39;
    padding-bottom: 15px;
    line-height: 2.2rem;
    font-weight: normal;
    margin-right: 2%;
    margin-left: 2%;
    font-size: 1.5rem;
    color: #6E6E6E;
    text-align: left;
}
.des2_6 span {
    color: #3e3a39;
    font-weight: bold;
    font-size: 1.5rem;
}
.des2_7 {
    width: 96%;
    float: left;
    margin-top: 10px;
    text-align: left;
    line-height: 2.2rem;
    font-weight: normal;
    margin-right: 2%;
    margin-left: 2%;
    font-size: 1.5rem;
    color: #6E6E6E;
}
.des2_7 span {
    color: #3e3a39;
    font-weight: bold;
    font-size: 1.5rem;
}
.des2_8 {
    width: 98%;
    float: left;
    margin-top: 15px;
    text-align: left;
    padding-right: 1%;
    padding-left: 1%;
    font-weight: normal;
}
.des2_8:before {
  content: '\e834';
  font-family: 'Material Icons';
  top: 4px;
  position: relative;
  margin-right: 5px;
  font-size: 2rem;
  color: #81BE3E;
}
.des2_9 {
    width: 98%;
    float: left;
    margin-top: 15px;
    text-align: left;
    padding-right: 1%;
    padding-left: 1%;
    font-weight: normal;
}
.des3 {
  background-color: #4478D4;
  color: #FFFFFF;
  text-decoration: none;
  margin-left: 10px;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: bold;
  padding-right: 10px;
  padding-left: 10px;
}
.des3_2 {
  background-color: #e0be50;
  color: #3e3a39;
  text-decoration: none;
  margin-left: 10px;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: bold;
  padding-right: 10px;
  padding-left: 10px;
}
.des3_3 {
  background-color: #81be3e;
  color: #3e3a39;
  text-decoration: none;
  margin-left: 10px;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: bold;
  padding-right: 10px;
  padding-left: 10px;
}
.des4 {
    border-bottom: 1px solid #4478d4;
    padding-top: 30px;
    padding-bottom: 30px;
}
.des4_2 {
    border-bottom: 1px solid #D3C8CA;
    padding-top: 30px;
    padding-bottom: 30px;
}
.des4_2 a {
    color: #64605F;
    text-decoration: none;
}
.des4_2 a:after {
  content: '\e89e';
  font-family: 'Material Icons';
  top: 4px;
  position: relative;
  margin-left: 5px;
  font-size: 2rem;
}
.des5 {
    width: 100%;
    float: left;
    margin-top: 15px;
    text-align: left;
}
.des5_2 {
    width: 100%;
    float: left;
    text-align: center;
    margin-top: 30px;
}
.des5_3 {
    width: 90%;
    float: left;
    margin-top: 30px;
    margin-right: 5%;
    margin-left: 5%;
    text-align: left;
}
.des5_4 {
    width: 100%;
    float: left;
    text-align: left;
    margin-top: 5px;
}
.des5_4 li {
    display: inline-block;
    background-color: #FFFFFF;
    padding-bottom: 5px;
    margin-right: 5px;
    border-radius: 10px;
    padding-top: 7px;
    border: 1px solid #E1E1E1;
    width: 18%;
    text-align: center;
}
.des5_5 {
    width: 100%;
    float: left;
    text-align: left;
    margin-top: 5px;
}
.des5_5 li {
    display: inline-block;
    background-color: #FFFFFF;
    padding-bottom: 5px;
    margin-right: 5px;
    border-radius: 10px;
    padding-top: 7px;
    border: 1px solid #E1E1E1;
    width: 40%;
    text-align: center;
}
a.btn_18 {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  position: relative;
  width: 300px;
  margin-top: 0px;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 0px;
  padding: 1rem 4rem;
  font-weight: bold;
  border-radius: 10px;
  color: #D97A27;
  border: 3px solid #D97A27;
  box-shadow: 5px 5px #D97A27;
  transition: 0.3s ease-in-out;
  font-size: 2rem;
}
a.btn_18:after {
  content: '\e89e';
  font-family: 'Material Icons';
  top: 4px;
  position: relative;
  margin-left: 5px;
  font-size: 2rem;
}
a.btn_18:hover {
  box-shadow: none;
  transform: translate(5px, 5px);
  color: #D97A27;
}
.pc {
  display: inline !important;
}
.sm {
  display: none !important;
}
@media screen and (min-width : 1000px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width:479px) {
  ::i-block-chrome, body {
    font-feature-settings: "pkna";
  }
  .pc {
    display: none !important;
  }
  .sm {
    display: inline !important;
  }
}