@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans+JP:wght@100..900&display=swap');

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

strong {
}


body {
    line-height:1;
}

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

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

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

li {
  list-style: none;
}

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

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

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

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

:root{
  --color_orange: #EF5F20;
  --color_black: #000;
  --color_bg01: #f2f2f2;
  --color_gray: #D9D9D9;
}


/*------------------------------------------------------------
  basic layout
------------------------------------------------------------*/
html,
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 62.5%;
  line-height: 1.8;
  color: var(--color_black);
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
body {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body * {
  box-sizing: border-box;
}

img {
  vertical-align: top;
  width: 100%;
}

a {
  border: none;
  text-decoration: none;
  transition: 0.3s;
}
@media only screen and (min-width: 799px) {
  a:hover {
  }
}

.pc {
  display: block;
}
.sp {
  display: none;
}
@media (max-width: 798px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

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

フェードイン

-----------------------------------------------------------------------------  ***/
.show-cnt{
  transition: 0.8s ease-out;
  opacity: 0;
}
.show-cnt.run{
  opacity: 1;
}

/*****************************
共通
*****************************/
.l-inner__flex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
main{
  padding-top: 94px;
}
@media (max-width: 1310px) {
  main{
    padding-top: 6%;
  }
}
@media (max-width: 1000px) {
  main{
    padding-top: 73px;
  }
}

.p-feature{
  border-left: solid 1px rgba(0, 0, 0, .3);
  align-items: stretch;
}
.p-feature li{
  width: calc(100% / 3);
  border-right: solid 1px rgba(0, 0, 0, .3);
  text-align: center;
}
.p-feature-text{
  font-size: clamp(1.3rem,1.8vw,2.2rem);
  font-weight: 700;
  line-height: 1.2;
}
.p-feature-text strong{
  color: var(--color_orange);
  font-size: clamp(1.6rem,2.2vw,2.8rem);
  font-weight: 700;
}
.p-feature-text span{
  font-size: clamp(1.1rem,1.3vw,1.6rem);
}
.p-feature-icon{
  max-width: 60px;
  margin: 10px auto 0;
}
@media (max-width: 798px) {
  .p-feature-icon{
    max-width: 45px;
  }
}

.l-conts__inner{
  max-width: 1160px;
  width: 90%;
  margin: 0 auto;
}

.p-title__en{
  font-size: clamp(1.1rem,1.1vw,1.2rem);
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  margin: 0 0 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.p-title__en:before{
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--color_orange);
  margin-right: 10px;
}
.p-title__text{
  font-size: clamp(2.2rem,2.7vw,3.3rem);
  font-weight: 700;
  line-height: 1.2;
}
.p-title__text > strong{
  color: var(--color_orange);
  font-size: clamp(3.4rem,4vw,5.2rem);
  font-weight: 700;
}
.p-title__text > strong span{
  font-size: clamp(2.8rem,3.6vw,4.2rem);
}
.p-title__text > span{
  display: block;
  font-size: clamp(1.3rem,2vw,2.6rem);
  margin: 0 0 5px;
}
@media (max-width: 798px) {
  .p-title{
    text-align: center;
  }
  .p-title__en{
    margin: 0 0 10px;
    justify-content: center;
  }
  .p-title__en:before{
    margin-right: 5px;
  }
}

.p-assessment{
  background-color: var(--color_bg01);
  border-radius: 6px;
  border: solid 1px #D9D9D9;
  padding: 50px 60px;
  box-shadow: 0 0 0 #F5F5F5;
  margin-top: 70px;
  align-items: center;
  transition: opacity 0.8s ease-out, box-shadow .3s ease-out .5s;
}
.p-assessment--white{
  background-color: #fff;
  border: none;
}
.p-assessment.run{
  box-shadow: 10px 10px 0 #F5F5F5;
}
.p-assessment--white.run{
  box-shadow: 10px 10px 0 #E5E5E5;
}
.p-assessment__box{
  width: calc(100% - 620px);
}
.p-assessment__midashi{
  font-size: clamp(2rem,2.5vw,3.2rem);
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 10px;
}
.p-assessment__text{
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 700;
}
.p-assessment__midashi strong,
.p-assessment__text strong{
  color: var(--color_orange);
  font-weight: 700;
}
.p-assessment__form{
  width: 600px;
}
.p-assessment__form input{
  padding: 20px 20px;
  font-size: 1.6rem;
  line-height: 1.4;
  border-radius: 5px;
  background-color: #fff;
  border: solid 1px #D9D9D9;
  width: 100%;
  box-shadow: inset 0 0 10px rgba(0,0,0,.1);
}
.p-assessment__form button{
  padding: 15px 5px;
  background-color: var(--color_orange);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  border-radius: 5px;
  transition: .3s;
  cursor: pointer;
  border: solid 1px var(--color_orange);
  margin-top: 15px;
  position: relative;
}
.p-assessment__form button:hover{
  background-color: #fff;
  color: var(--color_orange);
}
.p-assessment__form button:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 13px;
  height: 10px;
  background: url(../img/lp/movie/arw01-w.svg) no-repeat center center / contain;
  transition: .3s;
}
.p-assessment__form button:hover:after{
  background-image:  url(../img/lp/movie/arw01-or.svg);
}
@media (max-width: 798px) {
  .p-assessment{
    padding: 20px 15px;
    margin-top: 30px;
    display: block;
  }
  .p-assessment.run{
    box-shadow: 5px 5px 0 #F5F5F5;
  }
  .p-assessment--white.run{
    box-shadow: 5px 5px 0 #E5E5E5;
  }
  .p-assessment__box{
    width: 100%;
    margin-bottom: 15px;
  }
  .p-assessment__midashi{
    text-align: center;
  }
  .p-assessment__form{
    width: 100%;
  }
  .p-assessment__form input{
    padding: 10px 20px;
  }
  .p-assessment__form button{
    margin-top: 10px;
  }
}

/*****************************
header
*****************************/
.header {
  align-content: center;
  align-items: center;
  width: 100%;
  padding: 24px 50px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  transition: .3s;
  z-index: 100000;
}
.header.scr{
  padding: 15px 30px;
}
.header__logo{
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  font-size: clamp(1.5rem,1.6vw,1.7rem);
  font-weight: 700;
}
.header__logo--center{
  margin: 0 auto;
}
.scr .header__logo{
  font-size: clamp(1.5rem,1.6vw,1.6rem);
}
.header__logo img{
  display: inline-block;
  width: 178px;
  max-width: 178px;
  margin-right: 20px;
  transition: .3s;
}
.scr .header__logo img{
  width: 140px;
  max-width: 140px;
}
.header__menu {
  align-items: center;
}
.header__navi-item{
  font-size: clamp(1.5rem,1.6vw,1.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color_black);
  padding: 10px 0;
  margin: 0 10px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  transition: .3s;
}
.scr .header__navi-item{
  font-size: clamp(1.3rem,1.4vw,1.5rem);
}
.header__navi-item:hover{
  opacity: 1;
  color: var(--color_orange);
}
.header__navi-item:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: var(--color_orange);
  height: 1px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.header__navi-item:hover:before, .header__navi-item:focus:before, .header__navi-item:active:before {
  right: 0;
}
.header__navi-button{
  font-size: clamp(1.5rem,1.6vw,1.6rem);
  font-weight: 700;
  line-height: 1;
  background-color: var(--color_orange);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  margin-left: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
}
.header__navi-button:hover{
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
#header__navi-toggle {
  display: none;
}
@media (max-width: 1310px) {
  .header {
    padding: 15px 20px;
  }
  .header.scr{
    padding: 15px
  }
  .header__logo{
    font-size: 1.2vw;
  }
  .scr .header__logo{
    font-size: 1.1vw;
  }
  .header__logo img{
    width: 120px;
    max-width: 120px;
    margin-right: 10px;
  }
  .scr .header__logo img{
    width: 100px;
    max-width: 100px;
  }
  .header__navi{
    align-items: center;
  }
  .header__navi-item{
    font-size: 1.2vw;
    padding: 5px 0;
    margin: 0 5px;
  }
  .header__navi-button{
    font-size: 1.2vw;
    padding: 10px 15px;
    margin-left: 20px;
  }
  .scr .header__navi-item,
  .scr .header__navi-button{
    font-size: 1.1vw;
  }
}
@media (max-width: 1000px) {
  .header{
    padding: 20px 10px;
  }
  .header.scr{
    padding: 10px;
  }
  .header__logo span{
    display: none;
  }
  .header__logo img{
    max-width: 100px;
    width: 100px;
    margin: 0;
  }
  .header__navi-button.pc{
    display: none;
  }
  .header__navi-button.sp{
    display: block;
  }
  .header__navi-button{
    font-size: 1.3rem;
    padding: 10px 15px;
    margin: 0 45px 0 0;
  }
  .scr .header__navi-button{
    font-size: 1.2rem;
  }
  #header__navi-toggle {
    display: block;
    position: fixed;
    right: 10px;
    top: 22px;
    width: 30px;
    height: 30px;
    z-index: 10010;
    transition: .3s;
  }
  .scr #header__navi-toggle{
    top: 12px;
  }
  #header__navi-toggle button {
    display: block;
    background-color: transparent;
    border: none;
    position: relative;
    cursor: pointer;
    outline: none;
    padding: 0;
  }
  #header__navi-toggle button span {
    width: 28px;
    height: 2px;
    background-color: var(--color_black);
    position: absolute;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  #header__navi-toggle button span:nth-child(1) {
    top: 3px;
  }
  #header__navi-toggle button span:nth-child(2) {
    top: 13px;
  }
  #header__navi-toggle button span:nth-child(3) {
    top: 23px;
  }
  .header__navi.open #header__navi-toggle span {
  }
  .header__navi.open #header__navi-toggle span:nth-child(1) {
    top: 13px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .header__navi.open #header__navi-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .header__navi.open #header__navi-toggle span:nth-child(3) {
    top: 13px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .header__menu{
    opacity: 0;
    width: 100%;
    height: calc(100vh - 73px);
    position: fixed;
    top: 73px;
    left: 0;
    text-align: center;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    overflow-y: auto;
    background-color: rgba(255,255,255,.9);
    opacity: 0;
    z-index: 100;
    pointer-events: none;
    display: block;
    padding-top: 10px;
  }
  .scr .header__menu{
    height: calc(100vh - 52px);
    top: 52px;
  }
  .open .header__menu {
    transform: translateX(0);
    opacity: 1;
    pointer-events: inherit;
  }
  .header__navi-item{
    font-size: 1.6rem;
    margin:0;
    padding: 15px 0;
    text-align: center;
    display: block;
  }
  .header__navi-item:before{
    display: none;
  }
  .header__navi-item:hover{
    color: var(--color_black);
  }
  .scr .header__navi-item{
    font-size: 1.6rem;
  }
}

