@charset "utf-8";

/*
Theme Name: 2ndSHOP
Author: hironori hashimoto
Author URI: https://pepinc.biz/
Description: 2ndSHOPのオリジナルテンプレート
*/

html {
  font-size: 55%;
	scroll-behavior: smooth;
}

@media screen and (min-width: 960px) {
  html {
    font-size: 62.5%;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  text-rendering: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  line-height: 2.1254;
  letter-spacing: 0.22rem;
  font-weight: 400;
  color: #222;
  font-family:"Noto Sans JP", "Noto Sans CJK JP",
    "Noto Sans CJK JP Subset", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}
h1{
	border-bottom:none!important;
}
ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  display: block;
  position: relative;
}

h2,
h3,
h4,
h5 {
  line-height: 1.5;
}

.ps-br {
  display: none;
}

.sp-br {
  display: block;
}

@media screen and (min-width: 560px) {
  .ps-br {
    display: block;
  }

  .sp-br {
    display: none;
  }
}
.en{
  font-family: "Montserrat", sans-serif;
}
.fade {
  opacity: 0;
  transition: opacity 1.4s,
    transform 0.8s;
}

.fade {
  opacity: 1;
}

.fadein {
  opacity: 0;
  transform: translate(0, 40px);
  transition: opacity 1.4s, transform 0.8s;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein-right {
  opacity: 0;
  -webkit-transform: translateX(80px);
  -ms-transform: translateX(80px);
  transform: translateX(80px);
}

.fadein-right.scrollin {
  opacity: 1;
  -webkit-transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    transform 1s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

/*********************************
ヘッダー
*********************************/
#head_wrap {
  position: fixed;
  top: 0px;
  z-index: 5;
	width: 100%;
}

.l-header {
	background-color: #fff;
  width: 100%;
	position: relative;
	background-color: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(0.71429rem);
}
@media only screen and (min-width: 560px) {
	.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    max-width: 95%;
    margin: 0 auto;
	border-radius: 46px;
	color:#fff;
		padding:0px 20px;
	}
}
.l-header__logo {
  flex: 0 0 47%;
  max-width: 47%;
  padding: 10px 15px;
}

.l-header__logo img {
  vertical-align: text-bottom;
}

@media only screen and (min-width: 560px) {
  .l-header__logo {
    flex: 0 0 12%;
    max-width: 12%;
    padding: 0px 0px 0px 15px;
  }
}
.l-header__list{
	background:#fff;
	padding:5rem 0px;
}
@media only screen and (min-width: 960px) {
  .l-header__list {
	  padding:0px;
    display: flex;
	  align-items: center;
	  background:none;
  }

  .l-header__logo a:hover {
    opacity: 0.6;
  }
}

.l-header__link {
  padding: 20px 10px;
  font-weight: 500;
  text-align: center;
  font-size: 1.8rem;
	color:#333;
}

@media only screen and (min-width: 560px) {
  .l-header__link {
    font-size: 1.5rem;
  }
}

@media only screen and (min-width: 960px) {
  .l-header__link {
    position: relative;
  }

  .l-header__link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    width: 100%;
    height: 4px;
    background-color: #f3991f;
    transform: scale(0, 1);
    transform-origin: center;
    transition: transform .2s;
  }

  .l-header__link:hover::before {
    transform: scale(1);
  }
}

.l-conversion__button a {
  padding:10px 15px;
  background-image: repeating-linear-gradient(45deg, rgba(254, 139, 37, 1), rgba(254, 139, 37, 1) 5px, rgba(254, 127, 32, 1) 0, rgba(254, 127, 32, 1) 10px);
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
    border-radius: 16px;
	    max-width: 80%;
    margin: 0 auto;
}
.l-conversion__button a::before{
	content:none;
}
@media only screen and (min-width: 560px) {
  .l-conversion__button a {
    font-size: 1.5rem;
	  margin-left:20px;
	  max-width: 100%;
  }
	.l-conversion__button a:hover{opacity:0.6;}
}

.l-conversion__button a:hover {
  background-color: #EE6E01;
}

.l-conversion__button a i {
  display: block;
  font-size: 4rem;
  text-align: center;
}


@media screen and (max-width: 559px) {
  .menu .bar {
    width: 30px;
    height: 2px;
    background: #0057ba;
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease;
    transform-origin: left;
  }

  .menu .bar1 {
    margin-bottom: 8px;
  }

  .menu .bar3 {
    margin-top: 8px;
  }

  .menu.toggle .bar1 {
    transform-origin: left;
    transform: rotate(45deg);
  }

  .menu.toggle .bar2 {
    opacity: 0;
    visibility: hidden;
  }

  .menu.toggle .bar3 {
    transform-origin: left;
    transform: rotate(-45deg);
  }

  .l-header__navigation {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transition: 0.4s ease-out;
    display: flex;
  }

  l-header__navigation li {
    height: var(--nav-height);
    line-height: var(--nav-height);
    text-align: center;
    width: 100%;
    display: block;
  }

  .menu {
    display: block;
    margin-left: auto;
    padding-right: 15px;
        position: absolute;
        z-index: 11;
        right: 0px;
        top: 15px;
  }

  .menu.toggle+.l-header__navigation {
    transform: translateX(-100%);
  }
}

/*********************************
パーツ
*********************************/
.p-common__inner {
  margin-bottom: 4rem;
}

@media only screen and (min-width: 560px) {
  .p-common__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 0px;
  }

  .u-reverse {
    flex-direction: row-reverse;
  }
}
.p-common__title{
	background: #0057ba;
	color:#fff;
	font-size:3.2rem;
	padding:0 20px;
	display:flex;
	align-items:center;
	height: 180px;
    margin-bottom: 60px;
}
@media only screen and (min-width: 560px) {
	.p-common__title{
		font-size:4rem;
		padding:0 40px;
	}
}
.wrap {
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 15px;
}

.u-hidden__wrap {
  overflow: hidden;
}

.c-common__headline {
  position: relative;
  margin-bottom: 7.2rem;
}

.p-items__headline {
  font-size: 5rem;
  font-family: "Montserrat", sans-serif;
  color: #fe8b24;
	text-align:left;
	margin-bottom:1rem;
}

