@charset "utf-8";


/* html */

/*html {
    overflow: auto;
  }
/* 
  html.is-hidden {
    overflow: hidden;
  }
  
  html > * {
    visibility: hidden;
  }
  
  html.wf-active > * {
    visibility: visible;
  }
  
/* body */
body {
  font-size: 0.875rem; 
  font-family: noto-sans-cjk-jp, sans-serif;
  overflow-x: hidden;
  color: #333333;
  line-height: 1.8;
  font-feature-settings: "palt";
}
/*body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}*/

.grecaptcha-badge {
  display: none;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: top;
  backface-visibility: hidden;
}

li {
  list-style-type: none;
}



/* SP */
.sp-DisNone {
  display: none;
}
.pc-DisNone {
  display: block;
}
.header {
    position: fixed;
    z-index: 100;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    height: 70px;
}
.header.change-color {
  background: rgba(51, 51, 51, 0.7);
}
.header-head {
    height: 58px !important;
    margin-top: 1.125em;
    margin-left: 1.125em;
    z-index: 110;
}
.header-head a {
    height: 100%;
}
.header-head a svg {
    height: 100%;
}

/* hamburger */
.hamburger {
  margin-top: 1.125em;
  margin-right: 1.125em;
}



/*menu*/
.menu{
  height: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  z-index: 200;
}
.menu__line{
  background: #fff;
  display: block;
  height: 2px;
  position: absolute;
  transition:transform .3s;
  width: 100%;
}
.menu__line--center{
  top: 9px;
}
.menu__line--bottom{
  bottom: 0;
}
.menu__line--top.active{
  top: 8px;
  transform: rotate(45deg);
}
.menu__line--center.active{
  transform:scaleX(0);
}
.menu__line--bottom.active{
  bottom: 10px;
  transform: rotate(135deg);
}


/*------------------------------------------*/
/* nav */
.headerNav {
  display: none;
}
.headerNav.open {
  position: fixed;
  background: #333333;
  height: 100%;
  width: 100%;
  z-index: 98;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  display: flex!important;
  transition: .5s;
}

.headerNav-inner {
  display: flex;
  flex-flow: column wrap;
  width: 300px;
  margin: 0 auto;
  justify-content: center;
}
.headerNav-inner li {
  margin-bottom: 1em;
}
.headerNav-inner li a {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  transition: .5s;
}
.headerNav-inner li a:hover {
  color: #008080;
}
.headerNav-inner li a span {
  display: block;
  line-height: 1.0;
}

.header-nav-en {
  font-size: 1.0rem;
  color: #008080;
  font-family: Helvetica, Helvetica Neue, Arial, sans-serif;
}

.header-news {
  display: block;
  width: 300px;
  margin: 1em 0 2em;
}

.header-contact {
}

