@charset "utf-8";

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* -------------------------------------------------------------------------------------------------
   * セクショニング
/* ---------------------------------------------------------------------------------------------- */

#main {}

#main-contents {
  overprogram: hidden;
}

#main-contents div.body {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

 #main-contents div.body {
   max-width: 100%;
   padding-left:20px;
   padding-right: 20px;
   margin: 0 auto;
 }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#main-contents > .section {
  padding-top: 2em;
  padding-bottom: 4em;
}

#main-contents div.body {
  max-width: 100%;
  padding: 0 1em;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 20px;
}

}


/* ****************************************************************************************************
   * ビジュアル
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

body.layout-lower #visual {
  background: url("../../_images/memberships/visual.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

/* ****************************************************************************************************
   * 共通エリア
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * カラム
/* ------------------------------------------------------------------------------------------------- */

.price {
  position: relative;
  padding-top: 70px;
  padding-bottom: 120px;
}

.price .body {
  max-width: 1120px;
  padding: 0 20px;
}

.price .inner {
  max-width: 1000px;
  margin-top: 80px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.price .inner .subtitle {
  font-size: 3.0rem;
  font-weight: 400;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .price .inner {
    max-width: 1000px;
    margin-top: 40px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }
  .price .inner .subtitle {
    font-size: 2.0rem;
    font-weight: 400;
    line-height: 1.6;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.price .title {
  position: relative;
  font-size: 6.0rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  font-family: "Prata", serif;
  color: var(--c-gold);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .price .title {
    font-size: 3.0rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 見出しタイトル
/* ------------------------------------------------------------------------------------------------- */

.price .title-1 {
  position: relative;
  font-size: 3.0rem;
  padding-left: 2.5em;
  line-height: 1.4;
}
.price .title-1::before {
  content: "";
  display: block;
  background: url("../../_images/_common/title-mark.png") no-repeat;
  width: 50px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 17px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .price .title-1 {
    position: relative;
    font-size: 2.2rem;
    padding-left: 1.5em;
    line-height: 1.4;
  }
  .price .title-1::before {
    content: "";
    display: block;
    background: url("../../_images/_common/title-mark.png") no-repeat;
    width: 25px;
    height: 5px;
    background-size: 25px 5px;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 17px;
  } 
}

/* ****************************************************************************************************
   * リード文
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

#lead {
  padding-bottom: 60px;
}
#lead .content {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

#lead .text {
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1120px) {
  /*ブラウザの幅が736px以下の時*/
  #lead .content {}
  #lead .text {
    text-align: left;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ページナビ
/* ------------------------------------------------------------------------------------------------- */

#lead .pagenav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

#lead .pagenav li {
  margin: 0 2%;
}
#lead .pagenav li .btn::after {
  border-top: 0;
  border-bottom: 1px solid var(--c-btn-gold);
  transition: 0.2s top;
}
#lead .pagenav li .btn:hover::after {
  right: 10px;
  top: 60%;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #lead .pagenav li {
    margin: 0 2% 1em;
  }
}


/* ****************************************************************************************************
   * 会員ランクのご案内
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

#rank {
  position: relative;
  padding-bottom: 30px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #rank {
    padding-bottom: 1em !important;
  }
}


/* ****************************************************************************************************
   * 共通項目
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

section[id^="price-"] {
  color: #fff;
  padding-top: 90px;
  padding-bottom: 90px;
}
/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  section[id^="price-"] {
    padding-bottom: 2em !important;
  }
}

#price-1 {
  background-image: linear-gradient( 0deg, rgb(125,63,136) 0%, rgb(61,9,70) 100%);
}
#price-2 {
  background-image: linear-gradient( 0deg, rgb(205,46,46) 0%, rgb(87,0,0) 100%);
}
#price-3 {
  background-image: linear-gradient( 0deg, rgb(30,104,72) 0%, rgb(0,40,8) 100%);
}
#price-4 {
  background-image: linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(196,199,202) 100%);
}
#price-4 {
  color: #333;
}

/* ----------------------------------------------------------------------------------------------------
   * タイトルエリア
/* ------------------------------------------------------------------------------------------------- */

.price .title-area {}
.price .title-area .title-2 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 0.5em 0 2.5em;
  font-size: 3.0rem;
}
.price .title-area .title-2::before {
  content: "";
  display: block;
  background: url("../../_images/memberships/icon-mark.png") no-repeat;
  width: 49px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.price .title-area .title-2 span {
  font-size: 1.6rem;
}


/* タイトル帯色*/
#price-1 .title-2 {
  background: #843093;
}
#price-2 .title-2 {
  background: #cd2e2e;
}
#price-3 .title-2 {
  background: #3f6346;
}
#price-4 .title-2 {
  background: #fff;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .price .title-area .title-2 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 0.5em 0 1.8em;
    font-size: 2.4rem;
  }
  .price .title-area .title-2::before {
    content: "";
    display: block;
    background: url("../../_images/memberships/icon-mark.png") no-repeat;
    width: 24px;
    height: 15px;
    background-size: 24px 15px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
  }
  .price .title-area .title-2 span {
    font-size: 1.4rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 画像
/* ------------------------------------------------------------------------------------------------- */

.price picture {
  display: block;
  text-align: center;
}

/* ----------------------------------------------------------------------------------------------------
   * 年会費
/* ------------------------------------------------------------------------------------------------- */

.price .tax {
  font-size: 2.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 60px;
}
.price .tax span.col-1 {
  width: 7em;
}
.price .tax span.col-2 {}


.price .tax + .text {
  margin-top: 50px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .price .tax {
    font-size: 2.0rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
  }
  .price .tax span.col-1 {
    width: 7em;
  }
  .price .tax + .text {
    margin-top: 20px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

.price .box {
  background: rgb(255, 255, 255,0.149);
  padding: 30px;
  margin-top: 60px;
}
#price-4 .box {
  background: none;
  border: 1px solid #ccc;
}

.price .box .item ~ .item {
  margin-top: 30px;
}
.price .box .item .title-3 {
  width: 15%;
  margin-right: 3%;
}

.price .box .item .detail {
  width: 82%;
}


/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .price .box {
    background: rgb(255, 255, 255,0.149);
    padding: 20px;
    margin-top: 30px;
  }
  
  .price .box .item ~ .item {
    margin-top: 20px;
  }
  .price .box .item .title-3 {
    width: 100%;
    margin-right: 0;
  }
  .price .box .item .detail {
    width: 100%;
  }
}


/* ----------------------------------------------------------------------------------------------------
   * ボタン
/* ------------------------------------------------------------------------------------------------- */

.price .link-btn {
  margin-top: 60px;
}

.price .btn-1 {
  position: relative;
  display: block;
  background: #fff;
  width: 390px;
  text-align: center;
  margin: 0 auto;
  padding: 1.5em 1em;
  font-size: 1.8rem;
}
#price-4 .btn-1 {
  position: relative;
  display: block;
  background: #fff;
  width: 390px;
  text-align: center;
  margin: 0 auto;
  padding: 1.5em 1em;
  font-size: 1.8rem;
  border: 1px solid #333333;
}
.price .btn-1::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 0px;
  border: none;
  background: url("../../_images/_common/link-icon-b2.png") no-repeat;
  transform: rotate(0);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: 0;
  transition: 0.2s right;
}
.price .btn-1:hover:after {
  right: 0.3em;
}


