@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dynalight&display=swap");
@font-face {
  src: local("Yu Gothic Medium");
  font-family: YuGothicM;
}
/*primary colors*/
/*global text color*/
/*global bg color*/
/*font families*/
/*headings typo*/
/*padding section*/
/*BOXED LAYOUT*/
/*GRID - media queries breakpoints*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
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;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* =========================================================
base - 基本設定
========================================================= */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  width: 100%;
  margin: auto;
  background: #fff;
  color: #000;
  font-family: noto-sans-cjk-jp, sans-serif;
}
body .l-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  body .c-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  body .c-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  body .c-container {
    max-width: 960px;
  }
}
@media (min-width: 1080px) {
  body .c-container {
    max-width: 1010px;
  }
}
body main {
  width: 100%;
  margin: auto;
  overflow: hidden;
}
.c-footer {
  background-color: #f5faed;
}
.c-footer__menu {
  background-color: #73af14;
}
.c-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.c-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 29px 70px;
  color: #fff;
}
.c-footer__nav a {
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.9;
}
.c-footer__nav a::before {
  position: absolute;
  bottom: -6px;
  width: 0;
  height: 6px;
  background: #ec81b0;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-footer__nav a:hover::before {
  width: 100%;
}
.c-footer__nav .c-active {
  border-bottom: 6px solid #ec81b0;
}
.c-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1089px;
  margin: 0 auto;
  padding: 0 15px;
}
.c-footer__top {
  padding-top: 30px;
  padding-bottom: 45px;
}
.c-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 15px;
}
.c-footer__logo span {
  padding-left: 10px;
  color: #333;
  font-weight: 700;
  font-size: 1.9rem;
}
.c-footer__info--ul {
  color: #333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
}
.c-footer__time table {
  border-collapse: collapse;
  border-spacing: 0;
}
.c-footer__time table thead {
  background-color: #cfe6a7;
}
.c-footer__time table th {
  padding: 12px 25px;
  border: 1px solid #ccc;
  color: #333;
  font-size: 1.6rem;
}
.c-footer__time table td {
  padding: 12px 30px;
  border: 1px solid #ccc;
  color: #333;
  font-size: 1.6rem;
  text-align: center;
}
.c-footer__bottom {
  padding: 22px 0;
  border-top: 2px solid #73af14;
  font-size: 1.6rem;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}
