@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Opti:wght@400;700&display=swap");

/*----------------------------------------------------
 commons style
----------------------------------------------------*/

* {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #333;
  text-align: center;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-style: none;
}

ul li,
ol li {
  list-style: none;
}

mark {
  background-color: inherit;
}

a {
  color: #333;
  text-decoration: underline;
}

.sp_none {
  display: none;
}
.pc_none {
  display: block;
}

.min {
  font-family: "Kaisei Opti", serif;
}

@media only screen and (min-width: 1001px) {
  * {
    font-size: 16px;
  }

  input[type="submit"]:hover,
  button:hover,
  a:hover,
  a:hover img {
    text-decoration: none;
    opacity: 0.5;
    filter: alpha(opacity=50);
    -ms-filter: "alpha(opacity=50)";
  }

  .sp_none {
    display: block;
  }
  .pc_none {
    display: none;
  }

  .tel {
    pointer-events: none;
    text-decoration: none;
  }

  .acc {
    cursor: pointer;
  }
}

.ttl {
  width: 80%;
  display: flex;
  align-items: center;
  margin: 0 auto 30px auto;
}

.ttl strong {
  color: #fff;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  padding: 0 10%;
}

.ttl:before,
.ttl:after {
  content: "";
  flex-grow: 1;
  display: block;
}

.ttl.pk:before,
.ttl.pk:after {
  border-top: 2px solid #e488b6;
}
.ttl.pu:before,
.ttl.pu:after {
  border-top: 2px solid #4b3e93;
}

.ttl:before {
  margin-right: -10%;
}
.ttl:after {
  margin-left: -10%;
}

.ttl.pk strong {
  background-color: #e488b6;
}
.ttl.pu strong {
  background-color: #4b3e93;
}

@media only screen and (min-width: 1001px) {
  .ttl {
    width: 1000px;
    margin: 0 auto 40px auto;
  }
  .ttl strong {
    font-size: 24px;
    line-height: 50px;
  }
}