.consultBtn {
  width: 250px;
  margin: 0 auto;
}
.consultBtn a {
  background-image: linear-gradient(90deg, rgba(223, 137, 181, 1), rgba(191, 217, 254, 1), rgba(242, 99, 172, 1));
  background-size: 200% 100%;
  border-radius: 25px;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 9px 8px 8px;
  display: inline-block;
  height: 50px;
}
.consultBtn a:hover {
  background-position: 100% 0;
  transition: 0.5s;
}
.consultBtn.fadeup.is-animated {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeup {
  0% {
    transform: translateY(5px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.ft_en {
  font-family: Helvetica, Helvetica Neue, Arial, sans-serif;
}

.main {
}

.mainvisual {
    overflow: hidden;
    background: url(../img/mainvisual_bg.jpeg) no-repeat center center;
    background-size: cover;
    /*height: calc((var(--vh,1vh) * 100) - 4rem);*/
    position: relative;
    width: 100%;
    min-height: 100vh;
    z-index: 1;
}
.mainvisual::before {
  content: "";
  background: rgba(25,45,157, .36);
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
  position: absolute;
}
.mainvisual-inner {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    padding: 0 1.25em;
    padding-top: 4em;
    height: 100vh;
    z-index: 5;
    justify-content: center;
}
.mainvisual-head {
    z-index: 5;
    padding: 0 1.5em;
    width: 100%;
    padding-bottom: 4em;
}

.mainvisual-head-chatch {
  /* background: #008080; */
  /* background: url(../img/logo.jpg); */
  width: 20%;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  display: inline;
  padding: 0.05em 0.1em;
  line-height: 1.8;
  position: relative;
}
.mainvisual-head-chatch::after {
  content: "";
  display: block;
  background: url(../img/header_path.svg) no-repeat center;
  background-size: contain;
  width: 32px;
  height: 58px;
  position: absolute;
  bottom: -64px;
  left: 1em;
}

.mainvisual-body {
    position: relative;
    z-index: 5;
    text-align: center;
    margin: 0 auto;
}

.mainvisual-body-text {
  font-weight: bold;
  color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.15);
  margin-top: ;
}

.mainvisual-body-text-main {
  font-size: 3.5rem;
  line-height: 1.0;
  margin-bottom: 0.2em;
}

.mainvisual-body-text-small {
  font-size: 1.5rem;
}

.mainvisual-body-text-sub {
  font-size: 1.125rem;
  line-height: 1.0;
}

.mainvisual-body-circle {
  font-size: 1.5rem;
  text-align: center;
  color: #ffffff;
  line-height: 1.4;
  position: relative;
  padding: 2.3em 0;
}
.mainvisual-body-circle::before {
  content: "";
  background: url(../img/header_circle.svg) no-repeat center center;
  background-size: contain;
  width: 180px;
  height: 180px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.mainvisual-foot {

}
.bg-gr {
  background: #ededed;
}
.bg-pk {
  background: rgba(223, 137, 181, 0.1);
}


.merit {
  padding: 0 1.25em;
}
.merit-chatch-wrap {
  position: relative;
  z-index: 6;
}
/*
.merit-chatch::before {
  background: url(../img/merit_chatch_bg.svg) no-repeat center center;
  background-size: contain;
  content: "";
  position: absolute;
  width: 352px;
  height: 228px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: block;
  z-index: 6;
}
*/
.merit-chatch {
  font-size: 1.25rem;
  line-height: 1.2;
  position: relative;
  color: #008080;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3.2em;
  letter-spacing: 0.1em;
  z-index: 6;
}


.merit-chatch span{
  font-size: 1.875rem;
  color: #ffffff;
  -webkit-text-stroke: 1px #008080;
}
.merit-chatch-bg {
  position: absolute;
  width: 352px;
  height: 228px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: block;
  z-index: 5;
}
#rect1 {
  stroke-dasharray:1600px;
  animation:line_move ease-in 3s 1;
}
@keyframes line_move {
  0% {
  stroke-dashoffset:1600px;
  }
  100% {
  stroke-dashoffset:0px;
  }
}
.st0-2 {
  stroke-width:2!important;
}
.merit-box {
  display: flex;
  flex-flow: row wrap;
}
.merit-box li {
  width: 100%;
  border: 2px solid #008080;
  background: #ffffff;
  padding: 1.75em;
  border-radius: 5px;
  margin-bottom: 2em;
  box-shadow: 5px 5px 10px #00000029;
}
.merit-img {
  width: 170px;
  margin: 0 auto 2em;
}

.merit-ttl {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: #008080;
  margin-bottom: 1em;
}

.merit-text {
}

.gradient-wrap {
  width: 100%;
  background-image: linear-gradient(90deg, rgba(223, 137, 181, 1), rgba(191, 217, 254, 1));
}
.sectionArea {
  padding-top: 4em!important;
  padding-bottom: 4em!important;
}

.problem {
  margin: 0 1.25em;
  width: calc(100% - 40px);
  color: #ffffff;
  text-align: center;
}

.h2-section-en {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 1.0rem;
  position: relative;
  margin-bottom: 2em;
  color: #008080;
}
.h2-section-en::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/phlox_flower.svg) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  top: 2.9em;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#h2-problem {
  color: #ffffff;
}
#h2-problem::after {
  background: url(../img/phlox_flower_wh.svg) no-repeat center center/contain;
}
.h2-section {
  text-align: center;
  font-size: 1.375rem;
  margin-bottom: 2em;
  font-weight: bold;
}
.problem-list {
  margin-bottom: 3em;
  text-align: left;
  display: inline-block;
}
.problem-list li {
  font-size: 1.125rem;
  font-weight: bold;
  position: relative;
  padding-left: 1.7em;
  line-height: 1.2;
  margin-bottom: 1em;
}
.problem-list li::before {
  content: "";
  background: url(../img/checkbox.svg) no-repeat center center;
  background-size: contain;
  width: 23px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.consultBtn-wh {
  width: 250px;
  margin: 0 auto;
}
.consultBtn-wh a {
  background: #ffffff;
  border-radius: 25px;
  color: #008080;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 9px 8px 8px;
  display: inline-block;
  height: 50px;
}
.consultBtn-wh a:hover {
  opacity: 0.6;
  transition: 1s;
}


/* アニメーション */
.ani {
  opacity: 0;
  }
.fadein.is-active {
  animation: fadein 3s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeup.is-active {
  animation: fadeup 2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeup {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hide{
	transform: translateY(-100%); /* 上に消えるようにする */
}







/* achievement */
  
.achievement {
  background: #ededed;
  padding: 0 1.125em;
}

.achievement-box {
}

.achievement-box li {
  width: 100%;
  background: #ffffff;
  padding: 1.75em;
  border-radius: 5px;
  margin-bottom: 2em;
  box-shadow: 5px 5px 10px #00000029;
}

.achievement-head {
  display: flex;
  flex-flow: row nowrap;
  border-bottom: 2px solid #008080;
  padding-bottom: 1em;
  margin-bottom: 1em;
  align-items: center;
}

.achievement-head-l {
  width: 50px;
  padding-right: 10px;
  border-right: 2px solid #008080;
}

.achievement-head-num {
  font-size: 1.75rem;
  font-weight: bold;
  color: #008080;
  line-height: 1.0;
  text-align: center;
}

.achievement-head-sub {
  font-size: 0.625rem;
  font-weight: bold;
  line-height: 1.0;
  text-align: center;
}

.achievement-head-r {
  font-size: 1.125rem;
  font-weight: bold;
  width: calc(100% - 50px);
  padding-left: 15px;
}

.h3-achievement-chatch {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1em;
  line-height: 1.4;
}

.achievement-text {
  margin-bottom: 1em;
}

.achievement-foot {
  display: flex;
  flex-flow: row wrap;
  font-size: 0.75rem;
  line-height: 1.4;
}
.achievement-foot dt {
  width: 4em;
  padding-right: 1em;
  font-weight: bold;
  color: #008080;
}
.achievement-foot dd {
  width: calc(100% - 4em);
}

.flow {
  background: rgba(223, 137, 181, 0.1);
  padding: 0 3em;
}

.flow-box {

}
.flow-box li {
  width: 100%;
  max-width: 285px;
  margin: 0 auto;
  background: #ffffff;
  padding: 1.75em;
  border-radius: 5px;
  margin-bottom: 3em;
  box-shadow: 5px 5px 10px #00000029;
  position: relative;
}

.flow-num {
  font-size: 2rem;
  font-weight: bold;
  color: #008080;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.h3-flow-ttl {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}

.flow-img {
  width: 100px;
  margin: 0 auto;
  margin-bottom: 2em;
}

.flow-text {
}

.price {
  background: #ededed;
  padding: 0 1.25em;
}

.price-plan {

}
.plan-first {
  position: relative;
}
.plan-first::after {
  content: "";
  position: absolute;
  background: url(../img/arrow_down.svg) no-repeat center center;
  background-size: contain;
  width: 34px;
  height: 34px;
  bottom: -54px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.price-plan-ttl {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5em;
}

.price-plan-inner {
  width: 100%;
  background: #ffffff;
  padding: 1.75em;
  border-radius: 5px;
  margin-bottom: 5em;
  box-shadow: 5px 5px 10px #00000029;
}

.price-plan-list-wrap li {
  border-bottom: 1px solid #D9D7D7;
  padding: 1em 0;
}
.price-plan-list-wrap li:first-child {
  padding-top: 0;
}

.price-plan-list-wrap li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price-plan-list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5em;
}
.price-plan-list dt {
  font-size: 0.75rem;
}
.price-plan-list dd {
  font-size: 1rem;
  font-weight: bold;
  color: #008080;
}
.caption-l {
  font-size: 0.6875rem;
}

.price-plan-text {
  font-size: 0.75rem;
  line-height: 1.4;
}

.price-plan-tryTime {
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 1em;
}

.tryTime-box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
}

.tryTime-box-inner {
  width: 44%;
  background:rgba(223, 137, 181, 1);
  color: #ffffff;
  padding: 0.5em;
  font-size: 0.6875rem;
  font-weight: bold;
  text-align: center;
}

.tryTime-box-or {
  font-size: 1rem;
  font-weight: bold;
  color: #008080;
}

.caption-c {
}
.plan-standard {
  position: relative;
}
.plan-standard::after {
  content: "";
  position: absolute;
  /* background: url(../img/plus.svg) no-repeat center center; */
  background-size: contain;
  width: 34px;
  height: 34px;
  bottom: -54px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.price-table {
  width: 100%;
}
.price-table th {
  font-size: 0.75rem;
  width: 20%;
  text-align: center;
  line-height: 1.4;
}
/* .price-table th:nth-child(2),.price-table th:nth-child(3) {
  width: 20%;
  text-align: center;
} */
.plan-name {
  background-image: linear-gradient(90deg, rgba(223, 137, 181, 1), rgba(191, 217, 254, 1));
  border-radius: 25px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 8px;
  display: inline-block;
  width: 80px;nth-child
  height: 30px;
}
.price-table td {
  text-align: center;
  color: #008080;
  font-weight: bold;
}
.price-table td span {
  font-size: 0.55rem;
  margin-left: 0.25em;
}
.price-table th,.price-table td{
  border-bottom: 1px solid #D9D7D7;
  padding: 0.625em 0;
  vertical-align: middle;
}

.price-table-head th {
  padding-top: 0;
}

.plan-option .price-plan-inner {
  margin-bottom: 0;
}

.option-list {
  font-size: 0.875rem;
  font-weight: bold;
}

.option-list li {
  list-style: disc;
  margin-left: 1.375em;
  margin-bottom: 1em;
  line-height: 1.4;
}
.other-sns {
  position: relative;
}
.option-list-price {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1rem;
  color: #008080;
}

.consult {
}

.consult-text {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}

.service {
  background: rgba(223, 137, 181, 0.1);
}

.service-cont {
}

.model-cont {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  margin-bottom: 3em;
}

.service-cont-inner {
    width: 100%;
    position: relative;
}

.model-cont-inner {
  width: 33.33%;
  margin-right: 5px;
  position: relative;
}

.service-mainVisual {
  position: relative;
  width: 100%;
  height: 0;
  /* (画像の高さ / 画像の横幅) × 100 */
  padding-top: 68.2666667%;
 
}
.service-mainVisual {
  margin-bottom: 1em;
}

#compensation-mainVisual {
  position: relative;
  background: url(../img/compensation_img.png) no-repeat center center;
  background-size: contain;
}

#access-mainVisual01 {
  position: relative;
  background: url(../img/access_img01.png) no-repeat center center;
  background-size: contain;
}

#access-mainVisual02 {
  position: relative;
  background: url(../img/access_img02.png) no-repeat center center;
  background-size: contain;
}

#service-mainVisual01 {
  position: relative;
  background: url(../img/service_img01.jpg) no-repeat center center;
  background-size: contain;
}

#service-mainVisual01 {
  position: relative;
  background: url(../img/service_img01.jpg) no-repeat center center;
  background-size: contain;
}