/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .price .link-btn {
    margin-top: 20px;
  }
  .price .btn-1,
  #price-4 .btn-1 {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 1em;
  }
}

/* ****************************************************************************************************
   * 法人向けプラン
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

#plan {
  position: relative;
  background: #e4e4e4;
}

#plan .title-3 {
  font-size: 2.4rem;
}

#plan section ~ section {
  padding-top: 90px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #plan .title-3 {
    font-size: 2.0rem;
  }
  #plan section ~ section {
    padding-top: 60px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 選ばれる3つの理由
/* ------------------------------------------------------------------------------------------------- */

#plan .reason {
  padding-top: 40px;
}
#plan .reason ul.layout-flex-3 {
  margin-top: 20px;
}

#plan .reason ul.layout-flex-3 li {
  background: #fff;
  padding: 20px;
}
#plan .reason ul.layout-flex-3 li .text-1 {
  font-size: 2.0rem;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:800px) {
  /*ブラウザの幅が736px以下の時*/
  #plan .reason .layout-flex-3 > * {
    width: 100%;
  }
  #plan .reason .layout-flex-3 li ~ li {
    margin-top: 30px;
  }
  #plan .reason ul.layout-flex-3 li .text-1 {
    font-size: 1.8rem;
  }
}


/* ----------------------------------------------------------------------------------------------------
   * 法人会員プラン導入のメリット
/* ------------------------------------------------------------------------------------------------- */

