@charset "utf-8";

/* -------------------------------------------------- */
/* global */
html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  background: #fff;
  color: #4C4948;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0em;
}

a:hover {
	opacity: 0.6;
  transition: all 0.3s ease;
}

.pc-none{
  display: none;
}
.sp-none {
  display: initial;
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: initial;
  }
  .sp-none {
    display: none;
  }
}

/* -------------------------------------------------- */
/* header */
#header .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 50px;
  width: 100%;
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  #header .row {
    width: 90%;
    max-width: 90%;
    padding: 0;
    padding-bottom: 15px;
  }
}

#header h1 {
  font-size: 1.2rem;
  line-height: 1;
  padding: 10px 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #header h1 {
    line-height: 1.35;
  }
}

.header-logo {
  width: 50%;
  padding: 5px 0;
}
@media screen and (max-width: 767px) {
  .header-logo {
    width: 30%;
    padding: 0;
  }
  .header-logo img {
    width: 85%;
  }
}

.header-tel {
  text-align: right;
  width: 50%;
  font-size: 1.8rem;
  line-height: 2;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .header-tel {
    width: 50%;
    padding: 0;
    line-height: 1;
  }
  .header-tel img {
    width: 100%;
  }
  .header-tel p {
    font-size: 3vw;
    line-height: 1.6;
    text-align: right;
    padding-top: 5px;
  }
}


/* -------------------------------------------------- */
/* mv */
#mv {
  position: relative;
}

.mv-text {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 930px;
  transform: translate(-50%,-50%);
}
@media screen and (max-width: 1024px) {
  .mv-text {
    width: 560px;
  }
}
@media screen and (max-width: 767px) {
  .mv-text {
    display: none;
  }
}

.mv-text-title {
  color: #6CA6AD;
  text-align: center;
  font-size: 14rem;
  line-height: 1.1;
  font-weight: 900;
}
@media screen and (max-width: 1024px) {
  .mv-text-title {
    font-size: 8.5rem;
  }
}

.mv-text-title_bottom {
  font-size: 6rem;
  line-height: 1.4;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1024px) {
  .mv-text-title_bottom {
    font-size: 3.7rem;
  }
}

.mv-text-icon-wrap {
  display: flex;
  margin-top: 30px;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .mv-text-icon-wrap {
    margin-top: 10px;
  }
}

.mv-text-icon {
  width: 170px;
  height: 170px;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  background-color: #F3BC41;
  color: #FFFFFF;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .mv-text-icon {
    width: 100px;
    height: 100px;
    font-size: 1.7rem;
    line-height: 1.4;
  }
}

.mv-text-icon_02 {
  background-color: #DD84A9;
}

.mv-text-icon_03 {
  background-color: #AFC35B;
}

.mv-text-icon_04 {
  background-color: #6CA6AD;
}

.mv-text-icon_05 {
  background-color: #B1A6CD;
}

.mv-image {
  background: url(../images/mv-image.jpg) no-repeat top center;
  background-size: cover;
  height: 780px;
}
@media screen and (max-width: 1024px) {
  .mv-image {
    height: 480px;
  }
}
@media screen and (max-width: 767px) {
  .mv-image {
    height: auto;
    background: none;
  }
}

.mv-image img {
  display: none;
}
@media screen and (max-width: 767px) {
  .mv-image img {
    display: block;
    width: 100%;
  }
}


/* -------------------------------------------------- */
/* sec01 */
#sec01 {
  margin-top: 60px;
  margin-bottom: 95px;
}
@media screen and (max-width: 767px) {
  #sec01 {
    background: url(../images/sec01-back-sp.png) no-repeat top 30px center;
    background-size: 95%;
    margin-top: 20px;
    margin-bottom: 25px;
  }
  .sec01-title {
    height: 65vw;
  }
}

.sec01-title h2 {
  font-size: 4.7rem;
  line-height: 1.5;
  text-align: center;
  color: #8D7654;
  font-weight: 700;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec01-title h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .sec01-title h2 {
    font-size: 4.7vw;
  }
}

