@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
}

a {
  text-decoration: none;
  color: #90c31f;
}

@media screen and (max-width: 768px) {
  .dp_pc {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .dp_sp {
    display: none !important;
  }
}
.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(60px);
  transition: 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

#header {
  position: fixed;
  max-width: 1920px;
  width: 100%;
  margin-top: 30px;
  z-index: 100;
}
#header .header__wrap {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  background: #fff;
  display: flex;
  justify-content: space-between;
  height: 72px;
  width: 96%;
  margin: 0 auto;
  border-radius: 72px;
  box-sizing: border-box;
  align-items: center;
  padding: 10px;
}
#header .header__wrap--logo {
  padding-left: 25px;
}
#header .header__wrap--logo img {
  max-width: 100%;
  width: auto;
}
#header .header__wrap--contact a {
  background: #2c4399;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #2c4399;
  width: 205px;
  height: 44px;
  border-radius: 44px;
  transition: 0.3s;
}
#header .header__wrap--contact a:hover {
  background: #fff;
  color: #2c4399;
}
@media screen and (max-width: 768px) {
  #header {
    margin-top: 10px;
  }
  #header .header__wrap {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    height: 44px;
    padding: 7px;
  }
  #header .header__wrap--logo {
    padding-left: 15px;
  }
  #header .header__wrap--logo img {
    max-width: 140px;
  }
  #header .header__wrap--contact a {
    font-size: 0.875rem;
    width: 130px;
    height: 24px;
  }
  #header .header__wrap--contact a:hover {
    background: #2c4399;
    color: #fff;
  }
}

#footer {
  background: #90c31f;
  padding: 40px 4% 30px;
}
#footer .footer__contents {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
#footer .footer__contents--logo {
  width: 226px;
}
#footer .footer__contents--logo a {
  transition: 0.3s;
}
#footer .footer__contents--logo a:hover {
  opacity: 0.8;
}
#footer .footer__contents--logo a img {
  max-width: 100%;
  width: auto;
}
#footer .footer__contents--txt {
  width: calc(100% - 550px);
}
#footer .footer__contents--txt p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #footer .footer__contents--txt p {
    font-size: 0.875rem;
  }
}
#footer .footer__contents--contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2c4399;
  color: #fff;
  width: 320px;
  box-sizing: border-box;
  height: 80px;
  border-radius: 80px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
  line-height: 1.3;
  padding: 10px 6% 10px 4%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #footer .footer__contents--contact a {
    font-size: 0.875rem;
  }
}
#footer .footer__contents--contact a::after {
  content: "";
  background: url("../../assets/image/common/btn_cursor.png") no-repeat;
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
#footer .footer__contents--contact a:hover::after {
  right: 6%;
}
@media screen and (max-width: 768px) {
  #footer .footer__contents--contact a {
    max-width: 260px;
    width: 100%;
    height: 55px;
  }
  #footer .footer__contents--contact a::after {
    background-size: 20px;
    width: 20px;
    height: 20px;
  }
  #footer .footer__contents--contact a:hover::after {
    right: 8%;
  }
}
#footer .footer__pagetop {
  text-align: right;
  padding: 30px 0 50px;
}
#footer .footer__cr {
  display: flex;
  justify-content: space-between;
}
#footer .footer__cr a {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  #footer .footer__cr a {
    font-size: 0.8125rem;
  }
}
#footer .footer__cr a + a {
  display: inline-block;
  margin-left: 40px;
}
#footer .footer__cr small {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #footer .footer__cr small {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 30px 4% 10px;
    position: relative;
  }
  #footer .footer__contents {
    position: relative;
    flex-direction: column;
    gap: 20px;
  }
  #footer .footer__contents--logo {
    width: 100%;
    text-align: center;
  }
  #footer .footer__contents--logo a img {
    max-width: 130px;
    width: 100%;
  }
  #footer .footer__contents--txt {
    width: 100%;
  }
  #footer .footer__contents--txt p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 1.8;
    font-size: 1.125rem;
    color: #fff;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #footer .footer__contents--txt p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer__contents--contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2c4399;
    color: #fff;
    width: 320px;
    box-sizing: border-box;
    height: 80px;
    border-radius: 80px;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 1.8;
    font-size: 1.125rem;
    line-height: 1.3;
    padding: 10px 6% 10px 4%;
    position: relative;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #footer .footer__contents--contact a {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer__contents--contact a::after {
    content: "";
    background: url("../../assets/image/common/btn_cursor.png") no-repeat;
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  #footer .footer__contents--contact a:hover::after {
    right: 6%;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #footer .footer__contents--contact a {
    max-width: 260px;
    width: 100%;
    height: 55px;
  }
  #footer .footer__contents--contact a::after {
    background-size: 20px;
    width: 20px;
    height: 20px;
  }
  #footer .footer__contents--contact a:hover::after {
    right: 8%;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer__pagetop {
    text-align: right;
    padding: 0;
    position: absolute;
    right: 10px;
    bottom: 10px;
  }
  #footer .footer__pagetop img {
    width: 30px;
    height: 30px;
  }
  #footer .footer__cr {
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
  }
  #footer .footer__cr a + a {
    margin-left: 20px;
  }
  #footer .footer__cr small {
    margin-top: 20px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.index__head {
  background: #90c31f url("../../assets/image/index/head_bg.png") no-repeat center calc(100% + 1px);
  background-size: 100% auto;
}
.index__head__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  padding-top: 132px;
  padding-bottom: 9%;
  opacity: 0;
  animation: fadeIn 1s ease 0.2s 1 forwards;
}
.index__head__wrap--title {
  width: 30%;
  text-align: center;
}
.index__head__wrap--title h1 {
  padding-bottom: 8%;
}
.index__head__wrap--title h1 img {
  max-width: 100%;
  width: auto;
}
.index__head__wrap--face {
  width: 30%;
  text-align: center;
  padding-top: 2%;
}
.index__head__wrap--face img {
  max-width: 100%;
  width: auto;
}
.index__head__wrap--face img + img {
  padding-top: 15%;
  padding-right: 5%;
  width: 6%;
}
.index__head__wrap--txt {
  width: 30%;
}
.index__head__wrap--txt img {
  max-width: 100%;
  width: 66%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .index__head__wrap {
    padding-top: 72px;
    padding-bottom: 20vw;
    flex-direction: column;
    background: url("../../assets/image/index/head_cursor.png") no-repeat center 95%;
    background-size: 16px 10px;
  }
  .index__head__wrap--title {
    width: 85%;
    margin: 0 auto;
  }
  .index__head__wrap--title h1 {
    padding-bottom: 6vw;
  }
  .index__head__wrap--title h1 img {
    max-width: 350px;
    width: 100%;
  }
  .index__head__wrap--face {
    width: 60%;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 6vw;
  }
  .index__head__wrap--face img {
    max-width: 300px;
    width: 100%;
  }
  .index__head__wrap--face img + img {
    display: none;
  }
  .index__head__wrap--txt {
    width: 50%;
  }
  .index__head__wrap--txt img {
    width: 100%;
  }
}