@media only screen and (min-width: 960px) {
  .p-items__headline {
    font-size: 10rem;
  }
}
.u-items__jp{
  font-family:"Noto Sans JP", "Noto Sans CJK JP",
    "Noto Sans CJK JP Subset", sans-serif;
    padding-bottom: 3rem;
}
.u-items__jp{
  font-size:4rem;
}
@media only screen and (min-width: 960px) {
  .u-items__jp{
    font-size:6rem;
  }
}
.p-items__en{
  color:#fff;
  font-size:1.6rem;
}
.p-items__headline span{
	font-size:1.6rem;
	vertical-align:middle;
	color:#0057ba;
	margin-left:2rem;
}
.c-common__body {
  margin-bottom: 70px;
  text-align: center;
}

/*********************************
メインビジュアル
*********************************/
.p-top__inner {
  overflow: hidden;
}

@media only screen and (min-width: 560px) {
  .p-top__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
}
.p-top__hero {
  position: relative;
	padding-bottom:0px;
}
.p-top__hero--image picture {
  line-height: 0;
  display: block;
}

.p-top__hero::before {
  width: 58%;
  margin: 0 auto 20px;
  padding: 24px 30px;
  height: 90vh;
  min-height: 900px;
  width: 100%;
  background: -webkit-linear-gradient(left,
      rgba(255, 255, 255, 0.8) 40%,
      rgba(255, 255, 255, 0) 60%);
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.8) 40%,
      rgba(255, 255, 255, 0) 60%);
}

@media only screen and (min-width: 960px) {
  .p-top__hero::before {
    margin: 0;
    padding: 0;
    width: 100%;
  }
}

.p-top__hero--catch {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  margin-top: 3rem;
}

@media only screen and (min-width: 560px) {
  .p-top__hero--catch {
    margin-top: 0rem;
  }
}

@media only screen and (min-width: 1280px) {
  .p-top__hero--catch {
    font-size: 2.188vw;
  }
}

.p-top__hero--catch span {
  margin: 5px;
  padding: 6px;
  width: 50px;
  height: 50px;
}

@media only screen and (min-width: 560px) {
  .p-top__hero--catch span {
    width: auto;
    height: auto;
    margin: 0 5px;
  }
}

.smooth {
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  animation: catch 1.4s forwards;
  animation-delay: .6s;
  opacity: 0;
}

@media only screen and (min-width: 560px) {
  .smooth {
    animation-delay: 1s;
  }
}

@keyframes catch {
  0% {
    transition-property: clip-path;
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0);
    opacity: 1;
  }
}

.p-top__body {
  color: #006cb7;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0 15px;
}

@media only screen and (min-width: 560px) {
  .p-top__body {
    font-size: 2rem;
  }
}

.p-top__body span {
  color: #ed6d00;
  background: linear-gradient(to right, transparent 50%, rgba(255, 165, 0, 0.3) 50%);
  background: linear-gradient(to right, transparent 50%, rgba(255, 165, 0, 0.3) 50%);
  background-repeat: repeat-x;
  background-size: 200% .6em;
  padding-bottom: .6em;
  background-position: -100% .6em;
}

.u-blue__bg {
  background: #006cb7;
}

.u-orange__bg {
  background: #ed6d00;
}

.p-top__hero--image {
  position: relative;
  overflow: hidden;
}