.sec01-title h2 span {
  color: #DD84A9;
}

.sec01-content {
  background: url(../images/sec01-back.png) no-repeat top center;
  background-size: contain;
  height: 1400px;
  margin-top: 85px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .sec01-content {
    background-size: cover;
  }
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec01-content {
    height: 1000px;
  }
}
@media screen and (max-width: 767px) {
  .sec01-content {
    background: none;
    height: auto;
    margin-top: 0;
  }

}

.sec01-content-list_wrap {
  width: 450px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec01-content-list_wrap {
    width: 420px;
  }
}
@media screen and (max-width: 767px) {
  .sec01-content-list_wrap {
    width: 300px;
    position: relative;
    transform: none;
    top: initial;
    left: initial;
    margin: 0 auto;
  }
}

.sec01-content-list {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.2;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec01-content-list {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .sec01-content-list {
    font-size: 14px;
    line-height: 2.6;
  }
}

.sec01-content-list li {
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec01-content-list li {
    padding-left: 30px;
  }  
}

.sec01-content-list li::before {
  content: "";
  width: 28px;
  height: 28px;
  background: url(../images/sec01-list-icon.png) no-repeat center center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .sec01-content-list li::before {
    width: 20px;
    height: 20px;
    background-size: contain;
  }
}


/* -------------------------------------------------- */
/* sec02 */
.sec02-btn_wrap {
  background-color: #DD84A9;
  padding: 80px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec02-btn_wrap {
    padding: 28px;
  }
}

.sec02-btn img {
  width: 90%;
  margin: 0 auto;
  max-width: 865px;
}


/* -------------------------------------------------- */
/* sec03 */
#sec03 {
  background-size: auto auto;
  background-color: rgba(242, 242, 242, 1);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(255, 255, 255, 1) 10px, rgba(255, 255, 255, 1) 15px );
}

.sec03-wrap {
  background: url(../images/sec03-back.png) no-repeat center top;
  background-size: auto;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .sec03-wrap {
    background-size: contain;
    padding-bottom: 30px;
  }
}

.sec03-title h2 {
  padding-top: 90px;
  text-align: center;
  font-size: 4.7rem;
  font-weight: 700;
  color: #8D7654;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec03-title h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .sec03-title h2 {
    padding-top: 25px;
    font-size: 4.7vw;
    line-height: 1.4;
  }
}

.sec03-title span {
  font-size: 9.4rem;
  color: #DD84A9;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec03-title span {
    font-size: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .sec03-title span {
    font-size: 9.4vw;
  }
}

.sec03-content_wrap {
  background-color: #FFFFFF;
  border-radius: 13px;
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, .1);
  width: 90%;
  max-width: 1000px;
  margin: 17px auto;
}
@media screen and (max-width: 767px) {
  .sec03-content_wrap {
    margin: 30px auto;
  }
  .sec03-wrap div.sec03-content_wrap:nth-of-type(2) {
    margin: 17px auto;
  }
}

.sec03-content01 {
  padding: 40px 0 80px 0;
}
@media screen and (max-width: 767px) {
  .sec03-content01 {
    padding: 25px 0 20px 0;
  }
}

.sec03-content01_title {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .sec03-content01_title-left,
  .sec03-content01_title-right {
    width: 5%;
  }
  .sec03-content01_title-left img,
  .sec03-content01_title-right img {
    width: 100%;
  }
}

.sec03-content01_title-center h3 {
  font-size: 3.7rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #8D7654;
  margin: 0 40px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec03-content01_title-center h3 {
    font-size: 3rem;
    margin: 10px 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .sec03-content01_title-center h3 {
    font-size: 3.7vw;
    margin: 0 3vw;
  }
}

.sec03-content01_member {
  padding: 30px 50px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .sec03-content01_member {
    padding: 15px;
  }
}

.sec03-content01_member img {
  margin: 20px 10px;
  width: calc(25% - 20px);
}
@media screen and (max-width: 767px) {
  .sec03-content01_member img {
    margin: 10px 5px;
    width: calc(25% - 10px);
  }
}

.sec03-content02 {
  padding: 40px 30px 30px;
}
@media screen and (max-width: 767px) {
  .sec03-content02 {
    padding: 25px 15px 20px;
  }
}

.sec03-content02_title h3 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec03-content02_title h3 img {
    width: 90%;
  }
}