@keyframes btn_animation {
  0% {
    transform: translate(2px, 0px);
  }
  5% {
    transform: translate(-2px, 0px);
  }
  10% {
    transform: translate(2px, 0px);
  }
  15% {
    transform: translate(-2px, 0px);
  }
  20% {
    transform: translate(2px, 0px);
  }
  25% {
    transform: translate(-2px, 0px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}

/*----------------------------------------------------
 contents style
----------------------------------------------------*/

div.main_area strong {
  width: 80%;
  display: flex;
  align-items: center;
  margin: 30px auto 10px auto;
}
div.main_area strong mark {
  color: #fff;
  background-color: #d2379c;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  padding: 0 5%;
}
div.main_area strong:before,
div.main_area strong:after {
  content: "";
  flex-grow: 1;
  display: block;
  border-top: 2px solid #d2379c;
}

div.main_area h1 {
  position: relative;
  z-index: 5;
  display: block;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4em;
  text-align: center;
  text-shadow: 1px 1px 1px #fff;
  margin: 0px auto 5px auto;
}
div.main_area h1 mark {
  font-weight: bold;
  font-size: 34px;
  color: #e488b6;
}

div.main_area img.img {
  width: 80%;
  margin: -30px auto 0px auto;
}

div.main_area ul {
  width: 90%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: -40px auto 30px auto;
}
div.main_area ul li {
  width: 48.5%;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: bold;
  justify-content: center;
  line-height: 1.8em;
  font-size: 10px;
  box-sizing: border-box;
  color: #4b3e93;
  border: 2px solid #4b3e93;
  background-color: rgb(255 255 255 / 0.9);
  border-radius: 5px;
  padding: 10px;
  margin: 10px 0 0 0;
}
div.main_area ul li:nth-child(2),
div.main_area ul li:nth-child(3) {
  color: #e488b6;
  border: 2px solid #e488b6;
}
div.main_area ul li img {
  width: 28px;
  margin: 0px 10px 0px 0;
}

div.main_area p {
  display: block;
  color: #fff;
  position: relative;
  background-color: #e488b6;
  font-size: 13px;
  line-height: 1.8em;
  font-weight: bold;
  padding: 15px 0;
}
div.main_area p img {
  width: 90%;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
}

@media only screen and (min-width: 1001px) {
  div.main_area div {
    width: 1000px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0px auto 40px auto;
  }

  div.main_area strong {
    width: 1000px;
    margin: 40px auto 10px auto;
  }
  div.main_area strong mark {
    font-size: 32px;
    line-height: 60px;
  }

  div.main_area h1 {
    font-size: 91px;
    line-height: 1.3em;
  }
  div.main_area h1 mark {
    font-size: 111px;
  }

  div.main_area img.img {
    width: 500px;
    margin: 0;
  }

  div.main_area ul {
    width: 470px;
    margin: -10px 0 0 0;
  }
  div.main_area ul li {
    width: 48%;
    display: block;
    font-size: 18px;
    padding: 20px;
    margin: 20px 0 0 0;
  }
  div.main_area ul li img {
    width: 100px;
    margin: 0px auto 10px auto;
  }

  div.main_area p {
    font-size: 32px;
    line-height: 1.6em;
    padding: 30px 0;
  }
  div.main_area p img {
    width: 1152px;
    top: 0;
    bottom: 0;
  }
}

div.about_area {
  background-color: #fffadc;
  padding: 40px 0;
}

div.about_area h2.ttl {
  margin-bottom: 45px;
}

div.about_area ol {
  width: 70%;
  margin: 0px auto 20px auto;
}
div.about_area ol li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  background-color: #fff;
  border: 5px solid #f0efeb;
  margin: 0 0 50px 0;
  padding: 0px 20px 20px 20px;
}
div.about_area ol li:last-child {
  margin-bottom: 0;
}
div.about_area ol li:after {
  width: 30px;
  height: 40px;
  content: "";
  display: block;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #4b3e93;
  position: absolute;
  left: calc(50% - 15px);
  bottom: -30px;
  z-index: 1;
}
div.about_area ol li:last-child:after {
  content: none;
}

div.about_area dl dt {
  width: 180px;
  background-color: #ead264;
  line-height: 40px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 14px;
  margin: -22px auto 10px auto;
}
div.about_area dl dd {
  text-align: left;
  line-height: 1.8em;
}
div.about_area dl dd img {
  margin: 0 0 5px 0;
}

div.about_area p {
  width: 80%;
  text-align: left;
  line-height: 1.8em;
  font-weight: bold;
  margin: 0 auto 10px auto;
}
div.about_area p mark {
  font-weight: bold;
  background-color: #feddcc;
}

div.about_area span {
  width: 80%;
  display: block;
  text-align: left;
  line-height: 1.8em;
  font-size: 12px;
  margin: 0px auto;
}

@media only screen and (min-width: 1001px) {
  div.about_area {
    padding: 60px 0;
  }

  div.about_area h2.ttl {
    margin-bottom: 60px;
  }

  div.about_area ol {
    width: 1000px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0px auto 30px auto;
  }
  div.about_area ol li {
    width: 310px;
    margin: 0px;
    padding: 10px 30px 20px 30px;
  }
  div.about_area ol li:last-child {
    margin-right: 0;
  }
  div.about_area ol li:after {
    width: 40px;
    height: 30px;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    right: -30px;
    left: inherit;
    bottom: 0;
    top: 0;
    margin: auto;
  }

  div.about_area dl dt {
    width: 240px;
    line-height: 45px;
    font-size: 18px;
    margin: -35px auto 20px auto;
  }

  div.about_area p {
    width: 1000px;
    text-align: center;
    font-size: 18px;
  }
  div.about_area p mark {
    font-size: 18px;
  }

  div.about_area span {
    text-align: center;
    font-size: 14px;
  }
}

div.contact_area {
  width: 100%;
  padding: 40px 0;
}

div.contact_area dl dt span {
  text-align: left;
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #d2379c;
  border-radius: 30px;
  line-height: 40px;
  box-sizing: border-box;
  margin: 0 0 20px 0;
  padding: 0 20px;
}
div.contact_area dl dt span:after {
  width: 20px;
  height: 10px;
  content: "";
  display: block;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #d2379c;
  position: absolute;
  left: calc(50% - 10px);
  bottom: -10px;
  z-index: 1;
}

div.contact_area dl dt strong {
  text-align: left;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px 0;
}
div.contact_area dl dt strong mark {
  font-size: 18px;
  font-weight: bold;
  background-color: #fefb94;
}

div.contact_area ul {
  margin: 0 auto 20px auto;
}
div.contact_area ul li {
  background-image: url("/img/meeting//icn_check.png");
  background-repeat: no-repeat;
  background-size: 12px;
  display: inline-block;
  background-position: left top 8px;
  box-sizing: border-box;
  line-height: 1.8em;
  font-weight: bold;
  margin: 0 0 10px 0;
  padding: 0 0 0 20px;
}
div.contact_area ul li:last-child {
  margin-bottom: 0;
}
div.contact_area ul li mark {
  font-weight: bold;
  color: #d2379c;
  background-color: #fefb94;
}

div.contact_area a.btn {
  width: 280px;
  border: 2px solid #fff;
  display: block;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  background: rgb(32, 127, 40);
  background: linear-gradient(
    0deg,
    rgba(32, 127, 40, 1) 0%,
    rgba(16, 181, 48, 1) 50%,
    rgba(32, 127, 40, 1) 100%
  );
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 10px 0 15px 0;
  animation: btn_animation 2s infinite;
  box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 30%);
}

