@charset "UTF-8";
/* CSS Document */
/*----------------------------------------
変数
----------------------------------------*/
/*----------------------------------------
サイト共通 スタイルシート
----------------------------------------*/
.entry .inner,
.mypage .inner,
.member .inner {
  margin-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  .entry .inner,
  .mypage .inner,
  .member .inner {
    margin-bottom: 8rem;
  }
}

.no_scroll #header {
  z-index: 1000;
  transition: none;
}

/* パンくず */
@media screen and (min-width: 769px) {
  #roadnavWrap {
    margin-bottom: 3rem;
  }
}

/* ボタン
---------------------------------------------- */
button {
  cursor: pointer;
}

.btn a,
.btn button {
  max-width: 450px;
}

.backBtn a svg,
.backBtn button svg {
  right: auto;
  left: 4rem;
  transform: rotateY(180deg);
}
@media screen and (max-width: 768px) {
  .backBtn a svg,
  .backBtn button svg {
    left: 2.5rem;
  }
}
.backBtn.greenBtn a {
  color: #fff;
  border: none;
}

.btnBox {
  display: flex;
}
@media screen and (max-width: 768px) {
  .btnBox {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .btnBox .btn {
    flex-direction: column;
  }
}
.btnBox .btn.backBtn, .btnBox .btn.greenBtn {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .btnBox .btn.backBtn {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  .btnBox .btn.backBtn {
    margin-top: 3.5rem;
  }
}
@media screen and (min-width: 769px) {
  .btnBox .btn.greenBtn {
    width: 62%;
  }
}

.width700 {
  max-width: 700px;
  margin: 0 auto;
}

#contactForm .contactTable caption {
  font-size: 1.75rem;
}
#contactForm .contactTable tr {
  padding: 1.5rem 0;
}
#contactForm .contactTable tr th, #contactForm .contactTable tr td {
  font-size: 1.5rem;
}
#contactForm .contactTable tr td {
  font-weight: 400;
}

.mypage .inner {
  position: relative;
}

#myPageNav ul {
  display: flex;
  gap: 1rem;
  font-size: 1.6rem;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  border-radius: 0.6rem;
  padding: 2.8rem;
  position: relative;
  margin-top: -3rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #myPageNav ul {
    flex-direction: column;
    padding: 2rem 2rem 1.5rem;
    margin-top: -2rem;
  }
}
@media screen and (min-width: 769px) {
  #myPageNav ul li {
    width: 33.3333333333%;
  }
}
#myPageNav ul li i {
  margin: 0.2rem 0.8rem 0 0;
}
#myPageNav ul li a {
  display: flex;
  align-items: center;
  border-radius: 0.6rem;
  border: 1px solid #aaa;
  padding: 0 1.6rem;
  color: #333;
  width: 100%;
  height: 5rem;
}
#myPageNav ul li a:hover {
  color: #9d7f25;
  border-color: #9d7f25;
  opacity: 1;
}

/* メニューのカレント
---------------------------------------------- */
body#mypage #mypageLink a, body#edit #editLink a {
  color: #9d7f25;
  border: 1px solid #9d7f25;
}

/* ログイン
---------------------------------------------- */
.error {
  display: block;
  font-size: 1.2rem;
  color: #ff3300;
  text-align: center;
  margin: 0.4em auto 0 auto;
}

#toEntryForm {
  margin: auto;
  max-width: 700px;
  padding-top: 4rem;
  margin-top: 4rem;
  border-top: #707070 1px solid;
}
#toEntryForm p {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 2rem;
}

#loginArea {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #loginArea {
    gap: 1.6rem;
  }
}