#service-mainVisual02 {
  position: relative;
  background: url(../img/service_img02.jpg) no-repeat center center;
  background-size: contain;
}

#service-mainVisual03 {
  position: relative;
  background: url(../img/service_img03.jpg) no-repeat center center;
  background-size: contain;
}

.service-mainVisual-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #ffffff;
  width: 100%;
}
.service-mainVisual-ttlEn {
  font-size: 1rem;
  font-weight: bold;
  font-family: Helvetica, Helvetica Neue, Arial, sans-serif;
  text-align: center;
  margin-bottom: 0.5em;
}

.service-mainVisual-ttl {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.service-text-wrap {
  padding: 0 1.25em;
  padding-bottom: 4em;
}

.h3-service-ttl {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.service-text {
  margin-bottom: 2em;
}

.service-contactBtn {
  width: 200px;
  margin: 0 auto;
}

.service-contactBtn a {
  background: #ffffff;
  border-radius: 25px;
  color: #008080;
  border: 2px solid #008080;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 7px;
  display: inline-block;
  height: 50px;
}
.service-contactBtn a:hover {
  background: #008080;
  color: #ffffff;
  transition: 1s;
}

.shootting-price {
  width: 100%;
  background: #ffffff;
  padding: 1.75em;
  border-radius: 5px;
  margin-bottom: 3em;
  box-shadow: 5px 5px 10px #00000029;
}
.shootting-price-inner {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  border-bottom: 1px solid #D9D7D7;
  padding: 1em 0;
}
.shootting-price-inner:first-child {
  padding-top: 0;
}
.shootting-price-inner:nth-child(3) {
  margin-bottom: 1em;
}

.shootting-price-inner dt {
  width: 6em;
  font-size: 0.75rem;
}
.shootting-price-inner dd {
  width: calc(100% - 6em);
  font-size: 1rem;
  font-weight: bold;
  color: #008080;
  text-align: center;
}

.member {
}

.member-cont {
}

.member-inner {
  padding: 0 1.25em;
  margin-bottom: 5em;
}
.member-inner:last-child {
  margin-bottom: 0;
}
.contactBtn ,.backBtn {
  width: 150px;
  margin: 0 auto;
}
.contactBtn a,.backBtn a {
  background: #ffffff;
  border-radius: 25px;
  color: #008080;
  border: 2px solid #008080;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 9px;
  display: inline-block;
  height: 50px;
}
.contactBtn a:hover,.backBtn a:hover {
  background: #008080;
  color: #ffffff;
  transition: 1s;
}
.h3-member-ttl {
}

.member-head {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  border-bottom: 2px solid #008080;
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.member-head-img {
  width: 42%;
  max-width: 150px;
  padding-right: 4%;
}

.member-head-info {
  width: 58%;
  padding-left: 4%;
  border-left: 2px solid #008080;
}

.member-jobName {
  font-size: 0.875rem;
  font-weight: bold;
  color: #008080;
  line-height: 1.0;
}

.member-name {
  font-size: 1rem;
}

.member-nameEn {
  font-size: 0.75rem;
  line-height: 1.0;
  margin-bottom: 0.3em;
}

.member-sns {
  font-size: 0.875rem;
  line-height: 1.0;
  background: #008080;
  color: #ffffff;
  display: inline-block;
  height: 22px;
  padding: 3px 6px;
}
.member-sns:hover {
  opacity: 0.6;
  transition: 1s;
}
.member-sns::before {
  content: "";
  background: url(../img/insta_icon.svg) no-repeat center center;
  background-size: contain;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 4px;
  vertical-align: bottom;
}

.member-body {
  margin-bottom: 2em;
}

.member-foot {
}

.qualifications-ttl {
  font-weight: bold;
  color: #008080;
}

.qualifications-list {
  color: #008080;
}

.feed-icon {
  text-align: center;
  font-size: 1.5rem;
  color: #008080;
  margin-bottom: 1em;
  
}
.feed-icon img {
  width: 40px;
  margin-right: 0.5em;
}

.qa {
  background: #ededed;
  padding: 0 1.25em;
}
.qa-wrap {
  border-bottom: 1px solid #D9D7D7;
  padding-bottom: 2em;
  margin-bottom: 2em;
}

.qa-wrap:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.qa-inner {
  display: flex;
  line-height: 1.4;
  margin-bottom: 0.5em;
  align-items: flex-start;
}

.qa-inner dt {
  color: #008080;
  font-size: 1.25rem;
  font-family: Helvetica, Helvetica Neue, Arial, sans-serif;
  padding-right: 1em;
  width: 2em;
  font-weight: bold;
}

.qa-inner dd {
  width: calc(100% - 2em);
  font-size: 1.125rem;
  font-weight: bold;
}
.a-text {
}
body {
  position: relative;
}
/* footer */
.footer {
  background: #999999;
  color: #ffffff;
  padding: 2.5em 1.125em 0.5em;
}

.footer a:hover {
  opacity: 0.5;
  transition: 1s;
 }
#footerBtn {
  position: fixed;
  right: 1.25em;
  bottom: 1.25em;
  text-indent: -9999px;
  margin: 0;
}
#footerBtn a {
  position: relative;
  display: block;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  background: #008080;
  transition: opacity .8s ease;
}
#footerBtn a:hover {
  opacity: .6;
}
#footerBtn a::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  content: '';
  transform: rotate(-45deg);
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  top: 5px;
  width: 10px;
  height: 10px;
}