div.contact_area a.btn img {
  width: 42px;
  display: inline-block;
  position: absolute;
  right: 28px;
  top: 0;
  bottom: 0;
  margin: auto;
}

div.contact_area a.btn span {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 24px;
  height: 24px;
  margin: auto;
  border-radius: 20px;
  background-color: #fff;
}
div.contact_area a.btn span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-left: 9px solid #e36e86;
  border-bottom: 6px solid transparent;
  box-sizing: border-box;
}

div.contact_area a.btn strong {
  display: block;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.1em;
  font-family: "Kaisei Opti", serif;
  color: #fff;
}
div.contact_area a.btn strong mark {
  font-size: 19px;
  font-family: "Kaisei Opti", serif;
  color: #fefb94;
  display: block;
  font-weight: bold;
}

@media only screen and (min-width: 1001px) {
  div.contact_area {
    padding: 60px 0;
  }

  div.contact_area dl {
    width: 480px;
    margin: 0px auto;
  }

  div.contact_area dl dt {
    width: 480px;
    position: relative;
    box-sizing: border-box;
    padding: 0 0 0 140px;
  }

  div.contact_area dl dt span {
    width: 120px;
    height: 70px;
    position: absolute;
    top: 10px;
    left: 0;
    display: block;
    line-height: 1.5em;
    text-align: center;
    font-size: 16px;
    margin: 0;
    padding: 10px 20px 0px 20px;
  }
  div.contact_area dl dt span:after {
    width: 10px;
    height: 20px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    left: 119px;
    bottom: calc(50% - 10px);
  }

  div.contact_area dl dt strong {
    text-align: center;
    display: block;
    font-size: 24px;
    margin: 0 0 15px 0;
  }
  div.contact_area dl dt strong mark {
    font-size: 24px;
  }

  div.contact_area ul li {
    font-size: 18px;
    background-size: 16px;
    padding: 0 0 0 26px;
  }
  div.contact_area ul li:last-child {
    margin-bottom: 0;
  }
  div.contact_area ul li mark {
    font-size: 18px;
  }

  div.contact_area a.btn {
    width: 480px;
    padding: 15px 0 20px 0;
  }

  div.contact_area a.btn img {
    width: 48px;
    right: 110px;
  }

  div.contact_area a.btn span {
    left: 120px;
    width: 36px;
    height: 36px;
  }
  div.contact_area a.btn span::before {
    left: 14px;
    border-top: 9px solid transparent;
    border-right: 0 solid transparent;
    border-left: 12px solid #e36e86;
    border-bottom: 9px solid transparent;
  }

  div.contact_area a.btn strong {
    font-size: 30px;
  }
  div.contact_area a.btn strong mark {
    font-size: 20px;
  }
}

div.recommend_area {
  width: 100%;
  background-color: #fffadc;
  padding: 40px 0;
}

div.recommend_area h2 {
  margin-bottom: 20px;
}
div.recommend_area h2 strong {
  line-height: 1.5em;
  padding: 10px 10%;
}

div.recommend_area ul {
  width: 80%;
  margin: 0 auto 30px auto;
}
div.recommend_area ul li {
  width: 100%;
  text-align: left;
  background-image: url("/img/meeting//icn_check.png");
  background-repeat: no-repeat;
  background-size: 12px;
  line-height: 1.8em;
  font-weight: bold;
  text-decoration: underline;
  background-position: left center;
  box-sizing: border-box;
  margin: 0 0 15px 0;
  padding: 0 0 0 20px;
}
div.recommend_area ul li:last-child {
  margin-bottom: 0;
}

div.recommend_area p {
  width: 80%;
  border: 3px double #999;
  line-height: 1.8em;
  font-weight: bold;
  text-align: left;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 15px 20px;
}
div.recommend_area p mark {
  font-weight: bold;
  background-color: #feddcc;
}

@media only screen and (min-width: 1001px) {
  div.recommend_area {
    padding: 60px 0;
  }

  div.recommend_area h2 {
    margin-bottom: 30px;
  }

  div.recommend_area ul {
    width: 1000px;
    overflow: hidden;
    margin: 0 auto 20px auto;
  }
  div.recommend_area ul li {
    width: 33%;
    float: left;
  }

  div.recommend_area p {
    width: 1000px;
    font-size: 18px;
    text-align: center;
    padding: 20px 0px;
  }
  div.recommend_area p mark {
    font-size: 18px;
  }
}

div.what_area {
  width: 100%;
  padding: 40px 0;
}

div.what_area ul {
  width: 80%;
  margin: 30px auto 0 auto;
}
div.what_area ul li {
  margin: 0 auto 30px auto;
}
div.what_area ul li:last-child {
  margin-bottom: 0;
}

