@charset "utf-8";

html {
  font-size: 64.5%;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo",
    sans-serif, "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ StdN",
    "Hiragino Kaku Gothic StdN", "ＭＳ ゴシック", "ＭＳ Ｐゴシック",
    "MS PGothic";
}

body {
  margin: 0;
  background-color: rgba(243, 240, 234, 0.31);
  color: #0c0c0c;
  letter-spacing: 0.05em;
}

a {
  color: #0c0c0c;
}

main {
  margin-top: 70px;
  overflow: hidden;
}

@media screen and (max-width: 900px) {
  main {
    margin-top: 51px;
  }
}

/* ______________________レスポンシブ時の表示非表示 */

.md_only {
  display: none !important;
}

@media screen and (max-width: 900px) {
  .lg_only {
    display: none !important;
  }
  .md_only {
    display: block !important;
  }
}

.md_only__768 {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .lg_only__768 {
    display: none !important;
  }
  .md_only__768 {
    display: block !important;
  }
}

/* ______________________layout */

.ly_cont {
  max-width: 100rem;
  padding: 120px 2em;
  margin-left: auto;
  margin-right: auto;
}

.ly_cont__Lv2 {
  padding: 90px 2em;
}

.ly_cont__lg {
  max-width: 1200px;
  padding: 120px 0 0 0;
}

.ly_cont__contents {
  padding: 120px 0 0 0;
  margin-left: auto;
  margin-right: auto;
}

/* PC表示 */
@media (min-width: 641px) {
  .ly_cont {
    max-width: calc(100%-10vw);
  }
}

/* スマホ表示 */
@media (max-width: 768px) {
  .ly_cont {
    padding: 70px 20px 70px 20px;
  }
  .ly_cont__contents {
    padding: 70px 0 0 0;
  }
}

/* タブレット縦表示 */
@media screen and (min-width: 568px) and (max-width: 900px) {
  .ly_cont {
    padding: 70px 10vw 70px 10vw;
  }
}

/* ___________ly_section */

.hp_bgcBase {
  background-color: rgba(243, 239, 231, 0.4) !important;
}

.hp_bgcBase_lv2 {
  background-color: rgba(243, 239, 231, 0.4) !important;
}

/* ___________Partition line */

.partitionLine {
  width: 100%;
  height: 1px;
  background-color: rgba(243, 239, 231);
}

/* ______________________上に戻るボタン */

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: -50px;
  background: rgba(196, 177, 137, 0.8);
  opacity: 0.6;
  border-radius: 50%;
  z-index: 999;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f102";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* ______________________btn */
/* ___________top */
.el_arrowbtn_lg {
  width: calc((100% - 20px) / 2);
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  padding: 15px 40px 15px 20px;
  position: relative;
  background-color: #e64b78;
  transition: 0.3s;
  box-sizing: border-box;
  border-radius: 4px;
}

.el_arrowbtn_lg::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 20px;
  width: 20px;
  height: 20px;
  background: url("../img/icon/fapArrow-white.png") no-repeat center / contain;
  transition: right 0.2s;
}

.el_arrowbtn_lg:hover::before {
  right: 10px;
}

.el_arrowbtn_lg:hover,
.el_arrowbtn_lg:focus {
  opacity: 0.8;
}

/* スマホの表示 */
@media screen and (max-width: 768px) {
  .el_arrowbtn_lg {
    height: 70px;
  }
}

/* ___________normal */
.el_arrowbtn {
  width: 200px;
  max-width: 100%;
  text-align: left;
  border-bottom: 3px solid rgb(222, 30, 86);
  color: rgb(222, 30, 86);
  font-weight: bold;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  padding: 20px 40px 10px 0px;
  position: relative;
  text-decoration: none;
  transition: 1s;
}

.el_arrowbtn img {
  position: absolute;
  right: 20px;
  width: 20px;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.el_arrowbtn:hover,
.el_arrowbtn:focus {
  opacity: 0.4;
}

.el_arrowbtn:hover img {
  right: 12px;
}

.el_arrowbtn__block {
  display: block;
  margin: 0 auto;
}

.el_arrowbtn__blockFaq {
  display: block;
  margin: 0 auto;
  margin-top: 30px;
}

/* スマホ表示 */
@media screen and (max-width: 900px) {
  .el_arrowbtn {
    display: block;
    margin: 0 auto;
  }
}

/* ___________icon入りラベル */

.el_beforeIconBtn {
  position: relative;
  display: inline-block;
  padding: 0.2em 0.3em;
  text-decoration: none;
  color: #020202;
}

.el_beforeIconBtn:focus,
.el_beforeIconBtn:hover {
  opacity: 0.5;
}

.el_beforeIconBtn::before {
  display: inline-block;
  margin-right: 0.5em;
}

.el_beforeIconBtn.el_beforeIconBtn::before {
  display: inline-block;
  margin-right: 0.5em;
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
}

/* ___________優先度一番高いボタン */
.corpLink {
  text-align: center;
}

.corpLink a {
  display: inline-block;
  padding: 30px 80px;
  margin: 0px auto;
  color: rgb(255, 255, 255);
  background-color: rgb(150, 131, 107);
  font-size: 1.5rem;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 1.5s;
}

.corpLink a:hover,
.corpLink a:focus {
  opacity: 0.4;
}

@media screen and (max-width: 768px) {
  .corpLink a {
    /* width: 265px; */
    width: calc(100% - 4rem);
    box-sizing: border-box;
    margin: 0 auto;
    padding: 20px 20px;
  }
}

/* タブレット縦表示 */
@media screen and (min-width: 568px) and (max-width: 900px) {
  .corpLink {
    padding-left: 10vw;
    padding-right: 10vw;
  }
}

/* ______________________headline */

.el_Lv1Heading {
  color: #40382d;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 20px;
  margin-top: -7px;
}

.el_Lv1Heading {
  transform: translateY(-50%);
}

.el_Lv1Heading.el_beforeLv1Heading__content > span {
  font-size: 2.1rem;
  color: #a18e72;
  display: block;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .el_Lv1Heading {
    padding: 20px 10px;
    font-size: 2.6rem;
    margin-bottom: 10px;
  }
  .el_Lv1Heading {
    transform: translateY(-20%);
  }
  .el_Lv1Heading.el_beforeLv1Heading__content > span {
    font-size: 1.6rem;
  }
}

.el_Lv2Heading {
  padding: 30px 10px;
  color: #0c0c0c;
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 40px;
  margin-top: -7px;
}

.el_Lv2Heading > span {
  position: relative;
  display: inline-block;
  transform: translateY(-20%);
}

.el_Lv2Heading > span::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  width: 80px;
  height: 5px;
  background: linear-gradient(
    90deg,
    #e76087 0%,
    #e76087 50%,
    #e7e0d2 50%,
    #e7e0d2 100%
  );
  transform: translateX(-50%);
}

.el_Lv3Heading {
  padding: 15px 0px;
  color: #0c0c0c;
  font-size: 2rem;
  text-align: left;
  margin-bottom: 20px;
  margin-top: -7px;
}

.el_Lv3Heading > span {
  position: relative;
  display: inline-block;
  transform: translateY(-20%);
}

.el_Lv3Heading > span::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    #e76087 0%,
    #e76087 50%,
    #e7e0d2 50%,
    #e7e0d2 100%
  );
}

@media screen and (max-width: 900px) {
  .el_Lv3Heading {
    font-size: 1.6rem;
  }
}

.el_Lv4Heading {
  padding: 10px 0px;
  color: #0c0c0c;
  font-size: 2.5rem;
  text-align: left;
  margin-bottom: 40px;
  margin-top: -7px;
  font-weight: bold;
}

.el_Lv5Heading {
  padding: 10px 1rem;
  border-bottom: 1px solid #a0a0a0;
  background-color: rgba(196, 177, 137, 0.3);
  color: #0c0c0c;
  font-size: 1.8rem;
  text-align: left;
  margin-bottom: 20px;
}

.el_Lv5Heading:not(:first-child) {
  margin-top: 30px;
}

/* ______________________text */

.el_read {
  font-size: 1.55rem;
  line-height: 1.8em;
}

.el_txt {
  font-size: 1.6rem;
  max-width: 60rem;
  line-height: 1.85em;
  margin: -40px auto 70px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .el_txt {
    font-size: 1.5rem;
    line-height: 1.7em;
    margin: -20px auto 50px;
  }
}

.el_txt.el_txt__s {
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: 0;
  font-size: 1.4rem;
  line-height: 1.8em;
  max-width: 100%;
}

/* ______________________header */
header a {
  text-decoration: none;
}

.sp-nav {
  display: none;
}

.burger-btn {
  display: none;
}

.header_innner_bag {
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid #c4b189;
  position: relative;
}

.header_innner {
  position: fixed;
  top: 0;
  transition: 0.5s;
  width: 100%;
  z-index: 999;
}

.header-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 2vw;
}

.header_cont {
  min-height: 70px;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px 10px;
}

.header_logo {
  display: block;
  margin: 2vw;
  padding: 0;
  position: relative;
}

.header_logo img {
  max-width: 280px;
  position: absolute;
  z-index: 6;
  transform: translateY(-50%);
}

/* スマホ表示 */
@media screen and (max-width: 560px) {
  .header_cont {
    min-height: 50px;
  }
  .header_logo img {
    position: absolute;
    z-index: 6;
    transform: translateY(-50%);
    max-width: calc(-54.33px + 75.44vw);
  }
}

/* タブレット縦表示 */
@media screen and (min-width: 568px) and (max-width: 900px) {
  .header_cont {
    min-height: 50px;
  }
  .header_logo img {
    position: absolute;
    z-index: 6;
    transform: translateY(-50%);
    max-width: calc(-54.33px + 43.44vw);
  }
}

.header_nav_pc {
  display: flex;
  justify-content: end;
}

.header_nav_pc li {
  margin-right: 0.5vw;
  font-size: 1.4rem;
  padding: 10px;
  list-style: none;
  font-weight: bold;
  position: relative;
  box-sizing: border-box;
}

.header_nav_pc li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: #0c0c0c;
}

.header_nav_pc ul.sub {
  position: absolute;
  width: 125%;
  background-color: #fff;
  box-shadow: 0px 2px 20px -3px rgba(173, 155, 155, 0.6);
  padding: 8%;
  box-sizing: border-box;
  right: -17px;
  top: 32px;
}

.header_nav_pc ul.sub li {
  width: 100%;
}