.p-top__hero--image::before {
  animation: img-wrap 1.3s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-wrap {
  100% {
    transform: translateX(-100%);
  }
}
.p-top__hero--block {
  color: #fff;
  text-align: center;
}

@media only screen and (min-width: 560px) {
  .p-top__hero--block {
    flex: 0 0 50%;
    padding: 0 2%;
  }
}

.p-top__campaign__body {
  font-size: 1.8rem;
  display: block;
  letter-spacing: 0.5rem;
}

.p-top__campaign{
  z-index: 2;
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  display: block;
  padding: 24px 15px;
	background-color:#fe8b24;
	    line-height: 1.8;
}
.p-top__campaign span{
	display:block;
}
@media only screen and (min-width: 560px) {
  .p-top__campaign{
    font-size: 3.2rem;
  }
}
.nayami{
	padding:100px 0px;
	text-align:center;
	background-image: repeating-linear-gradient(45deg,
      rgba(255, 233, 1, 1),
      rgba(255, 233, 1, 1) 5px,
      rgba(255, 235, 0, 0.9) 0,
      rgba(255, 235, 0, 0.9) 10px);
      margin-bottom: 5rem;
}
.p-kaiketsu__inner{
  padding-top: 5rem;
}
.p-nayami__headline{
	margin-bottom:10px;
	max-width:80%;
	margin-left:auto;
	margin-right:auto;
  text-align: center;
}
@media only screen and (min-width: 560px) {
	.p-nayami__headline{
		max-width:500px;
	}
}
.p-nayami__lead{
	color:#0057ba;
	font-size:2.4rem;
  text-align: center;
	margin-bottom:3rem;
}
@media only screen and (min-width: 560px) {
	.p-nayami__lead{
		font-size:3.2rem;
	}
}
.p-nayami__lead span{
	background-color:#fff;
	font-size:3.2rem;
	font-weight:bold;
	padding: 0px 5px;
    margin: 0px 5px;
}
@media only screen and (min-width: 560px) {
	.p-nayami__lead span{
		font-size:4rem;
		padding: 0px 10px;
    margin: 0px 5px;
	}
}
@media only screen and (min-width: 560px) {
.p-nayami__inner{
	display:flex;
	justify-content: space-between;
        flex-wrap: wrap;
        max-width: 900px;
        margin:0 auto;
}
}
.p-nayami__block{
	max-width:80%;
	margin:0 auto;
}
@media only screen and (min-width: 560px) {
.p-nayami__block{
  flex:0 0 48.5%;
  max-width: 48.5%;
}
}
.p-top__hero__icon {
  background-color: #006cb7;
  color: #fff;
  display: inline-block;
  position: relative;
  height: 45px;
  text-align: center;
  max-width: 70%;
  line-height: 45px;
  font-size: 2rem;
  font-weight: bold;
  width: 100%;
  margin-bottom: 2rem;
  animation: ribon 1.4s forwards;
  animation-delay: 1.1s;
  opacity: 0;
}

@media only screen and (min-width: 560px) {
  .p-top__hero__icon {
    animation-delay: 1.6s;
  }
}

@keyframes ribon {
  0% {
    opacity: 0;
    transform: matrix(1, 0, 0, 1, 0, 100);
    transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  }

  100% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}

.p-top__hero__icon::before {
  content: "";
  position: absolute;
  width: 10px;
  bottom: -10px;
  left: -35px;
  z-index: -2;
  border: 20px solid #015996;
  border-left-color: transparent;
  /*山形に切り抜き*/
}

.p-top__hero__icon::after {
  content: "";
  position: absolute;
  width: 10px;
  bottom: -10px;
  right: -35px;
  z-index: -2;
  border: 20px solid #015996;
  border-right-color: transparent;
  /*山形に切り抜き*/
}
.p-common__headline {
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: 32px;
  text-align: center;
  color: #006cb7;
  position: relative;
  top: 10px;
  letter-spacing: 0.3rem;
}

.p-common__headline::after {
  content: "";
  height: 26px;
  width: 1px;
  background: #006cb7;
  position: absolute;
  bottom: -40px;
  left: 0px;
  right: 0px;
  text-align: center;
  margin: 0 auto;
  transform: skew(-20deg);
}

/*********************************
教育方針
*********************************/
section {
  padding: 0px 0px 10rem;
}
.p-policy__icon{
	text-align:center;
	margin-bottom:2rem;
}
.p-policy__inner {
	background-image: url("/wp-content/themes/PEP/images/merit_back_people_sp.png");
  position: relative;
padding: 10rem 0px 21rem;
	    background-repeat: no-repeat;
	    background-size: 100%;
    background-position: 50% 100%;
}
@media only screen and (min-width: 560px) {
	.p-policy__inner {
		padding: 10rem 0px 15rem;
		background-size: cover;
		background-image: url("/wp-content/themes/PEP/images/merit_back.png");
	}
}

/* .p-policy__inner::before {
  content: "";
  background-image: url("./images/policy-bg.jpg");
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.1;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-size: 100%;
  background-position: center;
}
 */
@media only screen and (min-width: 560px) {
  .p-policy__inner::before {
    background-size: contain;
  }
}

.p-policy__headline {
  font-size: 2.4rem;
	color: #0057ba;
	text-align: center;
	margin-bottom: 16px;
}
.p-policy__title-strong{
	color:#fff;
}
.p-policy__title{
	font-size:3.2rem;
	color:#ffe600!important;
	background:#0057ba;
	padding:0px 10px;
		display:inline-block;
}
.p-policy__list {
  text-align: left;
  font-weight: bold;
  margin-bottom: 4rem;
}

.p-policy__list p {
  line-height: 1.9;
	font-weight:normal;
}

@media only screen and (min-width: 960px) {
  .p-policy__list p {
    max-width: 90%;
    margin: 2rem auto 1rem;
  }
}
.p-policy__list p span{
	color:#fe8b24
}
.p-policy__lead {
  font-size: 2rem;
  margin-bottom: 4rem;
  font-weight: bold;
  color: #006cb7;
  padding-top: 4rem;
  text-align: center;
}

.p-policy__body {
  margin-bottom: 3rem;
  line-height: 2.5;
}

.material-icons {
  display: inline-flex;
  vertical-align: middle;
}

/*********************************
講師紹介
*********************************/
.p-teacher__inner {
  position: relative;
}

@media only screen and (min-width: 560px) {
  .p-teacher__inner {
    padding: 16rem 0;
  }
}

.p-teacher__inner::after {
  content: "";
  background-color: #f9c272;
  position: absolute;
  left: 0px;
  height: 66%;
  max-width: 75%;
  top: 20%;
  width: 100%;
  z-index: -1;
  opacity: 0.1;
}

@media only screen and (min-width: 560px) {
  .p-teacher__inner::after {
    height: 600px;
    max-width: 62%;
    bottom: 80px;
    top: auto;
  }
}

.p-teacher__image img {
  box-shadow: 20px 20px 0 #f9c272;
}

@media only screen and (min-width: 560px) {
  .p-teacher__block {
    flex: 0 0 50%;
  }

  .p-teacher__image {
    flex: 0 0 40%;
  }
}

.p-teacher__headline {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 32px;
  color: #f3991f;
  position: relative;
  left: 0px;
  margin-top: 5rem;
}

@media only screen and (min-width: 560px) {
  .p-teacher__headline {
    left: -70px;
    margin-top: 0rem;
  }
}

.p-teacehr__body {
  margin-bottom: 14px;
  text-align: justify;
}

.p-teacher__name {
  color: #006cb7;
  text-align: right;
  font-size: 1.8rem;
  margin-top: 40px;
  font-weight: bold;
}

.p-teacher__result {
  border: 4px solid #006cb7;
  padding: 30px 20px 20px 20px;
  margin-top: 40px;
  background: #fff;
  position: relative;
}

.p-teacher__result-name {
  position: absolute;
  top: -20px;
  left: 20px;
  background: #006cb7;
  color: #fff;
  padding: 0px 26px;
  font-size: 2.4rem;
}

.p-result__list {
  font-size: 1.4rem;
}

.p-result__list li:not(:last-child) {
  border-bottom: 1px solid #006cb7;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.p-result__list i {
  color: #006cb7;
  font-size: 1.4rem;
  margin-right: 8px;
}
.p-result__inner{
  background-color: #fff;
  padding:15px;
  border-radius: 16px;
  margin-bottom: 90px;
  position: relative;
}
@media only screen and (min-width: 960px) {
  .p-result__inner{
    padding:40px;
    margin-bottom: 130px;
    border-radius: 30px;
  }
}
.p-result__name{
  color:#0057ba;
  font-size:20px;
  font-weight: bold;
}
@media only screen and (min-width: 560px) {
  .p-result__name{
    font-size:27px;
  }
}
.p-result__name .material-icons{
  margin-right: 3px;
}
.p-result__sama{
  font-size:25px;
}
.p-result__tokucho{
  color:#2587ff;
  font-size: 14px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 560px) {
  .p-result__tokucho{
    font-size: 16px;
  }
}
.p-result__title{
  font-size: 22px;
  font-weight: bold;
  color:#0057ba;
  background-color: #e9e9e9;
  border-left: 4px solid #fe8b24;
  padding: 10px 15px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 560px) {
  .p-result__title{
    font-size: 26px;
  }
}
@media only screen and (min-width: 560px) {
.p-result__image{
  flex:0 0 43%;
  max-width: 43%;
}
.p-result__block{
  flex:0 0 55%;
  max-width: 55%;
}
}
.p-result__image img{
  border-radius: 16px;
}
.p-result__body{
  color:#0057ba;
  font-size:16px;
}
.u-result__01::after,
.u-result__03::after,
.u-result__05::after,
.u-result__07::after{
  content:'01';
  position: absolute;
  color:#fff;
  font-family: "Montserrat", sans-serif;
  font-size:60px;
  top: -105px;
    left: 0px;
}
.u-result__02::after,
.u-result__04::after,
.u-result__06::after{
  content:'01';
  position: absolute;
  color:#fff;
  font-family: "Montserrat", sans-serif;
  font-size:60px;
  top: -105px;
    right: 0px;
}
@media only screen and (min-width: 960px) {
  .u-result__01::after,
.u-result__03::after,
.u-result__05::after,
.u-result__07::after{
  left: 30px;
  font-size:100px;
  top: -152px;
}
}

@media only screen and (min-width: 960px) {
  .u-result__02::after,
.u-result__04::after,
.u-result__06::after{
  right: 30px;
  font-size:100px;
  top: -152px;
}
}
.u-result__02::after{
  content:'02';
}
.u-result__03::after{
  content:'03';
}
.u-result__04::after{
  content:'04';
}
.u-result__05::after{
  content:'05';
}
.u-result__06::after{
  content:'06';
}
.u-result__07::after{
  content:'07';
}
/*********************************
ポイント
*********************************/
.p-strongth__inner {
  padding: 10rem 0 10rem;
  position: relative;
  background:#ffed7d;
  margin-bottom: 5rem;
}
.p-strong__block-wrap{
  background-color: #fff;
}
.p-strongth__inner .p-items__headline{
	color:#0057ba;
}
.p-strong__block-wrap{
  padding:30px 15px;
  text-align: left;
}
@media only screen and (min-width: 560px) {
  .p-strong__block-wrap{
    padding:30px;
  }
}
@media only screen and (min-width: 960px) {
  .p-strong__block-wrap{
    padding:60px;
  }
}
.p-strongth__image {
  position: relative;
  margin: 10rem 0 3rem;
}

.p-strongth__image img {
  object-fit: cover;
  height: 370px;
  width: 100%;
}

@media only screen and (min-width: 560px) {
  .p-strongth__image {
    flex: 0 0 40%;
    margin: 0rem;
  }

  .p-strongth__image img {
    object-fit: none;
    height: auto;
    width: auto;
  }

  .p-strongth__block {
    flex: 0 0 55%;
  }
}
.p-strongth__block .p-link__block {
  margin-top: 2rem;
	margin-bottom:4rem;
}
#cta01{
  padding:5rem 0px;
}
#cta03{
  padding:5rem 0px 2rem;
}
.p-common__link-inner{
  text-align: center;
  font-weight: bold;
  overflow: hidden;
  padding:0px 16px;
}
.p-link__title{
  font-size:1.8rem;
  position: relative;
  color:#0057ba;
  display: inline-block;
  line-height: 1.5;
}
.p-link__title span{
  font-size:2.4rem;
}
.p-link__title::before{
  background: #0057ba;
    content: "";
    display: inline-block;
    left: -6%;
    padding: 1px 8px;
    position: absolute;
    top: 50%;
    transform: rotate(55deg);
}
.p-link__title::after{
  background: #0057ba;
    content: "";
    display: inline-block;
    padding: 1px 8px;
    position: absolute;
    right: -6%;
    top: 50%;
    transform: rotate(-55deg);
}
.p-common__link{
  color: #fff;
  background: repeating-linear-gradient(45deg, rgba(254, 139, 37, 1), rgba(254, 139, 37, 1) 5px, rgba(254, 127, 32, 1) 0, rgba(254, 127, 32, 1) 10px);
  font-weight: bold;
  padding: 18px 15px;
  max-width: 90%;
	margin: 10px auto 0px;
    display: block;
    border-radius: 8px;
    font-size: 21px;
}
@media only screen and (min-width: 560px) {
  .p-common__link{
    max-width: 800px;
	  font-size: 24px;
  }
}
.p-common__link::before{
  content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
    -webkit-animation: shine 2s infinite;
    animation: shine 2s infinite;
}
.p-common__link::after{
  content: 'arrow_circle_right';
    font-family: "Material Icons";
    position: absolute;
    line-height: 1;
    font-size: 4rem;
    font-weight: normal;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}
