@media screen and (max-width: 979px) {
  body {
    font-size: 16px;
    /* 14px; */
    line-height: 1.8;
    padding: 60px 0 0;
  }

  input[type="button"],
  input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
  }

  .br-sp {
    display: none;
  }

  /* ------------------------------------------------------------
    ヘッダー部分
------------------------------------------------------------ */
  header {
    background: #fff;
    width: 100%;
    height: 60px;
    /* スマホでは固定 */
    position: fixed;
    top: 0;
    z-index: 11;
  }

  header .inner {
    height: 40px;
    /* スマホでのヘッダー高さ */
    padding: 10px 20px;
    /* 左右のパディング調整 */
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  header .logo {
    line-height: 1.0;
    margin: 0;
  }

  header .logo a {
    display: inline-block;
  }

  header .logo a img {
    width: 170px;
    height: 27px;
    /* !important は削除したまま */
  }

  /* header .openbtn のスタイルは前回のPC用とスマホ用で共通のスタイルでした */
  /* スマホでのハンバーガーボタンを表示 */
  header .openbtn {
    display: block;
    /* これが重要 */
    position: relative;
    /* fixedからrelativeに変更。親要素のinner内で配置 */
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: none;
    /* background: #fff; から変更 */
    border: none;
    /* button要素のデフォルトスタイルをリセット */
    outline: none;
    /* フォーカス時のアウトラインを消す（アクセシビリティ要検討） */
    padding: 0;
    appearance: none;
    z-index: 12;
    /* メニューの上に表示されるように */
    /* ここにスマホでの固定位置調整が残っている可能性があれば調整 */
    /* right: 0; top: 0; など。もしinnerのjustify-content: space-between; で配置されるなら不要 */
    right: -10px;
    top: 0;
  }

  /* openbtnのアニメーションスタイルはそのまま */
  header .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: #666;
  }

  header .openbtn span:nth-of-type(1) {
    top: 22px;
    width: 50%;
  }

  header .openbtn span:nth-of-type(2) {
    top: 29px;
    width: 30%;
  }

  header .openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
  }

  header .openbtn.active span:nth-of-type(2) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
  }

  /* スマホでのグローバルナビゲーション */
  header #gnav {
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    width: 100%;
    top: 60px;
    bottom: 0;
    left: 0;
    z-index: 11;
    display: none;
    /* 初期状態は非表示 */
    overflow: hidden;
    opacity: 0;
    /* フェードイン・アウト用 */
    transition: opacity 0.3s ease;
    /* フェードアニメーション */
    /* メニューが開く時のtransitionはここに記述 */
  }

  header #gnav.is-active {
    /* JSで追加するクラス。メニューが開いている状態 */
    display: block;
    /* まず表示 */
    opacity: 1;
    /* フェードイン */
  }


  header #gnav ul {
    /* グローバルメニューのul（スライドイン・アウトする部分） */
    background: #f9b363;
    width: 240px;
    height: 100%;
    padding: 60px 40px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: -240px;
    /* 初期位置を画面外に設定 */
    transition: right 0.3s ease;
    /* スライドアニメーション */
  }

  header #gnav.is-active ul {
    /* JSでis-activeクラスが付いた時にスライドイン */
    right: 0;
  }


  header #gnav ul li:not(:last-of-type) {
    margin-bottom: 20px;
  }

  header #gnav ul li a {
    font-size: 18px;
    line-height: 40px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.1em;
    display: block;
    position: relative;
  }

  header #gnav ul li a:after {
    background: url(../images/arw_white2.png) no-repeat center;
    background-size: 7px auto;
    -webkit-background-size: 7px auto;
    -moz-background-size: 7px auto;
    content: "";
    width: 7px;
    height: 40px;
    display: inline-block;
    position: absolute;
    right: 0;
  }

  header .sns {
    display: none;
    /* スマホではSNSアイコンをヘッダーから非表示 */
  }

  header .sns ul li img {
    width: 100%;
    height: 100%;
  }

  /* ------------------------------------------------------------
    フッター部分
------------------------------------------------------------ */
  .bottomOrder {
    background: url(../images/img_bottom_order.jpg) center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    z-index: 0;
  }

  .bottomOrder:before {
    content: "";
    background: rgba(235, 130, 37, 0.77);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .bottomOrder h2 {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 30px;
  }

  .bottomOrder ul li a {
    width: auto;
    line-height: 53px;
    display: block;
    border: #fff solid 1px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #fff;
  }

  .bottomOrder ul li a:after {
    background: url(../images/arw_white.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
    content: "";
    width: 17px;
    height: 55px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }

  footer {
    padding: 60px 30px 80px;
    position: relative;
    border-top: #ddd solid 1px;
  }

  #page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    background: #545454;
    opacity: 0.6;
    border-radius: 50%;
    z-index: 11;
  }

  #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: '\f106';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 20px;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }

  footer .footer-info {
    width: 100%;
    text-align: left;
  }

  footer address {}

  footer address .externalLinkIcon::after {
    display: none;
  }

  footer .footer-info figure {
    margin: 0 0 15px;
    width: 155px;
    height: 120px;
  }

  footer .footer-info figure img {
    width: 100%;
    height: 100%;
  }

  footer address p {
    margin: 10px 0 0;
  }

  footer address p:first-of-type {
    margin: 10px 0 0;
    font-size: 18px;
    font-weight: bold;
  }

  footer address p:not(.telno) a {
    color: #545454;
    text-decoration: underline;
  }

  footer address p:not(.telno) a:hover {
    text-decoration: underline;
    color: #f9b363;
  }

  footer address .telno {}

  footer address .telno span a {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    color: #545454;
    padding: 5px 10px 5px 0;
    text-decoration: none;
  }

  footer address .telno span a:before {
    background: url(../images/icon_tel.png) center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    top: 3px;
    position: relative;
    margin: 0 10px 0 0;
  }

  footer address .telno span a:hover {
    text-decoration: none;
    color: #f9b363;
  }

  footer nav {
    margin: 60px 0 40px;
  }

  footer nav ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  footer nav ul:not(.sns) li {
    width: 50%;
    margin: 0 0 15px;
    text-align: left;
    position: relative;
  }

  footer nav ul:not(.sns) li a {
    color: #545454;
    font-size: 15px;
    font-weight: bold;
    margin-left: 10px;
  }

  footer nav ul:not(.sns) li a:before {
    background: #545454;
    content: "";
    width: 5px;
    height: 1px;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }

  footer .copyright {
    line-height: 20px;
    margin-right: 15px;
  }

  footer .footer-bottom {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 80px;
    margin: auto;
    padding: 0 30px;
    box-sizing: border-box;
  }

  footer .footer-bottom .sns {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  footer .footer-bottom .sns li img {
    width: 100%;
    height: 100%;
  }

  footer .footer-bottom .sns li:not(:last-of-type) {
    margin-right: 20px;
  }

  footer .footer-bottom .sns li a {
    width: 20px;
    height: 20px;
    display: block;
  }

  /* ------------------------------------------------------------
    トップページ部分
------------------------------------------------------------ */
  .topImage {
    min-height: -webkit-calc(90vh - 60px);
    min-height: calc(90vh - 60px);
    padding: 0 0 30px;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
    box-sizing: border-box;
  }

  .topImage:before {
    background: #f1eee7;
    content: "";
    width: 100%;
    position: absolute;
    top: 20Vh;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .topImage:after {
    background: #f1eee7;
    content: "";
    width: 100%;
    height: 10Vh;
    /*border-left: 10vh solid transparent;
    border-top: 10vh solid #f1eee7;
    border-right: 10vh solid transparent;*/
    position: absolute;
    right: 0;
    bottom: -10vh;
    left: 0;
    margin: auto;
    z-index: -1;
  }

  .topImage figure {
    width: 95vw;
    height: 330px;
    margin: 0 0 0 5vw;
    -webkit-order: -1;
    order: -1;
  }

  .topImage figure img {
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 10% 50%;
  }

  .topImage figure .parallax {
    object-position: 10% 50%;
  }

  .topImage .catchphrase {
    /*position: relative;*/
    position: absolute;
    text-shadow: 1px 1px 0 #fff;
    z-index: 1;
    margin: 0 20px;
    /*bottom: -10vh;*/
    bottom: 10vh;
  }

  .topImage .catchphrase h2 {
    color: #f9b363;
    font-family: 'Ropa Sans', 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 42px;
    font-weight: bold;
    line-height: 1.25;
    letter-spacing: 0.1em;
    margin: 0 0 15px;
  }

  .topImage .catchphrase small {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }

  .ttlTop {
    line-height: 1.0;
    letter-spacing: 0.1em;
    margin: 0 0 30px;
  }

  .ttlTop h2 {
    /*font-family: 'Roboto',Arial, Helvetica, sans-serif;*/
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .ttlTop small {
    color: #f9b363;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #f9b363 solid 3px;
    padding: 0 0 10px;
  }

  .btnMore {
    margin: 30px auto 30px;
    width: 225px;
    height: 55px;
  }

  .btnMore a {
    color: #f9b363;
    width: auto;
    line-height: 53px;
    border: #f9b363 solid 1px;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
  }

  .btnMore a:after {
    background: url(../images/arw.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
    content: "";
    width: 17px;
    height: 55px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }

  .btnarrow {
    position: relative;
    display: inline-block;
    margin-top: 20px;
    padding: 0 20px 0 0;
    color: #545454;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    outline: none;
  }

  .btnarrow::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #545454;
    transition: all .3s;
  }

  .btnarrow::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 15px;
    height: 2px;
    background: #545454;
    transform: rotate(35deg);
    transition: all .3s;
  }

  .btnarrow:hover::before {
    left: 20%;
  }

  .btnarrow:hover::after {
    right: -20%;
  }

  .messageTop {
    display: flex;
    flex-direction: column-reverse;
  }

  .messageTop__txtarea {
    width: 100%;
    /* 幅が100%であることを明示します */
    box-sizing: border-box;
    /* paddingを含めて幅を計算するために必要です */
    padding: 30px 20px 0;
    /* テキストブロックをflexコンテナにして、要素間の余白をgapで管理します */
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .messageTop__txtarea__txt {
    font-weight: bold;
    text-align: justify;
  }

  .messageTop__image {
    width: 100%;
    /* 幅が100%であることを明示します */
  }

  .messageTop__image img {
    width: 100%;
    height: auto;
    /* アスペクト比を保ったまま表示するためにautoに変更します */
    display: block;
    /* 画像の下にできる余分な隙間を防ぎます */
  }

  .facilityTop {
    /* 上下のマージンと、左右のパディングを指定 */
    margin: 60px 0;
    padding: 0 20px 60px;
    position: relative;
    overflow-x: hidden;
    /* ジグザグ配置ではみ出さないよう念のため指定 */
  }

  .facilityTop::before {
    background: #f1eee7;
    content: "";
    position: absolute;
    top: 24px;
    left: 10px;
    right: 0;
    bottom: 0;
    z-index: -1;
  }

  .facilityTop__list {
    margin-top: 30px;
    counter-reset: number 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-start;
  }

  .facilityTop__list__item {
    width: 90%;
  }

  .facilityTop__list__item:nth-child(even) {
    align-self: flex-end;
  }

  .facilityTop__list__item figure img {
    width: 100%;
    height: auto;
    display: block;
  }

  .facilityTop__list__item__txtarea__heading {
    margin: 30px 0 15px;
    font-size: 24px;
    line-height: 1.0;
    font-weight: bold;
    color: #f9b363;
    letter-spacing: 0.05em;
  }

  .facilityTop__list__item__txtarea__heading::before {
    counter-increment: number 1;
    content: '0'counter(number);
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 48px;
    font-weight: bold;
    margin: 0 10px 0 0;
    color: #9fd6e5;
    top: 3px;
    position: relative;
  }

  .contents__list {
    margin: 0;
  }

  .contents__list__item {
    overflow: hidden;
    position: relative;
  }

  /* 項目間に少し余白が欲しい場合は、以下のコメントアウトを外してください */
  /* .contents__list__item + .contents__list__item {
  margin-top: 10px;
} */

  .contents__list__item::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.5s ease-out;
    /* スマホではホバーがないですが、念のため残しています */
    z-index: -1;
  }

  /* backgroundプロパティをショートハンドで記述し、プレフィックスを削除 */
  .contents__list__item:nth-of-type(1)::after {
    background: url(../images/top/img_company.jpg) no-repeat 50% 50%/cover;
  }

  .contents__list__item:nth-of-type(2)::after {
    background: url(../images/top/img_recruit.jpg) no-repeat 50% 70%/cover;
  }

  .contents__list__item a {
    background: rgba(0, 0, 0, 0.55);
    padding: 30px 20px;
    display: block;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 5px #000;
  }

  .contents__list__item a::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f138';
    font-size: 25px;
    color: #fff;
    margin: 15px auto 0;
    display: inline-block;
  }

  .contents__list__item .ttlTop small {
    color: #f9b363;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #f9b363 solid 3px;
    padding: 0 0 10px;
  }

  .newsTop {
    margin: 60px 0;
    padding: 0 20px 60px;
    position: relative;
  }

  .newsTop::before {
    background: #f1eee7;
    content: "";
    position: absolute;
    top: 24px;
    left: 0;
    right: 10px;
    bottom: 0;
    z-index: -1;
  }

  .newsTop__list {
    margin: 0 0 30px;
    border-bottom: #ddd solid 1px;
  }

  .newsTop__list__item {
    border-top: #ddd solid 1px;
  }

  .newsTop__list__item a {
    background: #fff;
    padding: 20px 62px 20px 30px;
    display: block;
    color: #545454;
    font-weight: bold;
    position: relative;
  }

  .newsTop__list__item a:after {
    background: url(../images/arw_gray.png) no-repeat center;
    background-size: 17px auto;
    content: "";
    width: 17px;
    height: 20px;
    display: inline-block;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .newsTop__list__item__date {
    display: block;
  }

  .newsTop .btnMore {
    margin: 0 0 0 auto;
  }

  /* ------------------------------------------------------------
    共通クラス部分
------------------------------------------------------------ */
  .ttlSub {
    height: 210px;
    line-height: 1.0;
    letter-spacing: 0.1em;
    margin: 0 0 30px;
    position: relative;
  }

  .ttlSub:before {
    content: "";
    width: 100%;
    position: absolute;
    top: 45px;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .ttlSub .inner {
    background: #fff;
    margin: 0 30px;
    padding: 30px;
    display: inline-block;
  }

  .ttlSub strong {
    /*font-family: 'Roboto',Arial, Helvetica, sans-serif;*/
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px;
    display: block;
  }

  .ttlSub h1 {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    padding: 0 0 10px;
  }

  .u-fade-type-up {
    transform: translateY(50px);
    opacity: 0;
  }

  .u-fade-type-up.is-active {
    transition: .6s;
    transform: translateY(0);
    opacity: 1;
  }

  .is-active .u-fade-type-up {
    transition: .6s;
    transform: translateY(0);
    opacity: 1;
  }

  .is-active .u-fade-type-up:nth-child(2) {
    transition-delay: .4s;
  }

  .is-active .u-fade-type-up:nth-child(3) {
    transition-delay: .8s;
  }

  .is-active .u-fade-type-up:nth-child(4) {
    transition-delay: 1.2s;
  }

  .is-active .u-fade-type-up:nth-child(5) {
    transition-delay: 1.6s;
  }

  .is-active .u-fade-type-up:nth-child(6) {
    transition-delay: 2s;
  }

  /* ------------------------------------------------------------
    新着情報ページ部分
------------------------------------------------------------ */
  .news {
    margin-bottom: 90px;
  }

  .news .ttlSub:before {
    background: url(../images/news/ttl_news.jpg) center/cover;
  }

  .news .ttlSub h1 {
    color: #f9b363;
    border-bottom: #f9b363 solid 3px;
  }

  .news__list {
    padding: 30px 20px;
    position: relative;
  }

  .news__list::before {
    background: #f1eee7;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 10px;
    bottom: -70px;
    z-index: -1;
  }

  .news__list__item {
    border-top: #ddd solid 1px;
  }

  .news__list__item:last-of-type {
    border-bottom: #ddd solid 1px;
  }

  .news__list__item a {
    background: #fff;
    padding: 20px 62px 20px 30px;
    display: block;
    color: #545454;
    font-weight: bold;
    position: relative;
  }

  .news__list__item a:after {
    background: url(../images/arw_gray.png) no-repeat center;
    background-size: 17px auto;
    content: "";
    width: 17px;
    height: 20px;
    display: inline-block;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .news__list__item__date {
    display: block;
  }

  /* pager
------------------------------------------------------------*/
  .pager {
    margin: 0 20px;
  }

  .pager ul {
    display: flex;
    justify-content: flex-end;
    text-align: center;
  }

  .pager ul li {
    margin: 0 1px;
  }

  .pager ul li span,
  .pager ul li a {
    display: block;
    padding: 5px 15px;
  }

  .pager ul li a {
    background: #eee;
    color: #545454;
  }

  .pager ul .active {
    background: #f9b363;
    color: #fff;
  }

  /* news detail
------------------------------------------------------------*/
  .news .ttlEntries {
    margin: 0 20px 30px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.2;
  }

  .news .ttlEntries h2 {
    font-size: 24px;
    margin: 0 0 15px;
    line-height: 1.6;
  }

  .news .ttlEntries .time {
    color: #f9b363;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #f9b363 solid 3px;
    padding: 0 0 10px;
  }

  .news .entries {
    margin: 0 20px;
    padding: 60px 0;
    border-top: #ddd solid 1px;
    border-bottom: #ddd solid 1px;
  }

  .news .entries strong {
    font-weight: bold;
  }

  .news .entries img {
    max-width: 100%;
    height: auto !important;
  }

  .news .entries iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    border: none;
  }

  .news .entries a {
    color: #3da5bc;
  }

  .news .entries a:hover {
    color: #f9b363;
  }

  .news .entries h3 {
    padding: 0 0.5em;
    color: #f9b363;
    background: transparent;
    border-left: solid 5px #9fd6e5;
    margin: 2.5rem 0 1.5rem;
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.3rem;
  }

  .news .entries ul {
    list-style: none;
    margin: 20px auto;
    background: #f5f5f5;
    padding: 1em 0.5em 1em 1em;
  }

  .news .entries ul li {
    padding: 0 0 0 20px;
    position: relative;
    list-style: none;
  }

  .news .entries ul li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #9fd6e5;
    position: absolute;
    top: 13px;
    left: 0;
  }

  .news .entries ol {
    counter-reset: item;
    list-style-type: none;
    background: #f5f5f5;
    margin: 20px auto;
    padding: 1em 0.5em 1em 1em;
  }

  .news .entries ol li {
    text-indent: -1.5em;
    padding-left: 1.5em;
  }

  .news .entries ol li:before {
    counter-increment: item;
    content: counter(item)'.';
    padding-right: .5em;
    color: #9fd6e5;
    font-weight: bold;
  }

  .news .btnBack {
    margin: 30px auto 0;
    width: 225px;
    height: 55px;
  }

  .news .btnBack a {
    background: #fff;
    color: #f9b363;
    width: auto;
    line-height: 53px;
    border: #f9b363 solid 1px;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
  }

  .news .btnBack a:after {
    background: url(../images/arw.png) no-repeat center;
    background-size: 17px auto;
    content: "";
    width: 17px;
    height: 55px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }

  /* ------------------------------------------------------------
    サービスページ部分
------------------------------------------------------------ */
  .facility .ttlSub:before {
    background: url(../images/facility/ttl_facility.jpg) center/cover;
  }

  .facility .ttlSub h1 {
    color: #f9b363;
    border-bottom: #f9b363 solid 3px;
  }

  .facility .ttlSub+p {
    margin: 30px 20px;
    /* 上下のマージンを調整 */
    font-weight: bold;
    text-align: justify;
  }

  .facility nav ul {
    font-size: 15px;
    margin: 0 20px 30px;
    /* 下マージン調整 */
    display: flex;
    flex-direction: column;
    /* 縦並び */
    gap: 10px;
    /* li間のマージンをgapで指定 */
  }

  .facility nav ul li {
    width: 100%;
  }

  .facility nav ul li a {
    color: #f9b363;
    line-height: 46px;
    padding: 0 15px;
    border: #f9b363 solid 1px;
    display: block;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
  }

  .facility nav ul li a::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    content: '\f107';
    font-size: 15px;
    color: #f9b363;
    margin: 0 0 0 10px;
    display: inline-block;
    transition: color 0.3s ease;
  }

  .facility nav ul li a:hover {
    color: #fff;
    background: #f9b363;
  }

  .facility nav ul li a:hover::after {
    color: #fff;
  }

  .facility .type {
    padding: 60px 20px 20px;
    counter-reset: number 0;
  }

  .facility .type:nth-of-type(2n) {
    margin: 30px 0;
    padding: 0 20px 30px;
    position: relative;
  }

  .facility .type:nth-of-type(2n)::before {
    background: #f1eee7;
    content: "";
    position: absolute;
    top: 16px;
    left: 10px;
    right: 0;
    /* 左右のバランスを調整 */
    bottom: 0;
    z-index: -1;
  }

  .facility .type .hgroup {
    text-align: center;
    margin: 0 0 30px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .facility .type .hgroup h2 {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 15px;
    line-height: 1.2;
  }

  .facility .type .hgroup small {
    color: #f9b363;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #f9b363 solid 3px;
    padding: 0 0 10px;
  }

  .facility .type ul.list li {
    display: block;
    /* 縦積みに変更 */
  }

  .facility .type ul.list li:nth-of-type(1) figure {
    margin: 0 0 0 -20px;
    /* 左右のpadding分を打ち消し画面幅に */
    width: auto;
    /* widthをリセット */
  }

  .facility .type ul.list li:nth-of-type(3n+2) figure {
    width: 80%;
    margin: 0 0 0 auto;
    /* 右寄せ */
  }

  .facility .type ul.list li:nth-of-type(3n) figure {
    width: 90%;
    margin: 0 auto;
    /* 中央寄せ */
  }

  .facility .type ul.list li:nth-of-type(4) figure {
    width: auto;
    margin: 0 -20px 0 0;
    /* 中央寄せ */
  }

  .facility .type ul.list li figure img {
    width: 100%;
    height: auto;
    /* 高さを自動に */
    display: block;
  }

  .facility .type ul.list li .txtarea {
    padding: 20px 0 60px;
    /* 下の余白を調整 */
    width: 100%;
    /* 幅をリセット */
  }

  .facility .type ul.list li .txtarea .list__txtarea__heading {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #f9b363;
  }

  .facility .type ul.list li .txtarea .list__txtarea__heading::before {
    counter-increment: number 1;
    content: '0'counter(number);
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 34px;
    font-weight: bold;
    margin: 0 7px 0 0;
    color: #9fd6e5;
    top: 3px;
    position: relative;
  }

  .facility .type .table {
    margin: 0 0 20px;
    /* 下マージン調整 */
    border-bottom: #ddd solid 1px;
    display: block;
    /* tableレイアウトを解除 */
  }

  .facility .type .table>dt {
    width: 100%;
    padding: 20px 0 10px;
    border-top: #ddd solid 1px;
    font-weight: bold;
    text-indent: 0;
  }

  .facility .type .table>dd {
    width: 100%;
    padding: 0 0 20px;
    border-top: none;
  }

  .facility .type .dlbtn {
    margin: 0 auto;
    padding: 10px 0 30px;
    width: 100%;
  }

  .facility .type .dlbtn a {
    width: 100%;
    display: block;
    padding: 18px 0;
    color: #fff;
    background: #f9b363;
    font-size: 1rem;
    text-align: center;
    line-height: 1.0;
    border-radius: 50px;
    border: #f9b363 solid 2px;
  }

  .outline__heading {
    margin: 20px 0 10px;
    /* 上マージン追加 */
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #f9b363;
  }

  .outline__heading::before {
    counter-increment: number 1;
    content: '0'counter(number);
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 34px;
    font-weight: bold;
    margin: 0 7px 0 0;
    color: #9fd6e5;
    top: 3px;
    position: relative;
  }

  .flow_design {
    display: block;
    margin-bottom: 30px;
  }

  .flow {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .flow>li {
    list-style-type: none;
    background: #f1eee7;
    position: relative;
    padding: 20px;
  }

  .flow>li dl {
    width: 100%;
    display: block;
    /* 縦積みに */
    position: relative;
  }

  .flow>li:not(:last-child)::after {
    content: "";
    border: solid transparent;
    border-width: 15px;
    border-top-color: #f9b363;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }

  .flow>li dl dt {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 10px;
    /* 説明との間に余白 */
  }

  .flow>li .icon {
    color: #eeb1b3;
    margin-right: 0.5em;
  }

  .flow>li dl dd {
    margin: 0;
    width: 100%;
  }

  /* ------------------------------------------------------------
    会社概要ページ部分
------------------------------------------------------------ */
  .company .ttlSub:before {
    background: url(../images/about/ttl_about.jpg) center/cover;
  }

  .company .ttlSub h1 {
    color: #f9b363;
    border-bottom: #f9b363 solid 3px;
  }

  .company .ttlSub+p {
    margin: 30px 20px;
    /* 上下のマージンを調整 */
    font-weight: bold;
    text-align: justify;
  }

  .company nav ul {
    font-size: 14px;
    margin: 0 20px 30px;
    /* 下マージン調整 */
    padding: 0;
    display: flex;
    flex-direction: column;
    /* 縦並び */
    gap: 10px;
    /* li間のマージンをgapで指定 */
  }

  .company nav ul li {
    width: 100%;
  }

  .company nav ul li a {
    color: #f9b363;
    line-height: 46px;
    padding: 0 15px;
    border: #f9b363 solid 1px;
    display: block;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: background-color 0.3s, color 0.3s;
  }

  .company nav ul li a::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    content: '\f107';
    font-size: 15px;
    color: #f9b363;
    margin: 0 0 0 10px;
    display: inline-block;
    transition: color 0.3s;
  }

  .company .about__contents {
    padding-top: 30px;
  }

  .company .about__contents .hgroup {
    text-align: center;
    margin: 0 0 25px;
    padding-top: 30px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .company .about__contents .hgroup h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .company .about__contents .hgroup small {
    color: #f9b363;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #f9b363 solid 3px;
    padding: 0 0 10px;
  }

  .company .table {
    margin: 0 20px 30px;
    /* 下マージン調整 */
    border-bottom: #ddd solid 1px;
    display: block;
    /* tableレイアウトを解除 */
  }

  .company .table>dt {
    width: 100%;
    padding: 20px 0 10px;
    border-top: #ddd solid 1px;
    font-weight: bold;
    text-indent: 0;
  }

  .company .table>dd {
    width: 100%;
    padding: 0 0 20px;
    border-top: none;
  }

  .company .table>dd ul {
    margin: 0;
    /*padding-left: 1.5em;*/
  }

  .company .access {
    position: relative;
  }

  .company .access::before {
    background: #f1eee7;
    content: "";
    position: absolute;
    top: 75px;
    left: 10px;
    right: 0;
    /* 左右のバランスを調整 */
    bottom: 0;
    z-index: -1;
  }

  .company .access .map {
    background: #f1eee7;
    padding: 0 20px 60px;
    margin: 0 10px;
    position: relative;
    z-index: 1;
    text-align: right;
    /* 右寄せにするために必要です */
  }

  .company .access .map #map {
    background: #eee;
    max-width: 100%;
    height: 450px;
    margin: 0 auto;
  }

  .company .access .map dl {
    background: #f9b363;
    /* 元のレイアウトを再現するためのmargin指定に戻します */
    margin: -40px -20px 0 40px;
    padding: 20px;
    display: inline-block;
    /* blockからinline-blockに戻します */
    color: #fff;
    text-align: left;
    /* ボックスの中の文字は左揃え */
    position: relative;
    z-index: 1;
  }

  .company .access .map dl dt {
    font-size: 18px;
    font-weight: bold;
  }

  .company .access .map dl dd {
    margin: 10px 0 0;
    display: flex;
    align-items: center;
    gap: 0.5em;
  }

  .company .history {
    padding: 0 20px 30px;
    /* 左右にpaddingを追加 */
  }

  .company .history .hgroup {
    text-align: center;
    margin: 30px 0 25px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .company .history .history__list {
    max-width: 100%;
    margin: 0 auto;
    padding: 5px 0 30px 40px;
    /* padding調整 */
    position: relative;
  }

  .company .history .history__list::before {
    content: "";
    width: 2px;
    height: 90%;
    background: repeating-linear-gradient(to bottom, #999, #999 2px, transparent 2px, transparent 4px);
    position: absolute;
    top: 25px;
    /* 位置調整 */
    bottom: 30px;
    left: 19px;
    /* 位置調整 */
  }

  .company .history .history__list dt {
    margin: 0 0 10px;
    color: #f9b363;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 24px;
    /* サイズ調整 */
    font-weight: bold;
    letter-spacing: 0.05em;
    position: relative;
  }

  .company .history .history__list dt:not(:first-child) {
    margin-top: 20px;
  }

  .company .history .history__list dt::before {
    content: "";
    background: #9fd6e5;
    width: 10px;
    height: 10px;
    margin: auto;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 16px;
    /* 位置調整 */
    left: -25px;
  }

  .company .history .history__list dd {
    padding-bottom: 10px;
    border-bottom: #ddd solid 1px;
  }

  /* ------------------------------------------------------------
    採用情報部分
------------------------------------------------------------ */
  .recruit .ttlSub:before {
    background: url(../images/recruit/ttl_recruit.jpg) center/cover;
  }

  .recruit .ttlSub h1 {
    color: #f9b363;
    border-bottom: #f9b363 solid 3px;
  }

  .recruit .ttlSub+p {
    margin: 30px 20px;
    font-weight: bold;
    text-align: justify;
  }

  .recruit nav ul {
    font-size: 14px;
    margin: 0 20px 30px;
    /* 下マージン調整 */
    display: flex;
    flex-direction: column;
    /* 縦並び */
    gap: 10px;
    /* li間のマージンをgapで指定 */
  }

  .recruit nav ul li {
    width: 100%;
  }

  .recruit nav ul li a {
    color: #f9b363;
    line-height: 46px;
    padding: 0 15px;
    border: #f9b363 solid 1px;
    display: block;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
  }

  .recruit nav ul li a::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    content: '\f107';
    font-size: 15px;
    color: #f9b363;
    margin: 0 0 0 10px;
    display: inline-block;
    transition: color 0.3s ease;
  }

  .recruit .recruit__job {
    text-align: center;
    padding: 60px 0 30px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .recruit__job .recruit__label {
    display: block;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .recruit__job .recruit__heading {
    display: inline-block;
    color: #f9b363;
    font-size: 16px;
    font-weight: bold;
    border-bottom: #f9b363 solid 3px;
    padding: 0 0 10px;
  }

  .recruit .job {
    /* この親要素にはpadding/marginは不要 */
    position: relative;
  }

  .recruit .job h2 {
    margin: 0 20px;
    padding: 0 0 15px 10px;
    font-size: 24px;
    line-height: 1.0;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-left: #f9b363 solid 2px;
  }

  .recruit .job figure {
    width: 100%;
    overflow: hidden;
  }

  .recruit .job figure img {
    display: block;
    width: 100%;
    height: auto;
  }

  .recruit .description {
    padding: 30px 30px 30px 20px;
    position: relative;
  }

  .recruit .description::before {
    background: #f1eee7;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 10px;
    bottom: 0;
    z-index: -1;
  }

  .recruit .description h3 {
    background: #f9b363;
    /* 元の正しい色に戻します */
    color: #fff;
    /* 元の正しい色に戻します */
    padding: 0 30px;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 30px;
    position: absolute;
    top: -15px;
    /* 正しい重なりの位置に戻します */
    left: 20px;
  }

  .recruit .description h4 {
    margin: 10px auto 0;
    font-size: 16px;
    font-weight: bold;
  }

  .recruit .description .list {
    margin: 0 auto;
  }

  .recruit .description .list li {
    padding: 0 0 0 20px;
    position: relative;
    list-style: none;
  }

  .recruit .description .list li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #9fd6e5;
    position: absolute;
    top: 11px;
    left: 0;
  }

  .recruit .description .list .job__title {
    font-weight: bold;
  }

  .recruit .description .skill__list {
    margin: 10px auto 0;
  }

  .recruit .description .skill__list li {
    padding: 0 0 0 20px;
    position: relative;
    list-style: none;
    font-size: 14px;
  }

  .recruit .description .skill__list li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #495057;
    position: absolute;
    top: 9px;
    left: 0;
  }

  .recruit .description p {
    margin: 0 auto;
    font-size: 14px;
  }

  .recruit .guideline {
    padding: 30px 0;
    position: relative;
  }

  .recruit .guideline h3 {
    background: #f9b363;
    /* 元の正しい色に戻します */
    color: #fff;
    /* 元の正しい色に戻します */
    padding: 0 30px;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 30px;
    position: absolute;
    top: -15px;
    /* 正しい重なりの位置に戻します */
    left: 20px;
  }

  .recruit .table {
    margin: 0 20px;
    border-bottom: #ddd solid 1px;
    display: block;
  }

  .recruit .table>dt {
    padding: 20px 0 10px;
    /* padding調整 */
    border-top: #ddd solid 1px;
    font-weight: bold;
  }

  .recruit .table>dd {
    padding: 0 0 20px;
    /* padding調整 */
    border-top: none;
    /* ddのborderは不要 */
  }

  .recruit .btnForm {
    margin: 30px auto 60px;
    width: 225px;
    height: 55px;
  }

  .recruit .btnForm a {
    background: #fff;
    color: #f9b363;
    width: auto;
    line-height: 53px;
    border: #f9b363 solid 1px;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
  }

  .recruit .btnForm a:after {
    background: url(../images/arw.png) no-repeat center/17px auto;
    content: "";
    width: 17px;
    height: 55px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }

  .recruit__report {
    margin: 0 0 30px;
    padding: 30px 20px 60px;
    position: relative;
  }

  .recruit__report::before {
    background: #f1eee7;
    content: "";
    position: absolute;
    top: 45px;
    left: 10px;
    right: 0;
    /* 左右のバランスを調整 */
    bottom: 0;
    z-index: -1;
  }

  .recruit__report .hgroup {
    text-align: center;
    margin: 0 0 30px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .recruit__report__label {
    display: block;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .recruit__report__heading {
    display: inline-block;
    color: #f9b363;
    font-size: 16px;
    font-weight: bold;
    border-bottom: #f9b363 solid 3px;
    padding: 0 0 10px;
  }

  .recruit__report__list {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .recruit__report__list li {
    display: flex;
    align-items: center;
    margin: 0 auto;
    gap: 20px;
    /* 画像とテキストの間の余白 */
  }

  .recruit__report__list__image {
    width: 20vw;
    /* 元のデザインに近いサイズに調整 */
    height: 20vw;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    /* 画像が縮まないように */
  }

  .recruit__report__list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .recruit__report__list__col {
    width: calc(100% - 20vw - 20px);
    /* 全体から画像とgapの幅を引く */
    box-sizing: border-box;
  }

  /* 偶数番目のテキストの順序を入れ替えます */
  .recruit__report__list li:nth-of-type(2n) .recruit__report__list__col {
    order: -1;
  }

  .recruit__report__list__label {
    display: inline-block;
    margin: 0 5px 0 0;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: #9fd6e5;
    top: 0;
    position: relative;
  }

  .recruit__report__list__name {
    display: inline-block;
    font-size: 20px;
    /* 少し調整 */
    line-height: 1.4;
  }

  .recruit__report__list__name small {
    display: block;
  }

  .recruit__report__list__col p {
    background: #fff;
    margin-top: 10px;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    font-size: 16px;
    /* フォントサイズ指定 */
  }

  .recruit__report__list__col p::after {
    content: "";
    background: #fff;
    width: 16px;
    height: 16px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
  }

  /* 奇数番目の吹き出しの矢印 */
  .recruit__report__list li:nth-of-type(2n+1) .recruit__report__list__col p::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: -15px;
  }

  /* 偶数番目の吹き出しの矢印 */
  .recruit__report__list li:nth-of-type(2n) .recruit__report__list__col p::after {
    clip-path: polygon(0 0, 100% 0, 0 100%);
    right: -15px;
  }

  /* ------------------------------------------------------------
    ループスライダー部分
------------------------------------------------------------ */

  .loopSlider {
    height: 55vw;
    margin: 40px -5vw;
    overflow: hidden;
    position: relative;
  }

  .loopSlider .loopslider__wrap {
    height: 55vw;
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-flex;
    display: flex;
  }

  .loopSlider .loopslider__wrap .loopslider__wrap__slides {
    display: -webkit-flex;
    display: flex;
  }

  .loopSlider .loopslider__wrap .loopslider__wrap__slides li {
    width: 83vw;
    height: 55vw;
  }

  .loopSlider .loopslider__wrap .loopslider__wrap__slides li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ------------------------------------------------------------
    プライバシーポリシー部分
------------------------------------------------------------ */
  .privacy .ttlSub:before {
    background: url(../images/privacy/ttl_privacy.jpg) center/cover;
  }

  .privacy .ttlSub h1 {
    color: #f9b363;
    border-bottom: #f9b363 solid 3px;
  }

  .privacy .ttlSub+p {
    margin: 30px 5vw;
    /* 上下マージンを調整 */
    font-weight: bold;
    text-align: justify;
  }

  .privacy .privacy__list {
    margin: 0 5vw;
    counter-reset: listnum;
    list-style: none;
  }

  .privacy .privacy__list dt {
    font-weight: bold;
    margin: 0 0 0.5rem;
  }

  .privacy .privacy__list dt::before {
    counter-increment: listnum;
    content: counter(listnum) ".";
    padding-right: 5px;
    font-weight: bold;
  }

  .privacy .privacy__list dd {
    text-align: justify;
    line-height: 1.8;
  }

  .privacy .privacy__list dd a {
    text-decoration: none;
    color: #3da5bc;
  }

  .privacy .privacy__list dd a:hover {
    color: #f9b363;
  }

  .privacy .privacy__list dd+dt {
    margin-top: 1.5rem;
  }

  .privacy .privacy__list dd ul {
    background: #f3f3f3;
    margin-top: 1rem;
    padding: 5vw;
    list-style: none;
  }

  .privacy .privacy__list dd ul li {
    padding: 0 0 0 1.2em;
    /* 左のスペースを調整 */
    position: relative;
  }

  .privacy .privacy__list dd ul li+li {
    margin-top: 0.5rem;
  }

  .privacy .privacy__list dd ul li:before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
  }

  .privacy .privacy__contact {
    margin: 40px 5vw 0;
    font-style: normal;
  }

  .privacy .privacy__contact .hgroup {
    text-align: center;
    margin: 30px 0 25px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .privacy .privacy__contact .hgroup h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .privacy .privacy__contact .hgroup small {
    color: #f9b363;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #f9b363 solid 3px;
    padding: 0 0 10px;
  }

  .privacy .privacy__contact .table {
    border-bottom: #ddd solid 1px;
    display: block;
    /* フレックスレイアウトを解除 */
  }

  .privacy .privacy__contact .table>dt {
    padding: 20px 0 10px;
    /* padding調整 */
    border-top: #ddd solid 1px;
    font-weight: bold;
  }

  .privacy .privacy__contact .table>dd {
    padding: 0 0 20px;
    /* padding調整 */
    border-top: none;
    /* ddのborderは不要 */
  }

  .privacy .privacy__contact .table>dd a {
    text-decoration: none;
    color: #3da5bc;
  }

  .privacy .privacy__contact .table>dd a:hover {
    color: #f9b363;
  }

  .privacy .privacy__date {
    margin: 20px 5vw 40px;
    text-align: left;
  }

  /* ------------------------------------------------------------
    お問い合わせ部分
------------------------------------------------------------ */
  .contact .ttlSub:before {
    background: url(../images/contact/ttl_contact.jpg) center/cover;
  }

  .contact .ttlSub h1 {
    color: #f9b363;
    border-bottom: #f9b363 solid 3px;
  }

  .contact .ttlSub+p {
    margin: 30px 20px;
    font-weight: bold;
    text-align: justify;
  }

  .contact .btnBack {
    margin: 30px auto 60px;
    width: 225px;
    height: 55px;
  }

  .contact .btnBack a {
    background: #fff;
    color: #f9b363;
    width: auto;
    line-height: 53px;
    border: #f9b363 solid 1px;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
  }

  .contact .btnBack a:after {
    background: url(../images/arw.png) no-repeat center/17px auto;
    content: "";
    width: 17px;
    height: 55px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }

  .contact .telArea {
    padding: 30px;
    margin: 0 20px 30px;
    border: #f1eee7 solid 5px;
  }

  .contact .telArea dt {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .contact .telArea dd.telno {
    font-size: 36px;
    margin: 20px 0 0;
    font-weight: bold;
    /* JSでリンク化されることを想定し太字に */
  }

  .contact .telArea dd.telno a {
    color: #545454;
    font-weight: bold;
  }

  form dl {
    margin: 0 20px;
    border-bottom: #ddd solid 1px;
    display: block;
    /* PC用のflexを解除 */
  }

  form dl dt {
    padding: 20px 0 10px;
    border-top: #ddd solid 1px;
  }

  form dl dt label {
    font-weight: bold;
  }

  form dl dt .must::after {
    background: #ea5455;
    content: "必須";
    margin: 0 0 0 10px;
    display: inline-block;
    padding: 0 15px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    vertical-align: middle;
    /* 上下の位置を微調整 */
  }

  form dl dd {
    padding: 0 0 20px;
    /* padding調整 */
    border-top: none;
    /* スマホではddのborderは不要 */
  }

  form dl dd .caution {
    color: #f00;
    font-weight: bold;
    margin: 0 0 10px;
  }

  form dl dd input[type="text"],
  form dl dd input[type="email"],
  form dl dd input[type="tel"] {
    width: 100%;
    height: 50px;
    line-height: 1.5;
    border: #ddd solid 1px;
    font-size: 16px;
    padding: 0 10px;
    box-sizing: border-box;
    -webkit-appearance: none;
    border-radius: 0;
  }

  form dl dd textarea {
    width: 100%;
    height: 250px;
    border: #ddd solid 1px;
    font-size: 16px;
    padding: 10px;
    box-sizing: border-box;
    -webkit-appearance: none;
    border-radius: 0;
    resize: vertical;
  }

  input::placeholder,
  textarea::placeholder {
    color: #ccc;
  }

  /* Firefox向けの指定（古いバージョンも考慮） */
  input::-moz-placeholder,
  textarea::-moz-placeholder {
    color: #ccc;
    opacity: 1;
    /* Firefoxは独自に透明度を設定する場合があるため、不透明にする */
  }

  form ul.btnSubmit {
    margin: 30px 0 0;
    padding: 0 20px 60px;
    display: flex;
    flex-direction: column-reverse;
    /* 戻るボタンが上、送信ボタンが下 */
    gap: 20px;
    /* ボタン間の余白 */
  }

  form ul.btnSubmit li {
    width: 100%;
  }

  form ul.btnSubmit li input[type="submit"] {
    width: 100%;
    height: 55px;
    /* 高さを調整 */
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    line-height: 53px;
    display: inline-block;
    border: #f9b363 solid 1px;
    letter-spacing: 0.1em;
    -webkit-appearance: none;
    border-radius: 0;
  }

  form ul.btnSubmit li .submit,
  form ul.btnSubmit li .send {
    background: #f9b363;
    color: #fff;
  }

  form ul.btnSubmit li .back {
    background: #fff;
    color: #f9b363;
  }
}