.footer-head {
}

.footer-head-serviceLink {
  margin-bottom: 0;
}
.footer-head-serviceLink li {
  border: 1px solid #ffffff;
  width: 100%;
  margin-bottom: 0.8em;
}

.footer-head-serviceLink li a {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 3px;
  line-height: 1.4;
}
.footer-body {
  margin-bottom: 3em;
}

.footer-body-top {
  margin-bottom: 2em;
}

.footerNav {
}
.footerNav-inner {
  display: flex;
  flex-flow: row nowrap;
}
.footerNav-inner li {
  margin-right: 1.3em;
}
.footerNav-inner li:last-child {
  margin-right: 0;
}
.footerNav-inner li a {
  font-size: 0.875rem;
}

.footer-body-bottom {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-bottom: 1em;
}

.footer-logo {
  width: 110px;
}

.footer-instaLink {
  width: 30px;
}

.footer-foot {
}

.footer-foot-legalLinks {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  margin-bottom: 0.5em;
  font-size: 0.75rem;
}
.footer-body {
  margin-bottom: 1em;
}
.footer-foot-legalLinks li {
  border-right: 1px solid #ffffff;
  line-height: 1.0;
  padding: 0 1em;
  width: auto;
}
.footer-foot-legalLinks li:first-child {
  padding-left: 0;
}

