@charset "utf-8";
/* CSS Document */

/*common
=======================*/
html
#main {
  box-sizing: border-box;
  font-size: 1.6rem;
  color: #323232;
  line-height: 1.7;
  margin: 0 auto;
}
#main img{
	vertical-align:top;
  pointer-events: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
}
ul,ol{
    padding: 0;
}
ul li,ol li{
    list-style: none !important;
}
p{
    margin: 0;
}
table{
    border-collapse: collapse
}

@media screen and (min-width:768px) {
  .spOnly {
    display: none;
  }
}
@media screen and (max-width:767.98px) {
  .pcOnly {
    display: none;
  }
}

/*---animation---*/
.anim_fadein {
  animation: fadeIn 4s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim_scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.anim_scroll.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.kvTitWrap .anim_scroll {
  transform: translateY(30px) scale(.7);
}
.kvTitWrap .anim_scroll.scrollin {
  transform: translate(0, 0) scale(1);
}
@media screen and (max-width:767.98px) {
	.anim_scroll_sp {
		opacity: 0;
		transform: translateY(40px);
		transition: opacity 1s, transform 1s;
	}
}
/*=====================*/


/*kvArea
=======================*/
.kv {
  margin: 0 auto;
  width: 100%;
}
.kv img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.kvArea {
  position: relative;
}
.kv_t_box {
  position: absolute;
  width: 62%;
  z-index: 20;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  text-align: center;
  
}
.kv_t_box .kv_t_wrap {
  position: relative;
  padding: 10px 0;
  color: #c93239;
  text-shadow: 0px 1px 20px #fff;
}
.kv_t_box .kv_t_wrap .kv_t_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .82;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 20px 40px rgba(255, 255, 255, 1);
  z-index: -1;
}
.kv_t_box .kv_t_wrap p {
 font-size: 2.5rem;
 font-weight: 700;
 position: relative;
 display: inline-block;
}
.kv_t_box .kv_t_wrap p::before,
.kv_t_box .kv_t_wrap p::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 2px;
  background-color: #c93239;
}
.kv_t_box .kv_t_wrap p::before {
  top: 45%;
  left: -15%;
  transform: translateY(-50%);
  box-shadow: 0px 1px 20px #fff;
}
.kv_t_box .kv_t_wrap p::after {
  top: 45%;
  right: -15%;
}
.kv_t_box .kv_img {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
.kv_t_box .kv_img img + img {
  margin-left: 15px;
}
.kv_t_box .kv_t_wrap h1 {
  font-size: 5.8rem;
  margin: 5px 0;
}
@media screen and (max-width:767.98px) {
  .kv {
    height: 300px;
  }
  .kv_t_box {
    width: 85%;
  }
  .kv_t_box .kv_img {
    width: 70%;
    margin: 10px auto;
  }
  .kv_t_box .kv_t_wrap {
    padding: 10px 0;
  }
  .kv_t_box .kv_t_wrap .kv_t_bg {
    box-shadow: 0 0 10px 20px rgba(255, 255, 255, 1);
  }
  .kv_t_box .kv_t_wrap p {
    font-size: 1.3rem;
  }
  .kv_t_box .kv_t_wrap p::before, .kv_t_box .kv_t_wrap p::after {
    width: 20px;
    height: 1px;
  }
  .kv_t_box .kv_t_wrap p::before {
    left: -15%;
    top: 46%;
  }
  .kv_t_box .kv_t_wrap p::after {
    right: -15%;
    top: 46%;
  }
  .kv_t_box .kv_t_wrap h1 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width:359px) {
  .kv_t_box .kv_t_wrap p {
    font-size: 1.5rem;
  }
  .kv_t_box .kv_t_wrap h1 {
    font-size: 1.8rem;
  }

}
/*=====================*/

/*f_section
=======================*/
.f_section {
  margin: 40px auto 30px;
}
h2 {
  margin: 0 0 15px;
  text-align: center;
  font-size: 2.0rem;
  color: #c93239;
}
h2 span {
  position: relative;
}
h2 span::before {
  position: absolute;
  content: '';
  top: 50%;
  left: -60px;
  width: 40px;
  height: 2px;
  background: #c93239;
  transform: translateY(-50%);
}
h2 span::after {
  position: absolute;
  content: '';
  top: 50%;
  right: -60px;
  width: 40px;
  height: 2px;
  background: #c93239;
  transform: translateY(-50%);
}
@media screen and (max-width:767.98px) {
  .f_section {
    margin: 35px 0 30px;
  }
  h2 {
    font-size: 1.3rem;
  }
  h2 span::before, h2 span::after {
    width: 25px;
    height: 1px;
  }
  h2 span::before {
    left: -45%;
  }
  h2 span::after {
    right: -45%;
  }
}
.f_section .movie_wrap {
  margin: 20px 0;
}
.f_section .movie_wrap .movie_box {
  width: 640px;
  margin: 0 auto;
}
.f_section ul {
  max-width: 1160px;
  margin: 40px auto;
  font-size: 2.0rem;
}
.f_section ul li {
  padding: 5px 0 5px 45px;
  position: relative;
}
.f_section ul li::before {
  position: absolute;
  content: "";
  background-color: #c93239;
  width: 20px;
  height: 4px;
  top: 19px;
  left: 1%;
}
@media screen and (min-width:768px) {
  .f_section .movie_wrap {
    background: url("/escort/feature/cmn/img/movie_bg.webp") center center no-repeat;
  }
}
@media screen and (max-width:767.98px) {
  .f_section .movie_wrap .movie_box {
    width: 320px;
  }
  .f_section ul {
    font-size: 1.3rem;
    padding: 0 10px;
  }
  .f_section ul li {
    padding: 5px 0 5px 20px;
  }
  .f_section ul li::before {
    width: 10px;
    height: 3px;
  }
}
/*=====================*/


/*tab-container
=======================*/
.tabs {
  margin: 40px 0 0;
}

.tab-list {
  display: flex;
  width: 100%;
  margin: 10px auto 60px;
  max-width: 1160px;
}

.tab-item {
  background-color: #fff;
  border: 2px solid #e3e3e3;
  padding: 0.5em 1.2em;
  cursor: pointer;
  width: 50%;
  text-align: center;
  color: #797979;
  font-size: 2.4rem;
  font-weight: 700;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, .1);
}

