@charset "UTF-8";
/* faq.css */

@media screen and (min-width: 320px) {
  /* スマホ用レイアウト 320px以上の範囲に収めるデザインはこの中に記述 */

  .br-pc,
  .tb_only {
    display: none;
  }
  /*==============================================================
  　　FAQ
  ==============================================================*/
  .faq {
    margin: 80px 0 70px;
  }
  .sec-title {
    font-weight: 600;
    text-align: right;
    margin: 18px 25px 0 0;
  }

  .sec-title .title {
    font-size: 24px;
    letter-spacing: 0.42em;
    margin-right: -10px;
    margin-bottom: 9px;
  }

  .sec-title .title-jp {
    font-size: 10px;
    letter-spacing: 0.17em;
  }

  .faq-img {
    width: calc(100% - 25px);
    height: 215px;
    padding-right: 25px;
    overflow: hidden;
  }

  .faq-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.24);
    object-position: 0% 20%;
    padding-left: 15px;
    padding-top: 5px;
  }

  /* ==================== タイトル（中央） ================== */
  .title-02 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 45px;
  }

  .title-02 .title {
    font-size: 24px;
    letter-spacing: 0.15em;
    margin-left: 8px;
  }

  .title-02 .title-jp {
    font-size: 10px;
    letter-spacing: 0.17em;
    margin-left: 3px;
  }

  .title-02 .title-line {
    width: 14px;
    height: 1px;
    background-color: #212121;
    margin: 12px auto;
  }

  /*==============================================================
  　　　FAQ-BOX
  ==============================================================*/

  .faq-toggle {
    display: none;
  }

  .faq-main {
    position: relative;
    font-optical-sizing: auto;
    /* margin: 0 24px 45px; */
    margin: 0 24px 70px;
  }

  .faq-box {
    font-weight: 600;
    letter-spacing: 0.15em;
    border-top: solid 0.5px #D9D9D9;
    font-size: 14px;
  }

  .faq-box.box-end {
    border-bottom: solid 0.5px #D9D9D9;
  }

  .faq-title {
    display: block;
    font-optical-sizing: auto;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px 5px 20px 12px;
    transition: opacity 0.3s;
  }

  .faq-box .title-text {
    letter-spacing: 0.15em;
    line-height: 1.8;
    margin-top: -3px;
    width: 255px;
  }

  .faq-box .con-text {
    line-height: 1.6;
    letter-spacing: 0.24em;
    font-size: 12px;
    width: 244px;
  }

  .text-Q {
    display: flex;
    position: relative;
  }

  .faq-box p span {
    margin-bottom: 10px;
    line-height: -10;
    font-size: 14px;
    margin-right: 12px;
  }

  .faq-box .faq-A p span {
    font-size: 12px;
    margin-left: 1.3px;
    margin-right: 14px;
  }

  .faq-content {
    max-height: 0;
    overflow: hidden;
  }

  .faq-content .faq-A {
    display: flex;
    padding: 0 5px 32px 12px;
  }

  .faq-content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
  }

  .faq-toggle:checked + .faq-title + .faq-content {
    max-height: 500px;
    transition: all 1.5s;
  }

  .faq-title {
    position: relative;
  }

  /* 開く前のアイコン */
  .faq-title::after {
    content: "";
    position: absolute;
    background-image: url(../img/icon-faq-open.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  /* 開いた後のアイコン（::beforeで上書き） */
  .faq-title::before {
    content: "";
    position: absolute;
    background-image: url(../img/icon-faq-close.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    top: 22px; /* 開いた後の位置に表示したい */
    right: 7px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  /* チェックが入ったらアイコンを切り替える */
  .faq-toggle:checked + .faq-title::after {
    opacity: 0;
  }

  .faq-toggle:checked + .faq-title::before {
    opacity: 1;
  }

}

@media screen and (min-width: 640px) {
  /* タブレット用レイアウト 640px以上の範囲に収めるデザインはこの中に記述 */

  .tb_only {
    display: block;
  }
  /*==============================================================
    　　TB_FAQ
  ==============================================================*/
  .faq {
    margin: 180px 0 80px;
  }

  .sec-title {
    margin: 35px 100px 0 0;
  }

  .sec-title .title {
    font-size: 40px;
    letter-spacing: 0.42em;
    margin-right: -18px;
    margin-bottom: 24px;
  }

  .sec-title .title-jp {
    font-size: 15px;
    letter-spacing: 0.17em;
  }

  .faq-img {
    width: calc(100%);
    height: 370px;
    padding-right: 100px;
  }

  .faq-img img {
    transform: scale(1);
    object-position: 0% 20%;
    padding-left: 0;
    padding-top: 0;
  }

  .faq-img img {
    object-position: 50% 53%;
  }

  /* ==================== タイトル（中央） ================== */
  .title-02 {
    margin-bottom: 60px;
  }

  .title-02 .title {
    font-size: 40px;
    margin-left: 12px;
    letter-spacing: 0.25em;
  }

  .title-02 .title-jp {
    font-size: 15px;
    margin-left: 3px;
  }

  .title-02 .title-line {
    width: 20px;
    margin: 30px auto;
  }

  /*==============================================================
  　　　TB_FAQ-BOX
  ==============================================================*/
  .faq-main {
    margin: 0 83px 120px;
  }

  .faq-box {
    font-size: 15px;
    letter-spacing: 0.15em;
  }

  .faq-title {
    padding: 21px;
  }

  .faq-box .title-text {
    width: auto;
  }

  .faq-box .con-text {
    font-size: 15px;
    line-height: 1.6;
    width: 480px;
    margin-top: -3px;
  }

  /* 回答欄_幅 */
  .faq-box.box-01 .con-text {
    width: 450px;
  }
  .faq-box.box-02 .con-text {
    width: 505px;
  }
  .faq-box.box-03 .con-text {
    width: 490px;
  }
  .faq-box.box-04 .con-text {
    width: 510px;
  }
  .faq-box.box-05 .con-text {
    width: 530px;
  }
  .faq-box.box-06 .con-text {
    width: 560px;
  }

  .faq-box p span {
    font-size: 15px;
    margin-right: 37px;
  }

  .faq-box .faq-A p span {
    font-size: 15px;
    margin-right: 37px;
  }

  .faq-title::after {
    width: 16px;
    height: 16px;
    right: 30px;
  }

  .faq-title::before {
    width: 30px;
    height: 30px;
    top: 15px;
    right: 23px;
  }

  .faq-content .faq-A {
    padding: 19px 0 40px 21px;
  }

}


@media screen and (min-width: 1024px) {
  /* パソコン用レイアウト 1024px以上の範囲に収めるデザインはこの中に記述 */

  .br-pc {
    display: block;
  }

  .tb_only {
    display: none;
  }
  /*==============================================================
    　　PC_FAQ
  ==============================================================*/
  .faq {
    margin: 180px 0 85px;
  }

  .sec-title {
    margin: 32px 100px 0 0;
  }

  .sec-title .title {
    font-size: 42px;
    letter-spacing: 0.42em;
    margin-right: -18px;
    margin-bottom: 16px;
  }

  .faq-img img {
    object-position: 0% 45%;
  }

  /* ==================== タイトル（中央） ================== */
  .title-02 {
    margin-bottom: 120px;
  }

  .title-02 .title {
    font-size: 42px;
  }

  .title-02 .title-line {
    margin: 20px auto;
  }


  /*==============================================================
  　　　PC_FAQ-BOX
  ==============================================================*/
  .faq-main {
    /* max-width: 1100px; */
    margin: 0 60px;
    margin-bottom: 120px;
  }

  .faq-box {
    letter-spacing: 0.3em;
  }

  .faq-title {
    padding: 31px 150px 31px 130px;
  }

  .faq-box .title-text {
    width: auto;
  }

  /* 回答欄_幅 */
  .faq-box.box-01 .con-text {
    width: 880px;
  }
  .faq-box.box-02 .con-text {
    width: 880px;
  }
  .faq-box.box-03 .con-text {
    width: 880px;
  }
  .faq-box.box-04 .con-text {
    width: 880px;
  }
  .faq-box.box-05 .con-text {
    width: 880px;
    font-size: 14px;
    line-height: 1.6;
  }
  .faq-box.box-06 .con-text {
    width: 880px;
  }

  .faq-title::after {
    width: 18px;
    height: 18px;
    right: 150px;
  }

  .faq-title::before {
    top: 24px;
    right: 18px;
  }

  .faq-content .faq-A {
    padding: 19px 5px 40px 130px;
  }

}

@media screen and (min-width: 1400px) {
  /* パソコン用レイアウト 1400px以上の範囲に収めるデザインはこの中に記述 */
  /*==============================================================
    　　PC_SYSTEM
  ==============================================================*/
  /* トップ画像 */
  .faq-img img {
    object-position: 0% 52%;
  }

  .faq-main {
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 120px;
  }

  /*==============================================================
    　　ホバーアニメーション
  ==============================================================*/
  /* ==================== FAQ ================== */
  .faq-title:hover {
    opacity: 0.6;
  }
}