@charset "utf-8";
/* ----------------------------------------------------------------------------------------
* Author        : MFHM
* File          : Common CSS file
* ---------------------------------------------------------------------------------------- */

/* INDEX
------------------------------------------

01. General css

02. Common css

03. Header area css

04. Footer area css

05. Contents area css

06. Form style css

07. Notice & Modal area css

------------------------------------------ */

/* ----------------------------------------------------------------------------------------
                     01. General css
 -------------------------------------------------------------------------------------- */
html,
body {
  height: 100%;
}

html {
  overflow-y: scroll;
}

body {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
	/*mobile用文字サイズ調整*/
	-webkit-text-size-adjust:100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust:100%;
	text-size-adjust:100%;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
	font-weight: 500;
	color: inherit;
	line-height: 1;
}

a, p {
	margin: 0;
}

a {
  color: #0C588F;
  text-decoration: none;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  outline: none;
}

a[disabled] {
  pointer-events: none;
}

a:link,
a:visited {
  outline-width: 0;
}

a:hover,
a:active {
  color: #0C588F;
  text-decoration: underline;
}

ul,
li {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

img {
	display: block;
}

button {/*add20200519*/
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

/*margin*/
.m-xs {	margin: 12px;}.m-s {	margin: 24px;}.m-m {	margin: 48px;}.m-l {	margin: 60px;}.m-xl {	margin: 72px;}.m-xxl { margin: 84px;}.m-xxxl {	margin: 96px;}
.mt-xs {	margin-top: 12px;}.mt-s {	margin-top: 24px;}.mt-m {	margin-top: 48px;}.mt-l {	margin-top: 60px;}.mt-xl {	margin-top: 72px;}.mt-xxl {	margin-top: 84px;}.mt-xxxl {	margin-top: 96px;}
.mr-xs {	margin-right: 12px;}.mr-s {	margin-right: 24px;}.mr-m {	margin-right: 48px;}.mr-l {	margin-right: 60px;}.mr-xl {	margin-right: 72px;}.mr-xxl {	margin-right: 84px;}.mr-xxxl {	margin-right: 96px;}
.mb-xs {	margin-bottom: 12px;}.mb-s {	margin-bottom: 24px;}.mb-m {	margin-bottom: 48px;}.mb-l {	margin-bottom: 60px;}.mb-xl {	margin-bottom: 72px;}.mb-xxl {	margin-bottom: 84px;}.mb-xxxl {	margin-bottom: 96px;}
.ml-xs {	margin-left: 12px;}.ml-s {	margin-left: 24px;}.ml-m {	margin-left: 48px;}.ml-l {	margin-left: 60px;}.ml-xl {	margin-left: 72px;}.ml-xxl {	margin-left: 84px;}.ml-xxxl {	margin-left: 96px;}
/*padding*/
.p-xs {	padding: 12px;}.p-s {	padding: 24px;}.p-m {	padding: 48px;}.p-l {	padding: 60px;}.p-xl {	padding: 72px;}.p-xxl {	padding: 40px;}.p-xxxl { padding: 96px;}
.pt-xs {	padding-top: 12px;}.pt-s {	padding-top: 24px;}.pt-m {	padding-top: 48px;}.pt-l {	padding-top: 60px;}.pt-xl {	padding-top: 72px;}.pt-xxl {	padding-top: 84px;}.pt-xxxl {	padding-top: 96px;}
.pr-xs {	padding-right: 12px}.pr-s {	padding-right: 24px}.pr-m {	padding-right: 48px}.pr-l {	padding-right: 60px;}.pr-xl {	padding-right: 72px;}.pr-xxl {	padding-right: 84px;}.pr-xxxl {	padding-right: 96px;}
.pb-xs {	padding-bottom: 12px;}.pb-s {	padding-bottom: 24px;}.pb-m {	padding-bottom: 48px;}.pb-l {	padding-bottom: 60px;}.pb-xl {	padding-bottom: 72px;}.pb-xxl {	padding-bottom: 84px;}.pb-xxxl {	padding-bottom: 96px;}
.pl-xs {	padding-left: 12px;}.pl-s {	padding-left: 24px;}.pl-m {	padding-left: 48px;}.pl-l {	padding-left: 60px;}.pl-xl {	padding-left: 72px;}.pl-xxl {	padding-left: 84px;}.pl-xxxl {	padding-left: 96px;}

@media screen and (max-width: 559px) {/*add20200610*/
  .mb-s {
    margin-bottom: 12px;
  }
  .mb-xs {
    margin-bottom: 6px;
  }
}
.no-gatter {
	padding-left: 0;
	padding-right: 0;
}

.ud-line {
 text-decoration: underline;
}

.w-100 {
	width: 100%;
}

.h-100 {
	height: 100%;
}

.font-weight-bold {
	font-weight: 600;
}

.clearfix:after {
  content:" ";
  display:block;
  clear:both;
}

/* ----------------------------------------------------------------------------------------
                        02. Common css
* --------------------------------------------------------------------------------------- */
body {
	margin: 0 auto;
	position: relative;
  color: #333;
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  text-transform: capitalize;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  user-select: none;
  font-size: 1rem;
  line-height: 1.5;
}

.btn:hover,
.btn:focus {
  text-decoration: none;
  opacity: 0.8;
}

.btn:focus {
  outline: 0;
}

.btn.btn-default,
.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-tertiary,
.btn.btn-behind {
  width: 240px;
}

.btn.btn-default {
  color: #fff;
  background-color: #34780E;
}

.btn.btn-primary {
  color: #fff;
  background-color: #34780E;
}

.btn.btn-secondary {
  color: #fff;
  background-color: #0C588F;
}

.btn.btn-tertiary {
  color: #fff;
  background-color: #A63736;
}

.btn.btn-behind {
  color: #fff;
  background-color: #999;
}

.btn a,
.btn button {/*add20200519*/
  width: 100%;
  display: block;
  color: #fff;
  text-decoration: none;
}

.btn-area {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 559px) {/*add20200611*/
  .btn-area {
    margin: 24px 0 14px 0;
  }
}

.btn-area .btn {
  margin-left: 12px;
  margin-right: 12px;
  line-height: 48px;
}

/*
body:not(.home) section li {
  padding-left: 8px;
  margin-bottom: 6px;
}

body:not(.home) section li:before {
  content: '●';
}

body:not(.home) section li:last-child {
  margin-bottom: 0;
}
*/

.container {
	width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

body[data-status="hidden"] {
  visibility: hidden;
}

body:not([data-status])  [data-error] {
  display: none;
}

@media screen and (max-width: 1200px) {
  .container {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 559px) {/*add20200610*/
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.heading {
  text-align: center;
}

.main-heading {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #333;
  background-color: #eee;
}

@media screen and (max-width: 559px) {
  .main-heading {/*add20200610*/
    display: none;
  }
}

.main-heading p {
  position: relative;
  display: inline-block;
  font-family: 'EB Garamond', serif;
  font-size: 2.25rem;
  text-transform: capitalize;
  word-break: break-all;
  white-space: nowrap;
  line-height: 1;
}

.main-heading h1 {
  font-size: 0.875rem;
}

/* .main-heading h1::before, */
.main-heading p::before {
  content: '';
  position: absolute;
  bottom: -12px;
  display: inline-block;
  width: 60px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #0C588F;
}

.font-min {
  font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

@media screen and (max-width: 1200px){
  .br-pc {
    display: none;
  }
}

@media screen and (max-width: 768px){
  .br-tb {
    display: none;
  }
}

@media screen and (max-width: 559px) {
  .br-sp {
    display: none;
  }
}

/* -------------------------------------------------------------------------------------- *
                        03. Header area css
* --------------------------------------------------------------------------------------- */
.header {
    border-top: 5px solid #470005;
    background: #fff;
}

.header-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 60px;
}

.header-home-s {
    margin-right: auto;
}

.header-home-s button,
.header-home-s div {
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    cursor: pointer;
}

.header-home-s button span,
.header-home-s div span {
    margin-left: 4px;
    color: #34780E;
    line-height: 1;
    font-weight: bold;
    font-size: 0.875rem;
}

@media screen and (max-width: 559px) {
    .header-home-s span {
        display: none;
    }
}

.header-user {
    display: flex;
    align-items: center;
    margin-right: 24px;
}

@media screen and (max-width: 768px) {
    .header-user {
        margin-right: 8px;
    }
}

.header-user ul {
    margin-right: 24px;
}

@media screen and (max-width: 768px){
    .header-user ul {
        margin-right: 12px;
    }
}

@media screen and (max-width: 559px) {
    .header-user ul {
        order: 0;
        width: auto;
        margin: 0 8px;
    }
}

.header-user li {
  /*margin-right: 24px;add20200519*/
}

@media screen and (max-width: 559px) {
    .header-user li {
        font-size: 0.875rem;
    }
}

.header-name {}

.header-name span {
    font-weight: bold;
}

.h-name {}

@media screen and (max-width: 559px) {
    .h-name {
        display: none;
    }
}

.header-point {
    color: #A63736;
    font-weight: bold;
}

.h-point {
    margin-right: 8px;
}

@media screen and (max-width: 559px) {
    .h-point {
        display: none;
        margin-right: 0;
    }

    .header-point::after {
        padding-left: 4px;
        content: 'P';
        color: #333;
        font-weight: normal;
        font-size: 0.75rem;
    }
}

.header-clubno label {
    font-size: 0.875rem;
}

@media screen and (max-width: 559px) {
    .header-clubno label {
        font-size: 0.75rem;
    }
}

/*ログアウト*/
.header-top .btn {
    width: 100px;
    line-height: 48px;
}

@media screen and (max-width: 960px) {
    .header-top .btn {}
}

@media screen and (max-width: 559px) {
    .header-top .btn {
        width: 72px;
        line-height: 36px;
        font-size: 0.6875rem;
    }
}

/* ----------------------------------------------------------------------------------------
                        04. Footer area css
* --------------------------------------------------------------------------------------- */
.footer {
  padding: 60px 0;
  background-color: #470005;
  color: #fff;
}

@media screen and (max-width: 559px) {
  .footer {
    padding: 15px 0;
  }
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-inner-l,
.footer-inner-r {
  width: 48%;
}

@media screen and (max-width: 768px){
  .footer-inner-l,
  .footer-inner-r {
    width: 100%;
  }
}

.footer-inner-l {
  padding: 24px 16px;
  border: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .footer-inner-l {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 559px) {
  .footer-inner-l {
    padding: 10px
  }
}

.footer-inner-l h3 {
  font-size: 1rem;
}

.footer-inner-l p {
  font-size: 0.875rem;
}

.footer-tel {
  padding-left: 28px;
  background: url(../images/icon-tel.png) no-repeat left top;
}

.footer-time {
  padding-left: 27px;
}

.footer-mail {
  padding-left: 28px;
  background: url(../images/icon-mail.png) no-repeat left center;
  color: #fff;
}

.footer-mail:hover {
  color: #fff;
}

.footer-inner-r {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 559px) {
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-nav li a {
  display: block;
  padding-left: 18px;
  background: url(../images/icon-arrow-right.png) no-repeat left center;
  color: #fff;
  font-size: 0.875rem;
}

.footer-inner-r small {
  text-align: right;
  font-size: 0.6875rem;
}

@media screen and (max-width: 559px) {
  .footer-inner-r small {
    text-align: left;
  }
}

/* ----------------------------------------------------------------------------------------
                        05. Contents area css
* --------------------------------------------------------------------------------------- */
.wrap {
  min-height: calc(100vh - 387px);/*コンテンツの高さが足りないとき*/
  padding: 24px 0 72px;
  background-color: #eee;
}

@media screen and (max-width: 768px){/*add20200612*/
  .wrap {
    min-height: calc(100vh - 635px);/*コンテンツの高さが足りないとき*/
    padding: 24px 0;
  }
}

@media screen and (max-width: 559px) {/*add20200610*/
  .wrap {
    min-height: calc(100vh - 296px);/*コンテンツの高さが足りないとき*/
    padding: 10px 0;
  }
}

/* ----------------------------------------------------------------------------------------
                        06. Form style css
* --------------------------------------------------------------------------------------- */
.form-table {
  width: 100%;
  table-layout: fixed;/*IEテーブルバグ対策*/
}

tbody {
  width: 100%;
  max-width: 100%;
}

.form-table tr {
  display: flex;
  border-bottom: 1px solid #98BFDB;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .form-table tr {
    flex-direction: column;
  }
}

.form-table tr:first-child {
  border-top: 1px solid #98BFDB;
}

.form-table th {
  width: 25%;
  display: flex;
  flex-direction: column;/*memberControl用*/
  justify-content: center;
  padding-left: 36px;
  background-color: #f2f2f2;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .form-table th {
    width: 100%;
    /*flex-direction: row;
    justify-content: flex-start;
    align-items: center;*/
    padding: 12px;
  }
}

@media screen and (max-width: 559px) {
  .form-table th {
    padding: 5px 12px;
  }
}

.form-table th label {

}

.form-table td {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 24px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .form-table td {
    padding: 24px;
  }
}

@media screen and (max-width: 559px) {
  .form-table td {
    padding: 5px 12px;
  }
}

.form-table td div {
  width: 100%;
  max-width: 100%;
}

.form-table td .supple-txt {
  margin-top: 8px;
  max-height: 100%;
  font-size: 0.875rem;
}

.supple-list {
    margin-top: 8px;
}

.supple-list li {
    padding-left: 12px;
    font-size: 0.875rem;
}

.supple-list li::before {
    content: '(!) ';
    margin-left: -12px;
}

.form-table td span {
  display: block;
  width: 100%;
}

label {/*reboot打消し*/
  margin-bottom: 0;
}

select,
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="tel"],
textarea,
.stm_select,
.form-control {
  width: 100%;
  height: auto;
  outline: 0 !important;
  padding: 8px 13px;
  vertical-align: top;
  font-size: 16px;
  color: #666;
  background-color: #fff;
  border: 1px solid gray;
/*  border: 1px solid #f2f2f2; */
  line-height: 22px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  color: #495057;
  border-color: #80bdff;
  outline:0; box-shadow: 0 0 0.2rem rgba(0,123,255,.25)
}

.form-group input[type="submit"],
.form-group input[type="button"],
.form-group button[type="submit"] {
  color: #fff;
  border: 0;
}

.form-group select {
  margin-right: 8px;
  background: url(../images/icon-dropdown.jpg) no-repeat;
  background-position: right 8px center;
}

.form-group select.year {
  width: 26%;
}

.form-group select.month,
.form-group select.day {
  margin-left: 20px;
  width: 14%;
}

@media screen and (max-width: 559px) {/*add20200519*/
  .form-group select.month,
  .form-group select.day {
    margin-left: 8px;
    width: 18%;
  }
}

.form-group select.secret-question {/*add20200728*/
  width: 42%;
}

@media screen and (max-width: 559px) {
  .form-group select.secret-question {/*add20200728*/
    width: 100%;
  }
}

.form-group .form-tel {
  width: 50%;
}

.form-group .form-password {
  width: 40%;
}

@media screen and (max-width: 559px) {/*add20200519*/
  .form-group .form-password {
    width: 100%;
  }
}

::placeholder {
  color: #CDD6DD;
}

.error-sign {
  margin-bottom: 24px;
  padding: 8px 0;
  text-align: center;
  background-color: #fff;
  border-left: 8px solid #A63736;
  color: #A63736;
  font-weight: bold;
}

.error-required,
.error-email,
.error-phone,
.error-password,
.error-password-check,
[data-unit-error],
.error-txt {
  color: #d72a36;
}

.form-control.error {
  border: 1px solid #d72a36;
}

.required-marker {
  color: #d72a36;
  font-weight: bold;
}

[data-length="0"] {
    display: none;
}

/* ----------------------------------------------------------------------------------------
                        07. Notice & Modal area css
* --------------------------------------------------------------------------------------- */
.notice {
  background-color: #fff;
  border: 1px solid #900;
}

.notice h3 {
  padding: 8px 0;
  text-align: center;
  font-size: 1.125rem;
  background-color: #900;
  color: #fff;
}

@media screen and (max-width: 559px) {
    .notice h3 {
        font-size: 1rem;
    }
}

.notice-inner {
    padding: 24px;
}

@media screen and (max-width: 559px) {
    .notice-inner {
        padding: 10px;
    }
}

@media screen and (max-width: 559px) {
    .notice p {
      font-size: 0.875rem;
    }
}

.notice a {
  text-decoration: underline;
}

.notice-table {
    table-layout: fixed;
    font-size: 0.875rem;
}

.notice-table tr {
    border: 1px solid #333;
}

.notice-table th {
    padding: 4px 8px;
    text-align: left;
    border-right: 1px solid #333;
    font-weight: normal;
}

.notice-table td {
    padding: 4px 8px;
}

.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 50;
}

.modal-bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.8);
}

.modal-inner{
  position: absolute;
  width: 72%;
  top: 50%;
  left: 50%;
  padding: 24px;
  transform: translate(-50%,-50%);
  border-radius: 5px;
  background-color: #eee;
  overflow-y: auto;
  max-height: 90%;
}

@media screen and (max-width: 559px) {/*add20200520*/
  .modal-inner{
    width: 92%;
  }
}

@media screen and (max-width: 559px) {
  .modal-inner {
    padding: 48px 12px;
  }
}

.modal-inner .btn-area {/*add20200611*/
  margin: 0 auto;
}

@media screen and (max-width: 559px) {
    .modal-inner .btn-area {
      margin: 12px auto 0;
    }
}

.btn-close {
  position: absolute;
  width: 36px;
  height: 36px;
  right: 12px;
  margin-top: -12px;
}

@media screen and (max-width: 559px) {
  .btn-close {
    right: 8px;
    top: 8px;
    margin-top: 0;
  }
}

.btn-close span {
  width: 36px;
  height: 1px;
  display: block;
  background-color: #707070;
}

.btn-close span:first-child {
  margin-top: 14px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-close span:last-child {
  width: 36px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #707070;
}

.modal-inner h3 {
  font-size: 1.125rem;
  font-weight: bold;
}

.modal-txt {
  padding: 24px;
  border-radius: 5px;
  background-color: #fff;
}

@media screen and (max-width: 559px) {
  .modal-txt {
    padding: 12px;
  }
}

.modal-txt p {
  margin-bottom: 24px;
}

.modal-txt ol > li {
  margin-bottom: 12px;
}

.modal-txt ul li {
  list-style: disc;
}

.modal-exchange {
    margin-top: 12px;
}

.making.loading {
    width:      100vw;
    height:     100vh;
    position:   fixed;
    top:        0;
    left:       0;
    z-index:    2147483647;
    background-image:       url(../images/loader.gif);
    background-repeat:      no-repeat;
    background-attachment:  fixed;
    background-position:    center center;
}

iframe.making {
  width: calc(100vw - 24px);
  height: 50vh;
}

iframe:not([sandbox]),
.making.loading:not([data-mode="on"]),
.invisible {
  display: none;
}
