@charset "UTF-8";
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tfoot, thead, th, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

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

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #00449a;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

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

* {
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}
@media screen and (max-width: 961px) {
  .pc_fv {
    display: none !important;
  }
  .sp_fv {
    display: block !important;
  }
}
@media screen and (min-width: 902px) {
  .sp_fv {
    display: none !important;
  }
  .pc_fv {
    display: block !important;
  }
}
html {
  font-size: 62.5%;
}

body {
  line-height: 1;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", "Osaka", sans-serif, "ＭＳ Ｐゴシック", "MS PGothic";
  color: #333;
  -webkit-text-size-adjust: 100%;
  max-width: 1920px;
}

section {
  padding: 50px 0;
  background-color: #fff;
}
section .s_hdr {
  display: flex;
  width: 100%;
  align-items: center;
}
section .inner {
  width: min(1024px, 100vw - 12px);
  margin: 0 auto;
  max-width: 100%;
  padding: 0 10px;
}
section .inner::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 899px) {
  section {
    overflow: hidden;
    padding: 7vw 2vw;
  }
  section .inner {
    padding: 0 2vw;
  }
}

figure {
  width: 100%;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 0;
}
figure img {
  max-width: 100%;
  margin: 0 auto;
  line-height: 1;
}
figure:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  figure {
    margin-bottom: 7vw;
  }
}

p {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 1.5em;
  line-height: 1.65em;
}
p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 4.5vw;
  }
}

.slider {
  display: none;
}
.slider.slick-initialized {
  display: block;
}

.slider li img {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .slider li img {
    height: 17vw;
  }
}