.sec03-content02_list {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .sec03-content02_list {
    flex-wrap: wrap;
    margin-top: 25px;
  }
}

.sec03-content02_item {
  width: 33%;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec03-content02_item {
    width: 32%;
  }
  .sec03-content02_item img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec03-content02_item {
    width: 100%;
    margin-bottom: 20px;
    align-items: center;
  }
  .sec03-content02_item img {
    width: 40%;
    margin-right: 5%;
  }
  .sec03-content02_item:nth-of-type(1) img,
  .sec03-content02_item:nth-of-type(3) img {
    width: 35%;
    margin-left: 5%;
  }
}

.sec03-content02_item-text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  margin-top: 30px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec03-content02_item-text {
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .sec03-content02_item-text {
    width: 50%;
    margin: 0;
    font-size: 3vw;
    text-align: left;
  }
}

.sec03-content02_item-01 .sec03-content02_item-text {
  margin-top: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .sec03-content02_item-01 .sec03-content02_item-text {
    margin: 0;
    font-size: 3vw;
    text-align: left;
  }
}

.sec03-content03_title {
  display: flex;
  justify-content: center;
}

.sec03-content_wrap-no {
  margin-top: 80px;
  background-color: transparent;
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .sec03-content_wrap-no {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  .sec03-content03_title-left,
  .sec03-content03_title-right {
    width: 10%;
  }
  .sec03-content03_title-left img,
  .sec03-content03_title-right img {
    width: 100%;
  }
}

.sec03-content03_title-center {
  text-align: center;
  margin: 0 20px;
}

.sec03-content03_title-center h3 {
  font-size: 4.6rem;
  line-height: 1.6;
  color: #8D7654;
  font-weight: 700;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec03-content03_title-center h3 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .sec03-content03_title-center h3 {
    font-size: 4.6vw;
  }
}


.sec03-content03_title-center h3 span {
  color: #DD84A9;
}

.sec03-content03_item {
  margin: 30px 0 0;
  text-align: center;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec03-content03_item img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec03-content03_item img {
    width: 90%;
  }
}


/* -------------------------------------------------- */
/* sec04 */
#sec04 {
  margin-top: 60px;
  background: url(../images/sec04-back.png) no-repeat center top;
  background-size: auto;
  padding-bottom: 100px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  #sec04 {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  #sec04 {
    margin-top: 30px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 25px;
  }
}

.sec04-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.sec04-title_icon {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .sec04-title_icon {
    margin-bottom: 20px;
  }
}

.sec04-title_center {
  margin: 0 30px;
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .sec04-title_center {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec04-title_center {
    margin: 0 15px;
    font-size: 4.7vw;
    line-height: 1;
  }
}

.sec04-title_center h2 {
  font-size: 4.7rem;
  line-height: 0.6;
  color: #8D7654;
  font-weight: 700;
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .sec04-title_left,
  .sec04-title_right {
    width: 20%;
  }
  .sec04-title_left img,
  .sec04-title_right img {
    width: 100%;
  }
  .sec04-title_center h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .sec04-title_left,
  .sec04-title_right {
    width: 15%;
    font-size: 4.7vw;
    line-height: 1;
  }
  .sec04-title_left img,
  .sec04-title_right img {
    width: 100%;
  }
  .sec04-title_center h2 {
    font-size: 4.7vw;
  }
}

.sec04-text {
  width: 60%;
  margin: 45px auto;
  text-align: left;
  font-size: 1.5rem;
  line-height: 2;
  color: #4C4948;
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .sec04-text {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .sec04-text {
    width: 100%;
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

.sec04-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1000px;
  margin: 60px auto;
}
@media screen and (max-width: 767px) {
  .sec04-content {
    margin: 25px auto;
  }
}

.sec04-content-iten {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .sec04-content-iten {
    width: 45%;
  }
  .sec04-content-iten:nth-of-type(1) {
    margin-left: 25%;
    margin-right: 25%;
    margin-bottom: 20px;
  }
}

.sec04-content-iten img {
  width: 100%;
}

.sec04-text02 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  color: #4C4948;
  font-size: 1.9rem;
}
@media screen and (max-width: 767px) {
  .sec04-text02 {
    font-size: 1.2rem;
  }
}


/* -------------------------------------------------- */
/* sec05 */
#sec05 {
  padding: 100px 0 140px;
  background-color: #F6F4F1;
}
@media screen and (max-width: 767px) {
  #sec05 {
    padding: 30px 0 30px;
  }
}