@media only screen and (min-width: 560px) {
	.p-common__link::after{
		font-size:4.8rem;
	}
}
@keyframes shine {
  100% {
      left: 100%;
  }
}
.p-common__link:hover{
  opacity: 0.7;
}
.u-result__body{
	  padding: 14px;
	font-size:13px;
	margin-bottom:20px;
    background-color: #eff8ff;
}
.p-strongth__body {
  color:#0057ba;
}

.p-description__list {
  border: 2px solid #006cb7;
  padding: 20px;
  color: #006cb7;
  font-size: 1.8rem;
}

.p-strong__content:not(:last-child) {
  margin-bottom: 6rem;
}

.p-strongth__lead {
  color: #006cb7;
  margin-bottom: 3rem;
  font-size: 3.25rem;
  position: relative;
}

@media only screen and (min-width: 560px) {
  .p-strongth__lead {
    font-size: 3.6rem;
  }
}

.p-strongth__lead span {
  margin: 0 3px;
  padding: 2px 6px;
  line-height: 1.3;
  color: #fff;
  display: inline-block;
}

.p-point__headline {
  position: absolute;
  left: 8px;
  right: 0;
  top: -40px;
  font-size: 7rem;
  color: #fe8b24;
  font-weight: bold;
  line-height: 1;
  text-shadow: 3px 3px 0 #ffffff, -3px 3px 0 #ffffff, -3px -3px 0 #ffffff, 3px -3px 0 #ffffff;
  font-family: "Montserrat", sans-serif;
}

@media only screen and (min-width: 560px) {
  .p-point__headline {
    top: -40px;
    font-size: 7rem;
  }
}

@media only screen and (min-width: 960px) {
  .p-point__headline {
    top: -40px;
    font-size: 9rem;
  }
}