/*****************************
footer
*****************************/
footer {
  padding: 30px 10px 60px;
}
.footer__logo{
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: clamp(1.5rem,1.6vw,1.7rem);
  font-weight: 700;
  margin: 0 0 50px;
}
.footer__logo img{
  display: inline-block;
  width: 178px;
  max-width: 178px;
  margin-right: 20px;
  transition: .3s;
}
.footer__data{
  max-width: 580px;
  width: 90%;
  margin: 0 auto;
}
.footer__data p{
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0 0 10px;
}
.footer__data p strong{
  display: block;
  min-width: 80px;
  width: 80px;
  position: relative;
  font-weight: 400;
}
.footer__data p strong:after{
  content: '\003A';
  position: absolute;
  top: -2px;
  right: 0;
}
.footer__data p span{
  display: block;
  width: calc(100% - 85px);
}
.footer__data p span a{
  display: inline-block;
  background-color: var(--color_black);
  color: #fff;
  padding: 5px 10px;
  margin-left: 10px;
  font-size: clamp(1rem,1.1vw,1.1rem);
  line-height: 1;
}
.footer__data p span a:after{
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(../img/lp/movie/icon-blank.svg) no-repeat center center / contain;
  margin-left: 5px;
  transform: translateY(1px);
}
.footer__data p span a:hover{
  opacity: .7;
}
footer address{
  max-width: 1060px;
  width: 90%;
  margin: 80px auto 0;
  border-top: solid 1px var(--color_gray);
  padding-top: 20px;
  font-size: clamp(1rem,1.1vw,1.2rem);
  font-style: normal;
  text-align: center;
}
.p-entry__footer address{
  margin-top: 0;
  border-top: none;
}
@media (max-width: 798px) {
  footer {
    padding: 20px 10px 30px;
  }
  .footer__logo{
    display: block;
    margin: 0 0 20px;
    text-align: center;
  }
  .footer__logo img{
    width: 140px;
    max-width: 140px;
    margin: 0 auto 5px;
    display: block;
  }
  .footer__data{
    max-width: 300px;
  }
  .footer__data p strong{
    min-width: 78px;
    width: 78px;
  }
  .footer__data p strong:after{
    top: -1px;
  }
  .footer__data p span{
    width: calc(100% - 82px);
  }
  .footer__data p span a{
    margin-left: 5px;
  }
  .footer__data p span a:after{
    width: 8px;
    height: 8px;
    margin-left: 8px;
  }
  footer address{
    margin: 40px auto 0;
    padding-top: 10px;
  }
}