.sec05-title h2 {
  font-size: 4.7rem;
  font-weight: 700;
  text-align: center;
  color: #8D7654;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec05-title h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .sec05-title h2 {
    font-size: 4.7vw;
  }
}

.sec05-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 0;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec05-list {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sec05-list {
    width: 90vw;
    margin: 20px auto;
  }
}

.sec05-item {
  width: 48%;
  text-align: center;
  background-color: #FFFFFF;
  padding-top: 40px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 10%);
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec05-item {
    width: 49%;
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sec05-item {
    width: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
  }
}

.sec05-item_image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec05-item_image {
    width: 45%;
  }
}

.sec05-item_text h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #8D7654;
  margin-top: 15px;
  margin-bottom: 5px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec05-item_text h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .sec05-item_text {
    width: 55%;
    padding-left: 15px;
    text-align: left;
  }
  .sec05-item_text h3 {
    font-size: 3.4vw;
    margin: 0;
  }
}

.sec05-item_text p {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  color: #4C4948;
  margin: 0 -40px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec05-item_text p {
    margin: 0 -20px;
  }
}
@media screen and (max-width: 767px) {
  .sec05-item_text p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: -0.1em;
  }
}

.sec05-item:nth-of-type(2) .sec05-item_text p {
  margin: 0 -20px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec05-item:nth-of-type(2) .sec05-item_text p {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec05-item:nth-of-type(2) .sec05-item_text p {
    margin: 0;
  }
}


/* -------------------------------------------------- */
/* sec06 */
#sec06 {
  background-size: auto auto;
  background-color: #FCF5F8;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(255, 255, 255, 1) 10px, rgba(255, 255, 255, 1) 15px );
  padding-bottom: 195px;
}
@media screen and (max-width: 767px) {
  #sec06 {
    padding-bottom: 10px;
  }
}

.sec06-title {
  background-color: #DD84A9;
  padding: 50px 0 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec06-title {
    padding: 20px 0;
  }
}

.sec06-title::after {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 25px 0 25px;
  border-color: #dd84a9 transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  .sec06-title::after {
    bottom: -20px;
    border-width: 20px 12px 0 12px;
  }
}

.sec06-title h2 {
  color: #FFFFFF;
  font-size: 4.7rem;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec06-title h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .sec06-title h2 {
    font-size: 4.7vw;
  }
}

.sec06-title h2 span {
  font-size: 3.5rem;
  line-height: 2;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec06-title h2 span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .sec06-title h2 span {
    font-size: 4.7vw;
  }
}