#index {
  background: url("../../assets/image/index/background.png") no-repeat;
  background-position: center 800px;
  background-size: 100%;
  padding: 0 4%;
}
@media screen and (max-width: 768px) {
  #index {
    background: url("../../assets/image/index/background_sp.png") no-repeat;
    background-position: center 1200px;
    background-size: 100%;
  }
}
#index section {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
#index .index__news {
  max-width: 600px;
  margin: 20px auto 160px;
}
#index .index__news h2 {
  color: #90c31f;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 50px;
  line-height: 1.5;
}
#index .index__news h2::before {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  padding-right: 25px;
}
#index .index__news h2::after {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  transform: rotate(180deg);
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  #index .index__news h2 {
    font-size: 1.25rem;
    margin: 0 auto 40px;
    line-height: 1.3;
  }
  #index .index__news h2::before {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-right: 10px;
  }
  #index .index__news h2::after {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-left: 15px;
  }
}
#index .index__news ul {
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
}
#index .index__news ul li {
  word-break: break-all;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
  position: relative;
  padding-left: 120px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #index .index__news ul li {
    font-size: 0.875rem;
  }
}
#index .index__news ul li a {
  color: #333;
  text-decoration: underline;
}
#index .index__news ul li a:hover {
  text-decoration: none;
}
#index .index__news ul li + li {
  margin-top: 30px;
}
#index .index__news ul li span {
  position: absolute;
  left: 0;
}
#index .index__news a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #90c31f;
  color: #fff;
  width: 320px;
  box-sizing: border-box;
  height: 80px;
  border-radius: 80px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
  line-height: 1.3;
  padding: 10px 6% 10px 4%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #index .index__news a.btn {
    font-size: 0.875rem;
  }
}
#index .index__news a.btn::after {
  content: "";
  background: url("../../assets/image/common/btn_cursor.png") no-repeat;
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
#index .index__news a.btn:hover::after {
  right: 6%;
}
@media screen and (max-width: 768px) {
  #index .index__news a.btn {
    max-width: 260px;
    width: 100%;
    height: 55px;
  }
  #index .index__news a.btn::after {
    background-size: 20px;
    width: 20px;
    height: 20px;
  }
  #index .index__news a.btn:hover::after {
    right: 8%;
  }
}
@media screen and (max-width: 768px) {
  #index .index__news {
    margin: 30px auto 100px;
  }
  #index .index__news ul {
    margin-bottom: 30px;
  }
  #index .index__news ul li {
    padding-left: 0;
  }
  #index .index__news ul li + li {
    margin-top: 20px;
  }
  #index .index__news ul li span {
    display: block;
    position: inherit;
    left: auto;
  }
}
#index .index__contents_01 {
  margin-bottom: 90px;
}
#index .index__contents_01 h2 {
  color: #90c31f;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 50px;
  line-height: 1.5;
}
#index .index__contents_01 h2::before {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  padding-right: 25px;
}
#index .index__contents_01 h2::after {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  transform: rotate(180deg);
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_01 h2 {
    font-size: 1.25rem;
    margin: 0 auto 40px;
    line-height: 1.3;
  }
  #index .index__contents_01 h2::before {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-right: 10px;
  }
  #index .index__contents_01 h2::after {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-left: 15px;
  }
}
#index .index__contents_01 p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #index .index__contents_01 p {
    font-size: 0.875rem;
  }
}
#index .index__contents_01 p + p {
  margin-top: 30px;
}
#index .index__contents_01 p strong {
  color: #ed6c00;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  font-size: 1.75rem;
}
@media screen and (max-width: 768px) {
  #index .index__contents_01 p strong {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  #index .index__contents_01 {
    margin-bottom: 60px;
  }
  #index .index__contents_01 p + p {
    margin-top: 20px;
  }
}
#index .index__contents_02 {
  margin-bottom: 90px;
  background: #fff;
  border: 4px solid #90c31f;
  border-radius: 25px;
  padding: 40px;
}
#index .index__contents_02 h2 {
  color: #90c31f;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  font-size: 1.5rem;
  line-height: 1.4;
  background: url("../../assets/image/common/icn_01.png") no-repeat left bottom;
  padding-bottom: 30px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_02 h2 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  #index .index__contents_02 h2 {
    padding-bottom: 25px;
    margin-bottom: 20px;
  }
}
#index .index__contents_02 .frame {
  position: relative;
  min-height: 600px;
}
#index .index__contents_02 .frame ul li {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
  padding-left: 35px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_02 .frame ul li {
    font-size: 0.875rem;
  }
}
#index .index__contents_02 .frame ul li span {
  position: absolute;
  left: 0;
  font-feature-settings: "palt";
}
#index .index__contents_02 .frame img {
  max-width: 100%;
  width: auto;
  display: block;
  margin: 0 auto;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  #index .index__contents_02 {
    margin-bottom: 60px;
    border: 3px solid #90c31f;
    border-radius: 20px;
    padding: 15px;
  }
  #index .index__contents_02 .frame {
    min-height: auto;
  }
  #index .index__contents_02 .frame ul li {
    padding-left: 25px;
  }
  #index .index__contents_02 .frame img {
    margin-top: 15px;
    position: relative;
    right: auto;
    bottom: auto;
  }
}
#index .index__contents_03 {
  margin-bottom: 160px;
  background: #fff;
  border: 10px solid #dadf00;
  border-radius: 25px;
  padding: 40px;
}
#index .index__contents_03 .wrap h3 {
  color: #90c31f;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  line-height: 1;
}
#index .index__contents_03 .wrap h3::before {
  content: "";
  background: url("../../assets/image/common/title_frame_02.png") no-repeat;
  width: 36px;
  height: 7px;
  display: inline-block;
  padding-right: 25px;
}
#index .index__contents_03 .wrap h3::after {
  content: "";
  background: url("../../assets/image/common/title_frame_02.png") no-repeat;
  width: 36px;
  height: 7px;
  display: inline-block;
  transform: rotate(180deg);
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_03 .wrap h3 {
    font-size: 1.125rem;
    margin: 0 auto 30px;
  }
  #index .index__contents_03 .wrap h3::before {
    background-size: 26px 5px;
    width: 26px;
    height: 5px;
    padding-right: 15px;
  }
  #index .index__contents_03 .wrap h3::after {
    background-size: 26px 5px;
    width: 26px;
    height: 5px;
    padding-left: 15px;
  }
}
#index .index__contents_03 .wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 30px;
}
#index .index__contents_03 .wrap .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #90c31f;
  color: #fff;
  width: 320px;
  box-sizing: border-box;
  height: 80px;
  border-radius: 80px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
  line-height: 1.3;
  padding: 10px 6% 10px 4%;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #index .index__contents_03 .wrap .btn {
    font-size: 0.875rem;
  }
}
#index .index__contents_03 .wrap .btn::after {
  content: "";
  background: url("../../assets/image/common/btn_cursor.png") no-repeat;
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
#index .index__contents_03 .wrap .btn:hover::after {
  right: 6%;
}
@media screen and (max-width: 768px) {
  #index .index__contents_03 .wrap .btn {
    max-width: 260px;
    width: 100%;
    height: 55px;
  }
  #index .index__contents_03 .wrap .btn::after {
    background-size: 20px;
    width: 20px;
    height: 20px;
  }
  #index .index__contents_03 .wrap .btn:hover::after {
    right: 8%;
  }
}
#index .index__contents_03 .wrap + .wrap {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_03 {
    margin-bottom: 100px;
    border: 5px solid #dadf00;
    padding: 30px 20px;
    border-radius: 15px;
  }
  #index .index__contents_03 .wrap ul {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }
  #index .index__contents_03 .wrap ul li {
    text-align: center;
    max-width: 220px;
    width: 100%;
  }
  #index .index__contents_03 .wrap ul li img {
    width: 100%;
  }
  #index .index__contents_03 .wrap + .wrap {
    margin-top: 40px;
  }
}
#index .index__contents_04 {
  margin-bottom: 160px;
}
#index .index__contents_04 h2 {
  color: #90c31f;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 50px;
  line-height: 1.5;
}
#index .index__contents_04 h2::before {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  padding-right: 25px;
}
#index .index__contents_04 h2::after {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  transform: rotate(180deg);
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_04 h2 {
    font-size: 1.25rem;
    margin: 0 auto 40px;
    line-height: 1.3;
  }
  #index .index__contents_04 h2::before {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-right: 10px;
  }
  #index .index__contents_04 h2::after {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-left: 15px;
  }
}
#index .index__contents_04 .wrap {
  display: flex;
  gap: 57px;
}
#index .index__contents_04 .wrap .txt {
  width: calc(100% - 450px);
}
#index .index__contents_04 .wrap .txt h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #90c31f;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_04 .wrap .txt h3 {
    font-size: 1.125rem;
  }
}
#index .index__contents_04 .wrap .txt p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  #index .index__contents_04 .wrap .txt p {
    font-size: 0.875rem;
  }
}
#index .index__contents_04 .wrap .txt small {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 0.875rem;
  margin-top: 5px;
  display: block;
}
@media screen and (max-width: 768px) {
  #index .index__contents_04 .wrap .txt small {
    font-size: 0.75rem;
  }
}
#index .index__contents_04 .wrap .img {
  max-width: 393px;
  width: 100%;
}
#index .index__contents_04 .wrap .img h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #90c31f;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #index .index__contents_04 .wrap .img h3 {
    font-size: 1.125rem;
  }
}
#index .index__contents_04 .wrap .img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #index .index__contents_04 {
    margin-bottom: 100px;
  }
  #index .index__contents_04 .wrap {
    display: block;
  }
  #index .index__contents_04 .wrap .txt {
    width: 100%;
  }
  #index .index__contents_04 .wrap .txt h3 {
    margin-bottom: 20px;
    font-feature-settings: "palt";
    line-height: 1.5;
  }
  #index .index__contents_04 .wrap .txt small {
    margin-top: 10px;
  }
  #index .index__contents_04 .wrap .img {
    display: block;
    margin: 40px auto 0;
    max-width: 600px;
    width: 100%;
  }
  #index .index__contents_04 .wrap .img h3 {
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: left;
  }
  #index .index__contents_04 .wrap .img img {
    max-width: 393px;
    display: block;
    margin: 0 auto;
  }
}
#index .index__contents_05 {
  margin-bottom: 160px;
}
#index .index__contents_05 h2 {
  color: #90c31f;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 50px;
  line-height: 1.5;
}
#index .index__contents_05 h2::before {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  padding-right: 25px;
}
#index .index__contents_05 h2::after {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  transform: rotate(180deg);
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_05 h2 {
    font-size: 1.25rem;
    margin: 0 auto 40px;
    line-height: 1.3;
  }
  #index .index__contents_05 h2::before {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-right: 10px;
  }
  #index .index__contents_05 h2::after {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-left: 15px;
  }
}
#index .index__contents_05 p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  #index .index__contents_05 p {
    font-size: 0.875rem;
  }
}
#index .index__contents_05 p + p {
  margin-top: 40px;
}
#index .index__contents_05 p strong {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  font-size: 1.5rem;
  color: #90c31f;
}
@media screen and (max-width: 768px) {
  #index .index__contents_05 p strong {
    font-size: 1.125rem;
  }
}
#index .index__contents_05 p span {
  margin-top: 3px;
  display: block;
  text-indent: -1.125rem;
  padding-left: 1.125rem;
}
@media screen and (max-width: 768px) {
  #index .index__contents_05 p span {
    text-indent: -0.875rem;
    padding-left: 0.875rem;
  }
}
#index .index__contents_05 p span::first-letter {
  color: #90c31f;
}
#index .index__contents_05 .point {
  max-width: 900px;
  margin: 70px auto 0;
  display: flex;
  align-items: flex-end;
}
#index .index__contents_05 .point .frame {
  padding: 20px 30px;
  border-radius: 20px;
  background: rgb(196, 222, 154);
  background: linear-gradient(0deg, rgb(196, 222, 154) 0%, rgb(253, 243, 163) 100%);
}
#index .index__contents_05 .point .frame strong {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #index .index__contents_05 .point .frame strong {
    font-size: 1.125rem;
  }
}
#index .index__contents_05 .point .frame p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
  display: block;
  text-indent: -1.125rem;
  padding-left: 1.125rem;
}
@media screen and (max-width: 768px) {
  #index .index__contents_05 .point .frame p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  #index .index__contents_05 .point .frame p {
    text-indent: -0.875rem;
    padding-left: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  #index .index__contents_05 .point {
    flex-direction: column-reverse;
    margin: 40px auto 0;
  }
  #index .index__contents_05 .point .frame {
    padding: 15px 20px;
    border-radius: 10px;
  }
  #index .index__contents_05 .point img {
    margin-left: -45%;
    max-width: 100px;
  }
}
@media screen and (max-width: 768px) {
  #index .index__contents_05 {
    margin-bottom: 100px;
  }
  #index .index__contents_05 p + p {
    margin-top: 20px;
  }
  #index .index__contents_05 .point {
    max-width: 900px;
    margin: 70px auto 0;
    display: flex;
    align-items: flex-end;
  }
  #index .index__contents_05 .point .frame {
    padding: 20px 30px;
    border-radius: 20px;
    background: rgb(196, 222, 154);
    background: linear-gradient(0deg, rgb(196, 222, 154) 0%, rgb(253, 243, 163) 100%);
  }
  #index .index__contents_05 .point .frame strong {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    line-height: 1.8;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #index .index__contents_05 .point .frame strong {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  #index .index__contents_05 .point .frame p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 1.8;
    font-size: 1.125rem;
    display: block;
    text-indent: -1.125rem;
    padding-left: 1.125rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #index .index__contents_05 .point .frame p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #index .index__contents_05 .point .frame p {
    text-indent: -0.875rem;
    padding-left: 0.875rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #index .index__contents_05 .point {
    flex-direction: column-reverse;
    margin: 40px auto 0;
  }
  #index .index__contents_05 .point .frame {
    padding: 15px 20px;
    border-radius: 10px;
  }
  #index .index__contents_05 .point img {
    margin-left: -45%;
    max-width: 100px;
  }
}
#index .index__contents_06 {
  margin-bottom: 160px;
}
#index .index__contents_06 h2 {
  color: #90c31f;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 50px;
  line-height: 1.5;
}
#index .index__contents_06 h2::before {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  padding-right: 25px;
}
#index .index__contents_06 h2::after {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  transform: rotate(180deg);
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_06 h2 {
    font-size: 1.25rem;
    margin: 0 auto 40px;
    line-height: 1.3;
  }
  #index .index__contents_06 h2::before {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-right: 10px;
  }
  #index .index__contents_06 h2::after {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-left: 15px;
  }
}
#index .index__contents_06 ul {
  max-width: 900px;
  margin: 0 auto;
}
#index .index__contents_06 ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#index .index__contents_06 ul li h3 {
  width: 126px;
  height: 126px;
  border: 3px solid rgba(44, 67, 153, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  font-size: 1.5rem;
  color: rgba(44, 67, 153, 0.7);
  border-radius: 126px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_06 ul li h3 {
    font-size: 1.125rem;
  }
}
#index .index__contents_06 ul li p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
  width: calc(100% - 166px);
}
@media screen and (max-width: 768px) {
  #index .index__contents_06 ul li p {
    font-size: 0.875rem;
  }
}
#index .index__contents_06 ul li + li {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 3px dotted rgba(44, 67, 153, 0.5);
}
@media screen and (max-width: 768px) {
  #index .index__contents_06 {
    margin-bottom: 100px;
  }
  #index .index__contents_06 ul li h3 {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(44, 67, 153, 0.7);
  }
  #index .index__contents_06 ul li p {
    width: calc(100% - 100px);
  }
  #index .index__contents_06 ul li + li {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 3px dotted rgba(44, 67, 153, 0.5);
  }
}
#index .index__contents_07 {
  margin-bottom: 160px;
}
#index .index__contents_07 h2 {
  color: #90c31f;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 50px;
  line-height: 1.5;
}
#index .index__contents_07 h2::before {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  padding-right: 25px;
}
#index .index__contents_07 h2::after {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  transform: rotate(180deg);
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_07 h2 {
    font-size: 1.25rem;
    margin: 0 auto 40px;
    line-height: 1.3;
  }
  #index .index__contents_07 h2::before {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-right: 10px;
  }
  #index .index__contents_07 h2::after {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-left: 15px;
  }
}
#index .index__contents_07 .wrap {
  display: flex;
  justify-content: space-between;
}
#index .index__contents_07 .wrap img {
  width: 318px;
}
#index .index__contents_07 .wrap p {
  width: calc(100% - 350px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  #index .index__contents_07 .wrap p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  #index .index__contents_07 {
    margin-bottom: 100px;
  }
  #index .index__contents_07 .wrap {
    display: block;
  }
  #index .index__contents_07 .wrap img {
    max-width: 260px;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  #index .index__contents_07 .wrap p {
    width: 100%;
    margin-top: 30px;
  }
}
#index .index__contents_08 {
  margin-bottom: 160px;
}
#index .index__contents_08 h2 {
  color: #90c31f;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 50px;
  line-height: 1.5;
}
#index .index__contents_08 h2::before {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  padding-right: 25px;
}
#index .index__contents_08 h2::after {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  transform: rotate(180deg);
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_08 h2 {
    font-size: 1.25rem;
    margin: 0 auto 40px;
    line-height: 1.3;
  }
  #index .index__contents_08 h2::before {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-right: 10px;
  }
  #index .index__contents_08 h2::after {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-left: 15px;
  }
}
#index .index__contents_08 p.head {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_08 p.head {
    font-size: 0.875rem;
  }
}
#index .index__contents_08 img {
  max-width: 100%;
  width: auto;
}
#index .index__contents_08 .point {
  max-width: 900px;
  margin: 70px auto 0;
  display: flex;
  align-items: flex-end;
}
#index .index__contents_08 .point .frame {
  padding: 20px 30px;
  border-radius: 20px;
  background: rgb(196, 222, 154);
  background: linear-gradient(0deg, rgb(196, 222, 154) 0%, rgb(253, 243, 163) 100%);
}
#index .index__contents_08 .point .frame strong {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #index .index__contents_08 .point .frame strong {
    font-size: 1.125rem;
  }
}
#index .index__contents_08 .point .frame p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
  display: block;
  text-indent: -1.125rem;
  padding-left: 1.125rem;
}
@media screen and (max-width: 768px) {
  #index .index__contents_08 .point .frame p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  #index .index__contents_08 .point .frame p {
    text-indent: -0.875rem;
    padding-left: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  #index .index__contents_08 .point {
    flex-direction: column-reverse;
    margin: 40px auto 0;
  }
  #index .index__contents_08 .point .frame {
    padding: 15px 20px;
    border-radius: 10px;
  }
  #index .index__contents_08 .point img {
    margin-left: -45%;
    max-width: 100px;
  }
}
@media screen and (max-width: 768px) {
  #index .index__contents_08 {
    margin-bottom: 100px;
  }
  #index .index__contents_08 p.head {
    text-align: left;
    margin-bottom: 10px;
  }
  #index .index__contents_08 img {
    max-width: 380px;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}