#plan .merit {}

#plan .merit ul {
  margin-top: 20px;
}
#plan .merit ul li {
  background: #fff;
  padding: 20px;
}
#plan .merit ul li ~ li {
  margin-top: 40px;
}

#plan .merit ul li .title-2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 2.0rem;
  line-height: 1.4;
}
#plan .merit ul li .title-2 span {
  color: #fff;
  font-size: 1.5rem;
  padding: 0 0.2em 0.2em;
  line-height: 1.0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1em;
  width: 24px;
  height: 24px;
}
#plan .merit ul li:nth-child(1) .title-2 span {
  background: #9900b5;
}
#plan .merit ul li:nth-child(2) .title-2 span {
  background: #f20808;
}
#plan .merit ul li:nth-child(3) .title-2 span {
  background: #3f6346
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #plan .merit .layout-flex-2 > * {
    width: 100%;
  }
  #plan .merit ul li ~ li {
    margin-top: 20px;
  }
  #plan .merit ul li .title-2 {
    font-size: 1.8rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 選べる2つの法人プラン
/* ------------------------------------------------------------------------------------------------- */

#plan .choice {}

#plan .choice ul.layout-flex-2 {
  margin-top: 20px;
}

#plan .choice ul.layout-flex-2 li {}

#plan .choice ul.layout-flex-2 li .title-2 {
  text-align: center;
  font-size: 2.0rem;
  font-weight: bold;
}
#plan .choice ul.layout-flex-2 li .content {
  min-height: 200px;
}

#plan .choice ul.layout-flex-2 li .text {}

#plan .choice ul.layout-flex-2 li .detail {
  background: #fff;
  padding: 20px;
  margin-top: 20px;
}
#plan .choice ul.layout-flex-2 li .detail ul {
  margin-top: 0.5em;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #plan .choice ul.layout-flex-2 li .title-2 {
    font-size: 1.8rem;
  }
  #plan .choice ul.layout-flex-2 li .content {
    min-height: auto;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 料金イメージ（法人全額負担プランの場合）
/* ------------------------------------------------------------------------------------------------- */

#plan .guide {}

#plan .guide .inner {
  margin-top: 40px;
  margin-bottom: 0;
}

#plan .guide table.data {
  border-top: 0;
}
#plan .guide table.data tr:last-child td {
  border-bottom: 0;
}

#plan .guide table.data th,
#plan .guide table.data td {
  text-align: center;
}
#plan .guide table.data th {
  padding: 1em 0.5em;
}

#plan .guide table.data tr th:nth-child(2) {
  background: #fff;
}

#plan .guide table.data tr th:first-child,
#plan .guide table.data tr th:last-child,
#plan .guide table.data tr td:first-child,
#plan .guide table.data tr td:last-child {
  background: #eeeeee;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #plan .guide .inner {
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * LUXE CLUB会員ランクをベースにした法人カスタマイズ
/* ------------------------------------------------------------------------------------------------- */

#plan .customize {}

#plan .customize .inner {
  margin-top: 40px;
  margin-bottom: 0;
}

#plan .customize .layout-flex-3 {
  margin-top: 20px;
}
#plan .customize .layout-flex-3 > * {
  width: 30%;
  padding: 0;
}

#plan .customize .layout-flex-3 li {}

#plan .customize .layout-flex-3 li .detail {
  margin-top: 30px;
}
#plan .customize .layout-flex-3 li .title-1 {
  font-size: 2.4rem;
  text-align: center;
  display: block;
  margin-top: 0;
  line-height: 1.4;
  padding: 0;
}
#plan .customize .layout-flex-3 li .title-1::before {
  display: none;
}