.sec06-content {
  margin: 140px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec06-content {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sec06-content {
    width: 90vw;
    margin: 30px auto 0;
    align-items: center;
  }
}

.sec06-content_text {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .sec06-content_text {
    margin: 5px auto 0;
  }
}

.sec06-content_center {
  text-align: center;
  font-size: 5.5rem;
  font-weight: 700;
  color: #8D7654;
  line-height: 1.2;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec06-content_center {
    font-size: 4rem;
  }
  .sec06-content_left,
  .sec06-content_right {
    width: 15%;
  }
  .sec06-content_left img,
  .sec06-content_right img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec06-content_center {
    font-size: 5.5vw;
    width: 70%;
  }
  .sec06-content_left,
  .sec06-content_right {
    width: 15%;
  }
  .sec06-content_left img,
  .sec06-content_right img {
    width: 100%;
  }
}

.sec06-font01 {
  font-size: 3.2rem;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec06-font01 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .sec06-font01 {
    font-size: 4vw;
  }
}

.sec06-font02 {
  font-size: 6.6rem;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec06-font02 {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .sec06-font02 {
    font-size: 7vw;
  }
}

.sec06-font03 {
  font-size: 10.8rem;
  color: #DD84A9;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec06-font03 {
    font-size: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .sec06-font03 {
    font-size: 11vw;
  }
}

.sec06-font04 {
  font-size: 5.9rem;
  color: #DD84A9;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec06-font04 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .sec06-font04 {
    font-size: 5.5vw;
  }
}

.sec06-content_center sup {
  font-size: 2.0rem;
  color: #4C4948;
  top: -2.5em;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec06-content_center sup {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .sec06-content_center sup {
    font-size: 2vw;
  }
}

.sec06-font05 {
  font-size: 9.8rem;
  color: #DD84A9;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec06-font05 {
    font-size: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .sec06-font05 {
    font-size: 11vw;
  }
}

.sec06-font06 {
  font-size: 8.9rem;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec06-font06 {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .sec06-font06 {
    font-size: 10vw;
  }
}

.sec06-content_text {
  font-size: 1.9rem;
  color: #4C4948;
}
@media screen and (max-width: 767px) {
  .sec06-content_text {
    font-size: 1.2rem;
    color: #4C4948;
  }
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec06-list {
    padding: 0 20px;
  }
}

.sec06-item {
  margin: 23px auto;
  width: 100%;
  max-width: 1000px;
  background-color: #ffffff;
  border-radius: 13px;
  box-shadow: 3px 3px 3px 3px rgb(0 0 0 / 10%);
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .sec06-item {
    margin: 30px auto;
    width: 90vw;
    flex-wrap: wrap;
    padding: 20px 20px 50px;
  }
}

.sec06-item_image {
  width: 30%;
  text-align: center;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec06-item_image {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .sec06-item_image {
    width: 100%;
    margin-bottom: 15px;
  }
}

.sec06-item_image img {
  width: 100%;
  max-width: 222px;
}
@media screen and (max-width: 767px) {
  .sec06-item_image img {
    width: 33%;
    margin-bottom: 10px;
  }
}

.sec06-item_voice {
  width: 70%;
  max-width: 610px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  color: #4C4948;
}
@media screen and (max-width: 767px) {
  .sec06-item_voice {
    width: 100%;
    font-weight: 300;
    line-height: 1.6;
  }  
}


/* -------------------------------------------------- */
/* sec07 */
#sec07 {
  background-size: auto auto;
  background-color: #FFFFFF;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, #DEEBED 10px, #DEEBED 15px );
  padding-bottom: 160px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  #sec07 {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  #sec07 {
    padding-bottom: 50px;
  }
}

.sec07-title {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .sec07-title {
    padding-top: 30px;
  }
}

.sec07-title h2 {
  font-size: 4.7rem;
  font-weight: 700;
  color: #8D7654;
  text-align: center;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec07-title h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .sec07-title h2 {
    font-size: 4.7vw;
  }
}

.sec07-image {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  margin: 60px auto -60px;
}
@media screen and (max-width: 767px) {
  .sec07-image {
    width: 80%;
    margin: 30px auto -30px;
  }
}

.sec07-image img {
  width: 100%;
  max-width: 931px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec07-image img {
    width: 93%;
  }  
}

.sec07-content {
  width: 100%;
  max-width: 1000px;
  background-color: #ffffff;
  border-radius: 13px;
  box-shadow: 3px 3px 3px 3px rgb(0 0 0 / 10%);
  padding: 100px 50px 0;
  margin: 0 auto;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec07-content {
    padding: 100px 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .sec07-content {
    width: 90vw;
    padding: 60px 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .sec07-q-icon {
    width: 20%;
    text-align: center;
  }
  .sec07-q-icon img {
    width: 80%;
  }
}

.sec07-q {
  padding: 10px 0 20px 20px;
  font-size: 2.8rem;
  color: #6CA6AD;
  font-weight: 700;
  line-height: 1.8;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .sec07-q {
    width: 80%;
    font-size: 4.0vw;
    padding: 0 0 0 5%;
    line-height: 1.4;
  }
}

.sec07-q span {
  height: 3px;
  width: 100%;
  background-color: #6CA6AD;
  display: block;
}
@media screen and (max-width: 767px) {
  .sec07-q span {
    margin-top: 10px;
  }
}

.sec07-a-icon {
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .sec07-a-icon {
    width: 20%;
    text-align: center;
  }
  .sec07-a-icon img {
    width: 80%;
  }
}

.sec07-a {
  padding: 0 0 20px 20px;
  font-size: 1.5rem;
  color: #4C4948;
  font-weight: 700;
  line-height: 2;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .sec07-a {
    font-size: 3.8vw;
    font-weight: 300;
    line-height: 1.6;
    padding: 0 0 0 5%;
  }
}

.sec07-content table tr:first-of-type {
  border-bottom: solid 20px transparent;
}

.sec07-content table tr:nth-of-type(2) {
  border-bottom: solid 80px transparent;
}
@media screen and (max-width: 767px) {
  .sec07-content table tr:nth-of-type(2) {
    border-bottom: solid 40px transparent;
  }
}


/* -------------------------------------------------- */
/* p8 */
#p8 {
  margin-bottom: 120px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  #p8 {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  #p8 {
    margin-bottom: 25px;
  }
  #p8 .row {
    width: 90vw;
    margin: 0 auto;
  }
}

.p8-wrap {
  width: 100%;
  max-width: 1000px;
  background-color: #ffffff;
  border-radius: 13px;
  box-shadow: 3px 3px 3px 3px rgb(0 0 0 / 10%);
  padding: 70px 0 44px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p8-wrap {
    padding: 25px 10px;
  }
}

.p8-wrap h2 {
  font-size: 3.6rem;
  line-height: 1.6;
  color: #8D7654;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p8-wrap h2 {
    font-size: 4.7vw;
  }
}