#index .index__contents_09 {
  margin-bottom: 160px;
}
#index .index__contents_09 p.head {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_09 p.head {
    font-size: 0.875rem;
  }
}
#index .index__contents_09 h2 {
  color: #90c31f;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 50px;
  line-height: 1.5;
}
#index .index__contents_09 h2::before {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  padding-right: 25px;
}
#index .index__contents_09 h2::after {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  transform: rotate(180deg);
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_09 h2 {
    font-size: 1.25rem;
    margin: 0 auto 40px;
    line-height: 1.3;
  }
  #index .index__contents_09 h2::before {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-right: 10px;
  }
  #index .index__contents_09 h2::after {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-left: 15px;
  }
}
#index .index__contents_09 img {
  max-width: 100%;
  width: auto;
}
#index .index__contents_09 picture {
  display: block;
}
#index .index__contents_09 picture + picture {
  margin-top: 50px;
}
#index .index__contents_09 small {
  width: 42%;
  margin: 10px 0 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 0.875rem;
  display: block;
  text-indent: -0.75rem;
  padding-left: 0.75rem;
}
@media screen and (max-width: 768px) {
  #index .index__contents_09 small {
    font-size: 0.75rem;
  }
}
#index .index__contents_09 .point {
  max-width: 900px;
  margin: 70px auto 0;
  display: flex;
  align-items: flex-end;
}
#index .index__contents_09 .point .frame {
  padding: 20px 30px;
  border-radius: 20px;
  background: rgb(196, 222, 154);
  background: linear-gradient(0deg, rgb(196, 222, 154) 0%, rgb(253, 243, 163) 100%);
}
#index .index__contents_09 .point .frame strong {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #index .index__contents_09 .point .frame strong {
    font-size: 1.125rem;
  }
}
#index .index__contents_09 .point .frame p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
  display: block;
  text-indent: -1.125rem;
  padding-left: 1.125rem;
}
@media screen and (max-width: 768px) {
  #index .index__contents_09 .point .frame p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  #index .index__contents_09 .point .frame p {
    text-indent: -0.875rem;
    padding-left: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  #index .index__contents_09 .point {
    flex-direction: column-reverse;
    margin: 40px auto 0;
  }
  #index .index__contents_09 .point .frame {
    padding: 15px 20px;
    border-radius: 10px;
  }
  #index .index__contents_09 .point img {
    margin-left: -45%;
    max-width: 100px;
  }
}
@media screen and (max-width: 768px) {
  #index .index__contents_09 {
    margin-bottom: 100px;
  }
  #index .index__contents_09 p.head {
    text-align: left;
    margin-bottom: 20px;
  }
  #index .index__contents_09 picture {
    display: block;
  }
  #index .index__contents_09 picture + picture {
    margin-top: 40px;
  }
  #index .index__contents_09 small {
    width: 100%;
  }
}
#index .index__contents_10 {
  margin-bottom: 160px;
}
#index .index__contents_10 h2 {
  color: #90c31f;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 50px;
  line-height: 1.5;
}
#index .index__contents_10 h2::before {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  padding-right: 25px;
}
#index .index__contents_10 h2::after {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  transform: rotate(180deg);
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_10 h2 {
    font-size: 1.25rem;
    margin: 0 auto 40px;
    line-height: 1.3;
  }
  #index .index__contents_10 h2::before {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-right: 10px;
  }
  #index .index__contents_10 h2::after {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-left: 15px;
  }
}
#index .index__contents_10 p {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  #index .index__contents_10 p {
    font-size: 0.875rem;
  }
}
#index .index__contents_10 p + p {
  margin-top: 50px;
}
#index .index__contents_10 img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
}
#index .index__contents_10 img.care {
  margin-top: 80px;
}
#index .index__contents_10 .frame {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_10 {
    margin-bottom: 100px;
  }
  #index .index__contents_10 p {
    text-align: left;
  }
  #index .index__contents_10 p + p {
    margin-top: 20px;
  }
  #index .index__contents_10 img.care {
    margin-top: 40px;
  }
  #index .index__contents_10 .frame {
    margin-top: 40px;
  }
}
#index .index__contents_11 {
  margin-bottom: 160px;
}
#index .index__contents_11 h2 {
  color: #90c31f;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 50px;
  line-height: 1.5;
}
#index .index__contents_11 h2::before {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  padding-right: 25px;
}
#index .index__contents_11 h2::after {
  content: "";
  background: url("../../assets/image/common/title_frame_01.png") no-repeat;
  width: 23px;
  height: 61px;
  display: inline-block;
  transform: rotate(180deg);
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  #index .index__contents_11 h2 {
    font-size: 1.25rem;
    margin: 0 auto 40px;
    line-height: 1.3;
  }
  #index .index__contents_11 h2::before {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-right: 10px;
  }
  #index .index__contents_11 h2::after {
    background-size: 20px 53px;
    width: 20px;
    height: 53px;
    padding-left: 15px;
  }
}
#index .index__contents_11 .frame {
  margin-top: 50px;
  background: #fff;
  border: 4px solid #90c31f;
  border-radius: 25px;
  padding: 40px;
}
#index .index__contents_11 .frame p + p {
  margin-top: 20px;
}
#index .index__contents_11 p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  #index .index__contents_11 p {
    font-size: 0.875rem;
  }
}
#index .index__contents_11 p span {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 22px;
  margin: 2px 0;
}
#index .index__contents_11 p span::before {
  position: absolute;
  top: 9px;
  left: 0;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 16px;
  display: inline-block;
  background: rgb(196, 222, 154);
  background: linear-gradient(270deg, rgb(129, 179, 97) 0%, rgb(233, 209, 84) 100%);
  margin-right: 5px;
}
#index .index__contents_11 p.head {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #index .index__contents_11 {
    margin-bottom: 100px;
  }
  #index .index__contents_11 h2 {
    font-feature-settings: "palt";
    font-size: 1.1875rem;
  }
  #index .index__contents_11 .frame {
    margin-top: 30px;
    border: 3px solid #90c31f;
    border-radius: 15px;
    padding: 20px;
  }
  #index .index__contents_11 .frame p + p {
    margin-top: 20px;
  }
  #index .index__contents_11 p span {
    padding-left: 18px;
    margin: 2px 0;
  }
  #index .index__contents_11 p span::before {
    top: 7px;
    width: 12px;
    height: 12px;
  }
  #index .index__contents_11 p.head {
    text-align: left;
  }
}
#index .index__contents_sv {
  padding-bottom: 60px;
}
#index .index__contents_sv p {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border: 3px solid #2c4399;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  font-size: 1.125rem;
  color: #2c4399;
  padding: 30px 40px;
  background: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #index .index__contents_sv p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  #index .index__contents_sv {
    padding-bottom: 30px;
  }
  #index .index__contents_sv p {
    border: 2px solid #2c4399;
    padding: 20px;
    text-indent: -2.625rem;
    padding-left: 3.875rem;
    line-height: 1.5;
  }
}