.c-footer__bottom span {
  font-family: noto-sans-cjk-jp, sans-serif;
}
.c-footer__btn {
  display: block;
  z-index: 1000;
  position: fixed;
  right: 20px;
  bottom: 30px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c-footer__btn.c-active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1079px) {
  .c-footer .c-footer__nav {
    padding: 19px 20px 0;
  }
  .c-footer .c-footer__nav li {
    padding: 0 10px 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-footer .c-footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .c-footer .c-footer__info {
    padding-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .c-footer .c-footer__nav li {
    padding: 0 10px 20px;
  }
}

.c-header {
  z-index: 1000;
  position: relative;
  width: 100%;
}
.c-header__top {
  z-index: 100;
  position: fixed;
  top: 0;
  width: 100%;
  height: 110px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 25px;
  background-color: rgba(140, 198, 63, 0.5);
  color: #fff;
}
.c-header__top.c-active {
  background-color: transparent;
}
.c-header__top.c-add {
  background-color: rgba(140, 198, 63, 0.5);
}
.c-header__site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-header__logo {
  max-width: 257px;
}
.c-header__text {
  display: block;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.2;
  text-shadow: 3px 2px 2px #666666;
}
.c-header__phone {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 90px;
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1.2;
  text-shadow: 3px 2px 2px #666666;
}
.c-header__phone img {
  padding-top: 6px;
  padding-right: 5px;
}
.c-header__bar {
  display: none;
  z-index: 1001;
  position: relative;
  top: 0;
  right: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  cursor: pointer;
}
.c-header__bar span {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  width: 30px;
  height: 3px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-header__bar span:nth-child(1) {
  top: 13px;
}
.c-header__bar span:nth-child(3) {
  bottom: 13px;
}
.c-header__menusp {
  visibility: hidden;
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-height: 500px;
  padding: 63px 20px;
  overflow: auto;
  overflow-x: hidden;
  background-color: #fff;
  color: #666;
  opacity: 0;
}
.c-header__overlay {
  display: none;
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.53);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1079px) {
  .c-header .c-header__top {
    height: 80px;
  }
  .c-header .c-header__right {
    display: none;
  }
  .c-header .c-header__bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-header .c-header__bar.c-active span {
    background-color: #666;
  }
  .c-header .c-header__bar.c-active span:nth-of-type(1) {
    top: 24px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .c-header .c-header__bar.c-active span:nth-of-type(2) {
    top: 24px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .c-header .c-header__bar.c-active span:nth-of-type(3) {
    display: none;
  }
  .c-header .c-header__menusp {
    display: block;
  }
  .c-header .c-header__menusp--ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-right: 0;
    margin-bottom: 35px;
  }
  .c-header .c-header__menusp--ul li {
    width: 100%;
    height: 52px;
    border-bottom: 1px solid #ccc;
    line-height: 52px;
    text-align: center;
  }
  .c-header .c-header__menusp--li {
    display: block;
    height: 100%;
    padding: 0 35px;
    font-weight: bold;
    font-size: 1.8rem;
  }
  .c-header .c-header__menusp.c-active {
    visibility: visible;
    z-index: 6;
    opacity: 1;
  }
  .c-header .c-header__overlay.c-active {
    display: block;
    opacity: 1;
  }
}
@media (max-width: 575px) {
  .c-header .c-header__top {
    height: 60px;
  }
  .c-header .c-header__logo {
    width: 150px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.sp-only {
  display: none;
}

@media (max-width: 575px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}
.c-title {
  padding-bottom: 15px;
  border-bottom: 4px solid #8cc63f;
  color: #4d4d4d;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .c-title {
    margin-bottom: 50px;
  }
}

.c-title1 {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  height: 55px;
  background-color: #73af14;
  line-height: 1.8;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding-left: 15px;
}

.c-box__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 460px;
  height: 52px;
  margin-right: 20px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  background-color: #73af14;
}
.c-box__title::before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 52px;
  background-color: #ec81b0;
  content: "";
}

.c-box__title1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 460px;
  height: 52px;
  margin-left: 20px;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #73af14;
}
.c-box__title1::before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 52px;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #ec81b0;
  content: "";
}

.c-box__des {
  margin-left: 50px;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
}

.c-anchor__top {
  position: relative;
}

.c-set__top {
  position: absolute;
  top: -120px;
}

img {
  max-width: 100%;
}

.c-about .c-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 45px 15px 65px;
}
.c-about__list {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}
.c-about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}
.c-about__content {
  width: 53%;
}
.c-about__des {
  padding: 2.8% 0 6% 6.9%;
  color: #333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.75;
}
.c-about__des1 {
  padding: 6% 0 0 6.9%;
}
.c-about__item1 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-bottom: 60px;
}
.c-about__content1 {
  width: 44%;
  margin-right: 75px;
}
.c-about__box h3 {
  padding-top: 25px;
  padding-bottom: 15px;
  border-top: 1px solid #73af14;
  color: #006837;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.44;
}
.c-about__box--ul {
  padding-bottom: 50px;
}
.c-about__box--li {
  border-bottom: 1px dashed #b3b3b3;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.8;
}
@media screen and (max-width: 1079px) {
  .c-about .c-about__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .c-about .c-about__content {
    width: 100%;
  }
  .c-about .c-about__des {
    padding: 2.8% 6.9% 7.6%;
  }
  .c-about .c-about__content1 {
    margin-right: 0;
    padding: 40px 20px 0;
  }
}

.c-contact .c-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 45px 20px 110px;
}

@media screen and (max-width: 1079px) {
	.c-contact .c-container {
		padding: 45px 20px 80px;
	}
}

.c-contact__list {
  max-width: 765px;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 60px;
  color: #333;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: -1px;
}

@media screen and (max-width: 1079px) {
	.c-contact__list {
		padding-top: 0px;
	}
}