.motion-txt {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.motion-txt::after {
  content: '';
  position: absolute;
  opacity: 1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #f3991f;
  transform: translate3d(-101%, 0, 0);
}

.js-scroll.show .motion-txt::after {
  transition-property: transform, opacity;
  transition-duration: 0.8s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
}

.js-scroll.done .motion-txt::after {
  transition-property: transform;
  transition-duration: 0.8s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(103%, 0, 0);
}

.motion-txt .motion-inner {
  display: inline-block;
  opacity: 0;
}

.js-scroll.done .motion-txt .motion-inner {
  opacity: 1;
}

.u-curriculum__inner {
  display: flex;
  justify-content: space-between;
}

/*********************************
学習コース
*********************************/
.p-cource__inner {
  padding: 10rem 0;
}

.c-3colums__block {
  box-shadow: 0px 3px 15px rgb(0 0 0 / 8%);
  padding: 30px 20px;
  background-color: #fff;
  position: relative;
  margin-bottom: 30px;
}

/* .c-3colums__block::after {
  content: "";
  border: 1px solid #333;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
} */
.c-3colums__block .material-icons {
  display: block;
  font-size: 6rem;
  text-align: center;
}

@media only screen and (min-width: 560px) {
  .c-3colums__block {
    flex: 0 0 31.25%;
  }
}

.p-strongth__list {
  flex: 0 0 31.25%;
  max-width: 31.25%;
  text-align: center;
}

@media only screen and (min-width: 560px) {
  .p-strongth__list {
    margin-bottom: 4rem;
  }
}

.p-cource__headline {
  background-color: #006cb7;
  color: #fff;
  line-height: 1;
  padding: 15px;
  text-align: center;
  border-radius: 16px;
  margin-bottom: 4rem;
  font-size: 2rem;
}

.p-cource__lead {
  font-weight: bold;
  text-align: center;
  font-size: 2.4rem;
  margin: 1.5rem 0;
}

.c-common__maker {
  font-weight: bold;
  background: linear-gradient(to right, transparent 50%, rgba(255, 245, 0, 0.5) 50%);
  background-repeat: repeat-x;
  background-size: 200% .6em;
  padding-bottom: .6em;
}

.c-common__maker.active {
  transition: all 1.2s ease;
  background-position: -100% .6em;
}

/*********************************
価格
*********************************/
.p-price__inner{
	padding:10rem 0px;
}
.p-price__inner .p-items__headline{
	color:#0057ba;
}
.p-price__table {
  width: 100%;
  text-align: center;
  border: 2px solid #7b7b7b;
  table-layout: fixed;
  border-collapse: separate;
}

.p-price__table tr {
  border-bottom: 1px solid #7b7b7b;
  padding: 10px;
}

.p-price__table .p-table__headline th {
  padding: 2px;
	color:#0057ba;
	background:#fff;
	color: #006cb7;
  border-bottom: 1px solid #7b7b7b;
  border-right: 1px solid #7b7b7b;
}
@media only screen and (min-width: 560px) {
	.p-price__table .p-table__headline th {
		padding: 14px;
	}
}
.p-table__shop{
	color:#fff;
	background-color:#fe8b24!important;
	color:#fff!important;
	font-weight:bold;
	width:30%;
}
@media only screen and (min-width: 560px) {
	.p-table__shop{
		width:auto;
	}
}
.p-price__table .p-table__headline th:first-child {
  background-color: #fff;
}

.p-price__table .p-table__headline th:last-child {
  border-right: 0px;
}

.p-price__table .p-table__title th:nth-child(2) {
  border-bottom: 1px solid #c3d4e0;
}

.p-price__table .p-table__title th {
  padding: 7px;
  background:#eceee0;
  color: #006cb7;
  border-right: 1px solid #7b7b7b;
  border-bottom: 1px solid #7b7b7b;
}
@media only screen and (min-width: 560px) {
	.p-price__table .p-table__title th {
		padding: 14px;
	}
}
.u-comparison__color{
	color:#fe8b24;
}
.p-price__table .p-table__title:nth-child(4) th {
  border-bottom: 0px;
}

.p-table__td {
  border-bottom: 1px solid #7b7b7b;
	vertical-align:middle;
}

.p-table__title td:not(:last-child) {
  border-right: 1px solid #7b7b7b;
}

.p-caption__body {
  font-size: 1.3rem;
  color: #999;
  margin: 1rem 0 5.4rem;
}

.c-4colums__block {
  margin-bottom: 20px;
}

@media only screen and (min-width: 560px) {
  .c-4colums__block {
    flex: 0 0 24.25%;
  }
}

.p-strongth__list h4 {
  color: #006cb7;
  font-size: 1.6rem;
  margin-top: 16px;
}

@media only screen and (min-width: 560px) {
  .p-strongth__list h4 {
    font-size: 2rem;
  }
}

.p-voice__inner {
  margin-top: 4rem;
  background-color: #eaf6ff;
  padding: 24px;
  position: relative;
  border-radius: 8px;
}

.p-voice__inner::after {
  content: "VOICE";
  position: absolute;
  right: 0;
  top: 0px;
  font-size: 6rem;
  color: #006cb7;
  font-family: "Montserrat", sans-serif;
  opacity: 0.15;
  line-height: 0;
}

.u-example__inner::after {
  content: "EXAMPLE";
}

.p-voice__headline {
  color: #006cb7;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.p-voice__title {
  background-color: #006cb7;
  color: #fff;
  display: inline-block;
  padding: 2px 10px;
  font-style: italic;
  margin-bottom: 12px;
}

.p-voice__body {
  font-size: 1.4rem;
  background: linear-gradient(#c9e7fd 1px, transparent 2px);
  background-size: auto 3.5rem;
  line-height: 3.5rem;
}

.p-voice__headline span {
  margin-right: 8px;
  vertical-align: middle;
}

.c-strongth__list-image img {
  border-radius: 50%;
}

.p-discount__wrap {
  position: relative;
  color: #fff;
  padding: 6rem 0;
  background-color: #006cb7;
}

.p-discount__wrap::before {
  content: "";
  background-image: url("./images/bg.jpg");
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  background-attachment: fixed;
  opacity: 0.2;
}

.p-discount__wrap .p-common__headline {
  color: #fff;
  margin-bottom: 8rem;
}

.c-2colums__block {
  background-color: #fff;
  color: #006cb7;
  padding: 40px;
  margin-bottom: 4rem;
  position: relative;
  box-shadow: 0px 3px 15px rgb(0 0 0 / 8%);
  border-radius: 8px;
}

@media only screen and (min-width: 560px) {
  .c-2colums__block {
    flex: 0 0 48%;
  }
}

.p-discount__headline {
  background-color: #006cb7;
  text-align: center;
  border-radius: 16px;
  color: #fff;
  padding: 10px;
  position: absolute;
  width: 100%;
  top: -23px;
  left: 0;
  right: 0;
  max-width: 40%;
  margin: 0 auto;
  border: 2px solid #fff;
}

.p-discount__lead {
  text-align: center;
  font-weight: bold;
  font-size: 3.2rem;
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
}

/*********************************
アクセスマップ
*********************************/
.p-access__block {
  margin-bottom: 20px;
}

@media only screen and (min-width: 560px) {
  .p-access__block {
    flex: 0 0 40%;
    margin-bottom: 0px;
  }

  .p-access__map {
    flex: 0 0 50%;
  }
}

.p-access__headline {
  font-size: 2.4rem;
  border-bottom: 1px solid #006cb7;
  padding-bottom: 10px;
  border-bottom: 4px solid #006cb7;
  padding-bottom: 10px;
  margin-bottom: 30px;
  color: #006cb7;
}

.c-common__link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background-color: rgba(243, 153, 31, 0.7);
  border-radius: 50%;
  transition: 0.3s;
}

.c-common__link:hover::after {
  width: 20px;
  height: 20px;
}

.c-2colums__block .material-icons {
  font-size: 6rem;
  text-align: center;
  display: block;
  color: #f3991f;
  line-height: 0.8;
  margin-top: 10px;
}

.p-access__table {
  text-align: left;
  width: 100%;
}

.p-access__table tr {
  display: flex;
  margin-bottom: 10px;
  border-bottom: 1px solid #e6f0f8;
  padding-bottom: 10px;
}

.p-access__table tr th {
  flex: 0 0 25%;
  max-width: 25%;
}

.p-access__table tr td {
  flex: 0 0 50%;
  max-width: 50%;
}

/*********************************
流れ
*********************************/
.p-flow__inner {
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.u-flow__block {
  background-color: #eaf6ff;
  color: #006cb7;
  padding: 20px;
  position: relative;
  margin-bottom: 20px;
  border-radius: 8px;
}

.u-flow__inner {
  position: relative;
}

.u-flow__inner::before {
  content: "";
  background-color: #006cb7;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0px;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
}

@media only screen and (min-width: 560px) {
  .u-flow__inner::before {
    width: 100%;
    height: 2px;
    top: 50%;
    margin: 0px;
    left: auto;
    right: auto;
  }
}

.p-flow__number {
  position: absolute;
  top: -0px;
  left: 0px;
  font-size: 10rem;
  font-family: "Montserrat", sans-serif;
  opacity: 0.1;
  line-height: 0.5;
}

.u-flow__block p {
  font-size: 1.4rem;
}

.p-flow__lead {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.instagram iframe{
margin: 80px auto 12px!important;
}
/*********************************
ブログ
*********************************/
.p-blog__inner {
  margin-top:5rem;
	padding:3rem 0px 5rem;
  position: relative;
  background:linear-gradient(to right, rgb(134 212 250) 0%, rgb(85 185 243) 100%);
  /* background-image: repeating-linear-gradient(45deg, rgba(254,139,37,1), rgba(254,139,37,1) 5px, rgba(254,127,32,1) 0, rgba(254,127,32,1) 10px); */
}
@media only screen and (min-width: 560px) {
  .p-blog__inner {
    padding:10rem 0px;
  }
}
.p-blog__inner .p-common__inner {
  position: relative;
  z-index: 1;
}
.p-blog__inner .p-items__headline,
.p-blog__inner .p-items__headline span{
	color:#fff;
}
.p-blog__image img {
  object-fit: cover;
  height: 288px;
width:100%;
	    object-position: 50% 39%;
}

@media only screen and (min-width: 560px) {
  .p-blog__image img {
    height: 247px;
  }
}

.p-blog__button {
  margin-top: 2.4rem;
  text-align: center;
}

.c-common__link {
  color: #fff;
	background:#0057ba;
  font-weight: bold;
	padding:10px;
	max-width:400px;
	margin:0px auto;
	display:block;
}

.c-common__link i {
  font-size: 16px;
}

.p-blog__date {
  color: #999;
  font-size: 1.2rem;
}

.p-blog__headline {
  font-weight: bold;
  margin-top: 0.5rem;
	color:#0057ba;
	font-size: 2rem;
}

.p-blog__link {
  display: block;
  background-color: #fff;
  box-shadow: 0px 3px 15px rgb(0 0 0 / 8%);
  border-radius: 8px;
}

@media only screen and (min-width: 560px) {
  .p-blog__link:hover {
    transform: translateY(-5px);
  }
}

.p-blog__block {
  padding: 0 16px 24px;
}

@media only screen and (min-width: 560px) {
  .p-blog__block {
    height: 112px;
  }
}
.works-content{
	    background: #e9e9e9;
    padding-top: 10rem;
}
.single-inner{
	    max-width: 90%;
    margin: 0 auto;
    padding: 5rem 0px;
}
@media only screen and (min-width: 560px) {
.single-inner{
	    max-width: 80%;
    padding: 9rem 0px;
}
}
article{
	border-radius:16px;
	background: #fff;
    display: block;
}
article h2{
	margin-top:4rem;
	margin-bottom:2rem;
	font-size:2.4rem;
	color: #0057ba;/*文字色*/
  padding: 0.5em 0;/*上下の余白*/
  border-top: solid 3px #0057ba;/*上線*/
  border-bottom: solid 3px #0057ba;/*下線*/
}
article h3{
	position: relative;
  padding: 0.6em;
  background: #e0edff;
    margin-bottom: 35px;
    margin-top: 25px;
	font-size:1.7rem;
	font-weight:bold;
}
article h3::before{
	position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #e0edff;
  width: 0;
  height: 0;
}
.blog-eyecatch__image{
	text-align:center;
}
.blog-common-ttl{
	color:#0057ba;
	font-size:2.4rem;
    padding: 0em 0.5em;
    background: transparent;
    border-left: solid 5px #0057ba;
    line-height: 1.8;
	margin-bottom:2rem;
}
@media only screen and (min-width: 960px) {
	.blog-common-ttl{
		font-size:3.2rem;
	}
}
.blog-date{
	color:#999;
	font-size:1.3rem;
	text-align:right;
	margin-bottom:4rem;
}
.common-btn{
	background-color: #0057ba;
	max-width:400px;
	color:#fff;
	margin:0 auto;
	height:64px;
	line-height:64px;
	text-align:center;
	margin:4rem auto 8rem;
}
.common-btn:hover{
	opacity:0.7;
}
/****************************************
パンくずリスト
*****************************************/
#breadcrumb {
    margin-left: auto;
    padding-left: 0;
    margin-right: auto;
    margin-bottom: 6rem;
}

#breadcrumb li {
    display: inline;
    list-style: none;
}

#breadcrumb li:after {
    content: '>';
    padding: 0 10px;
}

