@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* ==========================================================================//
//
// 記事一覧
//
// ========================================================================== */
/* 共通
---------------------------------------------------------- */
main {
  margin-top: 100px;
  /* 751- */
}
@media all and (min-width: 751px) {
  main {
    margin-top: 120px;
  }
}

.mypage {
  /* ショートコードにより出力されるユーザー非表示 */
  /* タブメニュー */
}
.mypage .wrap {
  position: relative;
}
@media all and (min-width: 1041px) {
  .mypage .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.mypage .wpuf-author {
  display: none;
}
.mypage .profile {
  /* 総いいね数 */
}
@media all and (max-width: 1040px) {
  .mypage .profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 20px;
  }
}
@media all and (min-width: 1041px) {
  .mypage .profile {
    width: 23.8%;
  }
}
.mypage .profile .image {
  float: none;
  width: 50px;
  aspect-ratio: 1;
  /* 751- */
}
@media all and (min-width: 751px) {
  .mypage .profile .image {
    width: 100px;
  }
}
.mypage .profile .image img {
  display: block;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.mypage .profile .name {
  font-size: 14px;
  letter-spacing: 0.01em;
  /* 751- */
}
@media all and (min-width: 751px) {
  .mypage .profile .name {
    font-size: 18px;
  }
}
@media all and (min-width: 1041px) {
  .mypage .profile .name {
    margin-top: 25px;
  }
}
.mypage .profile .self_introduction {
  /* 751- */
}
@media all and (max-width: 1040px) {
  .mypage .profile .self_introduction {
    display: none;
  }
}
@media all and (min-width: 751px) {
  .mypage .profile .self_introduction {
    margin-top: 8px;
    line-height: 2;
  }
}
.mypage .profile .like {
  margin-top: 6px;
  padding-left: 22px;
  position: relative;
  font-size: 12px;
  line-height: 1;
  /* 751- */
}
@media all and (min-width: 751px) {
  .mypage .profile .like {
    padding-left: 37px;
    font-size: 14px;
  }
}
@media all and (min-width: 1041px) {
  .mypage .profile .like {
    margin-top: 30px;
  }
}
.mypage .profile .like::before {
  position: absolute;
  content: "";
  background-image: url(../images/mypage/ico_like_on.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 15.6px;
  height: 13.6px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .mypage .profile .like::before {
    width: 25px;
    height: 22px;
  }
}
@media all and (min-width: 1041px) {
  .mypage .user_contents {
    margin: 18px 0 0 auto;
    width: 67.8%;
  }
}
.mypage .user_contents .tab_list {
  padding-top: 30px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #E0E0E0;
  gap: 0 20px;
}
@media all and (min-width: 1041px) {
  .mypage .user_contents .tab_list {
    margin-bottom: 50px;
    padding: 0;
    gap: 0;
  }
}
.mypage .user_contents .tab_list .tab_menu.active {
  position: relative;
}
.mypage .user_contents .tab_list .tab_menu.active::after {
  position: absolute;
  content: "";
  background-color: #202020;
  width: 100%;
  height: 2px;
  bottom: -1.5px;
  left: 0;
}
.mypage .user_contents .tab_list .tab_menu a {
  padding: 0 0 13px;
  display: block;
  position: relative;
  /* 751- */
}
@media all and (min-width: 751px) {
  .mypage .user_contents .tab_list .tab_menu a {
    padding: 0 25px 12px;
  }
}
.mypage .user_contents .tab_list .tab_menu a span {
  font-size: 12px;
  font-weight: 500;
  /* 751- */
}
@media all and (min-width: 751px) {
  .mypage .user_contents .tab_list .tab_menu a span {
    font-size: 14px;
  }
}
.mypage .user_contents .tab_list .tab_menu a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -1.5px;
  width: 100%;
  height: 2px;
  background-color: #202020;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
@media (hover: hover) {
  .mypage .user_contents .tab_list .tab_menu a:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
.mypage label {
  color: #202020;
  /* 751- */
}
@media all and (min-width: 751px) {
  .mypage label {
    font-size: 14px;
  }
}

/* 自分の投稿
---------------------------------------------------------- */
.myposts {
  /* 選択されたタブの表示された内容 */
}
.myposts .contents {
  /* デフォルトで表示される不要なテキスト非表示 */
  /* 1040px以下の時用 */
  /* 投稿一覧 */
}
.myposts .contents > p {
  display: none;
}
.myposts .contents .wpuf-dashboard-container .post_head {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 751- */
  /* 投稿管理と全◯件 */
}
@media all and (min-width: 751px) {
  .myposts .contents .wpuf-dashboard-container .post_head {
    margin-bottom: 30px;
  }
}
.myposts .contents .wpuf-dashboard-container .post_head .post_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15px;
}
.myposts .contents .wpuf-dashboard-container .post_head .post_number .page-head .colour {
  font-size: 16px;
  font-weight: 500;
  /* 751- */
}
@media all and (min-width: 751px) {
  .myposts .contents .wpuf-dashboard-container .post_head .post_number .page-head .colour {
    font-size: 18px;
  }
}
.myposts .contents .wpuf-dashboard-container .post_head .post_number .post_count {
  font-size: 12px;
}
.myposts .contents .wpuf-dashboard-container .post_head .new_btn {
  width: min(104px, 100%);
  /* 751- */
}
@media all and (min-width: 751px) {
  .myposts .contents .wpuf-dashboard-container .post_head .new_btn {
    width: min(139px, 100%);
  }
}
.myposts .contents .wpuf-dashboard-container .post_head .new_btn a {
  padding: 7px 10px;
  text-align: center;
  display: block;
  background-color: #741626;
  border: 1px solid #741626;
  color: #fff;
  /* 751- */
}
@media all and (min-width: 751px) {
  .myposts .contents .wpuf-dashboard-container .post_head .new_btn a {
    padding: 9px 12px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .myposts .contents .wpuf-dashboard-container .post_head .new_btn a:hover {
    background-color: #fff;
    color: #741626;
  }
}
@media all and (max-width: 1040px) {
  .myposts .contents .sp_list_header {
    padding: 7px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #F7F7F7;
  }
}
@media all and (min-width: 1041px) {
  .myposts .contents .sp_list_header {
    display: none;
  }
}
.myposts .contents .items-table-container table {
  width: 100%;
  border: none;
}
.myposts .contents .items-table-container thead {
  /* 751- */
}
@media all and (min-width: 751px) {
  .myposts .contents .items-table-container thead {
    padding: 0 20px;
  }
}
.myposts .contents .items-table-container tr {
  border: none;
}
@media all and (min-width: 1041px) {
  .myposts .contents .items-table-container tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.myposts .contents .items-table-container .items-list-header {
  background-color: #F7F7F7;
  text-align: left;
}
@media all and (max-width: 1040px) {
  .myposts .contents .items-table-container .items-list-header {
    display: none;
  }
}
.myposts .contents .items-table-container .items-list-header th {
  font-weight: 400;
  -webkit-box-shadow: none;
          box-shadow: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  .myposts .contents .items-table-container .items-list-header th {
    padding: 15px 0;
    font-size: 14px;
  }
}
@media all and (min-width: 1041px) {
  .myposts .contents .items-table-container .items-list-header th:first-child {
    padding: 15px 0 15px 20px;
    width: 76.75%;
  }
}
@media screen and (min-width: 1041px) and (max-width: 1359px) {
  .myposts .contents .items-table-container .items-list-header th:first-child {
    width: 66%;
  }
}
.myposts .contents .items-table-container .items-list-header th.status_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 40px;
}
@media all and (min-width: 1041px) {
  .myposts .contents .items-table-container .items-list-header th.status_option {
    margin-right: 20px;
  }
}
.myposts .contents .items-table-container tbody tr {
  padding: 13px 0 13px 10px;
  position: relative;
  border-bottom: 1px solid #E0E0E0;
  /* 751- */
  /* 1040px以下の時 */
}
@media all and (max-width: 1040px) {
  .myposts .contents .items-table-container tbody tr {
    display: block;
  }
}
@media all and (min-width: 751px) {
  .myposts .contents .items-table-container tbody tr {
    padding: 21px 0;
  }
}
.myposts .contents .items-table-container tbody tr td {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  /* 751- */
}
@media all and (min-width: 751px) {
  .myposts .contents .items-table-container tbody tr td {
    font-size: 14px;
  }
}
@media all and (max-width: 1040px) {
  .myposts .contents .items-table-container tbody tr .toggle-wrapper {
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
  }
}
.myposts .contents .items-table-container tbody tr.open .sp_open_btn img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.myposts .contents .items-table-container tbody tr .sp_open_btn {
  cursor: pointer;
  position: absolute;
  top: 9.5px;
  right: 9px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  /* 751- */
}
@media all and (min-width: 1041px) {
  .myposts .contents .items-table-container tbody tr .sp_open_btn {
    display: none;
  }
}
@media screen and (min-width: 751px) and (max-width: 1040px) {
  .myposts .contents .items-table-container tbody tr .sp_open_btn {
    top: 18px;
  }
}
.myposts .contents .items-table-container tbody tr .sp_open_btn img {
  width: 26px;
  height: 26px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 751px) and (hover: hover) {
  .myposts .contents .items-table-container tbody tr .sp_open_btn:hover img {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.myposts .contents .items-table-container td[data-label="タイトル:"] {
  margin-right: 56px;
  display: block;
}
@media all and (min-width: 1041px) {
  .myposts .contents .items-table-container td[data-label="タイトル:"] {
    margin-right: 0;
    width: 69.3%;
  }
}
@media screen and (min-width: 1150px) and (max-width: 1230px) {
  .myposts .contents .items-table-container td[data-label="タイトル:"] {
    width: 65%;
  }
}
@media screen and (min-width: 1041px) and (max-width: 1149px) {
  .myposts .contents .items-table-container td[data-label="タイトル:"] {
    width: 60%;
  }
}
.myposts .contents .items-table-container td[data-label="タイトル:"] a {
  position: relative;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  background-image: -webkit-gradient(linear, left top, right top, from(#202020), to(#202020));
  background-image: linear-gradient(90deg, #202020, #202020);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 1px;
  -webkit-transition: background-size 0.4s;
  transition: background-size 0.4s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 13px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .myposts .contents .items-table-container td[data-label="タイトル:"] a {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .myposts .contents .items-table-container td[data-label="タイトル:"] a:hover:hover {
    background-size: 0 1px;
    background-position: right bottom;
    -webkit-transition: background-size 0.4s;
    transition: background-size 0.4s;
  }
}
.myposts .contents .items-table-container td[data-label="タイトル:"] .post-edit-icon {
  display: none;
}
.myposts .contents .items-table-container .toggle-wrapper {
  display: block;
}
@media all and (min-width: 1041px) {
  .myposts .contents .items-table-container .toggle-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 40px;
  }
}
.myposts .contents .items-table-container .status {
  margin: 18px 0 10px;
  display: block;
}
@media all and (min-width: 1041px) {
  .myposts .contents .items-table-container .status {
    margin: 0;
  }
}
@media all and (min-width: 1041px) {
  .myposts .contents .items-table-container .status .sp_txt {
    display: none;
  }
}
.myposts .contents .items-table-container .status span {
  color: #202020 !important;
}
.myposts .contents .items-table-container .option {
  display: block;
}
@media all and (min-width: 1041px) {
  .myposts .contents .items-table-container .option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 10px;
  }
}
.myposts .contents .items-table-container .option a {
  padding: 0;
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  background-color: transparent;
  /* 編集ボタン */
  /* 削除ボタン */
}
@media all and (max-width: 1040px) {
  .myposts .contents .items-table-container .option a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 62px;
  }
}
.myposts .contents .items-table-container .option a::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  .myposts .contents .items-table-container .option a::before {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.myposts .contents .items-table-container .option a img {
  display: none;
}
.myposts .contents .items-table-container .option a .sp_txt {
  padding-left: 32px;
  font-size: 13px;
  color: #202020;
}
@media all and (min-width: 1041px) {
  .myposts .contents .items-table-container .option a .sp_txt {
    display: none;
  }
}
.myposts .contents .items-table-container .option a.wpuf-posts-edit::before {
  background-image: url(../images/mypage/ico_edit.svg);
}
.myposts .contents .items-table-container .option a.wpuf-posts-delete {
  float: none;
}
.myposts .contents .items-table-container .option a.wpuf-posts-delete::before {
  background-image: url(../images/mypage/ico_trash.svg);
}
@media (hover: hover) {
  .myposts .contents .items-table-container .option a:hover {
    background-color: transparent;
  }
  .myposts .contents .items-table-container .option a:hover::before {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

/* いいね
---------------------------------------------------------- */
/* プロフィール
---------------------------------------------------------- */
.profile .wpmem_msg {
  display: none;
}
.profile .contents {
  /* 登録情報が更新されました */
}
.profile .contents .wpmem_msg {
  margin: 0 0 15px;
  display: block;
  background-color: #741626;
  border: 1px solid #741626;
  border-radius: 0;
  color: #fff;
}
.profile .contents #wpmem_reg {
  /* 入力欄 */
  /* テキスト */
  /* テキストエリア */
  /* プロフィール画像 */
  /* 登録情報の変更 */
  /* 必須項目と表示されるテキスト */
}
@media all and (max-width: 1040px) {
  .profile .contents #wpmem_reg {
    width: 100%;
  }
}
.profile .contents #wpmem_reg legend {
  display: none;
}
.profile .contents #wpmem_reg fieldset {
  margin: 0;
}
.profile .contents #wpmem_reg .div_text,
.profile .contents #wpmem_reg .div_textarea,
.profile .contents #wpmem_reg .div_image {
  margin: 0;
}
.profile .contents #wpmem_reg .detail:not(:first-of-type) {
  margin-top: 15px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .profile .contents #wpmem_reg .detail:not(:first-of-type) {
    margin-top: 18px;
  }
}
.profile .contents #wpmem_reg label {
  margin-bottom: 4px;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .profile .contents #wpmem_reg label {
    margin-bottom: 7px;
    font-size: 14px;
  }
}
.profile .contents #wpmem_reg label .req {
  font-size: 13px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .profile .contents #wpmem_reg label .req {
    font-size: 14px;
  }
}
.profile .contents #wpmem_reg .div_text input {
  padding: 12.25px 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .profile .contents #wpmem_reg .div_text input {
    padding: 12.25px 17px;
    font-size: 14px;
  }
}
.profile .contents #wpmem_reg .div_textarea textarea {
  padding: 12.25px 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2;
  /* 751- */
}
@media all and (min-width: 751px) {
  .profile .contents #wpmem_reg .div_textarea textarea {
    padding: 12.25px 17px;
    font-size: 14px;
  }
}
.profile .contents #wpmem_reg .div_image {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  /* 751- */
  /* なし */
  /* ボタンの見た目 */
  /* 選択されていません */
  /* ファイルを選択ボタンの下にあるテキスト */
}
@media all and (min-width: 751px) {
  .profile .contents #wpmem_reg .div_image {
    font-size: 14px;
  }
}
.profile .contents #wpmem_reg .div_image img {
  margin-bottom: 10px;
  border-radius: 50%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100px;
  height: 100px;
}
.profile .contents #wpmem_reg .div_image .description {
  display: inline-block;
  margin-bottom: 5px;
}
.profile .contents #wpmem_reg .div_image ::-webkit-file-upload-button {
  margin-right: 15px;
  padding: 6px 12px;
  cursor: pointer;
  display: inline-block;
  background-color: #741626;
  border: 1px solid transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #fff;
  /* 751- */
}
@media all and (min-width: 751px) {
  .profile .contents #wpmem_reg .div_image ::-webkit-file-upload-button {
    padding: 6px 15px;
    font-size: 14px;
  }
}
.profile .contents #wpmem_reg .div_image input[type=file] {
  margin-top: 10px;
  border: 1px solid transparent;
  font-size: 12px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .profile .contents #wpmem_reg .div_image input[type=file] {
    margin-top: 15px;
    font-size: 13px;
  }
}
.profile .contents #wpmem_reg .div_image .wpmem-help-text {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.8;
  color: #8D8D8D;
  /* 751- */
}
@media all and (min-width: 751px) {
  .profile .contents #wpmem_reg .div_image .wpmem-help-text {
    margin-top: 10px;
    font-size: 12px;
  }
}
.profile .contents #wpmem_reg .button_div {
  margin: 23px auto 0;
  padding: 0;
  width: min(200px, 100%);
  /* 751- */
}
@media all and (min-width: 751px) {
  .profile .contents #wpmem_reg .button_div {
    margin: 63px 0 0;
    width: min(181px, 100%);
  }
}
.profile .contents #wpmem_reg .button_div input[type=submit] {
  padding: 8.5px 10px;
  cursor: pointer;
  background-color: #741626;
  border: 1px solid #741626;
  color: #fff;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .profile .contents #wpmem_reg .button_div input[type=submit] {
    font-size: 14px;
  }
}
.profile .contents #wpmem_reg .req-text {
  display: none;
}

