@charset "utf-8";

/*----------------------------------------
style_common.css

共通箇所を記述します。
・ヘッダー
・フッター
・他共通ブロック

----------------------------------------*/

/*==========================================
 フォーム全般
===========================================*/

input, button, textarea, select {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 6px;
  background-color: none;
}
select::-ms-expand {
   display: none;
 }
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none;
  border: none;
}


/* responsible ---------------------------------------------
  ----------------------------------------------------------
 ★ --------------------共通--------------------------------
  ----------------------------------------------------------
 -------------------------------------------------------- */
html { text-rendering: optimizeLegibility; }
.clearfix::after { content: ""; display: table; clear: both;}
a { text-decoration: none; color: #F87A96; }

/* hoverエフェクト */
.fade,
.fade::before,
.fade::after {
  -webkit-transition: .3s;
  transition: .3s;
}

a.text_link01 {
  transition: .3s;
}
a.text_link01:hover{
  text-decoration: underline;
}
.TaLeft {
  text-align: left !important;
}
/* ----------------------- font ----------------------- */
body {
font-family: "Noto Sans JP", sans-serif;
font-style: normal;
font-weight: 400;
color: #6B6570;
line-height: 2;
}
.ffEn {
  font-family: "Montserrat", sans-serif;
}
.fc-pink {
  color: #F87A96;
}
.fwBold {
  font-weight: 700;
}
/* ----------------------- head ----------------------- */
.header__navi_list,.header__navi_list-last {
  list-style-type: none;
}

/* --------------------- contents --------------------- */
.contents {
}





@media all and (min-width: 961px)  {
/* //    |- PC  */
  .elmSP {  display:none !important;  }
}
@media all and (max-width: 960px)  {
/* //    |- SP  */
  .elmPC{ display:none !important;  }
}











/* responsible ---------------------------------------------
  ----------------------------------------------------------
 ★ 737px以上 -----------PC---------------------------------
  ----------------------------------------------------------
 -------------------------------------------------------- */
@media only screen and (min-width: 961px) 
{ /* PC start */
body{
  background: #fff;
 overflow-x:hidden;
}
header {
  width: 100%;
  position: fixed;
  top: 0;
}
.br-pc {
  display: none;
}

/*----------------------------------------
    header pc
-----------------------------------------*/
header {
  /*background-color: rgba(255,255,255,0.8);*/
  padding: 0;
  z-index: 2;
  z-index: 200;
  /*border-bottom: 1px solid #eee;*/
}
.drawer-nav {
  transform: translateZ(0) !important;
}

.drawer-navbar {
  max-width: 100%;
  min-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 30px;
  box-sizing: border-box;
}
.drawer-navbar-header {
  display: flex;
}
.header__logo a {
  display: inline-block;
  vertical-align: middle;
}
.header__logo a img {
  height: 50px;
  width: auto;
}
.drawer-nav .drawer-menu {
  text-align: center;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.drawer-nav li {
  float: left;
  margin-right: 25px;
  font-size: 14px;
  font-weight: 700;
  list-style-type: none;
  color: #2b2b2b;
}
.drawer-nav li:last-child {
  margin-right: 0;
}
.drawer-nav li a {
  color: #6B6570;
  vertical-align: 26%;
}
.drawer-menu-item:first-child a{
  white-space: nowrap;
}
.drawer-menu-item_last a{
  padding: 30px 25px !important;
  transition: .3s;
  color: #fff !important;
  background: linear-gradient(90deg, #6CC8D8 0%, #DAB8DA 100%);
  font-weight: 700;
}
.drawer-menu-item_last a:hover {
  opacity: 0.7;
}

/* ----------------- menu effects ----------------- */
.drawer-nav .drawer-menu-item a {
  font-weight: 500;
  position: relative;
  display: inline-block;
  transition: .3s;
  padding: 15px 0;
  line-height: 1.2;
}
.drawer-nav .drawer-menu-item_hover a:hover {
  color: #F87A96;
  cursor: pointer;
  display: block;
}
.drawer-nav .drawer-menu-item_hover:hover {
  
}
.drawer-nav .drawer-menu-item_hover a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #F87A96;
  transition: .2s;
}
.drawer-nav .drawer-menu-item_hover a:hover::after {
  width: 100%;
}

.drawer-menu-item_select a{
  border-bottom: 5px solid #fff;
  padding-bottom: 31px !important;
}


/* ----------------- スクロールでヘッダー高さ可変 pc----------------- */
header.fixed {
  background-color: rgba(255,255,255,0.8);
  padding: 0;
  z-index: 2;
  z-index: 200;
}
/* transition */
header,
.header__logo a,
.header__logo a img,
.drawer-nav .drawer-menu-item a,
.drawer-nav li:last-child img
 {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}



/* ページトップボタン */
.footer__btn_pagetop {
  position: fixed;
  right: 0;
  bottom: 22px;
  z-index: 99;
  line-height: 100%;
}
.footer__btn_pagetop a {
  background: #fff;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 22px 30px;
  vertical-align: middle;
  opacity: 0.6;
  position: relative;
}
.footer__btn_pagetop a:before {
  position: absolute;
  content: "";
  background: url("../img/icon_arrow_pink.svg") no-repeat right top/cover;
  width: 27px;
  height: 4px;
  top: 50%;
  left:50%;
  transform: translateY(-50%) translateX(-50%) rotate(-90deg);
} 
.footer__btn_pagetop a:hover {
  text-decoration: none !important;
}

} /* PC end --------------------------- */







/* responsible ---------------------------------------------
  ----------------------------------------------------------
 ★ 736px以下 -----------SP---------------------------------
  ----------------------------------------------------------
 -------------------------------------------------------- */
@media only screen and (max-width: 960px) 
{ /* SP start */
body { background: #fff; }

input { 
  padding: 0;
} 
.br-sp {
  display: none;
}




/*----------------------------------------
    header sp
-----------------------------------------*/
header {
  z-index: 300;
  width: 100%;
  position: fixed;
  /*top: 0;*/
}
.header__logo a {
  height: 50px;
  padding: 10px 15px;
  display: inline-block;
}
.header__logo a img {
  height: 100%;
  width: auto;
}
.header__logo p {
  display: none;
}
.drawer-open {
  overflow: hidden!important;
}
.drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: auto;
}
.drawer-menu-item,
.drawer-menu-item_select
 {
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  font-size: 14px;
  color: #222;
  border-bottom: 1px solid #D1D5DE;
  /*background-color: rgba(0, 0, 0, .85);*/
}
.drawer-menu-item a,
.drawer-menu-item_select a{
  display: block;
  padding: 22px 20px;
  text-align: left;
  color: #6B6570;
}
.drawer-navbar .drawer-navbar-header {
  /*background-color: #fff;
  border-bottom: 1px solid #e5e5e5;*/
}
.drawer-menu-item_head {
  padding: 0;
  height: 60px;
  background: #D7000F;
}
.drawer-nav {
  position: fixed;
  z-index: 4;
  top: 0;
  overflow: hidden;
  width: 16.25rem;
  height: 100%;
  color: #222;
  background-color: #fff;
}
.drawer-navbar-header {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  /*padding: 0 20px;*/
  text-align: left;
  /*z-index: 102;*/
}
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-nav {
  left: 0;
}
.drawer--left.drawer-open .drawer-hamburger {
  left: 16.25rem;
  border-left: 1px  solid #D1D5DE;
}
.drawer-hamburger {
  position: absolute;
  z-index: 4;
  top: 0;
  display: block;
  box-sizing: content-box;
  width: 2rem;
  padding: 0;
  padding: 18px .75rem 30px;
  -webkit-transition: all .6s cubic-bezier(.19, 1, .22, 1);
  transition: all .6s cubic-bezier(.19, 1, .22, 1);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  border: 0;
  outline: 0;
  background-color: transparent;
}
.drawer-overlay {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .85);
}
.drawer-open .drawer-overlay {
  display: block;
}

.drawer-menu-item_last a{
  display: block;
  padding: 20px 15px;
  color: #fff !important;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, #6CC8D8 0%, #DAB8DA 100%);
  box-sizing: border-box;
}


/*!------------------------------------*\
    Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
  right: 0;
  width: 16.25rem; /* 260px */
  height: 100%;
  -webkit-transition: transform .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: transform .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transform: translateX(100%);
}
.drawer--right.drawer-open .drawer-nav {
  transform: translateX(0);
}
.drawer--right .drawer-hamburger {
  right: 0;
}
/*.drawer--right.drawer-open .drawer-hamburger {
  right: 16.25rem;
}*/
.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
  z-index: 100;
}
.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 10px;
}
.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  width: 100%;
  height: 2px;
  -webkit-transition: all .6s cubic-bezier(.19, 1, .22, 1);
  transition: all .6s cubic-bezier(.19, 1, .22, 1);
  background-color: #2b2b2b;
}
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  position: absolute;
  top: -10px;
  left: 0;
  content: " ";
}
.drawer-hamburger-icon:after {
  top: 10px;
}
.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}
.drawer-open .drawer-hamburger-icon:after,
.drawer-open .drawer-hamburger-icon:before {
  top: 0;
  background: #333;
}
.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/* ----------------- スクロールでヘッダー高さ可変 sp----------------- */
header.fixed {
  background-color: rgba(255,255,255,255.8);
}
/* transition */
header,
.header__logo a,
.header__logo a img,
.drawer-nav .drawer-menu-item a,
.drawer-nav li:last-child img
 {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5ss ease;
}