.c-contact__list span {
  padding-right: 5px;
  color: #ec81b0;
}
.c-contact__cnt {
  max-width: 830px;
  margin: 0 auto;
  padding: 55px 15px 0;
}

@media screen and (max-width: 1079px) {
	.c-contact__cnt {
		padding: 55px 0px 0px;
	}
}

.c-contact__cnt dl dt {
  padding-bottom: 5px;
  color: #4d4d4d;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.2;
  font-family: Meiryo, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.c-contact__cnt dl dt span {
  color: #c1272d;
  font-weight: 500;
}
.c-contact__cnt dl dd input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  background-color: #f7f7f7;
  font-size: 1.6rem;
  line-height: 1.2;
}
.c-contact__cnt dl dd textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 200px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  background-color: #f7f7f7;
  font-size: 1.6rem;
  line-height: 1.2;
}
.c-contact__cnt dl + dl {
  margin-top: 20px;
}
.c-contact__note {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f7f7f7;
  color: #333;
}
.c-contact__note--des {
  padding: 20px 45px;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: Meiryo, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.c-contact__note--des span {
  color: #0071bc;
  font-weight: bold;
}
.c-contact__note--des1 {
  text-align: center;
}
.c-contact__title {
  background-color: #f5faed;
  font-weight: bold;
  font-size: 1.5rem;
  font-family: Meiryo, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.c-contact__title h3 {
  padding: 12px 0;
  line-height: 1.75;
  text-align: center;
}
.c-contact__title h3 span {
  font-weight: 400;
}
.c-contact__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
  font-size: 1.5rem;
  line-height: 2.1;
  font-family: Meiryo, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.c-contact__cl {
  color: #0071bc;
}
.c-contact__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
}
.c-contact__submit p{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.c-contact__submit input {
  max-width: 540px;
  width: 100%;
  height: 60px;
  border: 0;
  border-radius: 8px;
  background-color: #ec81b0;
  color: #fff;
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.4;
  font-family: noto-sans-cjk-jp, sans-serif;
  cursor: pointer;
}

.c-contact__recaptcha {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}

.c-privacy .c-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 45px 30px 65px;
}
.c-privacy__content {
  max-width: 898px;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 70px;
}
.c-privacy__text {
  margin-bottom: 35px;
  color: #333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.75;
}
.c-privacy__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.wpcf7 form .wpcf7-response-output{
	margin: 3em 0.5em 1em;
}

.c-contact__cnt .wpcf7-spinner{
	position: absolute;
    top: 70px;
}

.c-mainvisual {
  position: relative;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-mainvisual {
    height: 100vh;
  }
}

@media screen and (max-width: 767px) {
  .c-mainvisual--subpage {
    height: 350px;
  }
}

@media screen and (max-width: 1366px) {
  .c-mainvisual--news{
    height: 450px;
  }
}

@media screen and (max-width: 767px) {
  .c-mainvisual--news{
    height: 350px;
  }
}

@media screen and (max-width: 1366px) {
  .c-mainvisual--news .c-mainvisual__banner{
    height: 100%;
    width: 100%;
  }
}

.c-mainvisual__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-mainvisual__banner--top img{
  height: 100vh;
  object-fit: cover;
}

.c-mainvisual__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-mainvisual__text{
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  font-family: noto-sans-cjk-jp, sans-serif;
  width: 600px;
  border: 1px solid #ffffff;
  padding: 45px 75px;
  box-shadow: 0 1px 5px rgb(0 0 0 / 30%);
  text-shadow: 3px 3px 3px rgb(0 0 0 / 30%);
}

@media screen and (max-width: 767px) {
  .c-mainvisual__text{
    width: 85vw;
    padding: 20px;
  }
}

.c-mainvisual__text h2{
  font-size: 4rem;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.25;
  padding-bottom: 35px;
}

@media screen and (max-width: 767px) {
  .c-mainvisual__text h2{
    font-size: 3rem;
    padding-bottom: 20px;
  }
}

.c-mainvisual__txt{
  font-size: 1.6rem;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.75;
}

.c-mainvisual--news h2{
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-shadow: 3px 3px 3px rgb(0 0 0 / 30%);
}

@media only screen and (max-width: 1199px) {
  .c-mainvisual--news h2{
    font-size: 2.2rem;
  }
}

.c-mainvisual--news h2:before{
  content: "";
  position: absolute;
  background-color: #73af14;
  opacity: 0.5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  padding: 20px 25px;
  min-width: 200px;
}

.c-mainvisual__bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1080px;
  height: 80px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  background-color: #f5faed;
  color: #666;
}
.c-mainvisual__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 80px;
  padding: 0 70px;
}
.c-mainvisual__nav a {
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.9;
}
.c-mainvisual__nav a::before {
  position: absolute;
  bottom: -6px;
  width: 0;
  height: 6px;
  background: #ec81b0;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-mainvisual__nav a:hover::before {
  width: 100%;
}
.c-mainvisual__nav .c-active {
  border-bottom: 6px solid #ec81b0;
}
@media screen and (max-width: 1079px) {
  .c-mainvisual .c-mainvisual__bottom {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-mainvisual .c-mainvisual__banner {
    position: relative;
    height: 100%;
    overflow: hidden;
  }
  .c-mainvisual .c-mainvisual__banner img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    max-width: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.c-blog .c-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 45px 15px 65px;
}
.c-blog__list li {
  border-bottom: 1px solid #b3b3b3;
}
.c-blog__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 10px;
}
.c-blog__inner:first-child {
  padding: 25px 10px;
}
.c-blog__date {
  margin: 5px 0;
  color: #0071bc;
  font-weight: 700;
  font-size: 1.8rem;
}
.c-blog__cat {
  margin: 5px 25px 5px 50px;
padding: 8px 20px;
color: #fff;
font-weight: 700;
font-size: 1.4rem;
width: 100px;
text-align: center;
}
.c-blog__cat--1 {
  background-color: #c1272d!important;
}
.c-blog__cat--4 {
  background-color: #0071bc!important;
}
.c-blog__cat--5 {
  background-color: #00a99d!important;
}
.c-blog__cat--6 {
  background-color: #009245!important;
}
.c-blog__title {
  margin: 5px 0;
  color: #333;
  font-weight: 700;
  font-size: 2.1rem;
}
.c-blog__post {
  padding-left: 10px;
}
.c-blog__des {
  margin-bottom: 30px;
  color: #333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
}
.c-blog__des:last-child {
  margin-bottom: 35px;
}
.c-blog__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
}
.c-blog__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 540px;
  height: 50px;
  border: 0;
  border-radius: 8px;
  background-color: #ec81b0;
  color: #fff;
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.4;
  font-family: noto-sans-cjk-jp, sans-serif;
  text-shadow: 2px 2px 1px rgba(102, 102, 102, 0.75);
  cursor: pointer;
}