.p8-wrap > p {
  margin: 40px 0;
  line-height: 1.75;
  text-align: center;
  font-size: 1.6rem;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .p8-wrap > p {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p8-wrap > p {
    margin: 20px 0;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: left;
  }
}

#p8 .p8-bene {
  align-items: center;
  border: 1px solid #cfcfc3;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 40px;
  padding: 10px 20px;
  width: 580px;
}
#p8 .bene__head {
  border: 2px solid #e83817;
  border-radius: 9999px;
  color: #e83817;
  font-size: 2rem;
  font-weight: bold;
  padding: 0 1.5em;
}
#p8 .bene__text {
  color: #59493f;
  font-size: 2.239rem;
  line-height: 1.25;
  margin-bottom: 10px;
  text-align: center;
}
#p8 .bene__text span {
  font-size: 1.6rem;
}
#p8 .p8-list {
  padding: 0 30px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  #p8 .p8-list {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  #p8 .p8-list {
    padding: 0;
  }
}

#p8 .list__item {
  align-items: flex-start;
  border-top: 1px solid #e8eae6;
  display: flex;
  padding: 50px 60px 36px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  #p8 .list__item {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  #p8 .list__item {
    padding: 20px 0 50px;
    position: relative;
  }
}

/*#p8 .list__item:first-child {
  border-top: 3px solid #e8eae6;
}*/