.footer-foot-legalLinks li:last-child {
  border-right: none;
  padding-right: 0;
}

.footer-foot-legalLinks li a {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.copyright {
  text-align: center;
  font-size: 0.75rem;
}

/* インスタスライダー　SP */
.insta-feed {
  margin-bottom: 2em;
}
.feed-inner {
  display: flex;
  align-items: center;
  /*overflow: hidden;*/
  width: 100vw;
}
.sample {
  width: 380vw;
  overflow-x: scroll;
  display: flex!important;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.slide-box {
  margin-right: 10px;
  align-items: center;
  justify-content: center;
}
.slide-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  border: 1px solid #008080;
}
.slide-box a img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.slide-box a p {
  display: none;
}


/* ---- TB ---- */
@media screen and (min-width: 600px) {
  body {
    font-size: 1.125rem;
  }
  .sp-DisNone {
    display: none;
  }
  .pc-DisNone {
    display: block;
  }

  /* mainvisual */
  .mainvisual {
    min-height: unset;
    height: 100vh;
    max-height: 768px;
  }
  .mainvisual-inner {
    height: 100%;
    margin: 0 auto;
    padding: 0;
    padding-top: 1em;
  }
  .mainvisual-head {
    padding: 0;
    width: 400px;
    margin: 0 auto;
    margin-bottom: 3.5em;
  }
  .mainvisual-head-chatch {
    font-size: 2.0rem;
    line-height: 1.8;
    padding: 0 0.1em;
  }


  .consultBtn,.consultBtn-wh {
    width: 330px;
  }
  .consultBtn a,.consultBtn-wh a {
    border-radius: 40px;
    font-size: 1.5rem;
    width: 100%;
    padding: 19px 15px;
    height: 80px;
  }

/* merit */
.merit-box {
  width: 60%;
  margin: 0 auto;
  justify-content: space-between;
} 
.merit-box li {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  margin-bottom: 2em;
}
.merit {
  margin-top: 2em;
}
.merit-chatch {
  font-size: 1.875rem;
}
.merit-chatch span {
  font-size: 2.875rem;
}
.merit-chatch-bg {
  width: 528px;
  height: 342px;
}
.merit-ttl {
  font-size: 1.375rem;
}
.h2-section-en {
  font-size: 1.375rem;
}
.h2-section {
  font-size: 1.875rem;
}
.h2-section-en::after {
  width: 30px;
  height: 30px;
  top: 2.8em;
}
/* problem */
.problem-list {
  margin-bottom: 3em;
}

.problem-list li {
  font-size: 1.375rem;
}
.problem-list li::before {
  width: 24px;
  height: 24px;
}
/* achievement */
.achievement-box {
  margin: 0 auto;
}
.achievement-box li {
  width: 100%;
}
.achievement-head-num {
  font-size: 2.875rem;
}
.achievement-head-sub {
  font-size: 1rem;
}
.achievement-head-l {
  width: 5em;
}
.achievement-head-r {
  width: calc(100% - 4em);
  font-size: 1.5rem;
}
.h3-achievement-chatch {
  font-size: 1.875rem;
}
.achievement-foot {
  font-size: 1rem;

}
/* flow */
.flow-box li {
  max-width: 940px;
}
.flow-num {
  font-size: 3.126rem;
}
.h3-flow-ttl {
  font-size: 1.5rem;
}
/* price */
.price-plan-ttl {
  font-size: 1.625rem;
}
.price-plan-list dt {
  font-size: 1.25rem;
}
.price-plan-list dd {
  font-size: 2.0rem;
}
.caption-l {
  font-size: 0.875rem;
  margin-bottom: 0.5em;
}
.price-plan-text {
  font-size: 1rem;
}
.price-plan-tryTime {
  font-size: 1.25rem;
}
.tryTime-box-inner {
  font-size: 1.25rem;
}
.tryTime-box-or {
  font-size: 1.625rem;
}
.price-table th {
  font-size: 1.25rem;
}
.price-table td {
  font-size: 1.625rem;
}
.price-table td span {
  font-size: 0.35rem;
}
.plan-name {
  font-size: 1.25rem;
  border-radius: 25px;
  width: 140px;
  height: 50px;
  padding: 12px;
}
.plan-first::after ,.plan-standard::after{
  width: 60px;
  height: 60px;
  bottom: -80px;
}
.option-list {
  font-size: 1.25rem;
}
.option-list-price {
  font-size: 1.625rem;
}
.consult-text {
  font-size: 1.875rem;
}
/* service */
.service-cont-inner {
  width: 100%;
}
#service-mainVisual01,#service-mainVisual02,#service-mainVisual03 {
  height: 500px;
  padding-top: 0;
  background-size: cover;
}
.service-mainVisual-ttlEn {
  font-size: 1.5rem;
}
.service-mainVisual-ttl {
  font-size: 1.875rem;
}
.h3-service-ttl {
  font-size: 1.5rem;
}
.service-contactBtn {
  width: 240px;
}
.service-contactBtn a {
  font-size: 1.5rem;
  height: 60px;
  border-radius: 30px;
  padding: 8px;
}
.member-inner {
  width: 550px;
  margin: 0 auto;
  margin-bottom: 5em;
}
.member-inner:last-child {
margin-bottom: 0;
}
.member-head-img {
  width: 42%;
  max-width: 200px;
  padding-right: 4%;
}

.member-jobName {
  font-size: 1.125rem;
}
.member-name {
  font-size: 1.5rem;
}
.member-nameEn {
font-size: 1.0rem;
}
.member-sns {
font-size: 1.125rem;
height: 30px;
padding: 6px 8px;
}
.member-sns::before {
width: 18px;
height: 18px;
}
.shootting-price-inner dt {
  font-size: 1.125rem;
}
.shootting-price-inner dd {
  font-size: 1.125rem;
}
.service-mainVisual-ttlEn {
  font-size: 1.5rem;
}
.qa-inner {
  align-items: flex-start;
}
.qa-inner dt {
  font-size: 1.875rem;
  margin-top: -2px;
}
.qa-inner dd {
font-size: 1.5rem;
}
.insta-feed {
  margin-bottom: 2em;
}

.sample {
  width: 380vw;
  overflow-x: scroll;
  display: flex!important;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.slide-box {
  margin-right: 10px;
  align-items: center;
  justify-content: center;
}
.slide-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  border: 1px solid #008080;
}
.slide-box a img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.slide-box a p {
  display: none;
}
#footerBtn a {
  width: 65px;
  height: 65px;
}
#footerBtn a::before {
  top: 7px;
  width: 14px;
  height: 14px;
}