/* ページトップボタン */
.footer__btn_pagetop {
  position: fixed;
  right: 0;
  bottom: 20px;
  z-index: 99;
  line-height: 100%;
}
.footer__btn_pagetop a {
  background: #fff;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  padding: 20px;
  vertical-align: middle;
  opacity: 0.6;
}
.footer__btn_pagetop a:before {
  position: absolute;
  content: "";
  background: url("../img/icon_arrow_pink.svg") no-repeat right top/cover;
  width: 18px;
  height: 3px;
  top: 50%;
  left:50%;
  transform: translateY(-50%) translateX(-50%) rotate(-90deg);
} 
.footer__btn_pagetop a:hover {
  text-decoration: none !important;
}

} /* SP end --------------------------- */





























/* ----------------- コンテンツ幅 ----------------- */
.widthFix {
  width: calc(100% - 20px);
  margin: 0 auto;
  display: block;
  box-sizing: border-box;
  max-width: 1100px;
}

@media only screen and (max-width: 960px) 
{ /* SP start */
.widthFix {
  width: 100% !important;
  margin: 0 auto;
  box-sizing: border-box;
}
}





/* ----------------- course ----------------- */
.course {
  padding: 100px 30px;
}
.course_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
.courseItem_img {
  max-width: 190px;
  margin: 0 auto -90px;
}
.courseItem_img img {
  vertical-align: bottom;
}
.courseItem_desc {
  padding: 110px 25px 25px;
  border-radius: 20px;
  border:3px solid #E9E9E9;
}
.courseItem_ttl {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.courseItem:nth-child(1) .courseItem_ttl span {
  color: #DD7081;
}
.courseItem:nth-child(2) .courseItem_ttl span {
  color: #2FB1C8;
}
.courseItem:nth-child(3) .courseItem_ttl span {
  color: #c38fc3;
}
.courseItem_recommend {
  padding: 0 10px 25px;
  border-radius: 15px;
  margin: 30px 0 40px;
}
.courseItem:nth-child(1) .courseItem_recommend {
  border:2px solid #DD7081;
}
.courseItem:nth-child(2) .courseItem_recommend {
  border:2px solid #2FB1C8;
}
.courseItem:nth-child(3) .courseItem_recommend {
  border:2px solid #c38fc3;
}
.courseItem_recommend_head {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin: -10px 0 20px ;
}
.courseItem_recommend_head span {
  background: #fff;
  padding:0 18px;
  display: inline-block;
}
.courseItem:nth-child(1) .courseItem_recommend_head {
  color: #DD7081;
}
.courseItem:nth-child(2) .courseItem_recommend_head {
  color: #2FB1C8;
}
.courseItem:nth-child(3) .courseItem_recommend_head {
  color: #c38fc3;
}
.courseItem_recommend_txt {
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
}
.courseItem_tag {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
  margin-bottom: 30px;
}
.courseItem_tag_item {
  border-radius: 100px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  padding: 10px;
}
.courseItem:nth-child(1) .courseItem_tag_item {
  background: #DF9EA8;
}
.courseItem:nth-child(2) .courseItem_tag_item {
  background: #2FB1C8;
}
.courseItem:nth-child(3) .courseItem_tag_item {
  background: #c38fc3;
}
.courseItem .c-btn2 {
  width: 100%;
}
.courseTopic {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}
.courseTopic_item {
  font-size: 22px;
  font-weight: 400;
  padding:16px 30px 20px;
  line-height: 1;
  border-radius: 10px;
  background: #2FB1C8;
  color: #fff;
  text-align: center;
}
.courseTopic_item:nth-child(1) {
  background: #DF9EA8;
}
.courseTopic_item span{
  font-size: 30px;
  font-weight: 700;
}
.courseTopic_item span.small-txt{
font-size:60%;
font-weight:400;
}

.courseTopic_item:nth-child(2) {
  margin: 0 20px;
      padding-top: 24px;
}
.courseTopic_item:nth-child(3) {
      padding-top: 24px;
}
.course_desc {
  font-size: 18px;
  text-align: center;
}
.course_note {
  font-size: 14px;
  margin: 20px 0 40px;
  text-align: center;
}
.courseCashback_head {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
}
.courseCashback_head em {
  font-size: 24px;
}
.courseCashback_head span {
  position: relative;
}
.courseCashback_head span:before {
  transform: rotate(-35deg);
  left: -50px;
  bottom: -10px;
}
.courseCashback_head span:after {
  transform: rotate(35deg);
  right: -50px;
  bottom: -10px;
}
.courseCashback_head span:before,
.courseCashback_head span:after {
  position: absolute;
  display: inline-block;
  content: "";
  background: #6B6570;
  width: 2px;
  height: 1.3em;
  margin: 0 1em;
  margin-top: -.3em;
  vertical-align: middle;
}
.courseCashback_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
  margin-top: 30px;
}
.courseCashback_item {
  padding: 25px;
  background: #FFF5F8;
  border-radius: 20px;
}
.courseCashback_item_txt {
  text-align: center;
  line-height: 1.8;
}
.courseCashback_item_txt span {
  font-size: 24px;
  font-weight: 700;
}
.courseCashback_item_note {
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
}
.course_video_ttl {
  margin: 15px auto 0;
  text-align:center;
  font-size:22px;
  font-weight:700;
}
.p-course_video_txt{
    margin: 0px auto 0;
    text-align: center;
}
.p-course_video_txt-ttl{
    font-size: 18px;
    font-weight: 700;
}
.course_video_txt {
  margin: 0px auto 0;
    text-align:center;
}
.course_video {
  width: 100%;
  max-width: 70%;
  height: 100%;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  margin: 60px auto 0;
}
.course_video iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.course {
  padding: 60px 20px;
}
.course_wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
}
.courseItem_img {
  max-width: 40%;
  margin: 0 auto -75px;
}
.courseItem_img img {
  vertical-align: bottom;
}
.courseItem_desc {
  padding: 90px 15px 25px;
  border-radius: 20px;
}
.courseItem_ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.courseItem_recommend {
  padding: 0 15px 25px;
  border-radius: 15px;
  margin: 30px 0 30px;
}
.courseItem_recommend_head {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin: -10px 0 20px ;
}
.courseItem_recommend_head span {
  background: #fff;
  padding:0 20px;
}
.courseItem_recommend_txt {
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
}
.courseItem_tag {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
  margin-bottom: 25px;
}
.courseItem_tag_item {
  border-radius: 100px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  padding: 10px;
}
.courseItem .c-btn2 {
  width: 100%;
}
.courseTopic {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 15px;
  margin: 40px 0;
}
.courseTopic_item {
  font-size: 16px;
  font-weight: 400;
  padding:13px 15px 17px;
  line-height: 1;
  border-radius: 10px;
  background: #2FB1C8;
  color: #fff;
  text-align: center;
}
.courseTopic_item span{
  font-size: 24px;
  font-weight: 700;
}
.courseTopic_item:nth-child(2) {
  margin: 0 0;
padding: 13px;
}
.courseTopic_item:nth-child(3) {
padding: 13px;
}
.course_desc {
  font-size: 17px;
  text-align: left;
}