.tab-content {
  background-color: #f5f5f5;
  padding: 120px 0 20px;
}

.tab-panel {
  display: none;
}

.tab-item.active {
  background-color: #c93239;
  color: #fff;
  border: none;
  box-shadow: none;
  pointer-events: none;
  position: relative;
}
.tab-item.active::before {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 15px solid #c93239;
  border-bottom: 0;
}

.tab-panel.active {
  display: block;
}
@media screen and (min-width:768px) {
  .tab-item:hover {
    background-color: #ffe4e5;
    color: #c93239;
    border: 2px solid #ffe4e5;
    transition: .25s;
  }
  .tab-item.active:hover {
    pointer-events: none;
  }
}
@media screen and (max-width:767.98px) {
  .tab-item {
    font-size: 1.2rem;
    border: 1px solid #e3e3e3;
    box-shadow: none;
  }
  .tab-list {
    width: 95%;
    margin: 10px auto 40px;
  }
  .tab-item.active::before {
    bottom: -8px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 9px solid #c93239;
  }
}
/*=====================*/

/*tab
=======================*/
.tab-panel section + section {
  margin-top: 100px;
}
.con_01 {
  width: 91%;
  margin: 0 0 0 auto;
  padding: 45px 0 50px;
  border-radius: 75px 0 0 75px;
}
.con_02 {
  width: 92%;
  margin: 0 auto 0 0;
  padding: 50px 15px 50px 0;
  border-radius: 0 75px 75px 0;
}
.con_01 .con_inner {
  width: 55%;
  padding-left: 220px;
}
.con_01 p {
  font-size: 2.0rem;
}
.con_01 p + p {
  margin-top: 25px;
}
.con_01 .logotxt_wrap {
  display: flex;
  align-items: flex-end;
  padding-left: 50px;
}
.con_01 .logotxt_wrap p {
  font-size: 2.0rem;
  font-weight: 700;
  margin: 0;
  color: #c93239;
  position: relative;
}
.con_01 .logotxt_wrap p::before {
  position: absolute;
  content: '';
  top: 47%;
  left: -50px;
  width: 40px;
  height: 2px;
  background: #c93239;
  transform: translateY(-50%);
}
.con_01 .logotxt_wrap .img_wrap {
  border-radius: 50px;
  margin-left: 10px;
  background-color: #ffe4e5;
}
.con_01 .logotxt_wrap .img_wrap img {
  width: 88px;
  height: 40px;
}
.con_01 .main_t {
  color: #c93239;
  font-size: 4.0rem;
  font-weight: 700;
  margin: 15px 0;
}
@media screen and (min-width:768px) {
  .con_01 .logotxt_wrap .img_wrap {
    padding: 10px 25px;
  }
}