div.what_area dl dt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
div.what_area dl dt strong {
  width: auto;
  position: relative;
  line-height: 40px;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
  display: block;
  color: #fff;
  box-sizing: border-box;
  padding: 0 5px 0 15px;
}
div.what_area dl dt strong:after {
  width: 20px;
  height: 40px;
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

div.what_area ul li.what1 dl dt strong,
div.what_area ul li.what1 dl dt strong:after {
  background-color: #2dc07a;
}
div.what_area ul li.what2 dl dt strong,
div.what_area ul li.what2 dl dt strong:after {
  background-color: #3e5670;
}
div.what_area ul li.what3 dl dt strong,
div.what_area ul li.what3 dl dt strong:after {
  background-color: #ea8f00;
}
div.what_area ul li.what4 dl dt strong,
div.what_area ul li.what4 dl dt strong:after {
  background-color: #004387;
}

div.what_area dl dt span {
  line-height: 40px;
  font-weight: bold;
  font-size: 14px;
  background-image: url("/img/meeting//what_icn.png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 18px;
  text-indent: 23px;
}

div.what_area ul li.what1 dl dd {
  border: 4px solid #2dc07a;
}
div.what_area ul li.what2 dl dd {
  border: 4px solid #3e5670;
}
div.what_area ul li.what3 dl dd {
  border: 4px solid #ea8f00;
}
div.what_area ul li.what4 dl dd {
  border: 4px solid #004387;
}

div.what_area dl dd p {
  box-sizing: border-box;
  line-height: 1.8em;
  text-align: left;
  font-size: 14px;
  padding: 20px;
}

@media only screen and (min-width: 1001px) {
  div.what_area {
    padding: 60px 0;
  }

  div.what_area h2.ttl {
    margin: 0 auto 10px auto;
  }

  div.what_area ul {
    width: 1000px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0px auto;
  }
  div.what_area ul li {
    width: 480px;
    margin: 30px 0 0 0;
  }

  div.what_area dl dt strong {
    line-height: 45px;
    font-size: 18px;
    padding: 0 10px 0 20px;
  }
  div.what_area dl dt strong mark {
    font-size: 18px;
    font-weight: bold;
    display: inline;
    color: #fff;
  }
  div.what_area dl dt strong:after {
    height: 45px;
  }

  div.what_area dl dt span {
    line-height: 45px;
    font-size: 16px;
    background-size: 24px;
    text-indent: 34px;
  }
  div.what_area dl dd {
    overflow: hidden;
  }

  div.what_area dl dd img {
    width: 220px;
    float: left;
    margin: 0px 30px 0px 0px;
  }

  div.what_area dl dd p {
    font-size: 14px;
    padding: 20px 20px 0 20px;
  }
}

div.anxiety_area {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 25%,
    rgba(255, 250, 220, 1) 25%,
    rgba(255, 250, 220, 1) 100%
  );
  padding: 0px 0px 40px 0;
}

div.anxiety_area h2 {
  background-color: #ead264;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 0 10px 0;
  position: relative;
  margin: 0 0 30px 0;
}
div.anxiety_area h2:after {
  width: 120px;
  height: 20px;
  content: "";
  display: block;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #ead264;
  position: absolute;
  left: calc(50% - 60px);
  bottom: -20px;
  z-index: 1;
}

div.anxiety_area h2 span {
  font-size: 14px;
  display: block;
  font-weight: bold;
  margin: 5px 0 0 0;
}

div.anxiety_area ul {
  width: 80%;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto 145px auto;
}
div.anxiety_area ul li {
  position: absolute;
  font-weight: bold;
  font-size: 14px;
  font-family: "Kaisei Opti", serif;
  text-decoration: underline;
}
div.anxiety_area ul li:nth-child(1) {
  top: 0px;
  left: 0px;
  transform: rotate(2deg);
  -moz-transform: rotate(2deg);
  -webkit-transform: rotate(2deg);
}
div.anxiety_area ul li:nth-child(2) {
  top: 20px;
  right: 0px;
  transform: rotate(-5deg);
  -moz-transform: rotate(-5deg);
  -webkit-transform: rotate(-5deg);
}
div.anxiety_area ul li:nth-child(3) {
  top: 60px;
  left: 0px;
  transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -webkit-transform: rotate(-3deg);
}
div.anxiety_area ul li:nth-child(4) {
  top: 100px;
  right: 30px;
  transform: rotate(2deg);
  -moz-transform: rotate(2deg);
  -webkit-transform: rotate(2deg);
}

div.anxiety_area img {
  width: 90%;
  margin: 0px auto;
}

@media only screen and (min-width: 1001px) {
  div.anxiety_area {
    padding: 0;
  }

  div.anxiety_area h2 {
    font-size: 24px;
    padding: 15px 0 10px 0;
  }
  div.anxiety_area h2:after {
    width: 180px;
    left: calc(50% - 90px);
    bottom: -19px;
    z-index: 1;
  }
  div.anxiety_area h2 span {
    font-size: 20px;
  }

  div.anxiety_area ul {
    width: 800px;
    margin: 0 auto 120px auto;
  }
  div.anxiety_area ul li {
    font-size: 20px;
  }
  div.anxiety_area ul li:nth-child(1) {
    top: 10px;
    left: 20px;
  }
  div.anxiety_area ul li:nth-child(2) {
    top: 20px;
    right: 10px;
  }
  div.anxiety_area ul li:nth-child(3) {
    top: 50px;
    left: 160px;
  }
  div.anxiety_area ul li:nth-child(4) {
    top: 90px;
    right: 110px;
  }

  div.anxiety_area img {
    width: 800px;
  }
}

div.staff_area {
  width: 100%;
  background-color: #f1c3e1;
  padding: 40px 0;
}

div.staff_area div {
  width: 85%;
  background-color: #fff;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 25px;
}

div.staff_area div strong {
  line-height: 1.5em;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  display: block;
}
div.staff_area div strong mark {
  color: #d2379c;
  background-color: #fefb94;
  font-weight: bold;
  font-size: 14px;
  display: inline;
}
div.staff_area div img {
  margin: 10px auto 0px auto;
}

@media only screen and (min-width: 1001px) {
  div.staff_area {
    background-color: inherit;
    padding: 60px 0;
  }
  div.staff_area div {
    width: 1000px;
    position: relative;
    border: 10px solid #f1c3e1;
    padding: 40px;
  }
  div.staff_area div strong {
    position: relative;
    font-size: 28px;
  }
  div.staff_area div strong mark {
    font-size: 24px;
  }
  div.staff_area div img {
    width: 380px;
    position: absolute;
    top: 40px;
    right: 40px;
    margin: 0px;
  }
}

div.flow_area {
  background-color: #fffadc;
  padding: 40px 0;
}
div.flow_area .ttl span {
  color: #815d20;
}
div.flow_area .ttl span:before,
div.flow_area .ttl span:after {
  border-top: 1px solid #815d20;
}
div.flow_area ol {
  width: 80%;
  margin: 0 auto 30px auto;
}
div.flow_area ol li {
  text-align: left;
  position: relative;
  counter-reset: 0;
  counter-increment: cnt;
  background-color: #fff;
  box-sizing: border-box;
  margin: 0 0 20px 0;
  padding: 20px 0px 0px 0px;
}
div.flow_area ol li:last-child {
  margin-bottom: 0;
}

div.flow_area ol li:after {
  width: 30px;
  height: 40px;
  content: "";
  display: block;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #4b3e93;
  position: absolute;
  left: calc(50% - 15px);
  bottom: -30px;
  z-index: 1;
}
div.flow_area ol li:last-child:after {
  content: none;
}

div.flow_area ol li strong {
  text-align: left;
  font-size: 16px;
  line-height: 1.6em;
  font-weight: bold;
  display: block;
  box-sizing: border-box;
  margin: 0 0 10px 0;
  padding: 0 20px;
}
div.flow_area ol li strong span {
  display: block;
  text-align: left;
  color: #d2379c;
  font-weight: bold;
  font-size: 12px;
  font-style: italic;
}
div.flow_area ol li strong span:after {
  content: counter(cnt) ".";
  color: #d2379c;
  font-weight: bold;
  font-style: italic;
  font-size: 18px;
  margin: 0px 0px 0px 5px;
}

div.flow_area ol li img {
  margin: 0 auto 20px auto;
}
div.flow_area ol li p {
  text-align: left;
  font-size: 12px;
  line-height: 1.8em;
  box-sizing: border-box;
  padding: 0px 20px 20px 20px;
}

div.flow_area ol li dl {
  width: 100%;
  background-color: #e8f1fc;
  box-sizing: border-box;
  padding: 20px;
}
div.flow_area ol li dl dt {
  width: 100%;
  color: #4b3e93;
  line-height: 35px;
  font-weight: bold;
  border: 1px solid #4b3e93;
  border-radius: 5px;
  margin: 0px 0px 10px 0px;
}
div.flow_area ol li dl dd {
  width: 100%;
  box-sizing: border-box;
  line-height: 1.8em;
  font-size: 12px;
  text-align: left;
}

div.flow_area dl.belongings {
  width: 80%;
  margin: 0 auto;
}
div.flow_area dl.belongings dt {
  width: 100%;
  font-size: 14px;
  line-height: 40px;
  color: #fff;
  font-weight: bold;
  background-color: #4b3e93;
}
div.flow_area dl.belongings dd {
  box-sizing: border-box;
  line-height: 1.8em;
  text-align: left;
  border: 2px solid #4b3e93;
  border-top: none;
  font-size: 12px;
  background-color: #fff;
  padding: 10px 15px;
}

@media only screen and (min-width: 1001px) {
  div.flow_area {
    padding: 60px 0;
  }
  div.flow_area ol {
    width: 1000px;
    margin: 0 auto 40px auto;
  }
  div.flow_area ol li {
    min-height: 218px;
    margin: 0 0 25px 0;
    padding: 25px 0px 0px 0px;
  }
  div.flow_area ol li:last-child {
    margin-bottom: 0;
  }

  div.flow_area ol li:after {
    height: 45px;
    bottom: -35px;
  }

  div.flow_area ol li strong {
    width: 630px;
    float: right;
    font-size: 20px;
    line-height: 1.8em;
    margin: 0 0 5px 0;
    padding: 0px;
  }
  div.flow_area ol li strong span {
    display: inline-block;
    font-size: 16px;
  }
  div.flow_area ol li strong span:after {
    font-size: 28px;
    margin: 0px 10px 0px 5px;
  }

  div.flow_area ol li img {
    width: 330px;
    float: left;
    margin: -25px 0px 0 0px;
  }
  div.flow_area ol li p {
    width: 630px;
    float: right;
    font-size: 16px;
    padding: 0px 30px 0px 0px;
  }

  div.flow_area ol li dl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding: 25px;
  }
  div.flow_area ol li dl dt {
    width: 280px;
    box-sizing: border-box;
    line-height: 50px;
    font-size: 18px;
    margin: 0;
  }
  div.flow_area ol li dl dd {
    width: 640px;
    font-size: 14px;
  }

  div.flow_area dl.belongings {
    width: 1000px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  div.flow_area dl.belongings dt {
    width: 30%;
    font-size: 18px;
    line-height: 65px;
  }
  div.flow_area dl.belongings dd {
    width: 70%;
    font-size: 14px;
    line-height: 65px;
    border: 2px solid #4b3e93;
    border-left: none;
    text-align: center;
    padding: 0;
  }
}

div.reason_area {
  padding: 40px 0;
}

div.reason_area .ttl strong {
  line-height: 1.5em;
  padding: 10px 10%;
}

div.reason_area table {
  width: 90%;
  margin: 0 auto;
}

div.reason_area thead th {
  vertical-align: bottom;
  padding: 0 10px;
}
div.reason_area thead th span {
  background-color: #f5f5f5;
  font-size: 12px;
  display: block;
  line-height: 30px;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}

div.reason_area thead th.hl span {
  background-color: #e488b6;
  height: 40px;
  box-sizing: border-box;
  padding: 10px 0;
}
div.reason_area thead th.hl span img {
  width: auto;
  height: 20px;
  margin: 0px auto;
}

div.reason_area tbody tr {
  background-color: #fffadc;
}
div.reason_area tbody tr:nth-child(2n) {
  background-color: #d2e1f5;
}

div.reason_area tbody tr th {
  padding: 10px;
}
div.reason_area tbody tr th span {
  border: 1px solid #333;
  border-radius: 5px;
  font-size: 10px;
  font-weight: bold;
  display: block;
  padding: 5px;
}

div.reason_area tbody tr td {
  font-weight: bold;
  font-size: 20px;
  padding: 10px;
}
div.reason_area tbody tr td span {
  font-size: 10px;
  display: block;
}
div.reason_area tbody tr td p {
  font-size: 8px;
  line-height: 1.5em;
  display: block;
  text-align: center;
}

div.reason_area tbody tr td.hl,
div.reason_area tbody tr td.hl span {
  color: #d2379c;
  font-weight: bold;
}
div.reason_area tbody tr td.hl p {
  font-weight: bold;
}

@media only screen and (min-width: 1001px) {
  div.reason_area {
    padding: 60px 0;
  }

  div.reason_area table {
    width: 1000px;
  }

  div.reason_area thead th {
    width: 25%;
    padding: 0 20px;
  }
  div.reason_area thead th span {
    font-size: 14px;
    line-height: 45px;
  }
  div.reason_area thead th span mark {
    font-weight: bold;
    display: inline;
    font-size: 14px;
  }

  div.reason_area thead th.hl span {
    height: 55px;
    padding: 15px 0;
  }
  div.reason_area thead th.hl span img {
    height: 25px;
  }

  div.reason_area tbody tr th {
    padding: 20px;
  }

  div.reason_area tbody tr th span {
    font-size: 14px;
  }

  div.reason_area tbody tr td {
    font-size: 28px;
    padding: 20px;
  }
  div.reason_area tbody tr td span {
    font-size: 14px;
  }
  div.reason_area tbody tr td p {
    font-size: 12px;
    line-height: 1.8em;
    margin: 5px 0 0 0;
  }
}

div.reserve_area {
  background-color: #fffadc;
  padding: 40px 0;
}
div.reserve_area p.snippet {
  width: 80%;
  line-height: 1.8em;
  margin: 0 auto 0px auto;
}

@media only screen and (min-width: 1001px) {
  div.reserve_area {
    padding: 60px 0;
  }
  div.reserve_area p.snippet {
    width: 1000px;
    text-align: center;
    margin: 0 auto 0px auto;
  }
}

div.faq_area {
  padding: 40px 0;
}

div.faq_area h2 {
  width: 220px;
  height: 60px;
  background-image: url("/img/meeting//faq_ttl.png");
  background-repeat: no-repeat;
  background-size: auto 60px;
  background-position: left center;
  box-sizing: border-box;
  margin: 0 auto 30px auto;
  padding: 5px 0 0 100px;
}
div.faq_area h2 strong {
  text-align: left;
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #225a93;
  line-height: 1.8em;
}
div.faq_area h2 span {
  text-align: left;
  display: block;
  font-size: 12px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #80aec8;
}

div.faq_area dl {
  width: 80%;
  border-bottom: 2px solid #dfdfdf;
  margin: 0 auto 15px auto;
  padding: 0 0 15px 0;
}
div.faq_area dl:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
div.faq_area dl dt {
  background-image: url("/img/meeting//acc_icn.png");
  background-size: 12px;
  background-position: right top 8px;
  background-repeat: no-repeat;
  line-height: 1.8em;
  text-align: left;
  text-indent: -1.8em;
  box-sizing: border-box;
  padding: 0 25px 0 1.8em;
}
div.faq_area dl dt.close {
  background-image: url("/img/meeting//acc_icn_close.png");
}
div.faq_area dl dt:before {
  color: #225a93;
  font-family: "Noto Serif JP", serif;
  content: "Q.";
  font-size: 16px;
  line-height: 1.8em;
  text-align: left;
  margin: 0 0.5em 0 0;
}
div.faq_area dl dd {
  line-height: 1.8em;
  text-align: left;
  display: none;
  margin: 10px 0 0 0;
}

@media only screen and (min-width: 1001px) {
  div.faq_area {
    width: 1000px;
    box-sizing: border-box;
    border: 10px solid #dfdfdf;
    padding: 40px;
    margin: 60px auto;
  }

  div.faq_area h2 {
    width: 940px;
    height: 100px;
    background-size: auto 100px;
    padding: 15px 0 0 170px;
  }
  div.faq_area h2 strong {
    font-size: 28px;
  }
  div.faq_area h2 span {
    font-size: 16px;
  }

  div.faq_area dl {
    width: 100%;
    margin: 0 auto 20px auto;
    padding: 0 0 25px 0;
  }
  div.faq_area dl:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  div.faq_area dl dt {
    background-size: 18px;
    background-position: right top 12px;
  }
  div.faq_area dl dt:before {
    font-size: 24px;
  }
}

footer {
  text-align: left;
  border-top: 1px solid #dfdfdf;
  padding: 40px 0 40px 0;
}

footer ul {
  text-align: left;
  margin: 0 0% 20px 10%;
}
footer ul li {
  display: inline-block;
}
footer ul li:after {
  content: "│";
  font-size: 14px;
  margin: 0 5px;
}
footer ul li:last-child:after {
  content: "";
  margin: 0;
}
footer ul li a {
  font-size: 12px;
}
footer span {
  font-size: 12px;
  margin: 0 0 0 10%;
}

@media only screen and (min-width: 1001px) {
  footer {
    width: 1000px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    border-top: none;
    margin: 0 auto;
    padding: 0 0 60px 0;
  }
  footer ul {
    margin: 0;
  }
  footer ul li:after {
    font-size: 16px;
    margin: 0 10px;
  }
  footer ul li a {
    font-size: 16px;
  }
  footer span {
    font-size: 14px;
    margin: 0;
  }
}

a#btn {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 100px;
  height: 100px;
  display: block;
  border-radius: 100%;
  font-weight: bold;
  text-decoration: none;
  background: rgb(32, 127, 40);
  background: linear-gradient(
    0deg,
    rgba(32, 127, 40, 1) 0%,
    rgba(16, 181, 48, 1) 50%,
    rgba(32, 127, 40, 1) 100%
  );
  box-sizing: border-box;
  z-index: 100;
  border: 2px solid #fff;
  animation: btn_animation 3s infinite;
  box-shadow: 1px 1px 1px 1px rgb(0 0 0 / 30%);
}