#login_form {
  margin: auto;
  max-width: 640px;
  padding: 3rem 2rem;
  border: rgba(89, 87, 87, 0.2) 5px solid;
  background-color: #fff;
  border-radius: 2rem;
}
@media screen and (min-width: 769px) {
  #login_form {
    padding: 5rem 4rem;
  }
}
#login_form .greenBtn a {
  color: #fff;
}
#login_form .greenBtn a:hover {
  color: #fff;
}
#login_form h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1em;
}
#login_form .forget {
  font-size: 1.3rem;
  text-align: center;
  margin-top: 2rem;
}
#login_form .forget a {
  text-decoration: underline;
}
#login_form #Password {
  display: none;
}
#login_form .login_box > div,
#login_form .password_box > div {
  max-width: 450px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  border: 1px solid #aaa;
  border-radius: 5px;
  margin: 0 auto;
}
#login_form .login_box > div .body,
#login_form .password_box > div .body {
  height: 100%;
  width: 100%;
  position: relative;
}
#login_form .login_box > div .body input,
#login_form .password_box > div .body input {
  height: 100%;
  width: 100%;
  max-height: 100%;
  border-radius: 4px;
  font-size: 1.6rem;
  padding: 1rem;
  height: 6rem;
  line-height: 6rem;
  border: none;
}
#login_form .login_box > div .body input::-moz-placeholder, #login_form .password_box > div .body input::-moz-placeholder {
  color: #B2B2B2;
}
#login_form .login_box > div .body input::placeholder,
#login_form .password_box > div .body input::placeholder {
  color: #B2B2B2;
}
#login_form .login_box > div .body button,
#login_form .password_box > div .body button {
  position: absolute;
  top: 0;
  right: 10px;
}
#login_form .login_box svg,
#login_form .password_box svg {
  width: 20px !important;
  height: 20px !important;
  line-height: 20px !important;
}
#login_form .password_box input {
  width: calc(100% - 50px) !important;
  margin-right: 40px;
}
#login_form .password_box button {
  border: none;
  background: transparent;
  cursor: pointer;
  width: 40px;
  height: 100%;
}
#login_form .password_box button svg {
  width: 30px !important;
  height: 30px !important;
  line-height: 30px !important;
}
#login_form .head_icon {
  padding: 0 15px;
  height: 60px;
  line-height: 56px;
  width: 50px;
  text-align: center;
}
#login_form .password_not_view {
  display: none;
}
#login_form #login {
  margin: auto;
  background: #F19811;
  border-radius: 32px;
  border: none;
  text-align: center;
  width: 80%;
  height: 60px;
  padding: 0 2em;
  color: #fff;
  cursor: pointer;
}
#login_form #login:hover {
  opacity: 0.8;
}

/* 有料登録
---------------------------------------------- */
.membership {
  padding-bottom: 7rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #aaa;
}
@media screen and (max-width: 768px) {
  .membership {
    padding-bottom: 4rem;
    margin-bottom: 0;
  }
}
.membership .membershipText {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .membership .membershipText {
    text-align: left;
  }
}

/* ポップアップウィンドウ */
.popupWindow {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 860px;
  width: 100%;
  height: auto;
  background-color: #fff;
  color: #000;
  padding: 4rem 0;
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  .popupWindow {
    width: 90%;
    padding: 5rem 0 3rem;
  }
}
.popupWindow .popupInner {
  background-color: #fff;
  overflow-y: auto;
  max-height: 85svh;
  width: 90%;
  margin: 0 auto;
}
.popupWindow .disabled {
  visibility: visible;
}
.popupWindow #temrsArea {
  height: 55vh;
  overflow-y: auto;
  border: 1px solid #000;
}
.popupWindow #temrsArea .inner {
  margin-bottom: 0;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .popupWindow #temrsArea .inner {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .popupWindow #temrsArea {
    height: 40vh;
  }
}
.popupWindow .termsText {
  font-size: 1.6rem;
  text-align: center;
  margin: 2rem 0 0.5rem;
}
@media screen and (max-width: 768px) {
  .popupWindow .termsText {
    margin-top: 1.5rem;
    font-size: 1.4rem;
  }
}
.popupWindow #termsCheck {
  font-size: 1.6rem;
  text-align: center;
}
.popupWindow #termsCheck label {
  cursor: pointer;
}
.popupWindow #termsCheck input {
  margin-right: 1rem;
  transform: scale(1.4);
  cursor: pointer;
  vertical-align: -0.1rem;
}
@media screen and (max-width: 768px) {
  .popupWindow #termsCheck input {
    transform: scale(1.2);
    margin-right: 0.8rem;
  }
}
.popupWindow #termsCheck .disabled {
  color: #aaa;
  pointer-events: none;
}
.popupWindow .btnArea .btn {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .popupWindow .btnArea .btn {
    margin-top: 1.5rem;
  }
}
.popupWindow .btnArea .btn button[disabled],
.popupWindow .btnArea .btn .disabled {
  background-color: #ccc;
  pointer-events: none;
}
.popupWindow .closeBtn {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .popupWindow .closeBtn {
    top: 1rem;
    right: 1rem;
  }
}
.popupWindow .closeBtn svg {
  width: 3.2rem;
  height: 3.2rem;
}
@media screen and (max-width: 768px) {
  .popupWindow .closeBtn svg {
    width: 3rem;
    height: 3rem;
  }
}