/* パスワード変更
---------------------------------------------------------- */
.password .wpmem_msg {
  display: none;
}
.password .contents {
  /* 登録情報が更新されました */
}
.password .contents .wpmem_msg {
  margin: 0 0 15px;
  display: block;
  background-color: #741626;
  border: 1px solid #741626;
  border-radius: 0;
  color: #fff;
}
.password .contents #wpmem_login {
  /* テキスト */
  /* 登録情報の変更 */
}
@media all and (max-width: 1040px) {
  .password .contents #wpmem_login {
    width: 100%;
  }
}
.password .contents #wpmem_login legend {
  display: none;
}
.password .contents #wpmem_login fieldset {
  margin: 0;
}
.password .contents #wpmem_login .detail:not(:first-of-type) {
  margin-top: 15px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .password .contents #wpmem_login .detail:not(:first-of-type) {
    margin-top: 18px;
  }
}
.password .contents #wpmem_login label {
  margin-bottom: 4px;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .password .contents #wpmem_login label {
    margin-bottom: 7px;
    font-size: 14px;
  }
}
.password .contents #wpmem_login .div_text {
  margin: 0;
}
.password .contents #wpmem_login .div_text input {
  padding: 12.25px 10px;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .password .contents #wpmem_login .div_text input {
    padding: 9px 17px;
    font-size: 14px;
  }
}
.password .contents #wpmem_login .button_div {
  margin: 30px auto 0;
  padding: 0;
  width: min(200px, 100%);
  /* 751- */
}
@media all and (min-width: 751px) {
  .password .contents #wpmem_login .button_div {
    margin: 63px 0 0;
    width: min(181px, 100%);
  }
}
.password .contents #wpmem_login .button_div input[type=submit] {
  padding: 9px 10px;
  cursor: pointer;
  background-color: #741626;
  border: 1px solid #741626;
  color: #fff;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .password .contents #wpmem_login .button_div input[type=submit] {
    font-size: 14px;
  }
}
/*# sourceMappingURL=mypage.css.map */