a#btn span {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  width: 21px;
  height: 21px;
  margin: auto;
  border-radius: 20px;
  background-color: #fff;
}
a#btn span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 5px solid transparent;
  border-right: 0 solid transparent;
  border-left: 8px solid #e36e86;
  border-bottom: 5px solid transparent;
  box-sizing: border-box;
}

a#btn strong {
  display: block;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1em;
  font-family: "Kaisei Opti", serif;
  color: #fff;
  margin: 20px auto 0 auto;
}
a#btn strong mark {
  width: 75px;
  font-size: 14px;
  color: #207f28;
  line-height: 18px;
  font-family: "Kaisei Opti", serif;
  background-color: #fff;
  border-radius: 20px;
  display: block;
  font-weight: bold;
  margin: 0 auto 3px auto;
}

@media only screen and (min-width: 1001px) {
  a#btn {
    right: 20px;
    bottom: 20px;
    width: 160px;
    height: 160px;
    padding: 17px 0 20px 0;
  }

  a#btn span {
    width: 36px;
    height: 36px;
    bottom: 12px;
  }
  a#btn span::before {
    left: 14px;
    border-top: 9px solid transparent;
    border-right: 0 solid transparent;
    border-left: 12px solid #e36e86;
    border-bottom: 9px solid transparent;
  }

  a#btn strong {
    font-size: 32px;
  }
  a#btn strong mark {
    width: 125px;
    line-height: 25px;
    font-size: 18px;
    margin: 0 auto 5px auto;
  }
}