#p8 .list__image {
  margin-right: 24px;
  min-width: 120px;
  width: 120px; /* 20201202 ADD */
}
#p8 .list__image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #p8 .list__image {
    margin-right: 5px;
    min-width: 90px;
    width: 90px;
  }
  #p8 .list__image img {
    width: 100%;
  }
}

#p8 .list__text {  /* 20201202 ADD */
  width: calc(100% - 144px);
}
@media screen and (max-width: 767px) {
  #p8 .list__text {  /* 20201202 ADD */
    width: calc(100% - 95px);
  }
}

#p8 .list__text p {
  color: #59493f;
  font-size: 1.8rem;
  line-height: 1.25;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  #p8 .list__text p {
    font-size: 1.6rem;
  }
}

#p8 .list__head {
  color: #eb6100;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  #p8 .list__head {
    font-size: 1.6rem;
  }
}

#p8 .list__tags {
  display: flex;
  margin-bottom: 10px; /* 20201202 MOD */
  flex-wrap: wrap;  /* 20201202 ADD */
}
@media screen and (max-width: 767px) {
  #p8 .list__tags {
    display: none;
  }
}

#p8 .list__tag {
  border: 1px solid #f39800;
  border-radius: 5px;
  color: #f39800;
  font-size: 1.3rem;
  margin-right: 10px;
  margin-bottom: 5px; /* 20201202 ADD */
  padding: .15em 1em;
}
#p8 .list__tag.pri {
  background: #f39800;
  color: #fff;
}
#p8 .p8-btn {
  display: flex;
}
@media screen and (max-width: 767px) {
  #p8 .p8-btn {
    justify-content: space-between;
    position: absolute;
    left: 0;
    bottom: 20px;
    width: calc(90vw - 20px);
  }
}

#p8 .p8-btn a {
  background: #f39800;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: .5em 0;
  text-align: center;
  width: 310px;
}
@media screen and (max-width: 767px) {
  #p8 .p8-btn a {
    width: 49%;
  }
}

#p8 .p8-btn a.pri {
  background: #8D7654;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  #p8 .p8-btn a.pri {
    margin-right: 0;
  }
}

#p8 .p8-btn a img {
  margin-left: 5px;
  position: relative;
  top: -2px;
}

/* 20201009新規追加 */
#p8 .list__head__web {
  color: #6CA6AD;
}

#p8 .list__tag__web {
  border: 1px solid #6CA6AD;
  color: #6CA6AD;
}

#p8 .list__tag.pri__web {
  background: #6CA6AD;
  color: #fff;
}

#p8 .p8-btn-web a {
  background: #6CA6AD;
}

/* 20210721 講師追加 */
#p8 .list__head {
  margin-bottom: 0; /* 上書き */
  line-height: 1.4;
}
#p8 .list__teacher {
  margin-bottom: 12px;
  margin-top: 4px;
}
#p8 .list__teacher a {
  font-size: 17px;
  color: #a3945d;
  text-decoration: none;
  background: url(../../img/teacher_icon.png) no-repeat 0px 3px;
  background-size: auto auto;
  background-size: 18px;
  padding: 0 0 0 24px;
}
@media screen and (max-width: 767px){
  #p8 .list__teacher a {
    font-size: 14px;
    background: url(../../img/teacher_icon.png) no-repeat 0px 1px;
    background-size: 15px;
    padding: 0 0 0 22px;
  }
}


/* -------------------------------------------------- */
/* footer */

@media screen and (min-width: 768px) {
  .dsp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .dsp {
    display: initial;
  }
}

#footer img {
  max-width: 100%;
}

#footer {
  background: #fafafa;
  min-width: 1100px;
  padding: 30px 0 0;
  font-family: 'Noto Sans Japanese', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  #footer {
    width: 100%;
    min-width: 100%;
  }
}

#footer .row {
  font-size: 1.6rem;
  margin: 0 auto;
  max-width: 1100px;
  min-width: 1100px;
  padding: 0 25px;
  width: 100%;
  zoom: 1;
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  #footer .row {
    min-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #footer .row {
    width: 90vw;
    min-width: 90vw;
    padding: 0;
  }
}