#plan .customize .layout-flex-3 li .color-1 {
  display: block;
  text-align: center;
  margin: 0 auto;
}
#plan .customize .layout-flex-3 li span {
  color: #fff;
  font-size: 1.2rem;
  font-family: "Prata", serif;
  padding: 0.2em;
  display: inline-block;
  line-height: 1.4;
  min-width: 110px;
}
#plan .customize .layout-flex-3 li:nth-child(1) span {
  background: #9900b5;
}
#plan .customize .layout-flex-3 li:nth-child(2) span {
  background: #f20808;
}
#plan .customize .layout-flex-3 li:nth-child(3) span {
  background: #3f6346;
}

#plan .customize .layout-flex-3 + .text {
  margin-top: 40px;
}


/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #plan .customize .inner {
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0;
  }
  #plan .customize .layout-flex-3 > * {
    width: 100%;
  }
  #plan .customize .layout-flex-3 li ~ li {
    margin-top: 40px;
  }
  #plan .customize .layout-flex-3 li .detail {
    margin-top: 0.5em;
  }
  #plan .customize .layout-flex-3 li .title-1 {
    font-size: 2.2rem;
  }
}


/* ----------------------------------------------------------------------------------------------------
   * 導入までの流れ
/* ------------------------------------------------------------------------------------------------- */

#plan .flow {}

#plan .flow .inner {
  margin-top: 40px;
  margin-bottom: 0;
}

#plan .flow .flow-list {}
#plan .flow .flow-list .item {
  position: relative;
  min-height: 120px;
}
#plan .flow .flow-list .item:nth-child(4) {
  min-height: 100%;
}
#plan .flow .flow-list .item ~ .item {
  margin-top: 0;
}

#plan .flow .flow-list .item .title-2 {
  position: relative;
  max-width: 270px;
  width: 17em;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  font-size: 2.0rem;
  line-height: 1.4;
}
#plan .flow .flow-list .item::before {
  content: "";
  display: block;
  background: #cccccc;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 11px;
  margin-top: 8px;
}
#plan .flow .flow-list .item:nth-child(4)::before {
  display: none;
}

#plan .flow .flow-list .item .title-2 span {
  color: #fff;
  font-size: 1.5rem;
  padding: 0 0.2em 0.2em;
  line-height: 1.0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1em;
  width: 24px;
  height: 24px;
}
#plan .flow .flow-list .item:nth-child(1) .title-2 span {
  background: #9900b5;
}
#plan .flow .flow-list .item:nth-child(2) .title-2 span {
  background: #f20808;
}
#plan .flow .flow-list .item:nth-child(3) .title-2 span {
  background: #3f6346
}
#plan .flow .flow-list .item:nth-child(4) .title-2 span {
  background: #000000;
}

#plan .flow .flow-list .item .text-1 {
  margin-top: 0;
  width: 70%;
}

#plan .flow .flow-list .item .meta.layout-2 {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 60px;
}
#plan .flow .flow-list .item .meta.layout-2 .js-tel {
  font-size: 2.5rem;
}
#plan .flow .flow-list .item .meta.layout-2 .btn {
  margin-left: 2em;
}

#plan .flow .flow-list .regarding {
  margin-top: 40px;
  border: 1px solid #cccccc;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#plan .flow .flow-list .regarding p {
  margin-top: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {
  /*ブラウザの幅が736px以下の時*/
  #plan .flow .flow-list .item ~ .item {
    margin-top: 0;
    padding-top: 40px;
  }
  #plan .flow .flow-list .item .title-2 {
    font-size: 1.8rem;
  }
  
  #plan .flow .flow-list .item::before {
    content: "";
    display: block;
    background: #cccccc;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 11px;
    margin-top: 8px;
  }
  #plan .flow .flow-list .item:nth-child(3)::before {
    height: 125%;
}

  #plan .flow .flow-list .item .text-1 {
    margin-top: 1em;
    margin-left: 2.5em;
    width: auto;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #plan .flow .inner {
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0;
  }
  #plan .flow .flow-list .item .meta.layout-2 {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
  }
  #plan .flow .flow-list .item .meta.layout-2 .btn {
    margin-left: 0;
    margin-top: 1em;
  }
  
  #plan .flow .flow-list .regarding {
    margin-top: 30px;
    display: block;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 導入企業様の声
/* ------------------------------------------------------------------------------------------------- */

#plan .voice {}