.c-subject__container {
  max-width: 100%;
  margin: 0 auto;
  background-color: #f5faed;
}
.c-subject__site {
  background-color: transparent;
}
.c-subject__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 45px 15px 0;
}
.c-subject__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 4px solid #73af14;
}
.c-subject__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 240px;
  height: 200px;
  margin: 50px 0;
  border-radius: 16px;
  background-color: #73af14;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
}
.c-subject__item img {
  margin-bottom: 25px;
}
.c-subject__item:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-subject__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding-top: 65px;
  padding-bottom: 60px;
  background-color: #f5faed;
}
.c-subject__all1 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-top: -50px;
  margin-bottom: 60px;
  padding-top: 0;
  background-color: transparent;
}
.c-subject__sub {
  background-color: #f5faed;
}
.c-subject__content {
  width: 53%;
  padding-top: 20px;
}
.c-subject__content1 {
  padding-top: 75px;
}
.c-subject__des {
  padding: 2.8% 0 6% 6.9%;
  color: #333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: -0.65px;
}
.c-subject__des1 {
  padding: 3.8% 0 4% 6.9%;
}
.c-subject__cl {
  position: relative;
  margin-left: 6.9%;
  padding: 2.8% 0 0;
  color: #006837;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.44;
}
.c-subject__cl::before {
  position: absolute;
  top: 0;
  width: 600px;
  max-width: 100%;
  height: 1px;
  background-color: #73af14;
  content: "";
}
.c-subject__sub1 {
  background-color: transparent;
}
.c-subject__state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.c-subject__des2 {
  padding: 3.8% 6.9% 4% 0;
}
@media screen and (max-width: 1079px) {
  .c-subject .c-subject__list {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding-bottom: 50px;
  }
  .c-subject .c-subject__item {
    margin-bottom: 0;
  }
  .c-subject .c-subject__all {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .c-subject .c-subject__cl {
    margin-right: 20px;
  }
  .c-subject .c-subject__content {
    width: 100%;
  }
  .c-subject .c-subject__des {
    padding: 3.8% 5% 4%;
  }
  .c-subject .c-subject__des1 {
    padding: 3.8% 2% 4% 5%;
  }
  .c-subject .c-subject__des2 {
    padding: 3.8% 2% 4% 5%;
  }
}

@media screen and (max-width: 767px) {
  .c-subject .c-subject__list{
    justify-content: space-between;
  }
  .c-subject__item{
    width: 48%;
    height: 160px;
    margin: 0 0 50px;
  }
}

.wpcf7-not-valid-tip{
  font-size: 1.4rem!important;
  padding-top: 5px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
  font-size: 1.4rem;
}

.wpcf7 form.sent .wpcf7-response-output{
  font-size: 1.4rem;
}

/*.c-contact__checkbox input{
  display: none;
}*/

input[type=button], input[type=checkbox], input[type=submit], input[type=search]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.c-contact__checkbox .wpcf7-list-item{
  position: relative;
}

.c-contact__checkbox .wpcf7-list-item-label:before{
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -15px;
  height: 15px;
  width: 15px;
  border-radius: 3px;
  border: 1px solid #666;
}

.c-contact__checkbox .wpcf7-list-item-label{
  display: inline-block;
  padding-left: 7px;
}

.c-contact__checkbox .wpcf7-list-item-label:after{
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: none;
}

.c-contact__checkbox input:checked~.wpcf7-list-item-label:before{
  background-color: #0071bc;
}

.c-contact__checkbox input:checked~.wpcf7-list-item-label:after{
  display: block;
}

.loading{
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading svg {
  width: 50px;
  height: 50px;
}

.loading svg circle {
  stroke-width: 3px;
}

/* Layout */
.l-container2 {
  width: 1080px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .l-container2 {
    width: 100%;
    margin: 0;
  }
}

/* Breadcrumb */
.c-breadcrumb {
  padding-bottom: 40px;
}

@media only screen and (max-width: 1024px) {
  .c-breadcrumb {
    padding: 0 15px 40px;
  }
}

.c-breadcrumb__inner{
  padding: 10px 0px;
  line-height: 1.5;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 1.6rem;
}

@media only screen and (max-width: 1024px) {
  .c-breadcrumb__inner{
    font-size: 1.8rem;
  }
}

.c-breadcrumb__inner a{
  padding-right: 30px;
  position: relative;
}

.c-breadcrumb__inner a:before{
  content: "";
  position: absolute;
  width: 5px;
  height: 9px;
  background: url("../img/arrow-right.png") no-repeat;
  background-size: cover;
  right: 11px;
  top: 9px;
}

/* Posts */
.c-post1 {
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 50px;
}

.c-post1:last-child {
  margin-bottom: 0;
}

.c-post1__cnt > p {
  font-size: 2.4rem;
  line-height: 1.2;
  color: #4d4d4d;
  font-weight: 600;
  margin-bottom: 12px;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.c-post1__text {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #333333;
  margin-bottom: 31px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.c-post1__box {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.c-post1__cat {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: #73af14;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.75;
  height: 28px;
  padding: 0 24px;
  cursor: pointer;
}

.c-post1__date {
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Arial";
  margin-left: 13px;
  padding-left: 25px;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.c-post1__date::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 15px;
  background: url("../img/ico-clock.png") no-repeat;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}


.c-post2 {
  width: 100%;
  padding: 20px 15px;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  display: -webkit-box;
  display: flex;
}

.c-post2:nth-child(1) {
  border-top: 1px solid #dddddd;
}

.c-post2__image {
  width: 100px;
  height: 100px;
  margin-right: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 1024px) {
  .c-post2__image {
    width: 35%;
    margin-right: 5%;
    height: 25vw;
  }
}

.c-post2__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

.c-post2__text {
  width: 150px;
}

@media only screen and (max-width: 1024px) {
  .c-post2__text {
    width: 60%;
  }
}

.c-post2__text > a{
  overflow: hidden;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-all;
  font-size: 1.6rem;
  line-height: 1.5;
}

.c-post2__date {
  position: relative;
  padding-left: 25px;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.c-post2__date:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 2px;
  background: url(../img/ico-clock.png) no-repeat;
  width: 16px;
  height: 16px;
}

.c-post2__title:hover {
  text-decoration: underline;
}

.c-post3 {
  width: 240px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .c-post3 {
    width: 100%;
  }
}

.c-post3:nth-child(3n + 2) {
  margin: 0 15px;
}

@media only screen and (max-width: 767px) {
  .c-post3:nth-child(3n + 2) {
    margin: 0 0 25px;
  }
}

.c-post3__image {
  position: relative;
  overflow: hidden;
  padding-top: 66.66%;
}

.c-post3__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.c-post3 p {
  margin-top: 15px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  line-height: 1.5;
}


/*------------------------------------------------------------
Css of news page
------------------------------------------------------------*/
.p-news1 {
  padding-bottom: 50px;
}

@media only screen and (max-width: 1024px) {
  .p-news1 {
    padding-bottom: 30px;
  }
}

.p-news1__inner {
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 1024px) {
  .p-news1__inner {
    padding: 0 15px;
  }
}

.p-news1__cnt {
  padding-top: 47px;
}

.p-news1__left {
  width: 750px;
  margin-right: 30px;
}

@media only screen and (max-width: 1024px) {
  .p-news1__left {
    width: 100%;
    margin-right: 0;
  }
}

.p-news1__right {
  width: 300px;
}

@media only screen and (max-width: 1024px) {
  .p-news1__right {
    width: 100%;
  }
}

.p-news2 {
  padding-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  .p-news2 {
    padding-bottom: 30px;
  }
}

.p-news2__inner {
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 1024px) {
  .p-news2__inner {
    padding: 0 15px;
  }
}

.p-news2__cnt {
  padding: 35px 0 40px;
  font-size: 1.6rem;
  line-height: 1.7857143;
  color: #333333;
}

.p-news2__left {
  width: 750px;
  margin-right: 30px;
}

@media only screen and (max-width: 1024px) {
  .p-news2__left {
    width: 100%;
    margin-right: 0;
  }
}

.p-news2__right {
  width: 300px;
}

@media only screen and (max-width: 1024px) {
  .p-news2__right {
    width: 100%;
  }
}

.p-news2__image {
  position: relative;
  overflow: hidden;
  padding-top: 56.266%;
  margin-bottom: 20px;
}

.p-news2__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.p-news2__box {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.p-news2__box span {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: #73af14;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.2;
  height: 28px;
  padding: 0 24px;
}

.p-news2__box p {
  font-size: 1.6rem;
  line-height: 1.2;
  font-family: "Arial";
  margin-left: 13px;
  padding-left: 25px;
  height: 28px;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.p-news2__box p::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 15px;
  background: url(../img/ico-clock.png) no-repeat;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-news2__title {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 600;
  color: #4d4d4d;
  padding-top: 30px;
  padding-bottom: 23px;
  border-bottom: 1px solid #e6e6e6;
}

.p-news2__note {
  padding: 30px 23px;
  background-color: #fafafa;
  margin: 40px 0px 45px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  .p-news2__note {
    padding: 15px;
  }
}

.p-news2__note p {
  line-height: 1;
}

.p-news2__pencil {
  position: relative;
  padding: 0px 15px 0px 20px;
  border-right: 1px solid #dcdcdc;
}

@media only screen and (max-width: 767px) {
  .p-news2__pencil {
    width: 50%;
  }
}

.p-news2__pencil:after {
  content: "";
  background: url(../img/ico-edit.png) no-repeat;
  left: 0;
  width: 15px;
  height: 14px;
  position: absolute;
  top: 6px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-news2__file {
  position: relative;
  padding: 0px 20px 0px 35px;
  border-right: none;
}

@media only screen and (max-width: 767px) {
  .p-news2__file {
    width: 50%;
  }
}

.p-news2__file:after {
  content: "";
  background: url(../img/ico-folder.png) no-repeat;
  left: 15px;
  width: 15px;
  height: 14px;
  position: absolute;
  top: 6px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-news2__related--cnt {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
}

/* Widget */
.c-widget form {
  margin-bottom: 50px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.c-widget form input[type="search"] {
  width: 100%;
  border: none;
  background: #f2f2f2;
  height: 40px;
  padding: 0px 10px;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 40px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.c-widget__cnt ul {
  padding: 10px 15px 25px;
}

.c-widget__cnt ul li a {
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 5px 0px;
  display: block;
  font-family: "Meiryo";
  font-weight: 500;
}

.c-widget__cnt ul li a:hover {
  text-decoration: none;
  color: #0056b3;
  opacity: 1;
}

.c-widget--modify1 {
  margin-bottom: 60px;
}

.c-widget--modify2 .c-widget__cnt ul {
  padding: 0;
}

.c-widget--modify2 .c-widget__cnt ul li a {
  padding: 10px 18px;
  border-top: none;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  display: block;
}

.c-widget--modify2 .c-widget__cnt ul li:nth-child(1) a {
  border-top: 1px solid #dddddd;
}

.c-form__search {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: #222222;
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.c-form__search input[type="submit"] {
  border: 0;
  background: url(../img/ico-search.png) no-repeat;
  text-indent: 40px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.c-pagination{
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .c-pagination{
    margin-bottom: 50px;
  }
}

.c-pagination a, .c-pagination a:hover, .c-pagination span{
  font-size: 1.7rem;
  line-height: 1.0588;
  color: #4d4d4d;
  padding: 15px 18px;
}

.c-pagination .current{
  background-color: #aaa;
  color: #fff;
}

.groupbtn{
  width: 100%;
  margin-bottom: 40px;
}

.groupbtn ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.groupbtn ul li a{
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}

.c-vaccin__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 45px 15px 50px;
}
.c-vaccin__des {
  margin: 40px 0;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.9;
  text-align: center;
}
.c-vaccin__block {
  padding: 30px 90px;
  border: 1px solid #ccc;
  border-radius: 16px;
}
.c-vaccin__block h3 {
  padding-bottom: 15px;
  border-bottom: 1px solid #8cc63f;
  color: #006837;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.1em;
}
.c-vaccin__block p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 25px;
  color: #333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.75;
}
.c-vaccin__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 45px;
  border-bottom: 1px solid #ccc;
}
.c-vaccin__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 240px;
  height: 120px;
  margin-bottom: 40px;
  border-radius: 16px;
  background-color: #73af14;
  color: #fff;
  font-weight: 700;
  font-size: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .c-vaccin__item {
    width: 48%;
  }
}
.c-vaccin__item:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-vaccin__contact {
  width: 100%;
  max-width: 925px;
  margin: 0 auto;
}
.c-vaccin__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 50px;
}
.c-vaccin__title h3 {
  margin-left: 20px;
  color: #333;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2;
}
.c-vaccin__title::before {
  position: absolute;
  width: 10px;
  height: 45px;
  background-color: #ec81b0;
  content: "";
}
.c-vaccin__text {
  margin-bottom: 35px;
  color: #333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: -0.6px;
}
@media (max-width: 575px) {
  .c-vaccin .c-vaccin__block {
    padding: 30px 60px;
  }
  .c-vaccin .c-vaccin__box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
  }
}

.c-poli__container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 95px 10px 130px;
}

.c-poli__wrap {
	width: 100%;
    max-width: 906px;
    margin: 61px auto 0;
	font-feature-settings: "palt" 1;
}

.c-poli__des {
	color: #333;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.75;
}

.c-poli__title {
	margin: 73px 0 45px;
	display: flex;
    position: relative;
    align-items: center;
}

.c-poli__txt {
	margin: 65px 0 45px;
}

@media (max-width: 375px) {
	.c-poli__title {
		margin: 45px 0 25px;
	}

	.c-poli__txt {
		margin: 45px 0 25px;
	}
}

.c-poli__title::before {
	position: absolute;
    width: 10px;
    height: 45px;
    background-color: #ec81b0;
    content: "";
}

.c-poli__title h3 {
	margin-left: 30px;
    color: #333;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 2;
	letter-spacing: 0.1em;
}

.c-poli1 {
	margin-bottom: 110px;
}

.c-poli1__bcg {
	margin-bottom: 90px;
}

.c-poli__des1 {
    color: #333;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.75;
}

.c-poli1__inner {
	padding-bottom: 135px;
}

.c-poli1__top {
	background-color: #f5faed;
    position: relative;
}

.c-poli1__all {
	max-width: 920px;
    width: 100%;
    margin: 0 auto;
	position: relative;
	padding: 0 10px;
}

.c-title2 {
	color: #333;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.2;
	padding: 60px 0 85px;
	position: relative;
	z-index: 11;
	letter-spacing: 0.1em;
}

.c-title2::after {
	content: '';
    position: absolute;
    bottom: 50px;
    width: 100%;
    height: 4px;
    background-color: #ec81b0;
    left: 0;
	z-index: 10;
}

.c-poli1__des {
	font-size: 1.6rem;
	line-height: 1.75;
	font-weight: 400;
	max-width: 920px;
    width: 100%;
    margin: 46px auto 0;
	padding: 0 10px;
	color: #333;
	font-feature-settings: "palt" 1;
}

.c-poli1__img {
	position: absolute;
    top: 0;
	max-width: 680px;
    right: 0;
	z-index: 10;
}

@media (min-width: 1366px) {
	.c-poli1__img {
		right: -222px;
	}
}

@media (max-width: 1365px) {
	.c-poli1__top {
		background-color: transparent;
	}

	.c-poli1__all {
		position: unset;
	}
}

@media (max-width: 1300px) {
	.c-poli1__inner {
		padding-bottom: 50px;
	}

	.c-title2::before {
		content: "";
		width: 100vw;
		height: 100%;
		position: absolute;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
		background-color: #f5faed;
		z-index: -1;
	}

	.c-poli1__img {
		position: unset;
		margin: 0 auto;
	}

}

.c-poli1__bottom {
	max-width: 920px;
	margin: 0 auto;
	padding: 0 10px;
	font-feature-settings: "palt" 1;
}

.c-poli1__content h3{
    color: #006837;
    font-size: 2.4rem;
	font-weight: 700;
    line-height: 1.2;
	letter-spacing: 0.1em;
}

.c-poli1__des1 {
	margin: 17px 0 48px;
	font-size: 1.6rem;
	line-height: 1.75;
	font-weight: 400;
	color: #333;
}

.c-vaccin__container1 {
	padding: 72px 10px 25px;
}

.c-vaccin__green {
	background-color: #f5faed;
}

.c-vaccin__block1 {
	background-color: #fff;
}

.c-vaccin__txt {
	margin: 34px 0;
	font-feature-settings: "palt" 1;
}

@media (max-width: 375px) {
	.c-vaccin__txt {
		font-size: 1.7rem;
	}
}

.c-vaccin__border {
	border-bottom: 0;
	font-feature-settings: "palt" 1;
}

.c-sns{
	z-index: 5;
	position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
	background-color: #8cc63f;
	width: 80px;
	height: 180px;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.c-sns ul li:first-child{
	margin-bottom: 22px;
}

.c-sns ul li a{
	display: block;
}

.c-sns ul li a img{
	width: 50px;
	height: 50px;
}

.c-snsfooter{
	margin-top: 20px;
}

.c-snsfooter ul{
	display: flex;
}

.c-snsfooter ul li:first-child{
	margin-right: 10px;
}

.c-snsfooter ul li a img{
	width: 50px;
	height: 50px;
}