.course_video_ttl{
font-size:18px;
}
.course_video_txt,.course_video_ttl,.p-course_video_txt{
  text-align: left;
}

.course_note {
  font-size: 13px;
  margin: 18px 0 30px;
  text-align: left;
}
.courseCashback_head {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
}
.courseCashback_head em {
  font-size: 18px;
}
.courseCashback_head span {
  position: relative;
  display: inline-block;
}
.courseCashback_head span:before {
  transform: rotate(-35deg);
  left: -30px;
  bottom: -5px;
}
.courseCashback_head span:after {
  transform: rotate(35deg);
  right: -30px;
  bottom: -5px;
}
.courseCashback_head span:before,
.courseCashback_head span:after {
  position: absolute;
  display: inline-block;
  content: "";
  background: #6B6570;
  width: 2px;
  height: 1.3em;
  margin: 0 1em;
  margin-top: -.3em;
  vertical-align: middle;
}
.courseCashback_wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  margin-top: 30px;
}
.courseCashback_item {
  padding: 25px;
  background: #FFF5F8;
  border-radius: 20px;
}
.courseCashback_item_txt {
  text-align: center;
  font-size: 15px;
}
.courseCashback_item_txt span {
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  line-height: 1.6;
}
.courseCashback_item_note {
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 10px;
}
.course_video {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  margin: 40px auto 0;
}
}