#plan .voice ul.layout-flex-3 {
  margin-top: 20px;
}

#plan .voice ul.layout-flex-3 li {
  position: relative;
  background: #fff;
  padding: 20px;
}
#plan .voice ul.layout-flex-3 li::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 20px 12px 0 12px;
}

#plan .voice ul.layout-flex-3 li .title-2 {
  font-size: 1.8rem;
}
#plan .voice ul.layout-flex-3 li .text-1 {}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:800px) {
  /*ブラウザの幅が736px以下の時*/
  #plan .voice ul.layout-flex-3 {
    margin-top: 20px;
    display: block;
  }
  #plan .voice ul.layout-flex-3 li {
    position: relative;
    background: #fff;
    padding: 20px;
    width: 100%;
  }
  #plan .voice ul.layout-flex-3 li ~ li {
    margin-top: 50px;
  }
  #plan .voice ul.layout-flex-3 li .title-2 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * よくあるご質問（FAQ）
/* ------------------------------------------------------------------------------------------------- */

#plan .faq {}

#plan .faq .inner {
  margin-top: 40px;
  margin-bottom: 0;
}
#plan .faq .inner .layout-2 {
  align-items: center;
}
#plan .faq .inner .layout-2 .text {
  width: 70%;
}
#plan .faq .inner .layout-2 .btn {
  margin-top: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  #plan .faq .inner {
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0;
  }
  #plan .faq .inner .layout-2 .text {
    width: 100%;
  }
  #plan .faq .inner .layout-2 .btn {
    margin-top: 1em;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 法人プランに関するお問い合わせ
/* ------------------------------------------------------------------------------------------------- */

#plan .inquiry {}

#plan .inquiry .inner {
  margin-top: 40px;
  margin-bottom: 0;
}

#plan .inquiry .layout-flex-2 {
  justify-content: space-between;
  text-align: center;
  align-items: center;
  max-width: 840px;
}
#plan .inquiry .layout-flex-2 li {
  background: #fff;
  padding: 30px;
  height: 200px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:900px) {
  /*ブラウザの幅が736px以下の時*/
  #plan .inquiry .inner {
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0;
  }
  #plan .inquiry .layout-flex-2 {}
  #plan .inquiry .layout-flex-2 > * {
    width: 100%;
    margin: 0 2%;
  }
  #plan .inquiry .layout-flex-2 li ~ li {
    margin-top: 1em;
  }
  #plan .inquiry .layout-flex-2 li {
    padding: 20px;
    max-width: 100%;
    height: 100%;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * TEL / メール
/* ------------------------------------------------------------------------------------------------- */

#plan .inquiry .layout-flex-2 li .text-1 {
  font-size: 2.0rem;
}
#plan .inquiry .layout-flex-2 li .js-tel {
  color: var(--c-gold);
  font-size: 3.3rem;
  font-weight: bold;
  font-family: 'Prata',"Zen Old Mincho",'Noto Serif JP', serif;
  margin-top: 20px;
  display: block;
  line-height: 1.4;
}
#plan .inquiry .layout-flex-2 li .js-tel ruby rt {
  margin-bottom: 0.1em;
}

#plan .inquiry .layout-flex-2 li .js-tel small {
  font-size: 1.4rem;
}
#plan .inquiry .layout-flex-2 li .btn {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
#plan .inquiry .layout-flex-2 li .btn span {
  position: relative;
  padding-left: 2.5em;
  display: inline-block;
  font-size: 1.6rem;
}
#plan .inquiry .layout-flex-2 li .btn span::before {
  content: "";
  display: block;
  background: url("../../_images/_common/contact-icon.png") no-repeat;
  width: 30px;
  height: 19px;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 3px;
}
#plan .inquiry .layout-flex-2 li .btn::after {
  display: none;
}
#plan .inquiry .layout-flex-2 li .btn:hover {
  opacity: .7;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #plan .inquiry .layout-flex-2 li .text-1 {
    font-size: 1.8rem;
  }
  #plan .inquiry .layout-flex-2 li:first-child .text-1 a {
    color: var(--c-gold);
  }
  #plan .inquiry .layout-flex-2 li .js-tel small {
    font-size: 1.4rem;
    display: block;
  }
}