#footer .footer-content {
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 767px) and (max-width: 1100px) {
  #footer .content__info {
    width: 35%;
  }
}

#footer .content__logo {
  margin: 5px auto 10px;
}
#footer .content__add {
  color: #666;
  font-size: 1.3rem;
}
#footer .content__add p {
  margin-bottom: 10px;
}
#footer .content__nav {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}
#footer .content__link {
  display: flex;
  margin-top: 15px;
}
#footer .content__link li {
  font-size: 1.4rem;
  padding-left: 25px;
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  #footer .content__link li {
    font-size: 1.2rem;
    padding-left: 10px;
  }
}

#footer .content__link li a {
  color: #666;
}
#footer .content__link li a:hover {
  color: #db6687;
}
#footer .content__contact {
  padding: 20px 0 0;
  width: 250px;
}
#footer .content__form a {
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
  background: #db6687;
  font-family: "新ゴ R";
  letter-spacing: 0.3px;
  margin-top: 6px;
  width: 250px;
  text-align: center;
  display: block;
  transition: opacity .2s;
}
#footer .content__form a:hover {
  opacity: .7;
}
#footer .content__form a span {
  font-size: 1.2rem;
}
#footer .append_sns_buttons {
  display: inline-block;
  width: 90%;
  margin: 1em 5% 1em 5%;
}
.share_button_facebook {
  width: 15%;
  display: inline-block;
  margin-right: 3%;
  height: auto;
  float: left;
}
.share_button_facebook img {
  width: auto;
  height: auto;
  display: inline-block;
}
.share_button_instagram {
  width: 15%;
  display: inline-block;
  margin-right: 3%;
  height: auto;
  float: left;
}
.share_button_instagram img {
  width: auto;
  height: auto;
  display: inline-block;
}
.share_button_line {
  width: 64%;
  background: #0cbc0c;
  display: none;
  height: auto;
  color: #fff;
  text-decoration: none;
  float: left;
  border-radius: 6px;
}
.share_button_line img {
  float: left;
  height: 2em;
  width: auto;
  display: inline-block;
  margin: 0.25em 0 0.25em 0.3em;
}
.line_inner {
  float: left;
  font-size: 15px;
  margin-left: 5px;
  display: inline-block;
  margin: 0.3em 0 0.3em 0.5em;
  width: auto;
}
#footer .footer-text {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 10px;
  text-align: center;
}
#footer .copyw {
  background: #db6687;
  color: #fff;
  display: block;
  font-size: .9rem;
  padding: 10px 0;
  text-align: center;
}

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

  #footer {
    background: #ededed;
    min-width: inherit;
    min-width: initial;
    padding: 20px 0 0;
  }
  #footer .footer-content {
    flex-direction: column-reverse;
  }
  #footer .content__logo {
    display: none;
  }
  #footer .content__add {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  #footer .content__add a {
    color: #db6687;
  }
  #footer .content__nav {
    display: block;
  }
  #footer .content__link {
    flex-wrap: wrap;
    margin-top: 0;
  }
  #footer .content__link li {
    background-color: #fff;
    font-size: 1.4rem;
    margin: 0 0.5% 0.5% 0;
    padding: 5% 0;
    text-align: center;
    width: 49%;
  }
  #footer .content__link li a {
    color: #333;
  }
  #footer .content__contact {
    margin: auto;
    padding: 5% 0 8%;
    width: 86%;
  }
  #footer .content__form a {
    font-size: 1.6rem;
    width: 100%;
  }
  #footer .content__form a span {
    font-size: 1.2rem;
  }
  .share_button_facebook {
    height: 30px;
  }
  .share_button_facebook img {
    height: 100%;
  }
  .share_button_instagram {
    height: 30px;
  }
  .share_button_instagram img {
    height: 100%;
  }
  .share_button_line {
    display: inline-block;
    height: 30px;
  }
  .share_button_line img {
    height: 24px;
  }
  #footer .footer-text {
    text-align: left;
    font-size: 1.2rem;
  }
  
}