.box_video {
  position: relative;
  width: 100%;
  height: 56.25%;
  padding: 56.25% 0 0 0;
  text-align: center;
}
.box_video .video_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  margin: 0 auto;
}
.box_video .video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ripple {
  position: relative;
  display: block;
}
.ripple img {
  max-width: 100%;
  margin: 0 auto;
}
.ripple span {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 55%;
  height: 100%;
  margin: auto;
  animation-name: rippleAnimation;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  border-radius: 100px;
  background-color: #176987;
  box-shadow: 0 0 5px white;
}
@media screen and (max-width: 767px) {
  .ripple span {
    width: 100%;
  }
}
@keyframes rippleAnimation {
  0% {
    transform: scale(1, 1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.1, 1.1);
    opacity: 0;
  }
}
.ripple2 {
  position: relative;
  display: block;
}
.ripple2 img {
  max-width: 100%;
  margin: 0 auto;
}
.ripple2 span.clr_1, .ripple2 span.clr_2 {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 70px;
  height: 70px;
  margin: auto;
  animation-name: rippleAnimation2;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  border-radius: 100%;
  box-shadow: 0 0 45px 1px #ff004a inset;
}
@media screen and (max-width: 767px) {
  .ripple2 span.clr_1, .ripple2 span.clr_2 {
    width: 10vw;
    height: 10vw;
}
}
.ripple2 span.clr_2 {
  animation-delay: 0.3s;
}
@keyframes rippleAnimation2 {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  80% {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
  100% {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
}
.bounce {
  position: relative;
}
.bounce::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100px;
  height: 50px;
  margin: 0 auto auto;
  content: "";
  background: url(../img/down.png) no-repeat center top;
  animation-name: bounce;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.Fade-In {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}
.Fade-In.Fade-In-2 {
  transition-delay: 0.2s;
}
.Fade-In.Fade-In-3 {
  transition-delay: 0.3s;
}
.Fade-In.Fade-In-4 {
  transition-delay: 0.4s;
}

.Fade-In-Down {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1s;
}
.Fade-In-Down.Fade-In-Down-2 {
  transition-delay: 0.2s;
}
.Fade-In-Down.Fade-In-Down-3 {
  transition-delay: 0.3s;
}
.Fade-In-Down.Fade-In-Down-4 {
  transition-delay: 0.4s;
}

.Fade-In-Left {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 1s;
}
.Fade-In-Left.Fade-In-Left-2 {
  transition-delay: 0.2s;
}
.Fade-In-Left.Fade-In-Left-3 {
  transition-delay: 0.3s;
}
.Fade-In-Left.Fade-In-Left-4 {
  transition-delay: 0.4s;
}

.Fade-In-Right {
  opacity: 0;
  transform: translateX(20px);
  transition: all 1s;
}
.Fade-In-Right.Fade-In-Right-2 {
  transition-delay: 0.2s;
}
.Fade-In-Right.Fade-In-Right-3 {
  transition-delay: 0.3s;
}
.Fade-In-Right.Fade-In-Right-4 {
  transition-delay: 0.4s;
}

.t_1 {
  color: #c00;
}

.t_2 {
  color: #c00;
}

.t_3 {
  color: #c00;
}

.t_4 {
  color: #c00;
}

.t_5 {
  color: #c00;
}

.t_1_b {
  padding: 0.1em;
  color: #c00;
  background-color: #ff0;
}

.t_2_b {
  padding: 0.1em;
  color: #c00;
  background-color: #ff0;
}

.t_3_b {
  padding: 0.1em;
  color: #c00;
  background-color: #ff0;
}

.t_4_b {
  padding: 0.1em;
  color: #c00;
  background-color: #ff0;
}

.t_5_b {
  padding: 0.1em;
  color: #c00;
  background-color: #ff0;
}

.t_lrg {
  font-size: 30px;
  font-size: 3rem;
}


.t_stg {
  font-weight: bold;
  font-size: 1.7vw;
	}
@media screen and (max-width: 768px) {
	.t_stg {
		font-size: 5.4vw;
		}
}

.t_ul {
  text-decoration: underline;
}

.t_c {
  text-align: center;
}

.t_r {
  text-align: right;
}

.t_r2 {
  text-align: right;
  padding-right: 5%;
  font-size: 1.5rem;
  margin-bottom: 3.5vw;
}

.t_l {
  text-align: left;
}

.f_l {
  float: left;
  margin-right: 1em;
  width: auto;
}

.f_r {
  float: right;
  margin-left: 1em;
  width: auto;
}

@media screen and (max-width: 768px) {
	.t_r2 {
		font-size: 2.0vw;
	}
  .f_l, .f_r {
    float: none;
    margin: 0 0 1em;
  }
}
.mb0 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.mb160 {
  margin-bottom: 160px !important;
}

.mb170 {
  margin-bottom: 170px !important;
}

.mb180 {
  margin-bottom: 180px !important;
}

.mb190 {
  margin-bottom: 190px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

.mb210 {
  margin-bottom: 210px !important;
}

.mb220 {
  margin-bottom: 220px !important;
}

.mb230 {
  margin-bottom: 230px !important;
}

.mb240 {
  margin-bottom: 240px !important;
}

.mb250 {
  margin-bottom: 250px !important;
}

.mb260 {
  margin-bottom: 260px !important;
}

.mb270 {
  margin-bottom: 270px !important;
}

.mb280 {
  margin-bottom: 280px !important;
}

.mb290 {
  margin-bottom: 290px !important;
}

.mb300 {
  margin-bottom: 300px !important;
}

.mt80 {
	margin-top: 40px !important;
}

@media (max-width:960px) {
.mt80 {
	margin-top: 7px !important;
}
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb5 {
  padding-bottom: 3px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb110 {
  padding-bottom: 110px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

.pb130 {
  padding-bottom: 130px !important;
}

.pb140 {
  padding-bottom: 140px !important;
}

.pb150 {
  padding-bottom: 150px !important;
}

.pb160 {
  padding-bottom: 160px !important;
}

.pb170 {
  padding-bottom: 170px !important;
}

.pb180 {
  padding-bottom: 180px !important;
}

.pb190 {
  padding-bottom: 190px !important;
}

.pb200 {
  padding-bottom: 200px !important;
}

.pb210 {
  padding-bottom: 210px !important;
}

.pb220 {
  padding-bottom: 220px !important;
}

.pb230 {
  padding-bottom: 230px !important;
}

.pb240 {
  padding-bottom: 240px !important;
}

.pb250 {
  padding-bottom: 250px !important;
}

.pb260 {
  padding-bottom: 260px !important;
}

.pb270 {
  padding-bottom: 270px !important;
}

.pb280 {
  padding-bottom: 280px !important;
}

.pb290 {
  padding-bottom: 290px !important;
}

.pb300 {
  padding-bottom: 300px !important;
}

.padding_20 {
	padding-bottom: 2.0em;
}

.w2 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w3 {
  width: 30%;
}

.w35 {
  width: 35%;
}

.w4 {
  width: 40%;
}

.w45 {
  width: 45%;
}

.w5 {
  width: 50%;
}

.w55 {
  width: 55%;
}

.w6 {
  width: 60%;
}

.w65 {
  width: 65%;
}

.w7 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w8 {
  width: 80%;
}

.w85 {
  width: 85%;
}

.w9 {
  width: 90%;
}

.w95 {
  width: 95%;
}

.w33 {
  width: 33%;
}

.f_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.f_box.gtr .w2 {
  width: 18%;
}
.f_box.gtr .w3 {
  width: 28%;
}
.f_box.gtr .w4 {
  width: 38%;
}
.f_box.gtr .w5 {
  width: 48%;
}
.f_box.gtr .w6 {
  width: 58%;
}
.f_box.gtr .w7 {
  width: 68%;
}
.f_box.gtr .w8 {
  width: 78%;
}
.f_box.gtr .w9 {
  width: 88%;
}
.f_box.gtr .w25 {
  width: 23%;
}
.f_box.gtr .w35 {
  width: 33%;
}
.f_box.gtr .w45 {
  width: 43%;
}
.f_box.gtr .w55 {
  width: 53%;
}
.f_box.gtr .w65 {
  width: 63%;
}
.f_box.gtr .w75 {
  width: 73%;
}
.f_box.gtr .w85 {
  width: 83%;
}
.f_box.gtr .w95 {
  width: 93%;
}
.f_box.gtr .w33 {
  width: 31%;
}
.f_box.flw {
  flex-flow: wrap;
}
.f_box.r_rvs {
  flex-flow: row-reverse;
}
.f_box.w_rvs {
  flex-flow: wrap-reverse;
}
@media screen and (max-width: 767px) {
  .f_box {
    flex-flow: column;
  }
  .f_box.gtr .w2, .f_box.gtr .w3, .f_box.gtr .w4, .f_box.gtr .w5, .f_box.gtr .w6, .f_box.gtr .w7, .f_box.gtr .w8, .f_box.gtr .w9, .f_box.gtr .w25, .f_box.gtr .w35, .f_box.gtr .w45, .f_box.gtr .w55, .f_box.gtr .w65, .f_box.gtr .w75, .f_box.gtr .w85, .f_box.gtr .w95, .f_box.gtr .w33 {
    width: 100%;
    margin-bottom: 30px;
  }
  .f_box.flw {
    flex-flow: wrap;
  }
  .f_box.r_rvs {
    flex-flow: column;
  }
  .f_box.w_rvs {
    flex-flow: column;
  }
}

footer {
  text-align: center;
  background-color: #c00;
  padding: 1em;
  line-height: 1.65em;
}




.sec_3 {
  /* background-color: #fff7ef; */
  background: #e1e7e6 url(../img/bg_06.webp) no-repeat center top;
}

.box_1 {
  max-width: 935px;
  width: 100%;
  margin: 8% auto 0;
  box-shadow: 0 0 6px rgba(153, 153, 153, 0.4);
  background-color: #fff;
}
.box_1 .item {
  float: left;
  padding: 0 30px;
  position: relative;
  width: 210px;
}
.box_1 .item figure.face {
  margin-bottom: 15px;
  width: 150px;
  height: 150px;
}
.box_1 .item figure.face img {
  margin-top: -10px;
}
.box_1 .item .name {
  display: flex;
  align-items: center;
  position: absolute;
  width: 160%;
}
.box_1 .item .name figure {
  width: 46%;
  margin-bottom: 0;
}
.box_1 .item .name span {
  width: 100%;
  font-weight: 700;
  font-family: "メイリオ" sans-serif !important;
  font-size: 23.5px;
  margin-left: 10px;
  padding-bottom: 2px;
}
.box_1 h3 {
  background-color: #c3445a;
  font-size: 23.5px;
  font-family: "メイリオ" sans-serif !important;
  font-weight: 500;
　font-color: #ffffff;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  padding: 0.8em 0.5em;
  margin-bottom: 3em;
}

.box_1 h3.pd {
  padding: 1.5em 0.5em;
}
.box_1 p {
  font-size: 18px;
  padding: 0 1.5em 2em;
  
}
@media screen and (max-width: 900px) {
  .sec_3 {
  background-size: 211%;
  }
.box_1 h3 {
  font-family: "メイリオ" sans-serif !important;
	}
.box_1 .item figure.face.ex {
  height: 190px;
}
.box_1 .item figure.face.ex2 {
  height: 230px;
}
}


@media screen and (max-width: 767px) {
  .box_1 .item {
    float: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5vw;
  }

	
  .box_1 .item figure.face {
    width: 30%;
    margin: 0 0 -5px;
    height: auto;
  }
  .box_1 .item figure.face.ex {
    height: auto;
  }
  .box_1 .item figure.face img {
    margin-top: -5px;
  }
  .box_1 .item .name {
    width: 66%;
    position: relative;
  }
  .box_1 .item .name figure {
    width: 30%;
  }
  .box_1 .item .name span {
    width: 90%;
    font-size: 4.7vw;
  }
  .box_1 h3 {
    font-size: 5vw;
    padding: 1em;
    line-height: 1.65em;
    margin-bottom: 1em;
  }
  .box_1 h3.pd {
    padding: 1em;
  }
  .box_1 p {
    font-size: 4.5vw;
  }
}

.box_1-1 {
  max-width: 935px;
  width: 100%;
  margin: 8% auto 0;
  box-shadow: 0 0 6px rgba(153, 153, 153, 0.4);
  background-color: #fff;
}
.box_1-1 .item {
  float: left;
  padding: 0 30px;
  position: relative;
  width: 210px;
}
.box_1-1 .item figure.face {
  margin-bottom: 15px;
  width: 150px;
  height: 150px;
}
.box_1-1 .item figure.face img {
  margin-top: -10px;
}
.box_1-1 .item .name {
  display: flex;
  align-items: center;
  position: absolute;
  width: 217%;
}
.box_1-1 .item .name figure {
  width: 30%;
  margin-bottom: 0;
}
.box_1-1 .item .name span {
  width: 100%;
  font-weight: 700;
  font-family: "メイリオ" sans-serif !important;
  font-size: 23.5px;
  margin-left: 10px;
  padding-bottom: 2px;
}
.box_1-1 h3 {
  background-color: #c3445a;
  font-size: 23.5px;
  font-family: "メイリオ" sans-serif !important;
  font-weight: 500;
  text-decoration-color: white;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  padding: 0.8em 0.5em;
  margin-bottom: 3em;
}

.box_1-1 h3.pd {
  padding: 1.5em 0.5em;
}
.box_1-1 p {
  font-size: 18px;
  padding: 0 1.5em 2em;
}
@media screen and (max-width: 900px) {
  .sec_3 {
  background-size: 211%;
  }
.box_1-1 .item figure.face.ex {
  height: 190px;
}
.box_1-1 .item figure.face.ex2 {
  height: 230px;
}
}


@media screen and (max-width: 767px) {
  .box_1-1 .item {
    float: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5vw;
  }

	
  .box_1-1 .item figure.face {
    width: 30%;
    margin: 0 0 -5px;
    height: auto;
  }
  .box_1-1 .item figure.face.ex {
    height: auto;
  }
  .box_1-1 .item figure.face img {
    margin-top: -5px;
  }
  .box_1-1 .item .name {
    width: 66%;
    position: relative;
  }
  .box_1-1 .item .name figure {
    width: 30%;
  }
  .box_1-1 .item .name span {
    width: 70%;
    font-size: 4.5vw;
  }
  .box_1-1 h3 {
    font-size: 5vw;
    padding: 1em;
    line-height: 1.65em;
    margin-bottom: 1em;
  }
  .box_1-1 h3.pd {
    padding: 1em;
  }
  .box_1-1 p {
    font-size: 4.5vw;
  }
}



.sec_hb {
  background: url("../img/bg_hi2.webp") no-repeat center top;
  padding-bottom: 0.1em;
}
.sec_hb .inner {
  overflow: visible;
}
.sec_hb .inner figure {
  text-align: left;
}
.sec_hb .inner figure img {
  margin-top: -80px;
}
@media screen and (max-width: 767px) {
  .sec_hb {
	background: url(../img/bg_hi2_sp.webp) no-repeat center top;
    background-size: 180% auto;
  }
  .sec_hb .inner figure img {
    margin-top: -20vw;
  }
}

.sec_4 {
  background: #f5f7f4 url(../img/bg_02.webp) no-repeat center top;
}
.sec_4 .arw {
  margin-bottom: -20px;
}
@media screen and (max-width: 767px) {
  .sec_4 {
    background-size: 180% auto;
  }
  .sec_4 .ttl img {
    width: 88%;
  }
  .sec_4 .arw {
    margin-bottom: -14px;
  }
  .sec_4 .arw img {
    width: 4%;
  }
}

.box_2 {
  background-color: #fff;
  padding: 3%;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .box_2 {
    padding: 8% 3% 3%;
  }
}

.sec_5 {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .sec_5 .ttl img {
    width: 90%;
  }
}

.box_3 {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
}
.box_3 .img {
  width: 34%;
  position: relative;
  margin-top: 1.5%;
}
.box_3 .img img {
  width: 110%;
  max-width: 110%;
}
.box_3 .txt {
  width: 64%;
  padding: 3%;
  text-align: left;
}
.box_3.rvs {
  flex-flow: row-reverse;
  margin-top: -5%;
  margin-bottom: 4%;
}
.box_3.rvs .img {
  margin-top: 0;
}
.box_3.rvs .img img {
  margin-left: -10%;
}
.box_3.rvs .txt {
  margin-top: 8.5%;
  z-index: 1;
}
.box_3:nth-of-type(1) .txt {
  background-color: #d4e782;
}
.box_3:nth-of-type(2) .txt {
  background-color: #fcc1a7;
}
.box_3:nth-of-type(3) .txt {
  background-color: #fff1e4;
}
@media screen and (max-width: 767px) {
  .box_3 {
    flex-flow: column;
    margin-bottom: 6%;
  }
  .box_3 .img {
    width: 60%;
    margin-left: 0;
    margin-bottom: -3%;
  }
  .box_3 .txt {
    width: 94%;
    margin-right: 0;
  }
  .box_3.rvs {
    flex-flow: column;
    margin-top: 0;
    margin-bottom: 6%;
  }
  .box_3.rvs .img {
    z-index: 2;
    margin: 0 0 0 auto;
  }
  .box_3.rvs .img img {
    margin-left: -10%;
  }
  .box_3.rvs .txt {
    z-index: 1;
    width: 94%;
    margin: -3% auto 0 0;
  }
}

.sec_nayami {
  background: url(../img/bg_nayami.webp) no-repeat center top;
  background-size: cover;
  padding-bottom: 6%;
}
.sec_nayami figure {
    margin-bottom: 8%;
}
.sec_nayami ul {
    padding: 0 30px;
}
.sec_nayami p {
    color: #fff;
	font-size: 18px;
}
  @media screen and (max-width:767px) {
 .sec_nayami {
	background: url(../img/bg_nayami_sp.webp) no-repeat right top;
    background-size: cover;
  }
	.sec_nayami p {
	font-size: 3.0vw;
}
	.sec_nayami figure {
    margin-bottom: 4%;
}
}

.li_chk {
	max-width: 530px;
}
.li_chk li {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8em;
    background: url(../img/icon_chk.png.webp) no-repeat left;
    border-bottom: #fff dashed 1px;
    padding: .7em .5em .7em 2em;
    color: #fff;
}
.li_chk li :last-child {
      border: none;
    }

  @media screen and (max-width:768px) {
    .li_chk li {
      font-size: 4.5vw;
      background-size: 6.5vw auto;
      border-bottom: #ccc dashed 1px;
	  }
	.li_chk li br {
        display: none;
      }
    }

.sec_6 {
  background: #c9cfce url(../img/bg_03.webp) no-repeat center top;
}


@media screen and (max-width: 767px) {
  .sec_6 {
    background-size: 180% auto;
  }
  .sec_6 .box_4 p{
font-size: 4.5vw;
  }
}

.box_4 {
  background-color: #fff;
  padding: 3%;
  position: relative;
  margin-top: 8%;
}
.box_4 .pnt {
  position: absolute;
  top: -15px;
  left: 3%;
  width: auto;
}
.box_4 .num {
  position: absolute;
  top: -20px;
  right: 3%;
  width: auto;
}
.box_4 h3 {
  color: #27a1cd;
  font-family: "Noto Serif JP";
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 1em;
}
.box_4 .f_r {
  margin-bottom: 0;
}
.box_4::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 767px) {
  .box_4 {
    margin-top: 12%;
    padding-top: 7%;
  }
  .box_4 .pnt {
    width: 26%;
    top: -2.3%;
  }
  .box_4 .num {
    width: 20%;
  }
  .box_4 h3 {
    font-size: 5.3vw;
    line-height: 1.5em;
  }
  .box_4 .f_r {
    margin-bottom: 1em;
  }
}


.sec_3kan {
  background: #eed5d0;
}
.sec_3kan p {
  font-weight: 700;
  font-family: "Noto Serif JP";
  font-size: 15px;
  line-height: 2em;
  max-width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec_3kan .ttl img {
    width: 90%;
  }
  .sec_3kan p {
    font-size: 10px;
    max-width: 100%;
  }
}

.sec_8 {
   background-color: #e1e7e6;
  /*
  background: linear-gradient(to right, #dd0860, #f05656);
  background: -moz-linear-gradient(left, #dd0860, #f05656);
  background: -webkit-linear-gradient(left, #dd0860, #f05656);
	*/
}


.sec_9 {
  background: #f8f8f8 no-repeat center top;
}
.sec_9 .inner {
  overflow: visible;
}
@media screen and (max-width: 767px) {
.sec_9 {
	background-size: 180% auto;
   }
	.sec_9 .ttl img {
    width: 80vw;
  }
}

.box_b {
  background-image: url("../img/bg_08.webp");
  background-color: #c9cfce;
  padding: 3%;
  box-shadow: 0 0 5px #c3c3c3;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .box_b .w3 {
    display: none;
  }
}



.box_5 {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
}
.box_5 .img {
  width: 24%;
  position: relative;
  margin-top: 2%;
  margin-bottom: 0;
}
.box_5 .img img {
  width: 110%;
  max-width: 110%;
}
.box_5 .txt {
  width: 76%;
  padding: 3% 3% 3% 5%;
}
.box_5 .txt figure {
  text-align: left;
  margin-bottom: 10px;
}
.box_5 .txt p {
  font-size: 18px;
}
.box_5.rvs {
  flex-flow: row-reverse;
}
.box_5.rvs .img img {
  margin-left: -10%;
}
.box_5.rvs .txt {
  padding: 3% 5% 3% 3%;
}
.box_5:nth-of-type(1) .txt {
  background-color: #e3f0f5;
}
.box_5:nth-of-type(2) .txt {
  background-color: #ffeaea;
}
.box_5:nth-of-type(3) .txt {
  background-color: #fff1e4;
}
.box_5 + .box_5 {
  margin-top: 5%;
}
@media screen and (max-width: 767px) {
  .box_5 .txt figure img {
    height: 4.5em;
  }
  .box_5 .txt p {
    font-size: 3.8vw;
  }
}




footer {
  background-color: #dd0860;
  background: linear-gradient(to right, #dd0860, #f05656);
  background: -moz-linear-gradient(left, #dd0860, #f05656);
  background: -webkit-linear-gradient(left, #dd0860, #f05656);
  color: #fff;
}
footer a {
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer {
    font-size: 3.4vw;
  }
}
/*# sourceMappingURL=map/style.css.map */

.txtpart1 h1 {
	color: #CA5557;
	font-size: 2.0em;
	margin-bottom: 1.0em;
	padding: 0.5em;
	border-top: 3px dashed #CA5557;
	border-bottom: 3px dashed #CA5557;
	text-align: center;
	line-height:1.2;
}
.txtpart1 h2 {
	color: #54b6da;
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 0.5em;
	border-bottom: 3px dotted #54b6da;
	padding-bottom: 0.1em;
}

@media screen and (max-width: 767px) {
.txtpart1 h1 {
	font-size: 1.0em;
	line-height: 1.1em
}
.txtpart1 h2 {
	font-size: 1.0em;
	line-height: 1.1em
}
}


.txtpart2 h1 {
	color: #54b6da;
	font-size: 2.0em;
	margin-bottom: 1.0em;
	padding: 0.5em;
	border-top: 3px dashed #54b6da;
	border-bottom: 3px dashed #54b6da;
	text-align: center;
	line-height:1.2;
}

@media screen and (max-width: 767px) {
.txtpart2 h1 {
	font-size: 1.0em;
	line-height: 1.1em
}
}

.txtpart2 h2 {
	color: #54b6da;
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 0.5em;
	border-bottom: 3px dotted #54b6da;
	padding-bottom: 0.1em;
}

@media screen and (max-width: 767px) {
.txtpart2 h2 {
	font-size: 1.0em;
	line-height: 1.1em
}
}


.txtpart3 h1 {
	color: #333;
	font-size: 2.0em;
	margin-bottom: 1.0em;
	padding: 0.5em;
	border-top: 3px dashed #CA5557;
	border-bottom: 3px dashed #CA5557;
	text-align: center;
	line-height:1.2;
}

@media screen and (max-width: 767px) {
.txtpart3 h1 {
	font-size: 1.0em;
	line-height: 1.1em
}
}

.txtpart3 h2 {
	color: #CA5557;
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 0.5em;
	border-bottom: 4px double #CA5557;
	padding-bottom: 0.1em;
}

@media screen and (max-width: 767px) {
.txtpart3 h2 {
	font-size: 1.0em;
	line-height: 1.1em
}
}

.border_box {
	color: #555555;
	width: 100%;
	padding: 1em;
	padding-left: 1.5em;
	box-sizing: border-box;
	display: inline-block;
	background-color: #FFFFFF;
	border: 4px #F19EB4 dotted;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

@media (max-width: 960px) {
.border_box {
	color: #555555;
	width: 100%;
	padding: 0.7em;
	box-sizing: border-box;
	display: inline-block;
	background-color: #FFFFFF;
	border: 4px #F19EB4 dotted;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
}

/*------------------------------------------------
	セミナー開催日の表 
-------------------------------------------------*/

.schedule_box {
  margin: 0 0 30px 0;
  padding: 0 0 15px 0;
  border: solid 5px #ff999c;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.schedule_subtitle {
  margin: 0;
  padding: 0;
  text-align: center;
}
.schedule_subtitle img {
  width: 90%;
}
.schedule_btn {
  margin: 0;
  padding: 0;
  text-align: center;
}
.schedule_btn img {
  width: 95%;
}
.schedule_caption {
  margin: 0;
  padding: 0;
  padding-left: 10px;
  font-size: 70%;
  line-height: 150%;
  text-align: center;
}
.schedule_present {
  margin: 20px 0 0 0;
  padding: 0;
  text-align: center;
}
.schedule_present img {
  width: 100%;
}
.schedule_detail {
  margin: 0;
  padding: 5px;
}
.schedule_detail table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.schedule_detail table th {
  font-size: 100%;
  font-weight: normal;
  line-height: 150%;
  padding: 10px 0 10px 0;
  border: solid 1px #ccc;
  color: #fff;
  background-color: #666;
}
.schedule_detail table td {
  font-size: 94%;
  line-height: 150%;
  padding: 10px 1px;
  text-align: center;
  font-weight: bold;
  border: solid 1px #ccc;
}
@media screen and (min-width: 769px) {
  .schedule_subtitle img {
    width: 80%;
  }
  .schedule_btn img {
    width: 80%;
  }
  .schedule_caption {
    font-size: 18px;
  }
  .schedule_present {
    margin: 30px 0 0 0;
  }
  .schedule_present img {
    width: 100%;
  }
  .schedule_detail {
    padding: 15px;
  }
  .schedule_detail table th {
    font-size: 24px;
    font-weight: bold;
    padding: 15px 0;
  }
  .schedule_detail table td {
    font-size: 24px;
    font-weight: bold;
    padding: 15px 0;
  }
}


/*------------------------------------------------
	Fonts
-------------------------------------------------*/

.center {
	text-align: center;
}

.color_red {
	color: #e30000;
	font-weight: bold;
}

.color_pink {
	color: #CA5557;
	font-weight: bold;
}

.color_blue {
	color: #27a1cd;
	font-weight: bold;
}

.color_white {
	color: #ffffff !important;
}

.b01a {
        background-color: #ffffff;
      	color: #F19EB4;
        width: 100%; 
        text-align: left;
	font-size: x-large;
	font-weight: bold;
        line-height: 1.5;
}
.marker3 {
	 background: linear-gradient(transparent 50%, #FFB4B4 70%);
	font-weight: bold
}

.font_l {
	font-size: 2.5em;
}
.font_m {
	font-size: 1.8em;
}
.font_s {
	font-size: 1.0em;
}

@media (max-width: 960px) {
	.font_l {
		font-size: 1.5em;}
	.font_m {
		font-size: 1.0em;}
	.font_s {
	font-size: 0.8em;}
}

@media screen and (min-width: 960px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 960px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}

.lineadjust {
line-height: 160%;
}

/*.subttl_1{
	display: inline-block; 
    height: 100px;
}

.subttl_2{
	display: inline-block; 
    height: 130px;
}

.subttl_3{
	display: inline-block; 
    height: 180px;
}

.subttl_1 img {
    height: 100%;
}

.subttl_2 img {
    height: 100%;
}

.subttl_3img {
    height: 100%;
}*/

/*------------------------------------------------
	Video
-------------------------------------------------*/

.video-container {
 	position: relative;
 	padding-bottom: 56.25%;
 	height: 0;
 	overflow: hidden;
	margin: 1em;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.image_radius {
	border-radius: 50%;
}

.balloon_l,
.balloon_r{
	margin: 30px 0;
	display:flex;
	justify-content: flex-start;
	align-items: flex-start;
/*   align-items: center;  */
}

.balloon_r{
	justify-content:flex-end;
}

.faceicon img{
	width: 80px;
	height: auto;
}

.balloon_r .faceicon{
	margin-left:25px;
}

.balloon_l .faceicon{
	margin-right:25px;
}

.balloon_r .faceicon{
	order:2 !important;
}

.says {
	max-width:800px;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	padding: 17px 13px 15px 18px;
	border-radius: 12px;
	background: #07b53b;
	box-sizing:border-box;
	margin:0 !important;
	line-height:1.5;
	color: #FFFFFF;
/*   align-items: center;  */
}

.says p{
	margin:8px 0 0 !important; 
}

.says p:first-child{
	margin-top:0 !important;
}

.says:after {
	content: "";
	position: absolute;
	border: 10px solid transparent;
/*   margin-top:-3px;  */
}

.balloon_l .says:after {
	left: -26px;
	border-right: 22px solid #07b53b;
}

.balloon_r .says:after {
	right: -26px;
	border-left: 22px solid #07b53b;
}

.says2 {
	max-width:800px;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	padding: 17px 13px 15px 18px;
	border-radius: 12px;
	background: #FC9CAD;
	box-sizing:border-box;
	margin:0 !important;
	line-height:1.5;
	color: #000000;
/*   align-items: center;  */
}

.says2 p{
	margin:8px 0 0 !important; 
}

.says2 p:first-child{
	margin-top:0 !important;
}

.says2:after {
	content: "";
	position: absolute;
	border: 10px solid transparent;
/*   margin-top:-3px;  */
}

.balloon_l .says2:after {
	left: -26px;
	border-right: 22px solid #FC9CAD;
}

.balloon_r .says2:after {
	right: -26px;
	border-left: 22px solid #FC9CAD;
}

.side_btn {
	max-width: 200px;
	text-align: right;
	vertical-align: bottom;
	position: fixed !important;
	position: absolute;
	bottom: 0.5em;
	right: 0.5em;
	z-index: 99999;
	display: inline-block;
}

@media (max-width: 640px) {
.side_btn {
	display: none;
}
}

.smp_btn {
	display: none;
}

@media (max-width: 640px) {
.smp_btn {
	position: fixed;
	bottom: 0; 
	left: 0;
	display: inline-block;
	z-index: 100;
}
}

.smp {
	display: none;
}

@media screen and (max-width: 767px) {
.smp {
	display: block;
}
}