#breadcrumb li:last-child:after {
    content: '';
}

#breadcrumb li a {
    text-decoration: none;
    display: inline-block;
}

#breadcrumb li:first-child a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f015";
    -webkit-font-smoothing: antialiased;
    font-weight: bold;
    font-size: 1.3rem;
    color: #333;
    padding-right: 5px;
}

#breadcrumb li a:hover {
    opacity: 0.5;
}

/*********************************
お問い合わせ
*********************************/

.cform tr {
    display: block;
    margin-bottom: 4.8rem;
}

@media screen and (min-width: 560px) {
    .cform tr {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.cform th {
    display: block;
    margin-bottom: 1rem;
    text-align: left;
}

@media screen and (min-width: 560px) {
    .cform th {
        margin-bottom: 0;
        margin-right: 1rem;
        max-width: 20rem;
        width: 100%;
        align-self: flex-start;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (min-width: 560px) {
    .cform td {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
        width: 100%;
        display: block;
    }
}
.mw_wp_form {
    margin: 4rem auto 0;
    width: 100%;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-all;
}
@media screen and (min-width: 560px) {
    .mw_wp_form {
        max-width: 960px;
        margin: 0 auto;
    }
}

.mw_wp_form table {
    width: 100%;
	text-align:left;
}
.mw_wp_form table tr{
	margin-bottom:20px;
	display:block;
}
@media screen and (min-width: 560px) {
	.mw_wp_form table tr{
		display:flex;
	}
}
.mw_wp_form [type=submit] {
    display: inline-block;
    font-size: 20px;
    padding: 10px 30px;
    text-decoration: none;
    background: #fe8b24;
    color: #FFF;
    border-bottom: solid 4px #fe8b24;
    border-radius: 3px;
}

.mw_wp_form option,
.mw_wp_form textarea,
.mw_wp_form input[type=text],
.mw_wp_form select,
.mw_wp_form input[type=email],
.mw_wp_form input[type=search],
.mw_wp_form input[type=url] {
    background-color: #fff;
    border: 1px solid #b3b3b3;
    padding: 10px 10px;
    margin-bottom: 5px;
    width: 100%;
}

@media screen and (min-width: 560px) {

    .mw_wp_form option,
    .mw_wp_form textarea,
    .mw_wp_form input[type=text],
    .mw_wp_form select,
    .mw_wp_form input[type=email],
    .mw_wp_form input[type=search],
    .mw_wp_form input[type=url] {
        width: 100%;
    }
}

.mw_wp_form textarea {
    min-height: 300px;
}

.required-srt {
    display: inline-block;
    background-color: #f3991f;
    color: #fff;
    padding: 0 0.5em;
    font-size: 1.1rem;
    margin-left: 1rem;
	border-radius: 4px;
    height: 28px;
    line-height: 28px;
}

@media screen and (min-width: 560px) {
    .required-srt {
		font-size: 1.3rem;
		display: flex;
    align-items: center;
        margin-left: 0;
    }
}

.mw_wp_form input[type="submit"] {
    cursor: pointer;
    background:repeating-linear-gradient(45deg, rgba(254, 139, 37, 1), rgba(254, 139, 37, 1) 5px, rgba(254, 127, 32, 1) 0, rgba(254, 127, 32, 1) 10px);
    padding: 18px 15px;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin:20px auto 40px;
    color: #fff;
    display: block;
    letter-spacing: 0.25rem;
    position: relative;
    transition: .3s;
    font-weight: 600;
    border: none;
	font-size:24px;
}
.p-cta__button{
  position: relative;
  max-width: 800px;
  margin: 0 auto;
	overflow:hidden;
}
.p-cta__button::after{
  content: 'arrow_circle_right';
  font-family: "Material Icons";
  position: absolute;
  line-height: 1;
  font-size: 4rem;
  font-weight: normal;
  top: 43%;
  transform: translateY(-50%);
  right: 10px;
  color:#fff;
}
@media screen and (min-width: 560px) {
	.p-cta__button::after{
		font-size: 4.8rem;
	}
}
.p-cta__button::before{
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  -webkit-animation: shine 2s infinite;
  animation: shine 2s infinite;
  z-index: 2;
}
.mw_wp_form input[type="submit"]:hover {
    opacity:0.7;

}

.submit-btn input:hover {
    background: #fff;
    color: #00142c;
}

.form-btn__inner {
    margin-top: 4rem;
}
.p-contact__inner{
	padding-top:10rem;
}
.p-contact__inner .p-items__headline{
	color:#0057ba;
}
.p-contact__body {
    text-align: center;
    font-weight: bold;
}

select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
}

select::-ms-expand {
    display: block;
}

.submit-btn {
    cursor: pointer;
    max-width: 280px;
    background-color: #ED6D00;
    padding: 24px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    display: block;
    letter-spacing: 0.25rem;
    position: relative;
    transition: .3s;
    font-weight: 600;
    border: none;
}

.submit-btn::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
    -webkit-animation: shine 2s infinite;
    animation: shine 2s infinite;
}

#wpcf7-modify {
    cursor: pointer;
    max-width: 280px;
    background-color: #fff;
    padding: 24px 32px;
    color: #FF9103 !important;
    border: 1px solid #FF9103 !important;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    display: block;
    letter-spacing: 0.25rem;
    position: relative;
    transition: .3s;
    font-weight: 600;
    border: none;
}

.submit-btn:hover {
    opacity: 0.6;
}

.thanks-block {
    margin-bottom: 16rem;
    text-align: left;
}

.thanks-block h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

@media screen and (min-width: 560px) {
    .thanks-block {
        text-align: center;
    }
}

.thanks-text {
    line-height: 2;
	margin:0 auto;
}

.caption {
    color: #999;
    margin-top: 2rem;
    display: block;
}

.contact-agreement__body {
    text-align: center;
    margin: 2rem 0;
}

.contact-agreement__body a {
    display: inline-block;
    text-decoration: underline;
}

@media screen and (min-width: 560px) {
    .contact-agreement__body a {
        margin-bottom: 4rem;
    }
}

.privacy-policy__wrap {
    max-width: 960px;
    margin: 0 auto 14rem;
}

.privacy-policy__block {
    margin-bottom: 4rem;
}

div.wpcf7-mail-sent-ok {
    border: 2px solid #ffffff !important;
    background: #fff;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: 2px solid #ffffff !important;
    background: #fff;
}

.contact-headline {
    font-size: 2rem;
    margin-bottom: 4rem;
}

.wpcf7-mail-sent-ok {
    display: none !important
}

/*********************************
footer
*********************************/
footer{
	background:#e9e9e9;
	text-align:center;
	padding:3rem 0px;
}
copyright {
	background-color: #fe8b24;
	color: #fff;
  text-align: center;
  display: block;
  font-size: 1.2rem;
  padding: 5px 10px;
}

.p-footer__logo {
  text-align: center;
  max-width: 150px;
  margin: 0 auto 3rem;
}

.c-pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.c-pagetop__button {
  background-color: #0057ba;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  width: 40px;
  height: 140px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

@media only screen and (min-width: 560px) {
  .c-pagetop__button {
    width: 60px;
    height: 150px;
  }
}

.c-pagetop__button:hover {
  background-color: #EE6E01;
}

.p-footer__link {
  text-align: center;
  font-size: 1.4rem;
  color: #999;
  margin-bottom: 30px;
}

.p-footer__link a:hover {
  color: #ed6d00;
}
.insta_btn2{/*ボタンの下地*/
  color: #FFF;/*文字・アイコン色*/
  border-radius: 7px;/*角丸に*/
  position: relative;
  display: inline-block;
	margin:0 auto 10rem;
  height: 50px;/*高さ*/
  width: 190px;/*幅*/
  text-align: center;/*中身を中央寄せ*/
  font-size: 18px;/*文字のサイズ*/
  line-height: 50px;/*高さと合わせる*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
  overflow: hidden;/*はみ出た部分を隠す*/
  text-decoration:none;/*下線は消す*/
	display:flex;
	justify-content:center;
	align-items:center;
}

.insta_btn2:before{/*グラデーション②*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;/*全体を覆う*/
  height: 100%;/*全体を覆う*/
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn2 .fa-instagram{/*アイコン*/
  font-size: 35px;/*アイコンサイズ*/
  position: relative;
}

.insta_btn2 span {/*テキスト*/
  display:inline-block;
  position: relative;
  transition: .5s
}

.insta_btn2:hover span{/*ホバーで一周回転*/
  transform: rotateX(360deg);
}
.qa-6 {
    margin-bottom: 5px;
    border-bottom: 2px solid #0257ba;
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 1em 1em 2em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
	transition:.3s;
	    background: #fff;
}
@media only screen and (min-width: 560px) {
  .qa-6 summary {
    padding: 1em 2em 1em 3em;
  }
}
.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 10px;
    font-weight: 600;
    font-size: 1.3em;
}
@media only screen and (min-width: 560px) {
  .qa-6 summary::before,
.qa-6 p::before {
  left:1em;
}
}
.qa-6 summary::before {
    color: #ed6d00;
    content: "Q";
}

.qa-6 summary::after {
/*     transform: translateY(-25%) rotate(45deg);
    width: 20px;
    height: 10px;
    margin-left: 10px;
    border-bottom: 1px solid #333333;
    border-right: 1px solid #333333; */
    content: 'keyboard_arrow_down';
    transition: transform .5s;
	font-family: "Material Icons";
	    font-size: 25px;
    font-weight: normal;
}
@media only screen and (min-width: 560px) {
	.qa-6 summary::after {
		width: 10px;
	}
}
.qa-6[open] summary::after {
    transform: rotate(180deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1.3em 3em 1.5em;
    color: #333;
    transition: transform .3s, opacity .3s;
	    background: #fff;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #ff8d8d;
    line-height: 1.5;
    content: "A";
}
.p-faq__inner{
  margin-top: 5rem;
	padding-top:5rem;
	background-color:#fffcde;
}
@media only screen and (min-width: 560px) {
  .p-faq__inner{
    padding-top:10rem;
  }
}
#faq .p-items__headline{
	color:#0057ba;
}
.p-faq__lead{
	color:#0057ba;
	font-size:2rem;
	margin-bottom:2rem;
}
.p-faq__body{
	color:#0057ba;
	margin-bottom:4rem;
}

.flow {
	border: 3px solid #006cb7;
}
.flow > li {
	padding: 30px 16px;
}
@media only screen and (min-width: 560px) {
.flow > li {
	padding: 30px;
}
}
.flow > li:not(:last-child) {
	border-bottom: 3px solid #006cb7;
	position: relative;
}
.flow > li:not(:last-child)::before,
.flow > li:not(:last-child)::after {
	content: "";
	border: solid transparent;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
}
@media only screen and (min-width: 560px) {
  .flow > li:not(:last-child)::before,
  .flow > li:not(:last-child)::after {
    left: 16%;
}
}
.flow > li:not(:last-child)::before {
	border-width: 22px;
	border-top-color: #006cb7;
}
.flow > li:not(:last-child)::after {
	border-width: 18px;
	border-top-color: #fff;
}
@media only screen and (min-width: 560px) {
  .flow > li dl {
    margin: 0;
    display: flex;
    align-items: center;
  }
}
.flow > li dl dd{
  font-size:16px;
}
@media only screen and (min-width: 560px) {
.flow > li dl dd{
  font-size:18px;
}
}
.flow > li dl dt {
	font-size: 21px;
	font-weight: 600;
	color:#006cb7;
	text-align: center;
}
@media only screen and (min-width: 560px) {
  .flow > li dl dt {
	  font-size: 24px;
    flex-basis: 30%;
    margin-right: 1vw;
}
}
.flow > li dl dt .icon {
	font-size: 14px;
	color: #fff;
	background: rgb(107,144,219);
	background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
	padding: 5px 10px;
	margin-bottom: 10px;
	display: block;
	border-radius: 20px;
}
.flow dl dd a{
  display: inline-block;
}
.p-catch__title{
  font-size:2.4rem;
  text-align: center;
  margin-top: 20px;
}
@media only screen and (min-width: 560px) {
.p-catch__title{
  font-size:4rem;
}
}
.contact-thanks{
	background:#e9e9e9;
	padding-top:10rem;
	padding-bottom:5rem;
}
@media only screen and (min-width: 560px) {
	.contact-thanks{
		padding-top:15rem;
	}
}
.p-contact__content{
	border-radius: 16px;
    background: #fff;
    display: block;
}