div.form {
  margin: 0;
  text-align: none;
}

div.in_content {
  width: 625px;
  margin: auto;
  line-height: 200%;
}
div.in_content span {
  font-weight: bold;
  padding-right: 10px;
}
div.form_title {
  margin-top: 20px;
}
div.form_title,
div.form_input {
  width: 500px;
  margin-left: auto;
  margin-right: auto;
}
div.form_title h3 {
  text-align: center;
  color: #218573;
}
div.form_title p {
  text-align: center;
}
div.form_input {
  padding-top: 25px;
}
div.title,
fieldset legend label {
  display: block;
  margin-bottom: 5px;
  color: #218573;
  font-size: 0.8em;
  text-align: left;
}
div.radio_meeting label {
  display: block;
  float: left;
  cursor: pointer;
  width: 105px;
  margin: 0;
  padding: 21px 5px;
  border-right: 1px solid #abb2b7;
  background: #bdc3c7;
  color: #555e64;
  text-align: center;
  line-height: 1;
  transition: 0.2s;
  font-size: 1em;
}
div.radio_meeting label:first-of-type {
  border-radius: 3px 0 0 3px;
}
div.radio_meeting label:last-of-type {
  border-radius: 0 3px 3px 0;
}
div.radio_meeting::after {
  content: " ";
  clear: both;
  display: block;
}
div.form_item {
  margin: 20px 0;
  text-align: left;
}
div.radio_meeting input[type="radio"] {
  display: none;
}
div.radio_meeting input[type="radio"]:checked + label {
  background-color: #47baa6;
  color: #fff;
}
div.form_item select {
  box-sizing: border-box;
  width: 100px;
  padding: 5px 10px;
  border: 2px solid #47baa6;
  background: #f6f3ee;
  box-shadow: 0 0 10px rgb(77 185 166 / 70%) inset;
  color: #767065;
  font-size: 1.6em;
}
div.form_item select[name="meeting_date"] {
  width: 270px;
}
div.form_item input[type="text"],
div.form_item input[type="tel"] {
  box-sizing: border-box;
  width: 200px;
  padding: 5px 10px;
  border: 2px solid #47baa6;
  background: #f6f3ee;
  box-shadow: 0 0 10px rgb(77 185 166 / 70%) inset;
  color: #767065;
  font-size: 1.6em;
}
input[type="submit"] {
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  border: 1px solid #92e3d4;
  background: linear-gradient(
    to bottom,
    rgba(84, 209, 186, 1),
    rgba(36, 165, 140, 1)
  );
  color: #fff;
  font-size: 1.4em;
  text-shadow: 1px 1px 1px #177d55;
  cursor: pointer;
}
div.form_item input[type="tel"] {
  width: 61%;
}
#pc_mail {
  width: 100%;
}
.requiredFrame {
  border: solid red 2px !important;
  background-color: #ffeded !important;
}
.greenFrame {
  border: solid #349714 2px !important;
}
.errormessage {
  font-weight: bold;
  color: #ff0000;
}
div.form_item.radio label {
  padding-right: 1em;
  color: #767065;
  font-size: 1.2em;
  vertical-align: middle;
}

@media screen and (max-width: 501px) {
  div.form_title,
  div.form_input {
    width: 92%;
    padding: 5px 4% 0;
  }
  div.form_item.namefield input {
    width: 45%;
  }

  div.pr01_in {
    width: 92%;
    padding: 0 4%;
  }
}

.listtable .count_note {
  font-size: 13px;
  color: #333;
}