/* ----------------- 共通ボタン1 ----------------- */
.c-btn {
  border-radius:100px;
  background: linear-gradient(90deg, #6CC8D8 0%, #DAB8DA 100%);
  padding:  22px;
  color: #fff;
  width: 280px;
  display: block;
  line-height: 1;
  box-sizing: border-box;
  position: relative;
  transition: .3s;
  text-align: center;
  font-weight: 700;
}
.c-btn:hover {
  opacity: 0.7;
}
.c-btn .tx {
  padding:7px 0;
  position: relative;
  font-size: 15px;
  font-weight: bold;
}
.c-btn:after {
  position: absolute;
  background: url(../img/icon_arrow_wht.svg) no-repeat;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 18px;
  height: 3px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  right: 20px;
  transition: .3s;
}
.c-btn:hover:after {
  right: 12px;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.c-btn {
  padding:  18px 20px;
}
}




/* ----------------- 共通ボタン2 ----------------- */
.c-btn2 {
  background: #fff;
  border:1px solid #F87A96;
  border-radius: 100px;
  padding:  22px;
  color: #F87A96;
  width: 280px;
  display: block;
  line-height: 1;
  box-sizing: border-box;
  position: relative;
  transition: .3s;
  text-align: center;
  font-weight: 700;
}
.c-btn2:hover {
  opacity: 0.7;
}
.c-btn .tx {
  padding:7px 0;
  position: relative;
  font-size: 15px;
  font-weight: bold;
}
.c-btn2:after {
  position: absolute;
  background: url(../img/icon_arrow_pink.svg) no-repeat;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 18px;
  height: 3px;
  display: inline-block;
  background-size: contain;
  z-index: 100;
  right: 20px;
  transition: .3s;
}
.c-btn2:hover:after {
  right: 12px;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.c-btn2 {
  padding:  18px 20px;
}
}






/* --------------------- 共通要素 --------------------- */
main {
  position: relative;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}
input, button, textarea, select {
  outline: none;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
div.anchor {
  display: block;
  padding-top: 70px;
  margin-top: -70px;
  clear: both;
}

.c-txt-small{
font-size:80%;
font-weight:400;
}
.c-txt-xsmall{
font-size:60%;
font-weight:400;
}

.c-anchor{
padding-top: 80px;
margin-top: -80px;
}

/*h2 タイトル共通*/
.contents_h2 {
  margin-bottom: 60px;
  text-align: center;
}
.contents_h2_en {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 35px;
}
.contents_h2_jp {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (max-width: 960px) 
{ /* SP */
main {
  overflow: hidden;
}
div.anchor {
  display: block;
  padding-top: 60px;
  margin-top: -60px;
}

/*h2 タイトル共通*/
.contents_h2 {
  margin-bottom: 40px;
  text-align: center;
}
.contents_h2_en {
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 25px;
}
.contents_h2_jp {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
}
}




/* --------------------- c-Cta --------------------- */
.c-Cta {
  background: #fff;
  border-radius: 12px;
}
.c-Cta_head {
  color: #fff;
  background: linear-gradient(90deg, #F87A96 0%, #F8A8BA 100%);
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  line-height: 100%;
  border-radius: 12px 12px 0 0 ;
}
.c-Cta_head span {
  font-size: 16px;
}
.c-Cta_inner {
  padding: 30px;
}
.c-Cta_term {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.Cta_term_period2 {
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid #EEEEEE;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.c-Cta_term_head {
  line-height: 1.2;
  color: #DD7081;
  font-size: 20px;
  padding: 8px 4px 8px 10px;
  border:2px solid #DD7081;
  text-align: justify;
  margin-right: 10px;
}
.c-Cta_term_period {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em
}
.c-Cta_term_period em {
  font-size: 20px;
}
.c-Cta_term_period span {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
}
.c-Cta .c-btn {
  width: 100%;
}
@media only screen and (max-width: 960px) 
{ /* SP */
.c-Cta {
  background: #fff;
  border-radius: 12px;
}
.c-Cta_head {
  color: #fff;
  background: linear-gradient(90deg, #F87A96 0%, #F8A8BA 100%);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  line-height: 100%;
  border-radius: 12px 12px 0 0 ;
}
.c-Cta_head span {
  font-size: 14px;
}
.c-Cta_inner {
  padding: 25px 20px;
}
.c-Cta_term {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-Cta_term_head {
  line-height: 1.2;
  color: #DD7081;
  font-size: 17px;
  padding: 7px 10px;
  border:2px solid #DD7081;
  text-align: justify;
  margin-right: 10px;
}
.c-Cta_term_period {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.c-Cta_term_period em {
  font-size: 20px;
}
.c-Cta_term_period span {
  font-size: 16px;
  font-weight: 400;
}
.c-Cta .c-btn {
  width: 100%;
}
}





/* ----------------- cv ----------------- */
.cv {
  padding:80px 30px;
  background: #BEE6ED;
  border-radius: 100px 0 0 0 ; 
}
.cv_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.cv_img_wrap {
  width: 100%;
  max-width: 640px;
  position: relative;
  margin-right: 20px;
}
.cv_img {
  width: 100%;
  max-width: 640px;
}
.cv_img2 {
  position: absolute;
  width: 100%;
  max-width: 300px;
  top: -10px;
  right: -255px;
}
.cv .c-Cta {
  min-width: 385px;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.cv {
  padding:60px 20px;
  background: #BEE6ED;
  border-radius: 60px 0 0 0 ; 
}
.cv_inner {
  display: block;
}
.cv_img_wrap {
  max-width: 100%;
  flex-shrink: 0;
  margin-right: 0;
  margin-bottom: 30px;
  position: relative;
}
.cv_img {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.cv_img2 {
  position: absolute;
  width: 100%;
  max-width: 55%;
  top: -50px;
  right: 0;
  left:50%;
transform: translateX(-50%);
}
.cv .c-Cta {
  min-width: 100%;
}
}





/* ----------------- flow ----------------- */
.flow {
  padding: 100px 30px;
  background: #FFF5F8;
}
.flowBlock:not(:last-child) {
  margin-bottom: 40px;
}
.flowBlock {
  display: flex;
}
.flowBlock_head {
  background: #F8A8BA;
  color: #fff;
  width: 210px;
  flex-shrink: 0;
  text-align: center;
  padding:30px 20px 40px;
  position: relative;
}
.flow_label {
  position: absolute;
  top: -40px;
  left: -30px;
  width: 100%;
  max-width: 100px;
}
.flowBlock_head:after {
  content: '';
  display: block;
  width: 100%;
  height: 40px;
  background: #F8A8BA;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -39px;
  left: 50%;
  transform: translateX(-50%) scale(1.01); /* わずかにスケールアップ */
}
.flowBlock:last-child .flowBlock_head:after {
  display: none;
}
.flowBlock_head_num {
  font-weight: 300;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 20px;
}
.flowBlock_head_num span {
  font-size: 34px;
}
.flowBlock_head_ttl {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
}
.flowBlock_head_ttlSub {
  font-size: 16px;
  font-weight: 400;
  display: block;
  line-height: 1.4;
  margin-top: 15px;
}
.flowBlock_desc {
  background: #fff;
  padding: 40px;
}
.flowBlock_desc_ttl {
 font-size: 22px;
 font-weight: 700;
 margin-bottom: 20px; 
}
.flowBlock_desc_ttl span {
  font-size: 16px;
}
.flowBlock_desc_txt{
margin-bottom:30px;
}
.flowBlock_desc_txt:last-child {
  margin-top: 15px;
}
.flowBlock_desc_note {
  font-size: 13px;
  margin-bottom: 30px;
}
.flowBlock_descBtn {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
}
.flowBlock_descBtn .c-btn2 {
  font-size: 14px;
  width: auto;
  padding: 22px 45px;
  margin: 0 10px 10px 0;
}
.flowBlock_topic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.flowBlock_topicItem {
  background: #F8F8F8;
  border-radius: 12px;
}
.flowBlock_topicItem_ttl {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: #6B6570;
  padding: 10px 15px;
  border-radius: 12px 12px 0 0;
}
.flowBlock_topicItem_txt {
  padding: 30px 20px;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.flow {
  padding: 60px 20px;
}
.flowBlock:not(:last-child) {
  margin-bottom: 30px;
}
.flowBlock {
  display: block;
}
.flowBlock_head {
  background: #F8A8BA;
  color: #fff;
  width: 100%;
  flex-shrink: 0;
  text-align: center;
  padding:20px 15px 15px;
  position: relative;
  box-sizing: border-box;
}
.flow_label {
  position: absolute;
  top: -30px;
  left: -15px;
  width: 100%;
  max-width: 25%;
  z-index: 2;
}
.flowBlock_head:after {
  content: '';
  display: block;
  width: 100%; /* 親要素の幅に合わせる */
  height: 30px; /* 三角形の高さ */
  background: #F8A8BA; /* 三角形の色（適宜変更） */
  clip-path: polygon(0 0, 100% 0, 50% 100%); /* 下向き三角形を形成 */
  position: absolute;
  bottom: -29px; /* 三角形を親要素の下に配置 */
  left: 50%;
  transform: translateX(-50%) scale(1.01); /* わずかにスケールアップ */
}
.flowBlock:last-child .flowBlock_head:after {
  display: inherit;
}
.flowBlock_head_num {
  font-weight: 300;
  font-size: 17px;
  line-height: 1;
  margin-bottom: 20px;
}
.flowBlock_head_num span {
  font-size: 25px;
}
.flowBlock_head_ttl {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}
.flowBlock_head_ttlSub {
  font-size: 15px;
  font-weight: 400;
  display: block;
  line-height: 1.4;
  margin-top: 10px;
}
.flowBlock_desc {
  background: #fff;
  padding: 30px 20px
}
.flowBlock_desc_ttl {
 font-size: 18px;
 font-weight: 700;
 margin: 30px 0 20px; 
 line-height: 1.6;
}
.flowBlock_desc_ttl span {
  font-size: 16px;
}
.flowBlock_desc_txt {
  font-size: 15px;
}
.flowBlock_desc_note {
  font-size: 12px;
  margin-bottom: 20px;
}
.flowBlock_descBtn {
  display: flex;
  flex-wrap: wrap;
  margin: 35px 0;
}
.flowBlock_descBtn .c-btn2 {
  font-size: 14px;
  width: 100%;
  padding: 22px 20px;
  margin: 0 10px 10px 0;
}
.flowBlock_topic {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
}
.flowBlock_topicItem {
  background: #F8F8F8;
  border-radius: 12px;
}
.flowBlock_topicItem_ttl {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: #6B6570;
  padding: 10px 15px;
  border-radius: 12px 12px 0 0;
}
.flowBlock_topicItem_txt {
  padding: 25px 20px;
  font-size: 15px;
}
}









/* ----------------- footer ----------------- */
footer {
  padding: 40px 0 0;
}
.footerLink_wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #C4C1C6;
}
.footer_logo {
  width: 100%;
  max-width: 250px;
}
.footerLink {
  display: flex;
}
.footerLink_box {
  margin-left: 50px;
}
.footerLink_box:first-child .footerLink_boxLinks_item a {
  white-space: nowrap;
}
.footerLink_boxLinks_item a {
  font-size: 15px;
  color: #6B6570;
  transition: .3s;
}
.footerLink_boxLinks_item a:hover {
  color: #F87A96;
}
.footer_copy {
  font-weight: 700;
  text-align: center;
}
.footer_cotanct {
  text-align: center;
}
.footer_cotanct_inner {
  text-align: left;
  display: inline-block;
}
.footer_cotanctList {
  margin: 20px 0;
}
.footer_cotanct_note {
  font-size: 12px;
  line-height: 1.6;
}
.footer_copyright {
  background: #6B6570;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  padding: 20px;
  text-align: center;
  line-height: 1.6;
  margin-top: 40px;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
footer {
  padding: 35px 0 0;
}
.footerLink_wrap {
  display: block;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.footer_logo {
  width: 100%;
  max-width: 55%;
  margin: 0 auto 10px;
}
.footerLink {
  display: block;
}
.footerLink_box {
  margin-left: 0;
  margin: 0 20px 20px;
}
.footerLink_box:first-child .footerLink_boxLinks_item a {
  white-space: nowrap;
}
.footerLink_boxLinks_item a {
  font-size: 14px;
  color: #6B6570;
}
.footer_copy {
  font-weight: 700;
  text-align: center;
  font-size: 15px;
}
.footer_cotanct {
  text-align: center;
  margin: 0 20px;
}
.footer_cotanct_inner {
  text-align: left;
  display: inline-block;
}
.footer_cotanctList {
  margin: 20px 0;
  font-size: 13px;
}
.footer_cotanct_note {
  font-size: 12px;
  line-height: 1.6;
}
.footer_copyright {
  background: #6B6570;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  padding: 18px;
  text-align: center;
  line-height: 1.6;
  margin-top: 40px;
}
}



/* 共通hoverアニメーション */
.hoveranime {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.1s ease;
  position: relative; /* :after の絶対位置指定のための基準 */
}
.hoveranime:hover {
  animation: shake 0.5s 1;
}
/* 本体の揺れアニメーション */
@keyframes shake {
  0% { transform: translateY(0); }
  25% { transform: translateY(-3px); }
  75% { transform: translateY(3px); }
  100% { transform: translateY(0); }
}
/* 矢印のアニメーション */
@keyframes arrowMove {
  0% { transform: translateY(-50%); }
  50% { transform: translateY(-50%) translateY(5px); }
  100% { transform: translateY(-50%); }
}




/* ----------------- xxxxxxxxxxxxx ----------------- */


@media only screen and (max-width: 960px) 
{ /* SP start */

}





/* ----------------- xxxxxxxxxxxxx ----------------- */


@media only screen and (max-width: 960px) 
{ /* SP start */

}





/* ----------------- xxxxxxxxxxxxx ----------------- */


@media only screen and (max-width: 960px) 
{ /* SP start */

}