.footerNav-inner li a {
  font-size: 0.875rem;
}

.footer-logo {
  width: 150px;
}
.footer-foot-legalLinks {
  font-size: 0.875rem;
}
.footer-head-serviceLink {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}
.footer-head-serviceLink li {
  border: 1px solid #ffffff;
  width: 32%;
  display: flex;
  align-items: center;
  margin-bottom: 0.8em;
}

.footer-head-serviceLink li a {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 3px;
  line-height: 1.4;
}
.footer-body-top {
  margin-bottom: 1em;
}
.footer-body-bottom {
  margin-bottom: 0;
}
.footer-body {
  margin-bottom: 1em;
}


}

/* ---- PC ----*/
@media screen and (min-width: 1025px) {
  body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.125rem;
  }
  .sp-DisNone {
    display: block;
  }
  .pc-DisNone {
    display: none;
  }

  /* header */
  .header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  height: 80px;
  align-items: center;
  }
  .header-head {
    height: 40px;
    margin-top: 0;
    margin-left: 1.125em;
  }
  .menu {
    display: none;
  }
  .headerNav {
    display: block!important;
    background: none;
  }
  .headerNav-inner {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 100%;
    height: 80px;
    justify-content: flex-end;
  }
  .headerNav-inner li {
  margin-right: 2em;
  margin-bottom: 0;
  }
  .headerNav-inner li a {
    color: #ffffff;
    font-size: 1.0rem;
    transition: .5s;
  }
  .headerNav-inner li a span {
    display: none;
  }
  #header-nav-contact a {
    background-image: linear-gradient(90deg, rgba(223, 137, 181, 1), rgba(191, 217, 254, 1), rgba(242, 99, 172, 1));
    background-size: 200% 100%;
    border-radius: 20px;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: bold;
    text-align: center;
    padding: 4px 1em;
    display: inline-block;
    height: 40px;
  }
  #header-nav-contact a:hover {
    background-position: 100% 0;
    transition: 0.5s;
  }
  .header-news,.header-contact {
    display: none;
  }
  /* mainvisual */
  .mainvisual {
    min-height: 768px;
    height: 100vh;
    max-height: 820px;
  }

  .mainvisual-inner {
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    flex-flow: row wrap;
    padding-top: 5em;
  }
  .mainvisual-head {
    padding: 0;
    width: 100%;
  }
  .mainvisual-head-chatch {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .mainvisual-head-chatch::after {
    background: none;
  }
  .mainvisual-body {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    margin-top: -10em;
  }
  .mainvisual-body-text {
    text-align: left;
    width: 50%;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
  }
  .mainvisual-body-text-main {
    width: 100%;
    font-size: 6.25rem;
  }
  .mainvisual-body-text-main span {
    font-size: 1.875rem;
  }
  .mainvisual-body-text-sub {
    font-size: 2.0rem;
  }
  .mainvisual-body-circle {
    width: 36%;
    font-size: 2.625rem;
    letter-spacing: 0.05em;
  }
  .mainvisual-body-circle::before {
    width: 357px;
    height: 357px;
  }
  .consultBtn,.consultBtn-wh {
    width: 330px;
  }
  .consultBtn a ,.consultBtn-wh a {
    border-radius: 40px;
    font-size: 1.5rem;
    width: 100%;
    padding: 19px 15px;
    height: 80px;
  }


  /* メリット */
  .merit {
    padding: 0 1.25em;
    margin-top: 3em;
  }
  .merit-chatch {
    font-size: 2.5rem;
  }
  .merit-chatch span {
    font-size: 3.75rem;
  }
  .merit-chatch-bg {
    width: 704px;
    height: 456px;
  }
  .merit-box {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    justify-content: space-between;
  } 
  .merit-box li {
    width: 32%;
    max-width: 335px;
  }
  .merit-ttl {
    font-size: 1.5rem;
  }


  .h2-section-en {
    font-size: 1.5rem;
  }
  .h2-section {
    font-size: 2.25rem;
  }
  /*.h2-section-en::after {
    width: 30px;
    height: 30px;
    top: 2.8em;
  }*/
  .problem-list {
    margin-bottom: 3em;
  }

  .problem-list li {
    font-size: 1.5rem;
  }
  .problem-list li::before {
    width: 24px;
    height: 24px;
  }

  /* achievement */
  .achievement-box {
    display: flex;
    flex-flow: row nowrap;
    max-width: 1080px;
    margin: 0 auto;
    justify-content: space-between;

  }
  .achievement-box li {
    width: 48%;
    max-width: 520px;
  }
  .achievement-head-num {
    font-size: 2.875rem;
  }
  .achievement-head-sub {
    font-size: 1rem;
  }
  .achievement-head-l {
    width: 5em;
  }
  .achievement-head-r {
    width: calc(100% - 4em);
    font-size: 1.5rem;
  }
  .h3-achievement-chatch {
    font-size: 1.875rem;
  }
  .achievement-foot {
    font-size: 1rem;
  }
  /* flow */
  .flow-num {
    font-size: 3.126rem;
  }
  .h3-flow-ttl {
    font-size: 1.5rem;
  }
  /* price */
  .price-plan-ttl {
    font-size: 1.4rem;
  }
  .price-plan-list dt {
    font-size: 1.5rem;
  }
  .price-plan-list dd {
    font-size: 2.0rem;
  }
  .caption-l {
    font-size: 0.875rem;
    margin-bottom: 0.5em;
  }
  .price-plan-text {
    font-size: 1rem;
  }
  .price-plan-tryTime {
    font-size: 1.5rem;
  }
  .tryTime-box-inner {
    font-size: 1.5rem;
  }
  .tryTime-box-or {
    font-size: 2.0rem;
  }
  .price-table th {
    font-size: 1.5rem;
  }
  .price-table td {
    font-size: 2.0rem;
  }
  .price-table td span {
    font-size: 1.5rem;
    overflow-wrap: break-word;
  }
  .plan-name {
    font-size: 1.5rem;
    border-radius: 30px;
    width: 160px;
    height: 60px;
    padding: 15px;
  }
  .plan-first::after ,.plan-standard::after{
    width: 60px;
    height: 60px;
    bottom: -80px;
  }
  .flow-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    max-width: 1080px;
    margin: 0 auto;
  }
  .flow-box li {
    width: 95%;
    margin: 0;
    margin-bottom: 4em;
    /* margin-right: 2% !important; */
    /* max-width: 435px; */

  }
  .flow-box li:nth-child(3n) {
    margin-right: 0;
  }
  .price-plan-inner {
    width: 1200px;
    margin: 0 auto;
    margin-bottom: 5em;
    padding: 5.0rem;
  }
  .compensation-cont {
    width: 100%;
    /* display: flex; */
    flex-flow: row nowrap;
    margin-bottom: 3em;
  }
  .compensation-cont,
  .access-cont {
    width: 100%;
    /* display: flex; */
    flex-flow: row nowrap;
    margin-bottom: 3em;
  }
  .compensation-cont-inner,
  .access-cont-inner {
    width: 100%;
    position: relative;
  }
  .service-cont {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 3em;
  }
  .service-cont-inner {
    width: 49.5%;
    position: relative;
  }
  .service-mainVisual {
    margin-bottom: 2em;
  }
  .service-text-wrap {
    padding: 0 3.125rem;
  }
  .option-list {
    font-size: 1.5rem;
  }
  .option-list-price {
    font-size: 2.0rem;
  }
  .consult-text {
    font-size: 1.875rem;
  }
  .consultBtn-wh {
    width: 330px;
  }
  .consultBtn-wh a {
    border-radius: 40px;
    font-size: 1.5rem;
    width: 100%;
    padding: 19px 15px;
    height: 80px;
  }
  .h3-service-ttl {
    font-size: 1.5rem;
  }
  .shootting-price-inner dt {
    font-size: 1.125rem;
  }
  .shootting-price-inner dd {
    font-size: 1.125rem;
  }
  .service-mainVisual-ttlEn {
    font-size: 1.5rem;
  }
  .service-mainVisual-ttl {
    font-size: 1.875rem;
  }
  .service-contactBtn {
    width: 240px;
    position: absolute;
    bottom: -2em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .service-contactBtn a {
    font-size: 1.5rem;
    height: 60px;
    border-radius: 30px;
    padding: 8px;
  }

  .member-inner {
    width: 550px;
    margin: 0 auto;
    margin-bottom: 5em;
  }
  .member-inner:last-child {
  margin-bottom: 0;
  }
  .member-head-img {
    width: 42%;
    max-width: 200px;
    padding-right: 4%;
  }

  .member-jobName {
    font-size: 1.125rem;
  }
  .member-name {
    font-size: 1.5rem;
  }
  .member-nameEn {
  font-size: 1.0rem;
  }
  .member-sns {
  font-size: 1.125rem;
  height: 30px;
  padding: 6px 8px;
  }
  .member-sns::before {
  width: 18px;
  height: 18px;
  }
  .contactBtn,.backBtn {
  width: 200px;
  }
  .contactBtn a,.backBtn a {
  font-size: 1.25rem;
  height: 50px;
  border-radius: 30px;
  padding: 7px;
  }
  .qa-wrap {
    max-width: 1080px;
    margin: 0 auto;
    margin-bottom: 2em;
  }
  .qa-inner {
    align-items: center;
  }
  .qa-inner dt {
    font-size: 2.25rem;
  }
  .qa-inner dd {
  font-size: 1.875rem;
  }
  .footer {
  }
  #footerBtn a {
    position: relative;
    display: block;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    background: #008080;
    transition: opacity .8s ease;
  }
  #footerBtn a:hover {
    opacity: .6;
  }
  #footerBtn a::before {
    top: 7px;
    width: 14px;
    height: 14px;
    margin: auto;
    content: '';
    transform: rotate(-45deg);
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
  }
  
  .footer-head,.footer-body,.footer-foot {
  max-width: 1080px;
  margin: 0 auto;
  }
  .footer-head-serviceLink {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-bottom: 1.5em;
  }
  .footer-head-serviceLink li {
  width: 32%;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  }
  .footer-head-serviceLink li a {
  font-size: 1.5rem;
  padding: 0.75em;
  }
  .footerNav-inner li a {
  font-size: 1.375rem;;
  }
  .footer-body-bottom {
  align-items: center;
  }
  .footer-logo {
  width: 180px;
  font-size: 1.375rem;
  }
  .footer-instaLink {
  }