.contents {
  padding-top: 132px;
  width: 90%;
  margin-inline: auto;
  padding-bottom: 9%;
}
@media screen and (max-width: 768px) {
  .contents {
    padding-top: 72px;
  }
}
.contents .news_241101 {
  margin-top: 30px;
  max-width: 900px;
  margin-inline: auto;
}
.contents .news_241101 p {
  padding: 0 0 15px;
  font-size: 15px;
  line-height: 1.8;
}
.contents .news_241101 p strong {
  font-weight: bold;
}
.contents .news_241101 h1 {
  font-size: 36px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  font-size: 1.75rem;
  line-height: 1.4;
  margin-bottom: 30px;
  background: #90c31f;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .contents .news_241101 h1 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .contents .news_241101 h1 {
    padding: 15px;
  }
}
.contents .news_241101__frame {
  margin-inline: auto;
  display: block;
  flex-wrap: wrap;
  gap: 4%;
  padding-bottom: 40px;
}
.contents .news_241101__frame .img {
  margin-inline: auto;
  max-width: 500px;
  width: 100%;
  margin-top: 30px;
}
.contents .news_241101__frame .img img {
  width: 100%;
}
.contents .news_241101__frame .txt {
  margin-top: 40px;
  margin-inline: auto;
  width: 100%;
}
.contents .news_241101__frame .txt h2 {
  color: #90c31f;
  font-size: 24px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #90c31f;
}
@media screen and (max-width: 768px) {
  .contents .news_241101__frame {
    gap: 30px;
    padding-bottom: 20px;
  }
  .contents .news_241101__frame .img {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
  .contents .news_241101__frame .txt {
    width: 100%;
  }
  .contents .news_241101__frame .txt h2 {
    font-size: 24px;
  }
  .contents .news_241101__frame .txt p {
    font-size: 15px;
  }
}
.contents .news_241101 a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 4px solid #2c4399;
  font-weight: bold !important;
  color: #2c4399;
  width: 380px;
  box-sizing: border-box;
  height: 70px;
  border-radius: 80px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
  line-height: 1.3;
  padding: 10px 4%;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .contents .news_241101 a.btn {
    font-size: 0.875rem;
  }
}
.contents .news_241101 a.btn:hover {
  background: #2c4399;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .contents .news_241101 a.btn {
    max-width: 300px;
    width: 100%;
    height: 55px;
  }
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(36, 25, 22, 0.75);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 101;
}
.modal-container::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.modal-container.active {
  opacity: 1;
  visibility: visible;
}
.modal-container .modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 1200px;
  width: 90%;
}
.modal-container .modal-body .modal-content {
  background: #fff;
  border-radius: 10px;
  text-align: left;
  padding: 30px;
}
.modal-container .modal-body .modal-content .modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #90c31f;
  cursor: pointer;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .modal-container .modal-body .modal-content .modal-close {
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    font-weight: 700;
  }
}
.modal-container .modal-body .modal-content h3 {
  color: #90c31f;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  font-size: 1.5rem;
  border-bottom: 3px solid #90c31f;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .modal-container .modal-body .modal-content h3 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .modal-container .modal-body .modal-content h3 {
    font-size: 1rem;
    border-bottom: 2px solid #90c31f;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.modal-container .modal-body .modal-content p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .modal-container .modal-body .modal-content p {
    font-size: 0.875rem;
  }
}
.modal-container .modal-body .modal-content ul {
  margin: 30px 0;
}
.modal-container .modal-body .modal-content ul li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125rem;
  position: relative;
  padding-left: 170px;
  margin: 15px 0;
}
@media screen and (max-width: 768px) {
  .modal-container .modal-body .modal-content ul li {
    font-size: 0.875rem;
  }
}
.modal-container .modal-body .modal-content ul li span {
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .modal-container .modal-body .modal-content ul {
    margin: 20px 0;
  }
  .modal-container .modal-body .modal-content ul li {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 1.8;
    font-size: 1.125rem;
    position: relative;
    padding-left: 0;
    margin: 10px 0;
    text-indent: -0.875rem;
    padding-left: 0.875rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .modal-container .modal-body .modal-content ul li {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .modal-container .modal-body .modal-content ul li span {
    position: relative;
    left: 0;
    display: block;
    font-weight: 600;
  }
}