

/* ----------------------------------------------------------
下層ページ共通
------------------------------------------------------------- */
/* MV */
.mv{
  position: relative;
  margin-top: 80px;
  display: block;
}
.mv_bkimg{
  width: 100%;
  height: auto;
}
.mv_ttl{
  position: absolute;
  top: calc(50% - 2em);
  left: 10%;
  font-size: clamp(28px, 1.25rem + 2.5vw, 56px);
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.mv_ttl .en{
  text-transform: uppercase;
  font-size: 0.7em;
}
@media screen and (max-width:767px) {
    .mv{
        margin-top: 60px;
    }
    .mv_ttl{
      left: 10%;
    }
}

/* インナー幅 */
.inner{
  max-width: 1120px;
  width: 90%;
margin-inline:auto;
}

/* セクションタイトル */
.cmn_ttl{
    color: #fff;
    font-size: 48px;
    text-align: center;
    letter-spacing: 0.2em;
    margin-bottom: 80px;
     word-break: keep-all;
     overflow-wrap: break-word;
}
@media screen and (max-width:999px) {
  .cmn_ttl{
    font-size: clamp(1.5rem, 0.7931rem + 3.5346vw, 3rem);
    margin-bottom: 40px;
  }
}

/* ----------------------------------------------------------
BUSINESSページ
------------------------------------------------------------- */
.business_sec{
    padding: 140px 0;
}

.busi_service01{
    background-color: #840517;
}
.busi_service02{
    background-color: #03296a;
}

.business_sec .contents{
    text-align: center;
    color: #fff;
}
.business_sec .cmn_ttl{
    margin-bottom: 20px;
}
.business_sec .cmn_ttl .en{
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 24px;
}

.busi_txt{
    font-size: 32px;
    letter-spacing: 0.2em;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.busi_img{
  max-width: 600px;
  width: 54%;
  margin: 80px auto;
}

.business_sec .cmn_btn{
    border: 1px solid #111;
    color: #111;
}
.business_sec .cmn_btn::after{
    border-right: 2px solid #111;
  border-bottom: 1px solid #111;
}
@media screen and (max-width:999px) {
  .busi_txt{
    font-size: clamp(1rem, 0.5287rem + 2.3564vw, 2rem);
  }
  .busi_img{
    width: 60%;
    margin: 70px auto 60px;
  }
}
@media screen and (max-width:768px) {
  .busi_img{
    width: 90%;
  }
}
@media screen and (max-width:599px) {
  .business_sec {
    padding: 80px 0;
  }
  .busi_img{
    margin: 40px auto 30px;
  }
}

/* ----------------------------------------------------------
SERVICE01ページ
------------------------------------------------------------- */
.service01_sec {
    background-color: #840517;
    padding: 70px 0;
}
@media screen and (max-width:599px) {
  .service01_sec{
    padding: 50px 0;
  }
}

/* -------ser01_featureセクション--------------- */
.ser01_feature{
    padding-top: 240px;
}
.ser01_feature_cont {
    position: relative;
    padding: 70px 0 20px;
}

/* 背景色を左側だけ画面端まで伸ばす */
.ser01_feature_cont::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #fff;
    z-index: 0;

    /* inner の右端まで */
    width: calc(50% + 45vw); /* 45vw = 90%の半分 */
    max-width: calc(50% + 560px);
}

/* inner のスタイル（中央寄せ・幅制限） */
.ser01_feature_cont .inner {
    position: relative;
    z-index: 1;
}
.ser01_feature_item{
    margin-bottom: 50px;
}
.ser01_feature_itemTtl{
    color: #840517;
    font-size: 32px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.ser01_feature_itemTtl::before{
content: "";
width: 1em;
height: 1em;
background-image: url(../img/ser01_feature_icon.png);
background-size: contain;
background-repeat: no-repeat;
margin-right: 0.2em;
}
.ser01_feature_itemTxt{
    font-size: 24px;
    font-weight: 500;
}
.ser01_feature_img{
   position: absolute;
      top: -10em;
      right: 0;
      width: 44%;
}
@media screen and (max-width:999px) {
  .ser01_feature_itemTtl{
    font-size: 24px;
  }
  .ser01_feature_itemTxt{
    font-size: clamp(1rem, 0.8822rem + 0.5891vw, 1.25rem);
  }
  .ser01_feature_img{
    top: -10em;
    width: 400px;
  }
}
@media screen and (max-width:767px) {
  .ser01_feature_img{
    top: -13em;
  }
}
@media screen and (max-width:599px) {
  .ser01_feature_img{
    top: -12em;
    width: 360px;
  }
  .ser01_feature_cont::before {
    width: 100%;
  }
  .ser01_feature_itemTtl{
    font-size: 20px;
  }
}
@media screen and (max-width:420px) {
  .ser01_feature{
    padding-top: 180px;
}
  .ser01_feature_cont {
    padding-top: 90px;
}
.ser01_feature_img{
  top: -7em;
  width: 280px;
}
}

/* -------ser01_usageセクション--------------- */
.ser01_usageList_wrap{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3%;
  }
  .ser01_usageList{
    background-color: #fff;
    padding: 30px 10px;
    text-align: center;
  }
  .ser01_usageList_ttl{
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.2em;
     word-break: keep-all;
     overflow-wrap: break-word;
  }
  .ser01_usageList_ttl .nm{
    color: #840517;
    text-transform: uppercase;
  }
  .ser01_usageList_img{
    display: block;
    width: 40%;
  margin: 2em auto;
  }
  .ser01_usageList_txt{
    letter-spacing: 0.125em;
    line-height: 1.8;
     word-break: keep-all;
     overflow-wrap: break-word;
  }
  .ser01_usageList_txt.small{
    font-size: 12px;
    line-height: 1.6;
    margin-top: 0.6em;
  }
  @media screen and (max-width:999px) {
    .ser01_usageList_wrap{
      grid-template-columns: 1fr;
      justify-items: center;
      gap: 30px;
    }
    .ser01_usageList{
      width: 50%;
    }
    .ser01_usageList_img{
      width: 30%;
    }
  }
  @media screen and (max-width:767px) {
    .ser01_usageList{
      width: 60%;
    }
  }
  @media screen and (max-width:599px) {
    .ser01_usageList{
      width: 80%;
    }
    .ser01_usageList_img{
      width: 40%;
    }
  }

  /* -------ser01_exampleセクション--------------- */
  .ser01_example{
    padding-bottom: 140px;
  }
  .ser01_exampleList_wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .ser01_exampleList{
    position: relative;
  }
  .ser01_exampleList_ttl{
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 0.06em;
    text-shadow: 0 4px 4px rgba(94, 0, 13, 0.5);
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
  }
  .ser01_exampleList_img{
    width: 100%;
  }
  .ser01_usageList_txt{
     word-break: keep-all;
     overflow-wrap: break-word;
  }
  @media screen and (max-width:1100px) {
    .ser01_exampleList_ttl{
      font-size: clamp(1rem, -0.1956rem + 3.1936vw, 2rem);
    }
  }
@media screen and (max-width:599px) {
  .ser01_exampleList_wrap{
   grid-template-columns: 1fr;
  }
  .ser01_exampleList_ttl{
    font-size: clamp(1.125rem, 0.1214rem + 5.0179vw, 2rem);
  }
}

  /* ----------------------------------------------------------
SERVICE02ページ
------------------------------------------------------------- */
.service02_sec {
    background-color: #03296a;
    padding: 70px 0;
}
/* -------ser02_keyセクション--------------- */
.ser02_key{
    padding-top: 100px;
}
  .ser02_key .cmn_ttl{
    margin-bottom: 0;
  }
.ser02_sec_subtxt{
    color: #fff;
    font-size: 24px;
    /*font-weight: bold;*/
    line-height: 2;
    letter-spacing: 0.41em;
    margin-top: 1em;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
}
@media screen and (max-width:999px) {
  .ser02_sec_subtxt{
    font-size: clamp(1.125rem, 0.9483rem + 0.8837vw, 1.5rem);
    letter-spacing: 0.2em;
  }
}

/* -------ser02_detailセクション--------------- */
.ser02_detail .inner{
    text-align: center;
  }
  .ser02_detail_upper, .ser02_detail_lower{
    display: flex;
    justify-content: center;
  }
  .ser02_detail_lower{
    gap: 3em;
  }
  .ser02_detail_item{
    background-image: url(../img/ser02_detail.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20em;
    height: 20em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2em;
  }
  .ser02_detail_itemTtl{
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: #03296a;
  }
  .ser02_detail_itemTxt{
    font-weight: 500;
    letter-spacing: 0.125em;
    margin-top: 1em;
     word-break: keep-all;
     overflow-wrap: break-word;
  }
  @media screen and (max-width:999px) {
    .ser02_detail_item{
      width: 15em;
      height: 15em;
    }
    .ser02_detail_itemTtl{
      font-size: 20px;
    }
    .ser02_detail_itemTxt{
      margin-top: 0.6em;
    }
  }
  @media screen and (max-width:768px) {
    .ser02_detail_item{
      margin-inline:auto;
    }
    .ser02_detail_upper{
      margin-bottom: 2em;
    }
    .ser02_detail_lower{
      flex-direction: column;
      gap: 2em;
    }
  }
  @media screen and (max-width:420px) {
    /*.ser02_detail_item{
      width: 13em;
      height: 13em;
    }*/
    .ser02_detail_itemTtl{
      font-size: 18px;
    }
    .ser02_detail_itemTxt{
      margin-top: 0.1em;
    }
  }

  /* -------ser02_featureセクション--------------- */
  .ser02_feature{
    padding-top: 140px;
    padding-bottom: 140px;
}
.ser02_feature .cmn_ttl{
  margin-bottom: 0;
}
.ser02_featureList_wrap{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3%;
    margin-top: 40px;
  }
  .ser02_featureList{
    padding: 30px 4px;
    text-align: center;
    color: #fff;
  }
  .ser02_featureList_ttl{
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.2em;
    line-height: 2;
     word-break: keep-all;
     overflow-wrap: break-word;
     margin-bottom: 0.67em;
     height: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .ser02_featureList_img{
    display: block;
    width: 50%;
  margin: 2em auto;
  }
  .ser02_featureList_txt{
    letter-spacing: 0.3em;
    line-height: 1.75;
    text-align: left;
  }
  @media screen and (max-width:999px) {
    .ser02_featureList_wrap{
      gap: 2%;
    }
    .ser02_featureList_ttl{
      font-size: 18px;
    }
  }
  @media screen and (max-width:800px) {
    .ser02_feature{
      padding-top: 100px;
      padding-bottom: 100px;
  }
    .ser02_featureList_wrap{
      grid-template-columns: 1fr;
      justify-items: center;
      gap: 0;
    }
    .ser02_featureList{
      width: 50%;
    }
    .ser02_featureList_ttl{
      font-size: 24px;
      height: auto;
    }
  }
  @media screen and (max-width:768px) {
    .ser02_featureList{
      width: 60%;
    }
  }
  @media screen and (max-width:599px) {
    .ser02_feature{
      padding-top: 60px;
      padding-bottom: 40px;
  }
  .ser02_featureList_wrap{
    margin-top: 0;
  }
    .ser02_featureList{
      width: 80%;
      padding-bottom: 0;
    }
    .ser02_featureList_ttl{
      font-size: 20px;
    }
  }

 /* -------ser02_exampleセクション--------------- */
.ser02_exampleList_wrap{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3%;
}
.ser02_exampleList{
position: relative;
}
.ser02_exampleList_ttl{
  width: 100%;
  text-align: center;
   position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: clamp(1.25rem, 0.3125rem + 1.875vw, 2rem);
      font-weight: 500;
      text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
       word-break: keep-all;
       overflow-wrap: break-word;
}
.ser02_exampleList_img{
  width: 100%;
}
@media screen and (max-width:800px) {
  .ser02_exampleList_wrap{
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .ser02_exampleList{
    width: 50%;
  }
  .ser02_exampleList_ttl{
    font-size: 30px;
  }
}
@media screen and (max-width:768px) {
  .ser02_exampleList{
    width: 60%;
  }
}
@media screen and (max-width:599px) {
  .ser02_exampleList{
    width: 80%;
  }
  .ser02_exampleList_ttl{
    font-size: clamp(1.25rem, 0.5332rem + 3.5842vw, 1.875rem);
  }
}

/* -------ser02_usageセクション--------------- */
.ser02_usage{
    padding-bottom: 140px;
}
.ser02_usageList_wrap{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3%;
  }
  .ser02_usageList{
    background-color: #fff;
    padding: 30px 10px;
    text-align: center;
  }
  .ser02_usageList_ttl{
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.2em;
  }
  .ser02_usageList_ttl .nm{
    color: #03296a;
    text-transform: uppercase;
  }
  .ser02_usageList_img{
    display: block;
    width: 40%;
  margin: 2em auto;
  }
  .ser02_usageList_txt{
    letter-spacing: 0.125em;
    line-height: 1.8;
     word-break: keep-all;
     overflow-wrap: break-word;
  }
  .ser02_usageList_txt.small{
    font-size: 12px;
    line-height: 1.6;
    margin-top: 0.6em;
  }
  @media screen and (max-width:999px) {
    .ser02_usageList_wrap{
      gap: 2%;
    }
    .ser02_usageList_ttl{
      font-size: 18px;
    }
  }
  @media screen and (max-width:800px) {
    .ser02_usageList_wrap{
      grid-template-columns: 1fr;
      justify-items: center;
      gap: 30px;
    }
    .ser02_usageList{
      width: 50%;
    }
  }
  @media screen and (max-width:768px) {
    .reason{
      padding: 60px 0 0;
    }
    .reason .full{
      padding: 40px 0 60px;
      margin-top: 40px;
    }
    .reason .reason_contents h3{
      font-size: 20px;
      margin-bottom: 20px;
    }
    .ser02_usageList{
      width: 60%;
    }
  }
  @media screen and (max-width:599px) {
    .ser02_usageList{
      width: 80%;
    }
  }


/* ----------------------------------------------------------
RECRUITページ
------------------------------------------------------------- */
.recruit_sec{
  padding: 70px 0;
}
/*RECRUITページ  セクションタイトル */
.recruit_sec_ttl{
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.25em;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}
.recruit_sec_ttl::after{
  content: "";
  flex: 1;
  height: 1px;
  background-color: #840517;
  margin-left: 0.8em;
  align-self: center;
}
.recruit_sec_subttl{
  color: #840517;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.21em;
   word-break: keep-all;
   overflow-wrap: break-word;
}
@media screen and (max-width:599px) {
  .recruit_secList_txtWrap {
    display: flex;
    flex-direction: column;
    /*margin-bottom: 20px;*/
  }
}
/*RECRUITページ  リスト共通 */
.recruit_secList_wrap{
  margin-top: 2em;
}
.recruit_secList_ttl{
  color: #03296a;
  font-size: 20px;
  font-weight: bold;
letter-spacing: 0.25em;
 word-break: keep-all;
 overflow-wrap: break-word;
}
 .recruit_secList_txt{
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
 }
 .recruit_secList_txtWrap{
  display: flex;
 }
 .recruit_secList_txt.left{
  width: 7em;
  margin-bottom: 0;
 }
 @media screen and (max-width:767px) {
   .recruit_sec_ttl{
     font-size: clamp(28px, 1.2131rem + 2.6846vw, 40px);
   }
 }

/* -------recruit_keyセクション--------------- */
.recruit_key{
  padding-top: 140px;
}
.recruit_key .inner{
  text-align: center;
}
.recruit_key_ttl{
  font-size: 48px;
  position: relative;
  display: inline-block;
  padding: 0 1em;
  margin-bottom: 1em;
  letter-spacing: 5px;
}
.recruit_key_ttl::before, .recruit_key_ttl::after{
  content: "";
  display: inline-block;
  width: 75px;
  height: 75px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
}
.recruit_key_ttl::before{
  background-image: url(../img/about01.png);
  top: -20px;
  left: -1em;
}
.recruit_key_ttl::after{
  background-image: url(../img/about02.png);
  bottom: -20px;
  right: -1em;
}
.recruit_key_txt{
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.3em;
  line-height: 2;
   word-break: keep-all;
   overflow-wrap: break-word;
}
@media screen and (max-width:767px) {
  .recruit_key{
    padding-top: 100px;
    padding-bottom: 0;
  }
  .recruit_key_ttl{
    font-size: clamp(22px, 0.2143rem + 5.8036vw, 48px);
  }
  .recruit_key_ttl::before, .recruit_key_ttl::after{
    width: 1.6em;
    height: 1.6em;
  }
  .recruit_key_txt{
    font-size: clamp(16px, 0.6429rem + 1.7857vw, 24px);
    letter-spacing: 0.32em;
  }
}

/* -------recruit_typeセクション--------------- */
.recruit_type{
  overflow-x: hidden;
  position: relative;
}
.recruit_type_txtbox_bg{
  width: 90%;
  background-color: #f9f9f9;
  padding-top: 80px;
  padding-bottom: 140px;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}
.recruit_type_txtbox{
  width: 90%;
}
.recruit_type_txtWrap{
  margin-top: 48px;
  width: 80%;
}
.recruit_type_txt{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}
.recruit_type_img{
  width: 40%;
   position: absolute;
      bottom: 0;
      right: 0;
}
@media screen and (max-width:1500px) {
  .recruit_type_txtbox_bg{
    padding-bottom: 70px;
  }
  .recruit_type_txtWrap{
    width: 70%;
  }
}
@media screen and (max-width:999px) {
  .recruit_type{
    padding-bottom: 200px;
  }
  .recruit_type_txtbox_bg{
    padding-bottom: 260px;
  }
  .recruit_type_txtWrap{
    width: 100%;
  }
  .recruit_type_img{
    width: 670px;
  }
}
@media screen and (max-width:767px) {
  .recruit_type{
    padding-bottom: 80px;
  }
  .recruit_type_txtbox_bg{
    padding-top: 60px;
    width: 95%;
  }
  .recruit_type_txtbox{
    width: 95%;
  }
  .recruit_type_txt{
    font-size: clamp(16px, 0.821rem + 0.8949vw, 20px);
  }
  .recruit_type_img{
    width: 530px;
  }
}
@media screen and (max-width:599px) {
  .recruit_type_txtbox_bg{
    width: 100%;
    padding-bottom: 160px;
  }
  .recruit_type_img{
    width: 380px;
  }
}
@media screen and (max-width:420px) {
  .recruit_type_txtbox_bg{
    padding-bottom: 100px;
  }
  .recruit_type_img{
    width: 280px;
  }
}
/* -------recruit_careerupセクション--------------- */
.recruit_careerup_subtxt{
  font-weight: bold;
  letter-spacing: 0.31em;
}
.recruit_careerup .recruit_secList{
  margin-bottom: 40px;
}
@media screen and (max-width:767px) {
    .recruit_careerup{
      padding-bottom: 0;
    }
}

/* -------recruit_benefitセクション--------------- */
.recruit_benefit .recruit_secList{
  margin-bottom: 20px;
}

/* -------recruit_underimg--------------- */
.recruit_underimg{
  width: 100%;
}

/* ----------------------------------------------------------
MESSAGEページ
------------------------------------------------------------- */
.message_sec{
  background-color: #f9f9f9;
}

/* -------message_keyセクション--------------- */
.message_key{
  padding: 140px 0 60px;
}
.message_key .inner{
  max-width: 800px;
  width: 90%;
  margin-inline:auto;
}
.message_key_ttl_wrap{
  border-radius: 18px;
  background-color: #fff;
  box-shadow: 6px 4px 0 0 rgba(193, 193, 193, 0.25) ;
  padding: 40px 20px;
  position: relative;
  display: flex;
  justify-content: center;
}
.message_key_ttl_wrap::before, .message_key_ttl_wrap::after{
  content: "";
  display: inline-block;
  width: 75px;
  height: 75px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
}
.message_key_ttl_wrap::before{
  background-image: url(../img/about01.png);
  top: -40px;
  left: 2%;
}
.message_key_ttl_wrap::after{
  background-image: url(../img/about02.png);
  bottom: -40px;
  right: 2%;
}
.message_key_ttl{
  word-break: keep-all;
  overflow-wrap: break-word;
  font-size: 36px;
  text-align: center;
  letter-spacing: 5px;
}
@media screen and (max-width:767px) {
  .message_key{
    padding-top: 100px;
  }
  .message_key_ttl_wrap::before, .message_key_ttl_wrap::after{
      width: 60px;
      height: 60px;
  }
  .message_key_ttl_wrap::before{
      top: -30px;
  }
  .message_key_ttl_wrap::after{
      bottom: -30px;
  }
  .message_key_ttl{
      font-size: clamp(20px, 0.5341rem + 3.5794vw, 36px);
  }
}
@media screen and (max-width:599px) {
  .recruit_key_ttl {
      letter-spacing: 0;
  }
  .message_key_ttl_wrap::before, .message_key_ttl_wrap::after{
      width: 50px;
      height: 50px;
  }
}

/* -------message_contentセクション--------------- */
.message_content{
  padding: 60px 0 140px;
}
.message_content .inner{
  max-width: 1000px;
  width: 90%;
  margin-inline:auto;
}
.message_content_txt{
  font-size: 24px;
  font-weight: 500;
  line-height: 1.88;
  letter-spacing: 0.08em;
}
.message_content_ceoWrap{
  font-size: 20px;
  font-weight: bold;
  margin-top: 0.5em;
  display: flex;
  justify-content: flex-end;
align-items: flex-end;
  gap: 1em;
}
.message_content_ceoWrap::before {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #111;
  margin-right: 0.8em;
  transform: translateY(-1em);
}
.message_content_name{
  font-size: 1.6em;
}
@media screen and (max-width:767px) {
  .message_content{
    padding: 40px 0 100px;
  }
  .message_content_txt{
    font-size: clamp(16px, 0.6421rem + 1.7897vw, 24px);
  }
  .message_content_ceoWrap{
    font-size: clamp(14px, 0.6065rem + 1.3423vw, 20px);
  }
}

/*----------------------------------------------------- */
/*  PRIVACY POLICYページ          */
/*----------------------------------------------------- */
.privacy_sec {
  padding: 140px 0 60px;
}
.privacy_sec .inner{
  max-width: 800px;
  width: 90%;
  margin-inline:auto;
}
.privacy_sec .mt80 {
  margin-bottom: 40px;
}
@media screen and (max-width:767px) {
  .privacy_sec {
    padding-top: 80px;
  }
}

/*----------------------------------------------------- */
/*  問い合わせページ          */
/*----------------------------------------------------- */
.contact_sec {
  padding: 140px 0 60px;
}
.contact_sec .inner{
  max-width: 500px;
  width: 90%;
  margin-inline:auto;
}
.contact_sec .mt80 {
  margin-bottom: 40px;
}
.contact_sec table {
  width: 100%;
}
.form-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-list li {
  margin-bottom: 1.5em;
}

.form-list label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: bold;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  max-width: 500px;
  padding: 0.5em;
  border: 1px solid #ccc;
  font-size: 1em;
}

textarea {
  height: 120px;
}
.contact_sec .cmn_btn_wrap{
  margin: 40px 0;
}
.contact_sec .cmn_btn{
  display:inline-block;
  width: 400px;
  cursor:pointer;
  position: relative;
  text-decoration: none;
  font-size: 36px;
  padding: 20px;
  text-transform: uppercase;
  color: #840517;
  border: 1px solid #840517;
  background-color: #fff;
}
.contact_sec .cmn_btn::after{
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 15px);
  left: 70%;
  width: 40%;
  height: 15px;
  border: none;
  border-right: 2px solid #840517;
  border-bottom: 1px solid #840517;
  transform: skew(45deg);
  transition: .3s;
}
.contact_sec .cmn_btn:hover::after {
  position: absolute;
  top: calc(50% - 15px);
  left: 70%;
  width: 50%;
  height: 15px;
}
.wred {
  color: #840517;
}
@media screen and (max-width:767px) {
    .contact_sec {
        padding-top: 80px;
    }
    .contact_sec .cmn_btn{
        width: 280px;
        padding: 10px;
        font-size: 32px;
    }
}
@media screen and (max-width:599px) {
    .contact_sec .cmn_btn{
        width: 150px;
        font-size: 24px;
    }
    .contact_sec .cmn_btn::after{
        left: 80%;
        top: calc(50% - 10px);
        height: 10px;
    }
    .contact_sec .cmn_btn:hover::after{
        left: 80%;
        width: 50%;
    }
    .contact_sec .cmn_btn_wrap{
      margin-top: 40px;
    }
}
/*----------------------------------------------------- */
/*  問い合わせ完了ページ          */
/*----------------------------------------------------- */
.contact_sec.send .inner {
  max-width: 800px;
  width: 90%;
  text-align: center;
  margin-inline:auto;
}
.contact_send_sec_ttl {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_send_text {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 1em;
}
@media screen and (max-width:599px) {
  .contact_send_sec_ttl {
    font-size: 20px;
  }
  .contact_send_text {
      font-size: 16px;
  }
}