@media screen and (min-width:768px) {
  .con_01 {
    background: linear-gradient(to left, transparent 0%, transparent 28%, transparent 33%, #fff 39%, #fff 100%), url("/escort/feature/cmn/img/tabi_img_01.webp");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
  }
  .con_02 {
    background: linear-gradient(to right, transparent 0%, transparent 28%, transparent 33%, #fff 39%, #fff 100%), url("/escort/feature/cmn/img/tabi_img_02.webp");
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
  }
}
@media screen and (max-width:1460px) {
  .con_01 .con_inner {
    padding-left: 180px;
  }
  .con_01 .main_t {
    font-size: 3.5rem;
  }
}
@media screen and (max-width:1270px) {
  .con_01 .main_t {
    font-size: 3.0rem;
  }
  .con_01 p {
    font-size: 1.8rem;
  }
}

.con_02 .con_inner {
  width: 58%;
  margin: 0 0 0 auto;
}
.con_02 p {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
}
.con_02 .red_l {
  font-size: 3.5rem;
  font-weight: 700;
  color: #c93239;
  border: 1px solid #c93239;
  border-radius: 50px 50px 0 50px;
  background-color: #fff;
  padding: 10px 10px;
  display: inline-block;
  width: 180px;
  margin-bottom: 10px;
}
.con_02 .red_l02 {
  border-radius: 50px 50px 50px 0;
}
.con_02 .con_inner .img_wrap_02 {
  margin: 0 10px;
}
@media screen and (max-width:767.98px) {
  .tab-content {
    padding: 30px 0 20px;
  }
  .con_01 {
    width: 97%;
    background-color: #fff;
    margin: 0 auto 0 0;
    border-radius:0 35px 35px 0;
    padding: 20px 15px 30px 10px;
  }
  .con_01 .con_inner {
    width: 100%;
    padding-left: 0;
  }
  .con_01 .logotxt_wrap p {
    font-size: 1.3rem;
  }
  .con_01 .main_t {
    font-size: 2.1rem;
    margin: 20px 0 25px;
  }
  .con_01 p {
    font-size: 1.2rem;
  }
  .con_01 p + p {
    margin-top: 15px;
  }
  .tab-panel section + section {
    margin-top: 30px;
  }
  .con_02 {
    width: 97%;
    background-color: #fff;
    margin: 0 0 0 auto;
    border-radius: 35px 0 0 35px;
    padding: 25px 0 30px;
  }
  .con_02 .con_inner {
    width: 100%;
    margin: 0;
  }
  .con_01 .logotxt_wrap .img_wrap {
    width: 82px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .con_01 .logotxt_wrap .img_wrap img {
    width: 50px;
    height: 23px;
  }
  .con_02 .con_inner .img_wrap img {
    width: 98%;
    height: auto;
  }
}

/*look_tab*/
@media screen and (min-width:768px) {
  .look_tab .con_01 {
    background: linear-gradient(to left, transparent 0%, transparent 28%, transparent 33%, #fff 39%, #fff 100%), url("/escort/feature/cmn/img/look_img_01.webp");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
  }
  .look_tab .con_02 {
    background: linear-gradient(to right, transparent 0%, transparent 28%, transparent 33%, #fff 39%, #fff 100%), url("/escort/feature/cmn/img/look_img_02.webp");
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
  }
  .look_tab .con_02 .con_inner {
    width: 55%;
  }
}
.look_tab .con_01 .logotxt_wrap .img_wrap img {
  width: 104px;
  height: 38px;
}
@media screen and (max-width:767.98px) {
  .look_tab .con_01 .logotxt_wrap .img_wrap {
    width: 93px;
    height: 32px;
  }
  .look_tab .con_01 .logotxt_wrap .img_wrap img {
    width: 70px;
    height: 26px;
  }
}


/*=====================*/

.ft_t {
  font-size: 4.6rem;
  color: #c93239;
  font-weight: 700;
  text-align: center;
  margin: 80px 0 30px;
}
@media screen and (max-width:767.98px) {
  .ft_t {
    font-size: 2.6rem;
    margin: 50px 0 35px;
  }
}
@media print, screen and (min-width: 769px) {
  #JTBGF-ly_footer.JTBGF-ly_footer {
    margin-top: 0!important;
  }
}
@media print, screen and (max-width: 768px) {
  #JTBGF-ly_footer.JTBGF-ly_footer {
    margin-top: 0!important;
  }
}

.scroll-hint-icon{
  z-index: 5;
}