.header_nav_pc ul.sub li a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.9em;
}

.header_nav_pc ul.sub li a:hover {
  opacity: 0.4;
}

.header_nav_back {
  padding: 7px;
  border: 1px solid #96836b;
  color: #96836b;
  font-size: 1.2rem;
  border-radius: 4px;
}

/* ___________スクロールしたらヘッダーを隠す */
.scrollHide {
  transform: translateY(-100%);
}

/* ___________ヘッダーを隠す */
.nav_sub {
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
}

.header_nav_pc_item:hover ul.nav_sub {
  top: 42px;
  visibility: visible;
  opacity: 1;
}

/* ___________ハンバーガーメニュー */
@media screen and (max-width: 900px) {
  .pc-nav {
    display: none !important;
  }

  .burger-btn {
    display: block;
  }

  .burger-btn {
    display: block;
    width: 39px;
    height: 39px;
    position: relative;
    z-index: 5;
    background-color: transparent;
    border: none;
  }

  .bar {
    width: 20px;
    height: 2px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #96836b;
  }

  .bar_top {
    top: 10px;
  }

  .bar_mid {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .bar_bottom {
    bottom: 10px;
  }

  .close .bar_top {
    transform: translate(-50%, 10px) rotate(45deg);
    transition: transform 0.3s;
  }

  .close .bar_mid {
    opacity: 0;
    transition: opacity 0.3s;
  }

  .close .bar_bottom {
    transform: translate(-50%, -8px) rotate(-45deg);
    transition: transform 0.3s;
  }

  .sp-nav {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4; /*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
    opacity: 1;
  }

  .spheader-nav {
    width: 100%;
    height: 100vh;
    background-color: #f6f6f6;
    z-index: 4;
  }

  .spheader-nav_list {
    display: block;
    text-align: left;
    z-index: 4;
    padding-top: 70px;
  }

  .spheader-nav_list li {
    width: 100%;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(150, 131, 107, 0.25);
  }

  .header_nav_plan {
    color: #de1e56 !important;
  }

  .spheader-nav_list a {
    font-weight: bold;
    padding-bottom: 20px;
    display: inline-block;
    width: 100%;
    font-size: 1.6rem;
    padding-top: 20px;
    padding-left: 3rem;
  }

  .spheader-nav_list a:hover,
  .spheader-nav_list a:focus {
    opacity: 0.4;
  }

  .spheader-nav_list h4 {
    font-size: 1.2rem;
    color: #aa9778;
    margin-bottom: 20px;
    margin-top: 10px;
  }

  .spheader-nav_list .spheader-nav_back {
    color: #aa9778;
    font-weight: normal;
  }

  .noscroll {
    overflow: hidden;
  }
}

/* ______________________footer */

footer {
  width: 100vw;
  border-top: 1px solid #96836b;
}

.ly_footerTop {
  margin: 0 auto;
  text-align: center;
}

.ly_footerTop_inner {
  display: flex;
  margin: 40px auto;
  justify-content: center;
  font-size: 1.3rem;
  flex-wrap: wrap;
  gap: 10px 0;
}

.ly_footerTop_inner li {
  padding: 0 1em;
}

.ly_footerTop_inner li:not(:last-child) {
  border-right: 1px solid #ccc;
}

.ly_footerTop_inner li a{
  transition: all .2s;
}

.ly_footerTop_inner li a:hover{
  color: #e76087;
}

.ly_footerBottom {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  padding:0 20px 50px;
  box-sizing: border-box;
}

.logo-kachimai {
  display: block;
  margin-right: 3rem;
  padding: 0;
  position: relative;
}

.logo-kachimai img {
  max-width: 240px;
}

.company {
  margin-right: 4rem;
}

.company .company_inc {
  font-size: 1.5rem;
  font-weight: bold;
}


.company .company_address {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.company_tel{
  font-size: 1.2rem;
  margin-top: 10px;
}

.company_tel .tel_label{
  margin-top: 6px;
}

.company_tel .tel_large{
  font-size: 1.4rem;
  font-weight: bold;
}

.company_tel .tel_large span{
  font-size: 1.2em;
}

.company_url{
  font-size: 1.4rem;
}

.company_url:hover{
  color: #e64b78;
  text-decoration: underline;
}

.useraccept {
  color: #4d4d4d;
  font-size: 1.3rem;
}

.useraccept li {
  margin-bottom: 1rem;
}

/* 以下 2024.6.26追記  総合ガイドバナー広告設置 */
/* footer banner */
#js-footer-banner{
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(0,0,0,.08);
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  z-index: 100;
}

.footer-banner{
  display: inline-block;
  position: relative;
}

.footer-banner a{
  display: inline-block;
  border: 1px solid #aaa;
}

.footer-banner a:hover{
  opacity: 1;
}

.footer-banner a img{
  max-width: 100%;
  width: 100%;
}

.footer-banner a img:hover{
  opacity: 1;
}

.footer-banner span{
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
  background-color: #aaa;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}
/* 以上 2024.6.26追記  総合ガイドバナー設置 */

@media screen and (max-width: 900px) {
  .ly_footerBottom {
    min-width: 100%;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  .ly_footerTop_inner {
    flex-direction: column;
  }
  .logo-kachimai img {
    max-width: 200px;
  }
  .ly_footerTop_inner li:not(:last-child) {
    border-right: none;
  }
  .logo-kachimai {
    margin-right: 0;
    margin-bottom: 20px;
    order: 2;
  }
  .company {
    order: 3;
    margin-right: 0;
  }
  .company .company_inc {
    font-size: 1.5rem;
  }
  .company .company_address {
    font-size: 1.3rem;
  }
  .useraccept ul {
    order: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
    font-style: 1.2rem;
  }
  .useraccept li:not(:last-child) {
    padding-right: 1rem;
    border-right: solid 1px #4d4d4d;
  }
  .useraccept li:not(:first-child) {
    padding-left: 1rem;
  }
}

/* ______________________Tab */

.tabContainer .controls {
  box-sizing: border-box;
  position: relative;
  display: flex;
}

.tabContainer .controls::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  border-bottom: solid 1px #a0a09f;
  bottom: 0px;
  z-index: 1;
}

.tabContainer .controls a {
  display: inline-block;
  word-wrap: break-word;
  padding: 20px;
  font-size: 1.8rem;
  background-color: #f1f1f1;
  color: #8e8e8e;
  transition: 0.5s;
}

.tabContainer .controls li:not(:last-child) {
  margin-right: 5px;
}

.tabContainer .controls a:hover {
  background-color: #e8e8e8;
}

.tabContainer .controls a.current {
  color: #0c0c0c;
  background-color: #eee8dd;
}

.tabContainer .tabWidthFixed .controls li {
  width: 24%;
}

.tabContainer .tabContentsContainer > * {
  position: relative;
  top: 0;
  left: 0;
  padding: 5%;
}

.tabContentsContainer {
  position: relative;
  background: #fff;
}

.tabContentsContainer article {
  opacity: 0;
  display: none;
  transition: 2ms;
}

.tabContentsContainer article.tabShow {
  opacity: 1;
  visibility: visible;
  display: block;
  animation: anime 1s ease 0s 1 normal;
}

@media screen and (max-width: 568px) {
  .controls li {
    width: 50%;
  }
  .tabContainer .controls a {
    font-size: 1.6rem;
  }
}

/* ______________________block */

/* ___________mediahalf＊画像を端いっぱいまで見せるレイアウト */
.bl_halfContents {
  display: flex;
  justify-content: space-between;
  padding: 70px 0;
  align-items: center;
  margin: 0 auto;
  max-width: 115rem;
}

.bl_halfContents_left {
  flex-basis: 50%;
}

.bl_halfContents_right {
  flex-basis: 50%;
}

@media screen and (max-width: 900px) {
  .bl_halfContents {
    flex-wrap: wrap;
  }
  .bl_halfContents_left {
    flex-basis: 100%;
    text-align: center;
  }
  .bl_halfContents_left img {
    max-width: 90%;
    margin-left: 9%;
  }
  .bl_halfContents_right {
    flex-basis: 100%;
  }
}

/* タブレット縦表示 */
@media screen and (min-width: 568px) and (max-width: 900px) {
  .bl_halfContents_left img {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
  }
}

/* ______________________media */

figure {
  margin-left: 0;
}

/* ___________mediahalf */

.bl_halfMedia {
  display: flex;
  align-items: flex-start;
}

.bl_halfMedia_imgWrapper {
  flex: 0 1 48.33333%;
  margin-right: 3.33333%;
}

.bl_halfMedia_imgWrapper > img {
  width: 100%;
  box-shadow: 0px 0px 16px 2px rgba(209, 199, 199);
}

.bl_halfMedia_body {
  flex: 1;
}

.bl_halfMedia_body > *:last-child {
  margin-bottom: 0;
}

.bl_halfMedia_ttl {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #40382d;
}

.bl_halfMedia_txt {
  font-size: 1.6rem;
  line-height: 1.7em;
}

@media screen and (max-width: 768px) {
  .bl_halfMedia {
    display: block;
  }

  .bl_halfMedia_imgWrapper {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 568px) and (max-width: 900px) {
  .bl_halfMedia_body {
    padding-left: calc(10vw + 4rem);
    padding-right: calc(10vw + 4rem);
  }
}

/* ___________mediahalf_rev */

.bl_halfMedia__rev {
  flex-direction: row-reverse;
}

.bl_halfMedia__rev .bl_halfMedia_imgWrapper {
  margin-right: 0;
}

.bl_halfMedia__rev .bl_halfMedia_body {
  margin-right: 3.33333%;
  text-align: left;
}

/* ___________list */
/*faq*/

.bl_faq > *:last-child {
  margin-bottom: 0;
}

.bl_faq {
  max-width: 800px;
  margin: 0 auto;
}

.bl_faq_Q {
  display: flex;
  align-items: center;
  box-sizing: content-box;
  min-height: 45px;
  font-size: 1.5rem;
  border-bottom: 1px solid #ddd;
}

.bl_faq_Q_txt {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  line-height: 1.7em;
  padding: 15px 40px 15px 25px;
  position: relative;
  text-decoration: none;
  color: #4d4d4d;
}

.bl_faq .bl_faq_Q:first-child {
  border-top: 1px solid #ddd;
}

.bl_faq_Q_txt img {
  position: absolute;
  right: 20px;
  width: 20px;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.bl_faq_Q_txt:hover,
.bl_faq_Q_txt:focus {
  opacity: 0.8;
}

.bl_faq_Q_txt:hover img {
  right: 12px;
}

@media screen and (max-width: 768px) {
  .bl_faq_Q {
    font-size: 1.5rem;
    font-weight: normal;
  }

  .bl_faq_Q_txt {
    padding: 15px 45px 15px 15px;
    color: #0c0c0c;
  }

  .bl_faq_Q_txt img {
    right: 10px;
  }
}

/* ___________card */
/*priceUnit*/
.bl_priceUnit {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
}

.bl_priceUnit .bl_price {
  flex: 1;
  margin-right: 3.43902%;
}

.bl_priceUnit .bl_price:last-child {
  margin-right: 0;
}

/* スマホ表示 */
@media screen and (max-width: 900px) {
  .bl_priceUnit {
    display: block;
  }
  .bl_priceUnit .bl_price {
    margin: 0;
    margin-bottom: 30px;
  }
  .bl_priceUnit .bl_price:last-child {
    margin-bottom: 0;
  }
}

/* タブレット縦表示 */
@media screen and (min-width: 568px) and (max-width: 900px) {
  .bl_priceUnit {
    margin: 4rem;
  }
}

/* それぞれのボックスに対する指定 */
.bl_price {
  line-height: 1;
  background-color: #fff;
  padding: 15px;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px 2px rgba(209, 199, 199, 0.8);
}

.bl_priceUnit__corporation .bl_price {
  padding: 35px 15px 15px 15px;
}

.bl_price img {
  width: 75%;
  margin: 0 auto;
  object-fit: contain;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.bl_price_body {
  padding: 0px 15px 15px 15px;
}

.bl_price_body > *:last-child {
  margin-bottom: 0;
}

.bl_price_btnInner {
  text-align: center;
}

.bl_price_btnInner > *:last-child {
  margin-bottom: 0;
}

.bl_price_btn {
  display: inline-block;
  line-height: 1.7em;
  width: 300px;
  max-width: 100%;
  padding: 20px 10px;
  background-color: #30bbb4;
  border: 2px solid transparent;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: none;
  transition: 1.5s;
  margin-bottom: 20px;
}

.bl_price_btn:focus,
.bl_price_btn:hover {
  opacity: 0.4;
}

.bl_price_btn.bl_price_btn__blue {
  background-color: #2077b9;
}

.bl_price_btn__red {
  background-color: unset;
  color: #ff7171;
  border: unset;
  text-decoration: underline currentColor;
  -webkit-text-decoration: underline currentColor;
  font-size: 1.5rem;
  padding: 0px 10px 5px 10px;
  line-height: 1.7em;
}

/* Wコースver */
.bl_price_price__W {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

div.bl_price_price__W {
  color: #30bbb4;
}

/* スマホ表示 */
@media screen and (max-width: 900px) {
  .bl_priceUnit .bl_price {
    min-width: 100%;
    padding: 20px;
  }
  .bl_price_btn {
    width: 100%;
    box-sizing: border-box;
  }

  .bl_price img {
    width: 80%;
  }
}

/* タブレット縦表示 */
@media screen and (min-width: 568px) and (max-width: 900px) {
  .bl_price_body {
    width: 70%;
    margin: 0 auto;
  }

  .bl_price:not(:last-child) {
    margin-bottom: 5rem;
  }

  .bl_price {
    padding: 25px 10px 15px 10px;
  }

  .bl_price_btn {
    padding: 25px 10px;
  }

  .bl_price img {
    width: 67%;
  }

  .bl_priceUnit__corporation .bl_price {
    padding: 50px 10px 10px 10px;
  }
}

/*  ____________________________________________page */
/*  ______________________✴︎✴︎✴︎✴︎✴︎✴︎✴︎TOP */
/* ___________ジャンボドロン */
.jumbotronColumu {
  display: flex;
  height: 750px;
  padding-bottom: 50px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.bl_jumbotron {
  background: linear-gradient(
    125deg,
    #f0e8e3 65%,
    #f1c3d3 65%,
    #ecb3c7 72%,
    #f0e8e3 72%,
    #f0e8e3 75%,
    #d4b99c 75%,
    #d1b392 85%,
    #f0e8e3 85%
  );
  height: 100%;
  width: 100%;
  background-size: cover;
  justify-content: center;
  position: relative;
  display: flex;
}

/* ジャンボドロンの文字部分 */
.bl_jumbotron_inner {
  display: flex;
  justify-content: center;
  max-width: 1240px;
  padding: 0 40px;
  box-sizing: border-box;
}

/* fvデバイス */
.bl_jumbotron_inner__img {
  width: 40%;
  display: flex;
  align-items: flex-end;
}

.bl_jumbotron_inner__img img {
  height: 90%;
}

/* fvタイトル */
.bl_jumbotron_fontInner {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.bl_jumbotron_btnInner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}

.bl_jumbotron_ttl {
  color: #4d4d4d;
  font-weight: bold;
  font-size: 4.6rem;
  line-height: 1.4em;
  text-align: left;
  margin-bottom: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

.bl_jumbotron_lead {
  color: #4d4d4d;
  font-size: 1.55rem;
  line-height: 1.8em;
  text-align: left;
  margin-bottom: 30px;
}

/* スマートフォン表示 */
.mbjumbotron {
  background: linear-gradient(
    135deg,
    #f0e8e3 58%,
    #f1c3d3 58%,
    #ecb3c7 67%,
    #f0e8e3 67%,
    #f0e8e3 70%,
    #d4b99c 70%,
    #d1b392 85%,
    #f0e8e3 85%
  );
  margin-bottom: 20px;
}

.mbjumbotron_innner {
  padding: 25px;
  color: #4d4d4d;
}

.mbjumbotron_ttl {
  line-height: 1.6;
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

.mbjumbotron_lead {
  line-height: 1.7;
  font-size: 1.3rem;
  font-weight: bold;
}

.bl_mbjumbotron__img img {
  width: 100%;
  display: block;
  transform: translateX(20px);
}

.mbjumbotron_btnInner {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 20px;
}

.mbjumbotron_btn {
  width: calc((100% - 10px) / 2);
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 15px 40px 15px 20px;
  position: relative;
  background-color: #e64b78;
  transition: 0.3s;
  box-sizing: border-box;
  border-radius: 4px;
}

.mbjumbotron_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 20px;
  width: 20px;
  height: 20px;
  background: url("../img/icon/fapArrow-white.png") no-repeat center / contain;
  transition: right 0.2s;
}

.mbjumbotron_btn:hover::before {
  right: 10px;
}

.mbjumbotron_btn:hover,
.mbjumbotron_btn:focus {
  opacity: 0.8;
}

/* タブレット縦表示 */
@media screen and (min-width: 568px) and (max-width: 900px) {
  .mbjumbotronColumu {
    height: 680px;
  }

  .mbjumbotron {
    align-items: flex-end;
    justify-content: space-between;
  }

  .mbjumbotron::before {
    background: url("../img/pic/line.png") no-repeat right/auto 101%;
  }

  .mbjumbotron_innner {
    width: 100%;
    padding-top: 50px;
    padding-right: 30px;
    box-sizing: border-box;
    z-index: 5;
  }

  .mbjumbotron_ttl {
    padding: 0;
    font-size: 3.6rem;
    margin-bottom: 20px;
    margin-top: 0;
    text-align: left;
  }

  .mbjumbotron_lead {
    font-size: 1.5rem;
    padding: 0;
  }

  .bl_mbjumbotron__img {
    height: 60%;
  }

  .bl_mbjumbotron__img img {
    width: 85%;
  }

  .mbjumbotron_btnInner {
    padding: 0 30px;
    margin-top: 20px;
    justify-content: center;
  }

  .mbjumbotron_btn {
    padding: 20px 20px 20px 10px;
    font-size: 1.6rem;
  }

  .mbjumbotron_btn:first-child {
    margin-right: 30px;
  }

  .mbjumbotron_btn__only {
    width: 60%;
  }
}

/* 小さい画面表示 */
@media screen and (max-width: 320px) {
  .mbjumbotron_ttl {
    font-size: 2rem;
    padding: 1rem 3rem;
  }

  .mbjumbotron_lead {
    font-size: 1.2rem;
    padding: 0 2rem;
  }

  .mbjumbotron_btnInner {
    padding: 0 2rem;
  }

  .mbjumbotron_btn {
    width: 47%;
    font-size: 1.4rem;
  }
}

/* ___________スクロールアニメーション */

.delighter.bottom {
  transform: translatey(20%);
  opacity: 0;
  transition: all 0.75s ease-out;
}
.delighter.bottom.started {
  transform: none;
  opacity: 1;
}

.delighter.fade {
  opacity: 0;
  transition: all 0.75s ease-out;
}
.delighter.fade.started {
  transform: none;
  opacity: 1;
}

.delighter li {
  opacity: 0;
  transform: translatey(80%);
  transition: all 0.7s ease-out;
}
.delighter.started li {
  opacity: 1;
  transform: none;
}
.delighter.started li:nth-child(1) {
  transition: all 0.7s ease-out 0.1s;
}
.delighter.started li:nth-child(2) {
  transition: all 0.7s ease-out 0.3s;
}
.delighter.started li:nth-child(3) {
  transition: all 0.7s ease-out 0.5s;
}
.delighter.started li:nth-child(4) {
  transition: all 0.7s ease-out 0.7s;
}
.delighter.started li:nth-child(5) {
  transition: all 0.7s ease-out 0.9s;
}
.delighter.started li:nth-child(6) {
  transition: all 0.7s ease-out 1.1s;
}
.delighter.started li:nth-child(7) {
  transition: all 0.7s ease-out 1.3s;
}

.delighter a {
  opacity: 0;
  transform: translatey(80%);
  transition: all 0.7s ease-out;
}
.delighter.started a {
  opacity: 1;
  transform: none;
}
.delighter.started a:nth-child(1) {
  transition: all 0.7s ease-out 0.1s;
}
.delighter.started a:nth-child(2) {
  transition: all 0.7s ease-out 0.3s;
}
.delighter.started a:nth-child(3) {
  transition: all 0.7s ease-out 0.5s;
}

.fadenav {
  animation: anime 2s ease 0s 1 normal;
}
@keyframes anime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadenav__right {
  animation: fadeIn 0.75s ease-out 0s 1 normal;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-100%);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/*===============================================
 お知らせ
===============================================*/
.topics {
  padding: 20px;
  background-color: rgba(243, 239, 231, 0.4);
}

.topics_inner {
  border: 1px solid #ddd;
  border-radius: 8px;
  max-width: 980px;
  background-color: #fff;
  margin: 0 auto 20px;
}

.topics h4 {
  padding: 15px 10px 10px;
  font-size: 1.5rem;
  border-bottom: 1px solid #ddd;
  text-align: center;
  box-sizing: border-box;
  color: #333;
}

.topics__list li a {
  padding: 15px 20px;
  display: block;
}

.topics__list li:not(:first-child) {
  border-top: 1px solid #ddd;
}

.topics__list__head {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.topics__list__head span {
  padding: 5px 7px 5px 7px;
  margin-right: 8px;
  font-size: 1.1rem;
  line-height: 1;
  border: 2px solid #e64b78;
  color: #e64b78;
  font-weight: bold;
}

.topics__list__head time {
  font-size: 1.3rem;
  color: #666;
}

.topics__list__txt {
  font-size: 1.4rem;
  line-height: 1.6;
}

.topics__list li a:hover .topics__list__txt {
  color: #e64b78;
  text-decoration: underline;
}

/*===============================================
 バナー
===============================================*/
.ly_cont__banner .ly_cont {
  padding-top: 0px;
  border-bottom: 1px solid #e4e0da;
  padding-bottom: 50px;
  max-width: 980px;
}

.banner-inner {
  display: flex;
  justify-content: center;
  margin: 0 -10px;
  flex-wrap: wrap;
}

.banner-inner a {
  width: calc((100% - 40px) / 2);
  margin: 0 10px 25px;
  box-sizing: border-box;
  transition: opacity .2s;
  border: 1px solid #ddd;
}

.banner-inner a:hover{
  opacity: .8;
}

.banner-inner img {
  width: 100%;
  display: block;
}

/* タブレット縦表示 */
@media screen and (max-width: 900px) {
  .ly_cont__banner .ly_cont {
    padding: 0 20px 50px;
    border-bottom: unset;
  }
}

@media screen and (max-width: 568px) {
  .banner-inner {
    display: flex;
    flex-direction: column;
  }
  .banner-inner a {
    width: auto;
  }
  .banner-inner a:last-child {
    margin-bottom: 0;
  }
}

/* ___________勝毎電子版とは */

.aboutKC div p {
  padding: 8% 5% 8%;
  max-width: 550px;
  box-sizing: border-box;
}

/* タブレット縦表示 */
@media screen and (min-width: 568px) and (max-width: 900px) {
  .aboutKC div p {
    max-width: 100%;
    padding: 8%;
  }
  .aboutKC {
    padding: 70px 5vw;
  }
}

/* ___________電子版の特徴 */

.ly_square {
  display: flex;
  flex-wrap: wrap;
}

.ly_square .ly_square_inner {
  flex: 0 0 50%;
  position: relative;
}

.ly_square .ly_square_inner::before {
  content: "";
  display: block;
  padding-top: 90%;
}

.ly_square .ly_square_inner div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  box-sizing: border-box;
}

.square_cnt div {
  padding: 5% 0% 5% 10%;
  transform: translateY(30px);
  max-width: 480px;
  box-sizing: border-box;
}

.square_cnt.square_cnt__rev div {
  right: 0;
  left: unset;
  padding: 5% 10% 5% 0%;
}

.ly_square_inner_img div img {
  max-width: 470px;
}

.ly_square_inner_img.ly_square_inner_img_lg div img {
  max-width: 480px;
}

.ly_square .ly_square_inner_img div {
  background: rgba(208, 191, 169, 0.4);
  display: flex;
  align-items: flex-end;
}

.ly_square .ly_square_inner_img.ly_square_inner_img_left div {
  align-items: flex-start;
}

.square_ttlRead {
  font-size: 1.7rem;
  margin-bottom: 20px;
  padding-top: 45px;
  font-weight: bold;
}

.square_ttl {
  font-size: 2.4rem;
  position: relative;
}

.square_ttl::after {
  content: "";
  position: absolute;
  display: block;
  left: 40px;
  width: 80px;
  height: 5px;
  background: linear-gradient(
    90deg,
    #e76087 0%,
    #e76087 50%,
    #e7e0d2 50%,
    #e7e0d2 100%
  );
  transform: translateX(-50%);
  margin-top: 20px;
}

.square_ttl__01::before {
  background: url(../img/icon/square_01.png) no-repeat;
}

.square_ttl__02::before {
  background: url(../img/icon/square_02.png) no-repeat;
}

.square_ttl__03::before {
  background: url(../img/icon/square_03.png) no-repeat;
}

.square_ttl::before {
  position: absolute;
  top: -90px;
  left: 0px;
  content: "";
  display: inline-block;
  width: 230px;
  height: 140px;
  background-size: 230px auto;
  z-index: -1;
}

.el_arrowbtn__blockfeature {
  margin-top: 50px;
  margin-bottom: 90px;
}

/* スマホ表示 */
@media screen and (max-width: 1200px) {
  .ly_square .ly_square_inner::before {
    padding-top: 95%;
  }
}


@media screen and (max-width: 900px) {
  .el_arrowbtn__blockfeature {
    margin-top: 2rem;
    margin-bottom: 0px;
  }
  .ly_square .ly_square_inner {
    flex: 0 0 100%;
  }
  .ly_square .ly_square_inner::before {
    content: "";
    display: none;
    padding-top: 90%;
  }
  .ly_square .ly_square_inner div {
    position: unset;
    padding: 0;
  }
  .ly_square .ly_square_inner:nth-child(1) {
    order: 2;
  }
  .ly_square .ly_square_inner:nth-child(2) {
    order: 1;
  }
  .ly_square .ly_square_inner:nth-child(3) {
    order: 3;
  }
  .ly_square .ly_square_inner:nth-child(4) {
    order: 4;
  }
  .ly_square .ly_square_inner:nth-child(5) {
    order: 6;
  }
  .ly_square .ly_square_inner:nth-child(6) {
    order: 5;
  }
  .ly_square_inner_img.ly_square_inner_img_lg div img,
  .ly_square_inner_img div img {
    width: 100%;
    min-width: 100%;
  }
  .ly_square .ly_square_inner:nth-child(2),
  .ly_square .ly_square_inner:nth-child(3),
  .ly_square .ly_square_inner:nth-child(6) {
    margin-bottom: 60px;
  }
  .ly_square .ly_square_inner:nth-child(1),
  .ly_square .ly_square_inner:nth-child(4) {
    margin-bottom: 70px;
  }
  .square_cnt div {
    transform: unset;
  }
  .ly_square_inner_img.ly_square_inner_img_lg div img {
    width: 105%;
  }
  .ly_square .ly_square_inner_img div {
    background: unset;
  }
  .square_ttl::before {
    position: absolute;
    top: -50px;
    left: 0px;
    content: "";
    display: inline-block;
    width: 150px;
    height: 120px;
    background-size: 150px auto;
    z-index: -1;
  }
  .square_ttlRead {
    width: 100%;
  }
}

/* タブレット縦表示 */
@media screen and (min-width: 568px) and (max-width: 900px) {
  .ly_square .ly_square_inner:nth-child(2),
  .ly_square .ly_square_inner:nth-child(3),
  .ly_square .ly_square_inner:nth-child(6) {
    margin-bottom: 70px;
  }
  .ly_square_inner_img.ly_square_inner_img_lg div img {
    min-width: 85%;
    margin: 0 auto;
  }
  .ly_square_inner_img div img {
    min-width: 75%;
    margin: 0 auto;
  }
  .square_cnt div {
    max-width: 100%;
  }
  .square_cnt {
    padding: 0 4rem;
    box-sizing: border-box;
  }
  .ly_square .square_cnt div {
    text-align: left;
  }
  .square_ttl::before {
    position: absolute;
    top: -55px;
    left: -20px;
    width: 155px;
    background-size: 155px auto;
  }
}

/* PC限定表示 */
@media screen and (min-width: 940px) {
  .square_cnt::after {
    content: "";
    border: solid transparent;
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: rgba(90, 230, 40, 0);
    border-top-width: 15px;
    border-bottom-width: 15px;
    border-left-width: 0px;
    border-right-width: 15px;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-right-color: #fbfaf8;
  }
  .square_cnt__rev::after {
    content: "";
    border: solid transparent;
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: rgba(90, 230, 40, 0);
    border-top-width: 15px;
    border-bottom-width: 15px;
    border-left-width: 15px;
    border-right-width: 0;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    border-left-color: #fbfaf8;
    z-index: 8;
  }
}

/* ___________電子版の特徴/多彩なコンテンツとユーザーボイス  */
.ly_IntroducingItemUnit {
  margin: 0 auto;
}

.ly_IntroducingItemUnit .ly_IntroducingItem {
  padding: 0px 0px 90px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ly_IntroducingItem_right > img {
  max-width: 524px;
  box-shadow: 0px 0px 16px 2px rgba(209, 199, 199);
}

.bl_halfMedia__rev .ly_IntroducingItem_left {
  margin-right: 0;
  margin-left: 5.33333%;
}

.ly_IntroducingItem_left p {
  padding-top: 47px;
  padding-bottom: 20px;
}

.ly_IntroducingItem_ttl {
  margin-bottom: -10px;
  font-size: 2.4rem;
  position: relative;
}

.ly_IntroducingItem_ttl span::after {
  content: "";
  position: absolute;
  display: block;
  left: 40px;
  width: 80px;
  height: 5px;
  background: linear-gradient(
    90deg,
    #e76087 0%,
    #e76087 50%,
    #e7e0d2 50%,
    #e7e0d2 100%
  );
  transform: translateX(-50%);
  margin-top: 15px;
}

/* スマホ表示 */
@media screen and (max-width: 900px) {
  .ly_IntroducingItemUnit {
    display: block;
  }

  .ly_IntroducingItemUnit .ly_IntroducingItem {
    margin-right: 0;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .ly_IntroducingItemUnit .ly_IntroducingItem:last-child {
    margin-bottom: 0;
  }

  .ly_IntroducingItemUnit .ly_IntroducingItem {
    padding: 70px 0px;
  }

  .ly_IntroducingItem_right {
    text-align: center;
    width: 100%;
  }

  .ly_IntroducingItem_left {
    order: 2;
    margin: 0;
    padding: 0 20px;
  }

  .bl_halfMedia__rev .ly_IntroducingItem_left {
    margin-right: 0;
    margin-left: 0;
  }

  .ly_IntroducingItem_right > img {
    width: 90%;
    margin-bottom: 2rem;
  }

  .ly_IntroducingItem_ttl span::after {
    display: none;
  }

  .ly_IntroducingItem_ttl {
    margin-bottom: 0px;
    font-size: 1.8rem;
  }

  .ly_IntroducingItem_left p {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
}

/* タブレット縦表示 */
@media screen and (min-width: 568px) and (max-width: 900px) {
  .ly_IntroducingItem_right {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .bl_halfMedia_body.ly_IntroducingItem_left {
    padding: 0 calc(10vw + 20px);
  }

  .ly_IntroducingItem_right > img {
    max-width: 100%;
  }
}

/* ___________card/SNS公式アカウント */
.snsUnit {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
}

.snsUnit .snsItem {
  flex: 1;
  margin-right: 2.43902%;
  max-width: 250px;
  min-height: 150px;
}

.snsUnit .snsItem:last-child {
  margin-right: 0;
}

.snsItem {
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: 0px 0px 16px 2px rgba(209, 199, 199);
  max-width: 250;
  background-color: #fff;
}

.sns_header {
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 200px;
}

.sns_header a {
  margin-bottom: 10px;
}

.sns_ttl {
  font-size: 1.7rem;
}

.sns_body {
  text-align: left;
}

.sns_txt {
  font-size: 1.3rem;
}

.sns_li {
  display: block;
  color: #07aad2;
}

.el_beforeIconBtn.el_beforeIconBtn__snsBtn::before {
  content: "\f099";
  transform: translateY(-6%);
  display: inline-block;
  margin-right: 0.5em;
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
  color: #fff;
}

.el_beforeIconBtn.el_beforeIconBtn__snsBtn_lg::before {
  content: "\f099";
  transform: translateY(-6%);
  display: inline-block;
  margin-right: 0.5em;
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
  color: #07aad2;
}

.el_beforeIconBtn.el_beforeIconBtn_lg__green::before {
  color: #00b901;
}

.el_beforeIconBtn.el_beforeIconBtn_lg__blue::before {
  color: #4266b2;
}

.sns_header_btn {
  background-color: #07aad2;
  color: #fff;
  display: inline-block;
  padding: 5px;
}

.sns_header_btn__blue {
  background-color: #4266b2;
}

.sns_header_btn__green {
  background-color: #00b901;
}

.el_beforeIconBtn_lg {
  font-size: 2rem;
}

.el_beforeIconBtn.el_beforeIconBtn__facebook::before {
  content: "\f09a";
}

.el_beforeIconBtn.el_beforeIconBtn__line::before {
  content: "\f3c0";
}

/* スマホ表示 */
@media screen and (max-width: 900px) {
  .snsUnit {
    flex-wrap: wrap;
  }
  .snsUnit .snsItem:first-child {
    margin-left: 2rem;
  }
  .sns_header {
    width: 100%;
  }
  .sns_header a {
    margin-bottom: 0px;
  }
  .sns_header a:nth-child(2) {
    margin-bottom: 15px;
  }
  .sns_ttl {
    font-size: 1.5rem;
  }

  .snsUnit .snsItem {
    margin-bottom: 30px;
    margin-right: 2rem;
    max-width: 35%;
  }
  .snsUnit .snsItem:last-child {
    margin-bottom: 0;
  }
}

/* タブレット縦表示 */
@media screen and (max-width: 568px) {
  .snsUnit {
    display: block;
  }

  .snsUnit .snsItem:first-child {
    margin: 0;
    margin-bottom: 20px;
  }

  .snsUnit .snsItem {
    margin: 0;
    margin-bottom: 20px;
    max-width: 100%;
  }
}

/*  ______________________✴︎✴︎✴︎✴︎✴︎✴︎✴︎✴︎✴︎plan */
/* ___________layout */
.ly_cont__planTop {
  padding: 120px 2em 70px;
}

.ly_cont__planBottom {
  padding: 80px 2em 115px 2em;
}

.hp_faq {
  margin-top: 40px;
}

/* スマホ表示 */
@media screen and (max-width: 790px) {
  .ly_cont__planTop {
    padding: 70px 2em;
  }
}

/* タブレット縦表示 */
@media screen and (min-width: 568px) and (max-width: 900px) {
  .ly_cont__planTop {
    padding: 70px 10vw;
  }
}

/* ___________料金プランcardunit */
.bl_priceUnit__price {
  flex-wrap: wrap;
}

/* ___________plan_list */
.bl_priceUnit__price {
  margin-bottom: 40px;
}

.planlist_unit {
  padding: 0px 20px;
}

.planlist_unit:not(:last-child) {
  margin-bottom: 30px;
}

.planlist h3 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #40382d;
}

.planlist__caution h3 {
  margin-bottom: 30px;
  color: #e76087;
  position: relative;
  font-weight: bold;
}

.planlist__caution h3:before {
  content: "";
  display: inline-block;
  background: url(../img/icon/check.png) 0% 0% / 25px no-repeat;
  width: 25px;
  height: 25px;
  transform: translateY(25%);
  margin-right: 0.7em;
}

.planlist {
  font-size: 1.45rem;
  line-height: 1.75em;
  border-bottom: 1px solid #cccccc;
  padding: 30px 15px;
}

.planlist > p:not(:last-child) {
  margin-bottom: 15px;
}

.planlist__caution p {
  position: relative;
  padding-left: 2em;
}

.planlist__caution p::before {
  position: absolute;
  top: 0.9em;
  left: 0;
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background-color: #4d4d4d;
  border-radius: 100%;
  transform: translate(100%, -50%);
}

.planlist__unborder:last-child {
  border-bottom: none;
}

/* ___________payment */
.paymentUnit h1 {
  margin-bottom: 2rem;
  padding: 15px;
}

.paymentUnit h1 span {
  font-size: 2.4rem;
  margin-right: 5px;
  position: relative;
  display: inline-block;
}

.paymentUnit h1 span::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(
    90deg,
    #e76087 0%,
    #e76087 50%,
    #e7e0d2 50%,
    #e7e0d2 100%
  );
}

.credit {
  padding: 30px 15px 0px;
}

.credit p {
  font-size: 15px;
  color: #4d4d4d;
  display: inline-block;
  margin-bottom: 10px;
}

.paymentUnit .planlist__card > p {
  border-bottom: unset;
  margin-bottom: 0;
}

.credit div {
  display: flex;
  align-items: center;
}

.credit div img {
  display: inline-block;
  width: 35px;
  max-height: 35px;
  margin-right: 10px;
}

/* タブレット縦表示 */

@media screen and (max-width: 900px) {
  .planlist h3 {
    font-size: 1.7rem;
  }

  .planlist p {
    font-size: 1.4rem;
  }

  .bl_priceUnit__price {
    margin-bottom: 40px;
  }
}

/* スマホ表示 */
@media screen and (max-width: 568px) {
  .planlist_unit {
    padding: 0px;
  }

  .planlist__caution h3 {
    margin-bottom: 20px;
  }

  .bl_priceUnit__price {
    margin-bottom: 20px;
  }

  .planlist__caution h3:before {
    width: 25px;
    height: 25px;
  }

  .planlist > p:not(:last-child) {
    margin-bottom: 10px;
  }
}

/*  ______________________✴︎✴︎✴︎✴︎✴︎✴︎✴︎✴︎✴︎plan/corporation */

.bl_price_btn__brown {
  background-color: #696567;
}

/*  ______________________✴︎✴︎✴︎✴︎✴︎✴︎✴︎✴︎✴︎content */

/* ___________bl_halfMedia */
/* _____layput */
.bl_halfMedia__cntWrap {
  background-color: rgba(246, 243, 240, 0.8);
}

.bl_halfMedia__cnt {
  padding-top: 120px;
  padding-bottom: 120px;
  max-width: 100rem;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.bl_halfMedia__cnt_img {
  width: 50%;
  box-sizing: border-box;
}

.bl_halfMedia__cnt_img img {
  max-width: 500px;
  box-sizing: border-box;
  /* margin-left: 3%; */
}

.bl_halfMedia__cnt_body {
  width: 50%;
  box-sizing: border-box;
  margin-left: 3.33333%;
}

.bl_halfMedia__rev .bl_halfMedia__cnt_body {
  margin-right: 3.33333%;
  margin-left: 0;
}

.bl_halfMedia__cnt_body > div {
  max-width: 450px;
}

.bl_halfMedia__cnt_txt span {
  font-size: 1.55rem;
}

.bl_halfMedia__cnt_txt {
  margin-bottom: 15px;
}

.bl_halfMedia__cnt_ttl {
  font-size: 2.8rem;
  margin-bottom: 30px;
}

.bl_halfMedia__cnt_read {
  font-size: 1.55rem;
  line-height: 1.8em;
  margin-bottom: 40px;
}

/* スマホ表示 */
@media screen and (max-width: 900px) {
  .bl_halfMedia__cnt {
    width: 100%;
    min-width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .bl_halfMedia__cnt_img {
    width: 100%;
    text-align: center;
  }
  .bl_halfMedia__cnt_img img {
    max-width: 280px;
    margin-bottom: 2rem;
  }
  .bl_halfMedia__cnt_body {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0;
  }
  .bl_halfMedia__cnt_txt span {
    font-size: 1.4rem;
    font-weight: normal;
  }
  .bl_halfMedia__cnt_ttl {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
  .bl_halfMedia__cnt_read {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
}

/* タブレット縦表示 */
@media screen and (min-width: 568px) and (max-width: 900px) {
  .bl_halfMedia__cnt_img img {
    max-width: 55%;
  }
  .bl_halfMedia_body.bl_halfMedia__cnt_body {
    padding-left: calc(10vw + 4rem);
    padding-right: calc(10vw + 4rem);
  }
  .bl_halfMedia__cnt_body > div {
    max-width: 100%;
  }
}

/* _____コンテンツ リンク部分 */

.ly_cntLinkUnit {
  max-width: 100rem;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 120px;
}

.cntLinkUnit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cntLinkUnit_item {
  width: 48%;
}

.cntLink {
  position: relative;
  display: flex;
  border: 1px solid #e76087;
  align-items: center;
  padding-right: 80px;
  color: #e76087;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 20px;
}

.cntLinkUnit .cntLink {
  border: none;
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0px 0px 16px 2px rgba(209, 199, 199);
  margin-bottom: 40px;
}

.cntLink:hover {
  opacity: 0.7;
}

.cntLink_img {
  order: 1;
  flex: none;
  width: 110px;
  margin-right: 20px;
}

.cntLinkUnit .cntLink_img {
  width: 150px;
}

.cntLinkUnit_item img {
  border-radius: 0.5rem 0 0 0.5rem;
}

.cntLink_txt {
  order: 2;
  font-size: 15px;
}

.cntLink_read {
  color: #40382d;
  font-size: 1.3rem;
  margin-bottom: 5px;
  max-width: 100%;
  line-height: 1.7em;
}

.cntLink_img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.cntTtl {
  font-size: 18px;
  color: #e76087;
  margin-bottom: 20px;
}

.cntLink img.after-btn {
  position: absolute;
  display: -webkit-inline-box;
  right: 20px;
  width: 20px;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.cntLink:hover img.after-btn {
  right: 12px;
}

/* スマホ表示 */
@media screen and (max-width: 768px) {
  .cntTtl {
    margin-bottom: 1rem;
  }
  .ly_cont__contents .el_txt {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .ly_cntLinkUnit {
    width: 100%;
    padding: 70px 0 0 0;
  }
  .cntLinkUnit {
    padding: 0 2rem;
  }
  .cntLinkUnit_item {
    width: 100%;
  }
  .cntLinkUnit .cntLink {
    height: 115px;
    margin-bottom: 20px;
    padding-right: 40px;
  }
  .cntLinkUnit .cntLink_img {
    width: 100px;
    height: 100%;
  }
  .bl_halfMedia__cnt_link .cntLink {
    height: 75px;
    padding-right: 40px;
  }
  .bl_halfMedia__cnt_link .cntLink_img {
    width: 80px;
    height: 100%;
  }
  .cntLink_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* タブレット縦表示 */
@media screen and (min-width: 568px) and (max-width: 900px) {
  .ly_cont__contents .el_txt {
    padding-left: 10vw;
    padding-right: 10vw;
  }
  .ly_cntLinkUnit {
    width: 100%;
    padding: 70px 10vw;
    box-sizing: border-box;
  }
}

/*  ______________________charm */
/* ___________layout */

.ly_cont__usersvoice article:not(:last-child) {
  margin-bottom: 100px;
}

/* ___________各特徴へのリンク*/
.charmLinkWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(205, 191, 171, 0.4);
}

.charmLinkWrap li {
  margin: 5px;
}

.charmLink {
  padding: 10px;
  border: 1px solid #96836b;
  color: #96836b;
  line-height: 1;
  font-size: 1.5rem;
  border-radius: 4px;
  transition: 0.3s;
  display: block;
}

.charmLink:hover {
  background-color: #96836b;
  color: #fff;
}

/* ___________halfMedia*/
.bl_halfMedia_imgWrapper__charm {
  flex-basis: 50%;
}

.bl_halfMedia_imgWrapper__charm > img {
  box-shadow: none;
  border: 1px solid #d1d1d1;
}

.bl_halfMedia_imgWrapper__charm > img.hp_noBorder {
  border: none;
}

.bl_halfMedia__charm {
  max-width: 100rem;
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 70px;
  align-items: center;
}

.bl_halfMedia__charm_ttl {
  font-size: 2.8rem;
}

.bl_halfMedia__charm_txt {
  font-size: 1.9rem;
  line-height: 1.8em;
  max-width: 450px;
  margin-bottom: 20px;
}

.bl_halfMedia__charm_read {
  font-size: 1.55rem;
  line-height: 1.8em;
  max-width: 450px;
  margin-bottom: 30px;
}

/* スマホ表示 */
@media screen and (max-width: 900px) {
  .bl_halfMedia__charm {
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
    min-width: 100%;
  }
  .bl_halfMedia_body {
    margin: 0;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .bl_halfMedia__rev .bl_halfMedia_imgWrapper__charm,
  .bl_halfMedia_imgWrapper__charm {
    min-width: 70%;
    margin: 0 auto;
  }

  .bl_halfMedia__charm .bl_halfMedia_body {
    margin: 0;
  }

  .bl_halfMedia_imgWrapper__charm {
    text-align: center;
  }
  .bl_halfMedia_imgWrapper__charm img {
    width: 90%;
    margin-bottom: 2rem;
  }
  .bl_halfMedia__charm_read {
    font-size: 1.4rem;
  }
  .bl_halfMedia__charm_txt {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
  .bl_halfMedia__charm_ttl {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .bl_halfMedia_imgWrapper__charm .bl_halfMedia_ttl {
    font-size: 1.8rem;
  }
}

/* タブレット縦表示 */
@media screen and (min-width: 568px) and (max-width: 900px) {
  .bl_halfMedia__charm .bl_halfMedia_body {
    padding-left: 10vw;
    padding-right: 10vw;
    margin-right: 0;
  }

  .bl_halfMedia__charm_txt,
  .bl_halfMedia__charm_read {
    min-width: 100%;
  }

  .bl_halfMedia_imgWrapper__charm img {
    width: 70%;
  }
}

/* ___________スピーチリスト*/
.speechList span {
  width: auto;
  min-width: 100px;
  display: inline-block;
  padding: 10px 30px;
  position: relative;
  color: #fff;
  background-color: #d76987;
  border-radius: 4px;
  font-size: 1.4rem;
}

.speechList span::before {
  content: "";
  border: solid transparent;
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(90, 230, 40, 0);
  border-top-width: 8px;
  border-bottom-width: 8px;
  border-left-width: 10px;
  border-right-width: 10px;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-right-color: #d76987;
}

.speechListWrap li:not(:last-child) {
  margin-bottom: 10px;
}

/*  ______________________User’s voice */
/* ___________userLink*/

.userLink {
  display: flex;
  justify-content: center;
  background-color: rgba(246, 243, 240, 0.8);
  padding: 4% 8%;
  margin: 0px 20px 60px 20px;
  box-sizing: border-box;
  text-align: center;
}

.userLink_item {
  flex-basis: 40%;
}

.userLink_item a {
  line-height: 1.5em;
}

.userLink_item img {
  max-width: 100%;
  height: auto;
}

.userLink_item > img {
  width: 90%;
  max-height: 180px;
  object-fit: cover;
  object-position: top;
}

.userLink_item:first-child {
  margin-right: 10%;
}

.userLink_item .el_arrowbtn {
  width: 80%;
}

/* スマホ表示 */
@media screen and (max-width: 768px) {
  .userLink {
    padding: 4%;
  }
  .userLink_item .el_arrowbtn {
    font-size: 1.4rem;
    line-height: 1.5em;
  }
  .ly_cont__usersvoice article:not(:last-child) {
    margin-bottom: 70px;
  }
}

/* 追加部分カスタマーハッピー */

.container_userimg {
  margin-left: auto;
  margin-right: auto;
}

.grid-container {
  max-height: 450px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1.2fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  gap: 10px 10px;
  grid-template-areas:
    "img1 img2 img3 img6 img6 img9"
    "img1 img2 img3 img6 img6 img9"
    "img4 img4 img5 img6 img6 img10"
    "img4 img4 img5 img7 img8 img10"
    "img4 img4 img5 img7 img8 img10";
}
.img1 {
  grid-area: img1;
}
.img2 {
  grid-area: img2;
}
.img3 {
  grid-area: img3;
}
.img4 {
  grid-area: img4;
}
.img5 {
  grid-area: img5;
}
.img6 {
  grid-area: img6;
}
.img7 {
  grid-area: img7;
}
.img8 {
  grid-area: img8;
}
.img10 {
  grid-area: img10;
}
.img9 {
  grid-area: img9;
}

.grid-container2 {
  max-height: 450px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 150px 150px;
  gap: 10px 10px;
  grid-template-areas:
    "a b c"
    "d d e";
}
.a {
  grid-area: a;
}
.b {
  grid-area: b;
}
.c {
  grid-area: c;
}
.d {
  grid-area: d;
}
.e {
  grid-area: e;
}

#grid-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

#grid-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

#grid-1 div:nth-child(4) img,
#grid-1 div:nth-child(6) img {
  object-position: 50% 30%;
}

.container_quote {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 10px 10px; */
  gap: 50px 50px;
}

.quote-module {
  min-height: 100px;
  padding: 2em;
  background-color: #fff;
  display: flex;
  box-shadow: 0px 0px 20px 2px rgb(209 199 199 / 80%);
  border-radius: 2rem;
  align-items: center;
  transition: 0.3s;
}

.quote-module:hover {
  box-shadow: 0px 0px 20px 2px rgb(209 199 199 / 95%);
}

.quote-module:hover .text-container,
.quote-module:visited .text-container {
  opacity: 0.7;
}

.quote-module div.img-container img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  /* clip-path: circle(50% at 50% 50%); */
  border-radius: 50%;
  object-position: 50% 20%;
}

.text-container {
  flex: 1;
  margin: 0 auto;
  max-width: 800px;
  padding: 1em 0em 1em 2em;
  position: relative;
  transition: 0.3s;
}

.text-container span {
  display: block;
}

.text-container h2 {
  font-size: 2rem;
  color: #e76087;
  line-height: 1.5em;
  margin-bottom: 15px;
  position: relative;
}

.text-container p {
  font-size: 1.6rem;
  color: #4d4d4d;
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .container_quote {
    grid-template-columns: 1fr;
  }
}

/* 追加部分個別ページ */

.ly_uservoice {
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
  max-width: 1000px;
}

.uservoice-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 460px 1fr;
  grid-template-rows: auto;
  gap: 12%;
  grid-template-areas: "uservoice-left uservoice-right";
}
.uservoice-left {
  grid-area: uservoice-left;
  position: relative;
}
.uservoice-right {
  gap: 60px 10px;
  display: flex;
  flex-direction: column;
}

.uservoice-left::before {
  content: "";
  position: absolute;
  top: 4%;
  left: 4%;
  width: 100%;
  height: 710px;
  background-image: radial-gradient(
      rgb(205, 191, 171) 30%,
      rgba(0, 0, 0, 0) 31%
    ),
    radial-gradient(rgb(205, 191, 171) 30%, rgba(0, 0, 0, 0) 31%);
  background-size: 6px 6px;
  background-position: 0px 0px, 3px 3px;
  z-index: -1;
}

.uservoice-container:not(:last-child) {
  margin-bottom: 60px;
}

.ttl-block div {
  position: relative;
}

.ttl-block p {
  width: 52px;
  height: 40px;
  margin-bottom: 15px;
  background: url(../img/icon/quotationmark.png) 0% 0% / 52px no-repeat;
}

.ttl-block div img {
  position: absolute;
  left: -20px;
  top: 10px;
}

.ttl-block h2 {
  font-size: 4.2rem;
  /* padding: 10%; */
  color: #d76987;
  line-height: 1.4em;
}

.ttl-block span {
  display: block;
  line-height: 1.7em;
  font-size: 2rem;
  color: #4d4d4d;
  font-weight: bold;
}

.ttl-block span:first-of-type {
  margin-top: 0.8em;
}

.uservoice-left img {
  width: 100%;
  height: 100%;
  height: auto;
  object-fit: contain;
}

.question h3 {
  font-size: 1.6rem;
  font-weight: normal;
  color: #4d4d4d;
  position: relative;
  padding-left: 12px;
  font-feature-settings: "palt";
  margin-bottom: 24px;
}

.question h3::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 1px;
  background-color: #000;
}

.answer {
  font-size: 1.5rem;
  line-height: 1.9em;
  font-feature-settings: "palt";
}

.usermore {
  margin: 0px 20px 60px 20px;
}

.usermore .el_Lv3Heading {
  margin-bottom: 30px;
}

.usermore .container_quote {
  grid-template-columns: repeat(3, 1fr);
}

.usermore .quote-module {
  flex-direction: column;
}

.usermore .text-container {
  padding: 1em 1em 0em 1em;
}

@media screen and (max-width: 1000px) {
  .uservoice-left img {
    max-width: 320px;
  }
}

@media screen and (max-width: 768px) {
  .quote-module div.img-container img {
    width: 85px;
    height: 85px;
  }

  .container_quote {
    gap: 30px 50px;
  }

  .ly_uservoice {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .uservoice-left::before {
    top: 4%;
    left: 2em;
    width: 100%;
    height: 100%;
    /* min-width: 192px; */
  }
  .uservoice-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 30px 0px;
    grid-template-areas:
      "uservoice-left"
      "uservoice-right";
  }
  .uservoice-left {
    text-align: center;
    margin-left: 20%;
    margin-right: 20%;
  }
  .uservoice-left img {
    /* height: 290px; */
    object-fit: cover;
    object-position: 50% 13%;
    max-width: 250px;
  }
  .uservoice-right {
    padding-left: 10%;
    padding-right: 10%;
    gap: 30px 10px;
    row-gap: 30px;
    column-gap: 10px;
  }
  .question-block {
    margin-top: 30px;
  }
  .ttl-block h2 {
    font-size: 2.4rem;
    line-height: 1.4em;
  }
  .ttl-block span {
    font-size: 1.6rem;
  }
  .usermore .container_quote {
    grid-template-columns: 1fr;
    gap: 30px 50px;
  }
  .usermore .quote-module {
    flex-direction: unset;
    padding: 1.5em;
  }
  .usermore div.img-container img {
    width: 75px;
    height: 75px;
  }
  .usermore .text-container {
    padding: 0em 0em 0em 1em;
  }
  .usermore .text-container h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5em;
  }
  .usermore .text-container p {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 540px) and (max-width: 800px) {
  .uservoice-left::before {
    top: 4%;
    left: 25%;
    width: 100%;
    height: 100%;
    max-width: 258px;
  }
}

@media screen and (min-width: 768px) and (max-width: 800px) {
  .usermore .container_quote {
    grid-template-columns: 1fr 1fr;
    gap: 30px 30px;
  }

  .grid-container2 {
    grid-template-rows: 224px 224px;
  }

  #grid-2 img {
    object-position: 50% 25%;
  }
}

/*  ______________________movie */
/* ___________headline */
.el_Lv1Heading.el_beforeLv1Heading_Movie > span::before {
  content: "Movie" !important;
}

.ly_cont__movie {
  max-width: 824px;
}

@media screen and (max-width: 768px) {
  .ly_cont__movie {
    min-width: 100%;
    box-sizing: border-box;
  }

  .bl_videoCardUnit {
    display: block;
  }
}

/*  ______________________fap */
/* ___________reyout */
.ly_cont__fapPage {
  max-width: 824px;
  margin: 0 auto;
}

.ly_cont__fapPage .el_Lv5Heading > span {
  padding: 0 10px;
}

/* ___________faqpage */
.fapImgWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 50px;
}

.fapImgWrap img {
  max-width: 280px;
  object-fit: contain;
}

.fapImgWrap img:not(:last-child) {
  margin-right: 10px;
}

.ly_cont__fapPage a {
  display: inline-block;
  text-decoration: none;
}

.ly_cont__fapPage .el_txt__link {
  color: #e76087 !important;
}

ol.listFapPage,
ol.listFapPage li {
  list-style-type: decimal !important;
}

ol.listFapPage {
  padding: 20px 40px;
  margin-top: -10px;
  font-size: 1.4rem;
  line-height: 1.8em;
}

.fapPage-fap {
  margin-top: 80px;
}

.fap_nav_back {
  padding: 15px;
  border: 1px solid #96836b;
  color: #96836b;
  font-size: 1.3rem;
  border-radius: 4px;
  margin-top: 30px;
}

.bl_faq_Q .bl_faq_Q_txt__small {
  padding: 10px;
  font-size: 1.4rem;
  font-weight: normal;
}

.bl_faq_Q .bl_faq_Q_txt__small::before {
  display: none;
}

.bl_faq > p {
  width: 100%;
  max-width: 100%;
  line-height: 1.7em;
  padding: 15px 40px 15px 25px;
  position: relative;
  text-decoration: none;
  color: #4d4d4d;
  min-height: 45px;
  font-size: 1.5rem;
}

@media screen and (max-width: 900px) {
  .ly_cont__fapPage {
    max-width: 100%;
    display: block;
  }

  .ly_cont__fapPage {
    min-width: 100%;
    box-sizing: border-box;
  }

  .fapImgWrap {
    display: block;
    text-align: center;
    margin-bottom: 0;
  }

  .fapImgWrap img:not(:last-child) {
    margin-right: 0px;
  }

  .fapImgWrap img {
    max-width: 100%;
    margin-bottom: 3rem;
  }

  .ly_cont__fapPage .el_Lv4Heading {
    text-align: center;
  }
}

@media screen and (max-width: 568px) {
  .bl_faq > p {
    padding: 15px 10px 15px 20px;
    box-sizing: border-box;
  }
}

/* ___________table */
/* 表横 */
.bl_priceTable {
  margin-bottom: 30px;
}

.bl_priceTable table {
  width: 100%;
  table-layout: fixed;
}

.bl_priceTable_header {
  padding: 10px;
  background-color: #c4b189;
  border-right: 1px solid currentColor;
  color: #fff;
  text-align: center;
}

.bl_priceTable_headerTrl {
  font-size: 1.125rem;
}

.bl_priceTable_price {
  font-size: 1.875rem;
}

.bl_priceTable_price span {
  font-size: 1rem;
}

.bl_priceTable_bodyTtl {
  padding: 10px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  font-weight: bold;
  text-align: right;
  vertical-align: middle;
}

.bl_priceTable td {
  padding: 10px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  text-align: center;
  vertical-align: middle;
}

.bl_priceTable td:last-child {
  border-right: 1px solid #ddd;
}

.bl_priceTable tr:last-child > * {
  border-bottom: 1px solid #ddd;
}

.bl_priceTable thead th:first-child {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .bl_priceTable {
    overflow-x: auto;
  }

  .bl_priceTable table {
    white-space: nowrap;
  }

  .bl_priceTable_bodyTtl {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    background-color: #fff;
    box-shadow: 1px 0 #ddd;
    font-size: 0.875rem;
  }
}

/*  ______________________contact */

/* 非表示 */
.is_label_hidden {
  display: none;
}

/* innput */ /* 共通 */
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #cccccc;
  height: 3.125em;
  line-height: 3.125;
  overflow: hidden;
  padding: 0 1em;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
  width: 100%;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1.6rem;
}

input:focus {
  border-color: #b08968;
  box-shadow: inset 0 0 0 1px #b08968;
  outline: none;
  background-color: #fff;
}

:-ms-input-placeholder {
  color: #c2c2c2;
}

::-ms-input-placeholder {
  color: #c2c2c2;
}

::placeholder {
  color: #c2c2c2;
}

input:-webkit-autofill {
  transition-delay: 9999s;
  transition-property: background-color;
}

/* layout */ /* 共通 */
fieldset {
  border: 0;
  min-width: auto;
  padding: 0;
}

#ly_form {
  margin: 0 auto;
  max-width: 750px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 16px 2px rgba(209, 199, 199);
  padding: 8%;
  box-sizing: border-box;
}

.form_group + .form_group {
  margin-top: 24px;
}

form {
  box-sizing: border-box;
  max-width: 500px;
  margin: 0 auto;
}

.form_group__header {
  max-width: 250px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.form_group__li {
  border-bottom: 1px solid #cccccc;
  list-style: none;
  padding: 0.8em 0 16px;
}

.form_group__li__item + .form_group__li__item {
  margin-top: 16px;
}

#ly_form .el_txt__link {
  color: #e76087 !important;
}

/* 名前 */

.form_group__cnt p {
  max-width: 500px;
}

/* radio */
.radio {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.5rem;
}

.radio__text {
  display: inline-block;
  letter-spacing: 0.01em;
  line-height: 1.5;
  position: relative;
  transition: color 0.3s;
  font-size: 1.5rem;
  width: 60vw;
}

.radioInput {
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  width: 0;
}

input[type="radio"] + .radio__icon {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  box-sizing: border-box;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: -0.2em;
  margin-right: 1em;
  border-radius: 50%;
  border: 3px solid #ccc;
  background: #fff;
  box-shadow: none;
  transition: all 0.2s ease-out;
}

/* acitive */

input[type="radio"]:focus + .radio__icon {
  border: 1px solid #80cbc4;
  background: #80cbc4;
  box-shadow: 0 0 2px 4px #80cbc4;
}

input[type="radio"]:checked + .radio__icon {
  background: #fff;
  border: 8px solid #009688;
}

label:hover .radio__icon {
  border: 1px solid #80cbc4;
  background: #80cbc4;
}

/* テキストエリア */
.form_group__cnt__textarea {
  position: relative;
  margin-top: 1em;
}

.form_group__cnt__textarea textarea {
  font-size: 1.6rem !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #cccccc;
  border-radius: 4px;
  box-sizing: border-box;
  font: inherit;
  height: 100%;
  left: 0;
  letter-spacing: inherit;
  overflow: hidden;
  padding: 1em;
  position: absolute;
  resize: none;
  top: 0;
  transition: background-color 0.5s ease-out;
  width: 100%;
  max-width: 500px;
}

.form_group__cnt__textarea textarea:focus {
  border-color: #b08968;
  box-shadow: inset 0 0 0 1px #b08968;
  outline: none;
  background-color: #fff;
}

.form_group__cnt__textarea textarea {
  min-height: 240px;
  position: relative;
  resize: vertical;
}

/* ラベル */
.label {
  background-color: #ff8181;
  border-radius: 3px;
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: 0.08em;
  padding: 0.35em 0.6em;
  color: #fff;
}

.form_group__header__ttl:not(:only-child) {
  margin-right: 0.8em;
}

/* ボタン */
.formBtn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #de1e56;
  border: 0;
  border-radius: 1px;
  box-shadow: 0px 2px 20px -3px rgba(173, 155, 155, 0.3);
  color: #fff;
  cursor: pointer;
  display: flex;
  letter-spacing: 0.08em;
  line-height: inherit;
  padding: 2rem 3rem;
  transition: background-color 0.3s;
  box-sizing: border-box;
  justify-content: center;
  font-size: 1.5rem;
  width: 80%;
  margin: 0 auto;
}

/* 入力チェック */
span.alert {
  display: block;
  margin-top: 5px;
  font-size: 1.5rem;
  color: #ff4e4e;
}

/* 説明文 */
#ly_form .el_txt {
  margin: 0px auto 4rem;
}

/* 確認画面 */
#ly_form .form_group__check .form_group__cnt .el_txt {
  margin-bottom: 0;
  font-size: 1.7rem;
}

#ly_form .form_group.form_group__checkBtn {
  margin-top: 5rem;
}

.form_group__check .form_group__header {
  margin-bottom: 5px;
}

/* 完了画面 */
.ly_form__end .el_txt span {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 2.5em;
}

.ly_form__end .btnFormback {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #96836b;
  color: #96836b;
  font-size: 1.5rem;
  border-radius: 4px;
}

@media screen and (max-width: 578px) {
  #ly_form .form_group__check .form_group__cnt .el_txt {
    font-size: 1.6rem;
  }
  #ly_form .form_group.form_group__checkBtn {
    margin-top: 3rem;
  }
  .ly_form__end .el_txt span {
    display: inline-block;
    line-height: 1.5em;
    margin-bottom: 20px;
  }
  .ly_form__end .btnFormback {
    font-size: 1.3rem;
  }
  .ly_form__end {
    padding: 10% !important;
  }
}

/*  ______________________hp */

.hp_top50 {
  margin-top: 50px;
}

.hp_top30 {
  margin-top: 30px;
}

.lg_mb80 > div {
  margin-bottom: 80px;
}

.hp_bottom100 {
  margin-bottom: 100px;
}

.hp_bottom20 {
  margin-bottom: 20px;
}

.hp_120 {
  padding-bottom: 120px;
}

@media screen and (max-width: 900px) {
  .md_mb40 > div {
    margin-bottom: 40px;
  }
  .hp_top50 {
    margin-top: 2rem;
  }
  .hp_bottom100 {
    margin-bottom: 70px;
  }
  .hp_120 {
    padding-bottom: 70px;
  }
}

@media screen and (min-width: 940px) {
  .hp_bottom120 {
    padding-bottom: 120px !important;
  }
}


/* 追加 mat 2022.10.28 */
.pdf_dl_link{
  font-size: 16px;
  font-weight: bold;
  color: #e64b78;
  display: flex;
  align-items: center;
  gap: .3em;
}

.pdf_dl_link span{
  font-size: 0.8em;
  font-weight: normal;
}

.pdf_dl_link::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 500;
  content: "\f1c1";
}

.pdf_dl_link:hover{
  text-decoration: underline;
}

/* タブレット縦表示 */
@media screen and (max-width: 900px) {
  .pdf_dl_link{
    padding: 0 30px;
    margin-bottom: 30px;
    font-size: 15px;
  }
}

@media screen and (max-width: 567px) {
  .pdf_dl_link{
    padding: 0 20px;
    margin-bottom: 30px;
  }
}

/* 追加 2023.1.23 mat
-----------------------------------------------*/
/* 画像 */
.faq_img{
  margin-bottom: 30px;
}

.faq_img img{
  display: block;
  width: 100%;
  border: 1px solid #888;
}

/* accordion
-----------------------------------------------*/
.accordion{
  display: grid;
  gap: 20px;
  /* margin-bottom: 40px; */
}

.accordion_header {
  display: flex;
  align-items: center;
	background-color: rgba(196, 177, 137, 0.3);
	font-size: 16px;
	font-weight: bold;
	padding: 20px;
	cursor: pointer;
	transition-duration: 0.2s;
  border-radius: 6px;
}

.accordion_header.open{
  border-radius: 6px 6px 0 0;
}

.accordion_header::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f067";
  margin-left: auto;
}

.accordion_header.open::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f068";
  margin-left: auto;
}

.accordion_header:hover {
	opacity: .8;
}


.accordion_inner {
	display: none;
  border: 2px solid rgba(196, 177, 137, 0.3);
  border-radius: 0 0 6px 6px;
  padding: 20px;
}


.corp_btn{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
}

.corp_btn__item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3em;
  padding: 1.2em;
  background-color: #ddd;
  font-size: 16px;
  line-height: 1.3;
  font-weight: bold;
  color: #fff;
  transition: opacity .2s;
}

.corp_btn__item span{
  font-size: 0.8em;
  font-weight: normal;
}

.corp_btn__item:hover{
  opacity: .8;
}

.corp_btn--s .corp_btn__item{
  background-color: #2077b9;
}

.corp_btn--w .corp_btn__item{
  background-color: #30bbb4;
}

.document_dl{
  display: flex;
  justify-content: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.document_dl a{
  font-size: 18px;
  font-weight: bold;
  padding: 1.2em 2em;
  background-color: rgb(150, 131, 107);
  color: #fff;
  line-height: 1;
  transition: opacity .2s;
}

.document_dl a:hover{
  opacity: .8;
}

/*===============================================
 corporation.php 2023.4.27 mat
===============================================*/
#corporation_page{
  display: grid;
  justify-content: center;
  grid-template-columns: minmax(auto, 1000px) ;
  gap: 60px;
  padding: 0 20px;
  margin-bottom: 60px;
}

/* タイトル
-----------------------------------------------*/
.corporation_page_title{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 70px;
  gap: 20px;
}

.corporation_page_title h1{
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #40382d;
  font-size: 3.5rem;
}

.corporation_page_title h1 span{
  font-size: 2.1rem;
  color: #a18e72;
}

.corporation_page_title p{
  font-size: 1.6rem;
  line-height: 1.6;
  font-feature-settings: "palt";
  letter-spacing: .05em;
}

/* 申し込みボタン
-----------------------------------------------*/
.corporation_page_apply{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.corporation_page_apply > div{
  background-color: #fff;
  box-shadow: 0px 0px 20px 2px rgba(209, 199, 199, 0.8);
  padding: 30px;
  display: grid;
  justify-items: center;
}

@media screen and (max-width: 600px){
  .corporation_page_apply > div{
    padding: 20px;
  }
}

.corporation_page_apply img{
  display: block;
  width: 80%;
  margin-bottom: 10px;
}

.corporation_page_apply__title{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}

.corporation_page_apply__title p{
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: .05em;
}

.corporation_page_apply__title h1{
  font-size: 42px;
  line-height: 1;
}
@media screen and (max-width: 600px){
  .corporation_page_apply__title h1{
    font-size: 32px;
  }
}



.corporation_page_apply__btn{
  width: 100%;
  display: grid;
  gap: 15px;
}

.corporation_page_apply__btn a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2em 1em;
  width: 100%;
  background-color: #ddd;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  font-feature-settings: "palt";
  transition: opacity .2s;
  box-sizing: border-box;
}

@media screen and (max-width: 600px){
  .corporation_page_apply__btn a{
    font-size: 14px;
  }
}

.corporation_page_apply__btn a:hover{
  opacity: .8;
}

.btn--w a{
  background-color: #2077b9;
}

.btn--s a{
  background-color: #30bbb4;
}

/* 法人資料の請求
-----------------------------------------------*/
.corporation_document_download{
  display: flex;
  align-items: center;
  justify-content: center;
}

.corporation_document_download a{
  border: 2px solid #e76087;
  max-width: 300px;
  width: 100%;
  color: #e76087;
  font-size: 16px;
  font-weight: bold;
  padding: 1.4em;
  line-height: 1;
  transition: all .2s;
  gap: .5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 600px){
  .corporation_document_download a{
    font-size: 14px;
  }
}

.corporation_document_download a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}

.corporation_document_download a:hover{
  background: #e76087;
  color: #fff;
}

.kiyaku{
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

.kiyaku a{
  color: #e76087;
  text-decoration: underline;
  font-weight: bold;
}

/*===============================================
 プルダウン
===============================================*/
.headline_lv2{
  color: #222;
  font-size: 21px;
  border-bottom: 1px solid rgba(196, 177, 137, 0.5);
  padding-bottom: 0.5em;
  margin-bottom: .8em;
}

@media screen and (max-width: 600px){
  .headline_lv2{
    font-size: 17px;
  }
}

/* リスト */
.corp_list{
  font-size: 16px;
  line-height: 1.6;
  margin-left: .5em;
  margin-bottom: 30px;
}

@media screen and (max-width: 600px){
  .corp_list{
    font-size: 14px;
  }
}

.corp_list li{
  display: flex;
  gap: 0.5em;
  margin-bottom: 0.3em;
}

.corp_list li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  color: rgba(196, 177, 137, 0.6);
}

#corporation_page .accordion_header{
  font-size: 18px;
  padding: 1.2em 1.6em;
}

#corporation_page .accordion_inner{
  padding: 30px;
}

@media screen and (max-width: 600px){
  #corporation_page .accordion_inner{
    padding: 15px;
  }
}