/* インスタスライダー　PC */
.insta-feed {
  margin-bottom: 2em;
}

.sample {
  width: 370vw;
  overflow-x: scroll;
  display: flex!important;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.slide-box {
  margin-right: 10px;
  align-items: center;
  justify-content: center;
}
.slide-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  border: 1px solid #008080;
}
.slide-box a img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.slide-box a p {
  display: none;
}

.model-mainVisual {
  position: relative;
  width: 100%;
  height: 0;
  /* (画像の高さ / 画像の横幅) × 100 */
  padding-top: 68.2666667%;
 
}
.model-mainVisual {
  margin-bottom: 1em;
}

#model-mainVisual01 {
  position: relative;
  background: url(../img/model_img01.jpeg) no-repeat center center;
  background-size: contain;
}

#model-mainVisual02 {
  position: relative;
  background: url(../img/model_img02.jpeg) no-repeat center center;
  background-size: contain;
}

#model-mainVisual03 {
  position: relative;
  background: url(../img/model_img03.jpg) no-repeat center center;
  background-size: contain;
}

.model-mainVisual-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #ffffff;
  width: 100%;
}
.model-mainVisual-ttlEn {
  font-size: 1rem;
  font-weight: bold;
  font-family: Helvetica, Helvetica Neue, Arial, sans-serif;
  text-align: center;
  margin-bottom: 0.5em;
}

.model-mainVisual-ttl {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

#model-mainVisual01,#model-mainVisual02,#model-mainVisual03 {
  height: 300px;
  padding-top: 0;
  background-size: cover;
}

.model-mainVisual-ttlEn {
  font-size: 1.5rem;
}

.model-mainVisual-ttl {
  font-size: 1.875rem;
}

}