/* ログアウト
---------------------------------------------- */
#logout .backBtn a {
  color: #fff;
  border: none;
}

/* 無料会員
---------------------------------------------- */
.articleship {
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .articleship {
    padding-bottom: 3rem;
  }
}
.articleship .articleshipText {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .articleship .articleshipText {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 769px) {
  .articleship .articleshipText {
    text-align: center;
  }
}

/* オーダー
---------------------------------------------- */
.order .tabList {
  border-bottom: 2px solid #9d7f25;
  display: flex;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  .order .tabList {
    padding-top: 1rem;
  }
}
.order .tabList .tab {
  border: 2px solid #9d7f25;
  border-bottom: none;
  color: #000;
  font-size: 1.8rem;
  padding: 0.5rem 1rem;
  display: inline-block;
  margin-right: 1rem;
  cursor: pointer;
}
.order .tabList .tab.active, .order .tabList .tab:hover {
  background-color: #9d7f25;
  color: #fff;
}
.order .panel {
  display: none;
}
.order .panel.active {
  display: block;
}
.order .error {
  margin: 0;
  text-align: left;
}
.order .areaCheckBox input {
  padding-right: 0.5rem;
  vertical-align: middle;
  cursor: pointer;
}
.order .areaCheckBox label {
  padding: 0 1rem 0 0.5rem;
  cursor: pointer;
}

/* お知らせ一覧
---------------------------------------------- */
.listArea.topicsList {
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .listArea.topicsList {
    padding-bottom: 3rem;
  }
}
.listArea.topicsList .listBox {
  position: relative;
}
.listArea.topicsList .illegal {
  font-size: 1.5rem;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .listArea.topicsList .illegal {
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}

/* お知らせ詳細
---------------------------------------------- */
.cat {
  background-color: #9d7f25;
  color: #fff;
  font-size: 1.4rem;
  padding: 0.2rem 0.6rem;
  line-height: 1;
  margin-left: 0.8rem;
}

@media screen and (max-width: 768px) {
  .topicsDetail .title01 {
    margin-bottom: 2rem;
  }
}
.topicsDetail .topicsData {
  margin-bottom: 1.5rem;
}
.topicsDetail .topicsData time {
  font-size: 1.6rem;
}
.topicsDetail .title {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  border-bottom: 1px dashed #707070;
  padding-bottom: 1.5rem;
}
.topicsDetail .desc {
  font-size: 1.6rem;
  margin-bottom: 4rem;
}
.topicsDetail .imageList {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .topicsDetail .imageList {
    flex-direction: column;
  }
}
@media screen and (min-width: 769px) {
  .topicsDetail .imageList li {
    width: 20%;
  }
}
.topicsDetail .imageList img {
  aspect-ratio: 16/8.6;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  border-radius: 0.6rem;
}/*# sourceMappingURL=index.css.map */