/*****************************
main-visual
*****************************/
.main-visual__head {
  padding: 10px 10px;
  background-color: var(--color_orange);
  color: #fff;
  font-size: clamp(1.5rem,2vw,2.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 40px;
}
.main-visual__inner{
  max-width: 1150px;
  width: 90%;
  margin: 0 auto;
  align-items: flex-end;
}
.main-visual__box01{
  width: 55%;
  opacity: 0;
  transition: .6s;
  transform: translateY(10px);
}
.main-visual__box01.move{
  opacity: 1;
  transform: translateY(0);
}
.main-visual__box02{
  width: 40%;
}
.main-visual__balloon{
  align-items: center;
  justify-content: flex-start;
}
.main-visual__balloon strong{
  display: block;
  background-color: var(--color_black);
  color: #fff;
  font-size: clamp(1.4rem,2vw,2.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  padding: 5px 20px;
  border-radius: 6px;
  position: relative;
  margin-right: 20px;
}
.main-visual__balloon strong:after{
  content: '';
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  width:0;
  height:0;
  border-style:solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent var(--color_black);
}
.main-visual__balloon span{
  display: block;
  width: 66px;
}
.main-visual__midashi{
  font-size: clamp(2.2rem,3.8vw,5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}
.main-visual__midashi strong{
  font-size: clamp(3rem,5vw,6.6rem);
  font-weight: 700;
}
.main-visual__midashi .orange{
  color: var(--color_orange);
}
.main-visual__text{
  font-size: clamp(1.6rem,1.7vw,1.9rem);
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 40px;
}
.main-visual__form-text{
  background-color: #FFEEDE;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  margin: 0 0 20px;
}
.main-visual__form-text strong{
  display: inline-block;
  background-color: var(--color_orange);
  color: #fff;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  font-weight: 700;
  line-height: 1.4;
  border-radius: 6px;
  padding: 2px 10px;
  margin-right: 5px;
}
.main-visual__form {
  background-color: #272727;
  border-radius: 5px;
  padding: 10px;
}
.main-visual__form input{
  padding: 15px 20px;
  font-size: 1.6rem;
  line-height: 1.4;
  border-radius: 5px;
  background-color: #fff;
  border: none;
  width: calc(100% - 190px);
  box-shadow: inset 0 0 7px rgba(0,0,0,.5);
}
.main-visual__form button{
  padding: 15px 5px;
  background-color: var(--color_orange);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  width: 180px;
  border-radius: 5px;
  transition: .3s;
  cursor: pointer;
  border: none;
}
.main-visual__form button:hover{
  background-color: #fff;
  color: var(--color_orange);
}
.main-visual__image{
  width: 106%;
  margin: 0 -3% 20px;
  opacity: 0;
  transition: .6s;
  transform: translateY(10px);
}
.main-visual__image.move{
  opacity: 1;
  transform: translateY(0);
}
.main-visual .p-feature{
  opacity: 0;
  transition: .6s;
  transform: translateY(10px);
}
.main-visual .p-feature.move{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 798px) {
  .main-visual__head{
    margin: 0 0 20px;
  }
  .main-visual__inner{
    display: block;
  }
  .main-visual__box01{
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  .main-visual__box02{
    width: 100%;
  }
  .main-visual__balloon{
    justify-content: center;
  }
  .main-visual__balloon strong{
    padding: 5px 10px;
    border-radius: 5px;
  }
  .main-visual__balloon span{
    width: 40px;
  }
  .main-visual__midashi{
    width: 100%;
    margin: 0 auto 30px;
  }
  .main-visual__text{
    line-height: 2;
    margin: 0 0 30px;
  }
  .main-visual__form-text{
    border-radius: 5px;
    margin: 0 0 10px;
  }
  .main-visual__form {
    display: block;
  }
  .main-visual__form input{
    width: 100%;
  }
  .main-visual__form button{
    width: 100%;
    margin-top: 10px;
  }
  .main-visual__image{
    width: 80%;
    margin: 0 auto 20px;
  }
  .p-feature-icon{
    max-width: 45px;
  }
}

/*****************************
.loop-txt
*****************************/
.loop-txt{
  padding: 50px 0;
  transition: .6s;
  opacity: 0;
}
.loop-txt.move{
  opacity: 1;
}
.loop-txt > div:first-of-type{
  margin-bottom: 15px;
}
.loop-txt p{
  font-size: clamp(1.3rem,1.4vw,1.4rem);
  font-weight: 700;
  line-height: 1.2;
  display: block;
  margin: 0 10px;
}
.loop-txt p::before{
  content: '# ';
  color: var(--color_orange);
}
.loop-txt.slick-slider{
  overflow: hidden;
}
.loop-txt .slick-slide{
  width: auto;
  height: auto;
}
.loop02.slick-slider{
  transform: scaleX(-1);
}
.loop02 .slick-slide{
  transform: scaleX(-1);
}
@media (max-width: 798px) {
  .loop-txt{
    padding: 30px 0;
  }
  .loop-txt > div:first-of-type{
    margin-bottom: 10px;
  }
}

/*****************************
.l-service
*****************************/
.l-service{
  padding: 80px 0;
  background-color: var(--color_bg01);
}
.l-service__inner{
  position: relative;
}
.l-service__movie{
  width: 49%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 6px;
  overflow: hidden;
  padding-top: 28%;
}
.l-service__movie video{
  width: 100%;
  vertical-align: bottom;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-service__box{
  width: 49%;
  background-color: #fff;
  padding: 50px 55px;
  border-radius: 6px;
  margin-left: auto;
}
.l-service__midashi{
  padding-top: 50px;
  margin-top: 50px;
  border-top: solid 2px #D4D4D4;
  font-size: clamp(1.8rem,2vw,2.2rem);
  font-weight: 700;
  line-height: 1.6;
}
.l-service__midashi strong{
  color: var(--color_orange);
  font-weight: 700;
}
.l-service__text{
  margin-top: 40px;
  font-size: clamp(1.5rem,1.6vw,1.6rem);
  line-height: 2;
}
@media (max-width: 798px) {
  .l-service{
    padding: 40px 0;
  }
  .l-service__movie{
    width: 100%;
    margin: 30px 0;
    position: relative;
    top: initial;
    left: initial;
    padding-top: 57%;
  }
  .l-service__box{
    width: 100%;
    background-color: #fff;
    padding: 30px 20px;
  }
  .l-service__midashi{
    padding-top: 0;
    margin-top: 0;
    border-top: none;
    text-align: center;
  }
  .l-service__text{
    margin-top: 20px;
  }
}

/*****************************
.l-member
*****************************/
.l-member{
  padding: 80px 0;
}
.l-member__head .p-title{
  width: calc(100% - 600px);
}
.l-member__head .p-feature{
  width: 580px;
}
.l-member__card{
  margin: 40px 0 0;
  border: solid 2px #F3F3F3;
  border-radius: 6px;
  padding: 30px;
}
.l-member__image{
  max-width: 330px;
  width: 330px;
  border-radius: 6px;
  overflow: hidden;
}
.l-member__box{
  width: calc(100% - 370px);
}
.l-member__position{
  width: fit-content;
  padding: 5px 15px;
  border-radius: 6px;
  border: solid 1px var(--color_orange);
  color: var(--color_orange);
  text-align: center;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 15px;
}
.l-member__midashi{
  font-size: clamp(2rem,2.3vw,2.8rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px;
}
.l-member__text{
  font-size: clamp(1.5rem,1.6vw,1.6rem);
  font-weight: 700;
  line-height: 1.8;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 2px #F3F3F3;
  position: relative;
}
.l-member__text:before{
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--color_orange);
}
.l-member__name{
  font-size: clamp(1.6rem,1.9vw,2.2rem);
  font-weight: 700;
  line-height: 1.4;
}
.l-member__name span{
  display: inline-block;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  color: #bbb;
  margin-left: 20px;
}
.l-member__data{
  margin-top: 15px;
  justify-content: flex-start;
}
.l-member__data li{
  background-color: var(--color_bg01);
  padding: 5px;
  margin-right: 10px;
  font-size: clamp(1.1rem,1.1vw,1.2rem);
  font-weight: 700;
  line-height: 1.4;
  border-radius: 5px;
}
@media (max-width: 1150px) {
  .l-member__head .p-title{
    width: calc(100% - 400px);
  }
  .l-member__head .p-feature{
    width: 400px;
  }
}
@media (max-width: 798px) {
  .l-member{
    padding: 40px 0;
  }
  .l-member__head{
    display: block;
  }
  .l-member__head .p-title{
    width: 100%;
  }
  .l-member__head .p-feature{
    max-width: 400px;
    width: 100%;
    margin: 20px auto 0;
  }
  .l-member__card{
    margin: 30px 0 0;
    border: solid 1px #F3F3F3;
    display: block;
    padding: 20px 15px;
  }
  .l-member__image{
    max-width: none;
    width: 100%;
    margin: 0 0 15px;
  }
  .l-member__box{
    width: 100%;
  }
  .l-member__data li{
    margin: 0 5px 5px 0;
  }
}
/*****************************
.l-why
*****************************/
.l-why{
  padding: 80px 0;
  background-color: var(--color_bg01);
}
.l-why__head-box{
  width: 55%;
}
.l-why__head-text{
  font-size: clamp(1.5rem,1.6vw,1.8rem);
  font-weight: 700;
  line-height: 1.8;
  margin: 60px 0 0;
}
.l-why__head-text strong{
  color: var(--color_orange);
}
.l-why__head-image{
  width: 40%;
}
.l-why__body{
  margin: 80px 0 0;
  background-color: #fff;
  padding: 50px 60px 10px;
  border-radius: 6px;
}
.l-why__body-box{
  width: 60%;
}
.l-why__body-midashi{
  font-size: clamp(1.8rem,2.3vw,2.8rem);
  font-weight: 700;
  line-height: 1.4;
}
.l-why__body-text{
  font-size: clamp(1.5rem,1.6vw,1.6rem);
  line-height: 1.8;
  margin: 30px 0 0;
}
.l-why__body-image{
  width: 40%;
}
@media (max-width: 798px) {
  .l-why{
    padding: 40px 0;
    background-color: var(--color_bg01);
    overflow-x: hidden;
  }
  .l-why__head-box{
    width: 100%;
  }
  .l-why__head-text{
    margin: 30px 0 0;
  }
  .l-why__head-image{
    width: 112%;
    margin: 30px -6% 0;
  }
  .l-why__body{
    margin: 40px 0 0;
    padding: 20px 15px 5px;
  }
  .l-why__body-box{
    width: 100%;
    margin: 0 0 20px;
  }
  .l-why__body-text{
    margin: 20px 0 0;
  }
  .l-why__body-image{
    width: 100%;
  }
}

/*****************************
.l-faq
*****************************/
.l-faq{
  padding: 80px 0;
}
.l-faq .p-title{
  text-align: center;
}
.l-faq .p-title__en{
  justify-content: center;
}
.l-faq__illust{
  max-width: 977px;
  width: 100%;
  margin: 80px auto 0;
}
@media (max-width: 798px) {
  .l-faq{
    padding: 40px 0;
  }
  .l-faq__illust{
    margin: 40px auto 0;
  }
}

/*****************************
.l-arrow-conts
*****************************/
.l-arrow-conts{
  position: relative;
  z-index: 1;
  background-color: var(--color_orange);
  color: #fff;
  text-align: center;
  padding: 50px 5px 70px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 50% 100%, 0 calc(100% - 100px));
  margin-bottom: -100px;
}
.l-arrow-conts__text{
  font-size: clamp(1.9rem, 2.5vw, 3.3rem);
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
}
.l-arrow-conts__text span{
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 3px;
}
@media (max-width: 798px) {
  .l-arrow-conts{
    padding: 30px 5px 60px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 35px), 50% 100%, 0 calc(100% - 35px));
    margin-bottom: -35px;
  }
}

/*****************************
.l-understand
*****************************/
.l-understand{
  position: relative;
  padding: 180px 0 80px;
  background-color: var(--color_bg01);
}
.l-understand__head-midashi{
  text-align: center;
  font-size: clamp(2.8rem, 4vw, 5.2rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 30px;
}
.l-understand__head-midashi strong{
  font-weight: 700;
  display: inline-block;
  background-color: var(--color_orange);
  color: #fff;
  padding: 5px 8px 8px;
  line-height: 1;
}
.l-understand__head-text{
  text-align: center;
  font-size: clamp(1.5rem,1.6vw,1.6rem);
  line-height: 2;
  margin: 0 0 50px;
}
.l-understand__point-midashi{
  text-align: center;
  font-size: clamp(2.2rem,2.7vw,3.3rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 30px;
}
.l-understand__point-midashi strong{
  font-size: clamp(2.8rem, 4vw, 5.2rem);
  color: var(--color_orange);
  font-weight: 700;
}
.l-understand__point{
  align-items: stretch;
}
.l-understand__point li{
  width: calc(100% / 3 - 15px);
  background-color: #fff;
  padding: 30px;
  border-radius: 6px;
  text-align: center;
}
.l-understand__point-number{
  font-size: clamp(1.8rem,2.3vw,2.8rem);
  font-weight: 700;
  line-height: 1.4;
}
.l-understand__point-number strong{
  color: var(--color_orange);
  font-weight: 700;
}
.l-understand__point-illust{
  max-width: 250px;
  margin: 20px auto;
}
.l-understand__point-text{
  font-size: clamp(1.5rem,1.6vw,1.6rem);
  line-height: 2;
  max-width: 270px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 798px) {
  .l-understand{
    padding: 80px 0 40px;
  }
  .l-understand__head-midashi{
    margin: 0 0 20px;
  }
  .l-understand__head-midashi strong{
    padding: 3px 8px 8px;
  }
  .l-understand__head-text{
    margin: 0 0 30px;
  }
  .l-understand__point-midashi{
    margin: 0 0 15px;
  }
  .l-understand__point{
    display: block;
  }
  .l-understand__point li{
    width: 100%;
    padding: 20px 15px;
    margin: 0 0 20px;
  }
  .l-understand__point-illust{
    margin: 10px auto;
  }
}

/*****************************
.l-flow
*****************************/
.l-flow{
  padding: 80px 0;
}
.l-flow .p-title{
  text-align: center;
}
.l-flow .p-title__en{
  justify-content: center;
}
.l-flow__list{
  align-items: stretch;
  margin: 80px auto 0;
}
.l-flow__list li{
  width: calc(100% / 4 - 40px);
  position: relative;
  background-color: var(--color_bg01);
  border-radius: 6px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.l-flow__list li:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(200%,-50%);
  width: 17px;
  height: 30px;
  background: url(../img/lp/movie/arw02-bk.svg) no-repeat center center / contain;
}
.l-flow__list li:last-child{
  background-color: #F8F0E1;
}
.l-flow__list li:nth-child(3):after,
.l-flow__list li:last-child:after{
  display: none;
}
.l-flow__list li:last-child:before{
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  width:0;
  height:0;
  border-style:solid;
  border-width: 15px 30px 15px 0;
  border-color: transparent #F8F0E1 transparent transparent;
}
.l-flow__midashi{
  font-size: clamp(1.6rem,1.8vw,2rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color_orange);
  margin: 0 0 5px;
}
.l-flow__text{
  font-size: clamp(1.5rem,1.6vw,1.6rem);
  line-height: 1.8;
}
.l-flow__list li:last-child .l-flow__text{}
.l-flow__list li:last-child .l-flow__text strong{
  color: var(--color_orange);
}
.l-flow__illust{
  max-width: 80px;
  margin: 15px auto 0;
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 798px) {
  .l-flow{
    padding: 40px 0;
  }
  .l-flow__list{
    display: block;
    margin: 40px auto 0;
  }
  .l-flow__list li{
    width: 100%;
    padding: 20px 15px;
    margin: 0 0 30px;
  }
  .l-flow__list li:after{
    content: "";
    position: absolute;
    top: initial;
    right: initial;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    width: 12px;
    height: 20px;
  }
  .l-flow__list li:last-child:before{
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width:0;
    height:0;
    border-style:solid;
    border-width: 0 15px 21px 15px;
    border-color: transparent transparent #F8F0E1 transparent;
  }
  .l-flow__illust{
    margin: 10px auto 0;
  }
}

/*****************************
.l-point
*****************************/
.l-point{
  padding: 80px 0;
  background-color: var(--color_bg01);
}
.l-point .p-title{
  text-align: center;
}
.l-point .p-title__en{
  justify-content: center;
}
.l-point__list{
  margin: 60px 0 20px;
}
.l-point__list li{
  width: calc(100% / 3 - 15px);
}
.l-point__ng{
  background-color: #fff;
  padding: 30px;
  border-radius: 6px;
}
.l-point__ng-midashi{
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: clamp(1.6rem,1.8vw,2rem);
  font-weight: 700;
  line-height: 1.4;
  border-bottom: solid 1px #D9D9D9;
}
.l-point__ng-midashi strong{
  color: var(--color_orange);
  font-weight: 700;
}
.l-point__ng-list{
  justify-content: flex-start;
}
.l-point__ng-list li{
  width: calc(100% / 3);
  font-size: clamp(1.5rem,1.6vw,1.6rem);
  line-height: 1.6;
  padding: 0 10px;
  position: relative;
}
.l-point__ng-list li:before{
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 3px;
  background-color: var(--color_black);
}
@media (max-width: 798px) {
  .l-point{
    padding: 40px 0;
  }
  .l-point .p-title{
    text-align: center;
  }
  .l-point .p-title__en{
    justify-content: center;
  }
  .l-point__list{
    margin: 20px 0 10px;
  }
  .l-point__list li{
    width: calc(100% / 2 - 2px);
  }
  .l-point__ng{
    padding: 20px 10px;
  }
  .l-point__ng-midashi{
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  .l-point__ng-midashi strong{
    color: var(--color_orange);
    font-weight: 700;
  }
  .l-point__ng-list{
    display: block;
  }
  .l-point__ng-list li{
    width: 100%;
    margin: 0 0 5px;
  }
  .l-point__ng-list li:before{
    top: 10px;
  }
}
@media (max-width: 400px) {
  .l-point__list{
    display: block;
  }
  .l-point__list li{
    width: 100%;
    margin: 0 0 -10px;
  }
}

/*****************************
.l-achievements
*****************************/
.l-achievements{
  padding: 80px 0;
}
.l-achievements .p-title{
  text-align: center;
}
.l-achievements .p-title__en{
  justify-content: center;
}
.l-achievements .p-title__text{
  font-size: clamp(3.4rem,4vw,5.2rem);
}
.l-achievements__logo{
  padding: 50px 0 0;
  overflow: hidden;
}
.l-achievements__logo > div:first-of-type{
  margin-bottom: 15px;
}
.l-achievements__logo p{
  margin: 0 10px;
  display: block;
}
.l-achievements__logo p img{
  width: auto;
  height: 90px;
  max-width: none;
}
.l-achievements__logo .slick-slide{
  width: auto;
  height: auto;
}
.loop04.slick-slider{
  transform: scaleX(-1);
}
.loop04 .slick-slide{
  transform: scaleX(-1);
}
.l-achievements__card{
  margin: 40px 0 0;
  border: solid 2px #F3F3F3;
  border-radius: 6px;
  padding: 30px;
}
.l-achievements__image{
  max-width: 380px;
  width: 380px;
  border-radius: 6px;
  overflow: hidden;
}
.l-achievements__box{
  width: calc(100% - 410px);
}
.l-achievements__midashi{
  font-size: clamp(1.8rem,2.3vw,2.8rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px;
  padding-bottom: 20px;
  position: relative;
}
.l-achievements__midashi:before{
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--color_orange);
}
.l-achievements__text{
  font-size: clamp(1.5rem,1.6vw,1.6rem);
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 20px;
}
.l-achievements__name{
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  line-height: 1.4;
}
@media (max-width: 798px) {
  .l-achievements__logo{
    padding: 30px 0 0;
  }
  .l-achievements__logo > div:first-of-type{
    margin-bottom: 10px;
  }
  .l-achievements__logo p img{
    height: 50px;
  }
  .l-achievements__card{
    margin: 30px 0 0;
    border: solid 1px #F3F3F3;
    display: block;
    padding: 20px 15px;
  }
  .l-achievements__image{
    max-width: none;
    width: 100%;
    margin: 0 0 15px;
  }
  .l-achievements__box{
    width: 100%;
  }
}

/*****************************
.l-qa
*****************************/
.l-qa{
  padding: 80px 0;
  background-color: var(--color_bg01);
}
.l-qa .p-title{
  text-align: center;
}
.l-qa .p-title__en{
  justify-content: center;
}
.l-qa__list{
  padding-top: 40px;
}
.l-qa__list dl{
  margin-top: 20px;
}
.l-qa__list dt{
  padding: 20px 50px 20px 20px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: .3s;
}
.l-qa__list dt:before,
.l-qa__list dt:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 2px;
  background-color: var(--color_black);
  transition: .3s;
  transform: translateY(-50%);
}
.l-qa__list dt:after{
  transform: translateY(-50%) rotate(90deg);
}
.l-qa__list dt.open:after{
  transform: translateY(-50%) rotate(0);
}
.l-qa__list dd{
  display: none;
}
.l-qa__a{
  padding: 20px;
}
.l-qa__q span,
.l-qa__a span{
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: clamp(1.6rem,1.8vw,2rem);
  font-weight: 700;
  text-align: center;
  color: #fff;
  border-radius: 35px;
}
.l-qa__q span{
  background-color: var(--color_black);
}
.l-qa__a span{
  background-color: var(--color_orange);
}
.l-qa__q strong,
.l-qa__a strong{
  width: calc(100% - 45px);
  padding-top: 5px;
}
.l-qa__q strong{
  font-size: clamp(1.6rem,1.9vw,2.2rem);
  font-weight: 700;
  line-height: 1.4;
  padding-top: 1px;
}
.l-qa__a strong{
  font-size: clamp(1.5rem,1.6vw,1.6rem);
  font-weight: 400;
  line-height: 1.8;
}
.l-qa__a em{
  font-style: normal;
  display: block;
  margin: 5px 0;
  padding-left: 10px;
  position: relative;
}
.l-qa__a em:before{
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: var(--color_black);
}
@media (max-width: 798px) {
  .l-qa{
    padding: 40px 0;
  }
  .l-qa__list{
    padding-top: 20px;
  }
  .l-qa__list dl{
    margin-top: 10px;
  }
  .l-qa__list dt{
    padding: 10px 30px 10px 10px;
  }
  .l-qa__list dt:before,
  .l-qa__list dt:after{
    right: 10px;
    width: 15px;
    height: 1px;
  }
  .l-qa__a{
    padding: 10px;
  }
  .l-qa__q span,
  .l-qa__a span{
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
  .l-qa__q strong,
  .l-qa__a strong{
    width: calc(100% - 35px);
    padding-top: 2px;
  }
  .l-qa__a em:before{
    top: 12px;
  }
}

/*****************************
.l-confirmation
*****************************/
.l-confirmation{
  background-color: var(--color_orange);
  padding: 50px 0;
}
.l-confirmation__inner{
  align-items: center;
}
.l-confirmation__box{
  width: 40%;
  color: #fff;
}
.l-confirmation__midashi{
  font-size: clamp(2rem,2.5vw,3.2rem);
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 20px;
}
.l-confirmation__midashi span{
  color: var(--color_orange);
  background-color: #fff;
  padding: 1px 5px;
  display: inline-block;
  line-height: 1.2;
  margin: 0 3px;
}
.l-confirmation__text{
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 700;
}
.l-confirmation__form{
  background-color: #fff;
  padding: 30px;
  border-radius: 6px;
  position: relative;
  width: 57%;
}
.l-confirmation__form:before{
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  width:0;
  height:0;
  border-style:solid;
  border-width: 10px 30px 10px 0;
  border-color: transparent #fff transparent transparent;
}
.l-confirmation__form-text {
  background-color: var(--color_bg01);
  font-size: clamp(1.6rem,1.8vw,2rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  margin: 0 0 20px;
}
.l-confirmation__form-text strong {
  display: inline-block;
  background-color: var(--color_orange);
  color: #fff;
  font-size: clamp(1.1rem, 1.3vw, 1.4rem);
  font-weight: 700;
  line-height: 1.4;
  border-radius: 6px;
  padding: 2px 10px;
  margin-right: 5px;
  transform: translateY(-2px);
}
.l-confirmation__form input{
  padding: 20px 20px;
  font-size: 1.6rem;
  line-height: 1.4;
  border-radius: 5px;
  background-color: #fff;
  border: solid 1px #D9D9D9;
  width: 100%;
  box-shadow: inset 0 0 10px rgba(0,0,0,.1);
}
.l-confirmation__form button{
  padding: 15px 5px;
  background-color: var(--color_black);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  border-radius: 5px;
  transition: .3s;
  cursor: pointer;
  border: solid 1px var(--color_black);
  margin-top: 15px;
  position: relative;
}
.l-confirmation__form button:hover{
  background-color: #fff;
  color: var(--color_black);
}
.l-confirmation__form button:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 13px;
  height: 10px;
  background: url(../img/lp/movie/arw01-w.svg) no-repeat center center / contain;
  transition: .3s;
}
.l-confirmation__form button:hover:after{
  background-image:  url(../img/lp/movie/arw01-or.svg);
}
@media (max-width: 798px) {
  .l-confirmation{
    padding: 25px 0;
  }
  .l-confirmation__inner{
    display: block;
  }
  .l-confirmation__box{
    width: 100%;
    margin-bottom: 20px;
  }
  .l-confirmation__midashi{
    margin: 0 0 10px;
    text-align: center;
  }
  .l-confirmation__form{
    padding: 15px;
    width: 100%;
  }
  .l-confirmation__form:before{
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width:0;
    height:0;
    border-style:solid;
    border-width: 0 10px 16px 10px;
    border-color: transparent transparent #fff transparent;
  }
  .l-confirmation__form-text {
    margin: 0 0 10px;
  }
  .l-confirmation__form input{
    padding: 10px 20px;
  }
  .l-confirmation__form button{
    margin-top: 10px;
  }
}

.p-entry{
  background-color: var(--color_bg01);
  padding: 100px 0 100px;
}
.p-entry__midashi{
  text-align: center;
  font-size: clamp(2.4rem,2.6vw,3rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 30px;
}
.p-entry__midashi span{
  color: var(--color_orange);
}
.p-entry__text{
  text-align: center;
  font-size: clamp(1.5rem,1.6vw,1.6rem);
  font-weight: 400;
  line-height: 1.8;
  padding-bottom: 30px;
}
.p-entry__wrap{
  max-width: 920px;
  width: 90%;
  background-color: #fff;
  border-radius: 6px;
  padding: 40px;
  margin: 30px auto 0;
}
.p-entry-table{
  width: 100%;
}
.p-entry-table th {
  min-width: 220px;
  width: 220px;
  padding: 15px 0;
  vertical-align: top;
  font-weight: 700;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
}
.p-entry-table th strong{
  display: block;
  background-color: var(--color_orange);
  padding: 2px 10px;
  text-align: center;
  color: #fff;
  font-size: clamp(1rem,1.1vw,1.2rem);
  font-weight: 700;
  position: absolute;
  top: 15px;
  right: 0;
}
.p-entry-table td{
  padding: 0 0 20px 20px;
}
.p-entry-table input[type=text],
.p-entry-table textarea {
  padding: 15px 20px;
  font-size: 1.6rem;
  line-height: 1.4;
  border-radius: 5px;
  background-color: #fff;
  border: solid 1px #D9D9D9;
  width: 100%;
  box-shadow: inset 0 0 10px rgba(0,0,0,.1);
}
.p-entry-table .wpcf7-checkbox{
  padding-top: 10px;
  display: block;
}
.p-entry-table .wpcf7-list-item{
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 700;
  display: block;
  margin: 0 0 5px;
}
.p-entry__privacy{
  text-align: center;
  margin: 0 auto 30px;
  font-size: 1.6rem;
  line-height: 1.8;
}
.p-entry__privacy a{
  color: var(--color_black);
  text-decoration: underline;
}
.p-entry__privacy a:hover{
  text-decoration: none;
}
.p-entry .consent{
  text-align: center;
  margin: 0 auto 30px;
  font-size: 1.6rem;
  line-height: 1.8;
  display: block;
  width: fit-content;
}
.p-entry .consent label span{
  position: relative;
}
.p-entry .consent label span:after{
  content: '必須';
  display: inline-block;
  background-color: var(--color_orange);
  padding: 2px 10px;
  text-align: center;
  color: #fff;
  font-size: clamp(1rem,1.1vw,1.2rem);
  font-weight: 700;
  margin-left: 5px;
}
.p-entry__submit{
  display: block;
  max-width: 420px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}
.p-entry__submit input[type=submit]{
  display: revert-layer;
  border: none;
  width: 100%;
  text-align: center;
  padding: 15px 5px;
  background-color: var(--color_orange);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  border-radius: 5px;
  transition: .3s;
  cursor: pointer;
  border: solid 1px var(--color_orange);
  position: relative;
}
.p-entry__submit input[type=submit]:hover{
  background-color: #fff;
  color: var(--color_orange);
}
.p-entry__submit:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 13px;
  height: 10px;
  background: url(../img/lp/movie/arw01-w.svg) no-repeat center center / contain;
  transition: .3s;
}
.p-entry__submit:hover:after{
  background-image:  url(../img/lp/movie/arw01-or.svg);
}
.p-entry .wpcf7-spinner{
  display: none;
}
.p-entry .wpcf7-not-valid-tip{
  font-size: 1.4rem;
  line-height: 1.4;
}
.p-entry .wpcf7-form-control-wrap .consent + .wpcf7-not-valid-tip{
  text-align: center;
  margin: -20px 0 20px;
}
.p-entry .wpcf7 form .wpcf7-response-output{
  max-width: 920px;
  width: 90%;
  background-color: #fff;
  border-radius: 6px;
  padding: 20px;
  margin: 10px auto 0;
  text-align: center;
  font-size: 1.4rem;
}
@media (max-width: 798px) {
  .p-entry{
    background-color: var(--color_bg01);
    padding: 50px 0 50px;
  }
  .p-entry__midashi{
    margin: 0 0 20px;
  }
  .p-entry__text{
    text-align: left;
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
  }
  .p-entry__wrap{
    margin-top: 20px;
    padding: 20px 15px;
  }
  .p-entry-table th {
    min-width: auto;
    width: 100%;
    padding: 5px 0;
    display: block;
  }
  .p-entry-table th strong{
    top: 5px;
  }
  .p-entry-table td{
    display: block;
    width: 100%;
    padding: 0 0 10px;
  }
}
.p-thanks{
  max-width: 920px;
  width: 90%;
  background-color: #fff;
  border-radius: 6px;
  padding: 40px;
  margin: 50px auto 0;
}
.p-thanks__text{
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
}
.p-thanks__text strong{
  display: block;
  text-align: center;
  font-size: clamp(1.8rem,2vw,2.2rem);
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 1.4;
}
.p-thanks__text span{
  font-weight: 700;
}
.p-thanks a{
  display: block;
  max-width: 240px;
  width: 90%;
  margin: 50px auto 0;
  text-align: center;
  padding: 15px 5px;
  text-align: center;
  background-color: var(--color_black);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 5px;
  border: solid 1px var(--color_black);
  transition: .3s;
}
.p-thanks a:hover{
  background-color: #fff;
  color: var(--color_black);
}
@media (max-width: 798px) {
  .p-thanks{
    margin-top: 20px;
    padding: 20px 15px;
  }
  .p-thanks__text{
    text-align: left;
  }
  .p-thanks a{
  margin: 30px auto 0;
  }
}