@charset "UTF-8";
@import url("./reset.css?20231229");
@import url("./plugin.css?20231229");
@import url("./base.css?20231229");
@import url("./module.css?20231229");
/* ==========================================================
Name:
    master.css

Description:
    サイトで共通使用する汎用モジュールのスタイルを記述する
    アルファベット降順(A->Z)に記述する

Contents:
    layout
    component
    utility
========================================================== */
.contents-section {
    /* margin-top: 60px; */
}
@media screen and (max-width: 767px) { /* sp size */
    .contents-section {
        /* margin-top: 30px; */
    }
}
.contact-message {
    line-height: 1.5;
    text-align: center;
    margin-bottom: 60px;
}
@media screen and (max-width: 767px) { /* sp size */
	.contact-message {
		font-size: 0.9em;
		margin-bottom: 30px;
	}
}

.contact-title {
    background-color: #826020;
    color: #fff;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.step-area {
    width: 100%;
    margin: 40px auto;
}
@media screen and (max-width: 767px) { /* sp size */
    .step-area {
        width: 100%;
        margin: 40px auto;
    }
}
.flow {
  width: calc(100% - 0px);                   /* ステップフロー全体の横幅を指定 */
  display: flex;                            /* flexboxで横並びにする */
  justify-content: space-between;           /* 横並びにしたものを等間隔で並べる */
}

.flow li {
  width: calc(100% / 3.02);                 /* 横幅を三等分した1つの大きさに指定 */
  background: #efefef;                      /* 背景色をグレーに指定 */
  line-height: 70px;                        /* 行間(高さの代わり)を指定 */
  text-align: center;                       /* 文字を中央寄せにする */
  font-weight: bold;
  position: relative;                       /* 基準位置とする */
}

.flow li:not(:first-child):not(:last-child) { 
  padding: 0 0 0 20px;                      /* 最初と最後以外には左に適度な余白を指定 */
}

.flow li::before,
.flow li::after {
  content: "";                              /* 疑似要素では必須 */
  width: 0;                                 /* 横幅を0に指定 */
  height: 0;                                /* 高さを0に指定 */
  display: block;                           /* ブロック要素にする */
  position: absolute;                       /* 相対位置に指定 */
}

.flow li::before {
  border: solid 42px transparent;           /* 32pxのborderを指定 */
  border-right: solid 23px transparent;     /* 幅を合わせるため右線は13pxにする */
  border-left: solid 23px #FFF;             /* 白い三角形を作成して▷の形で上に重ねて削り取る */
  top: -7px;                                /* 重ねる位置(縦軸)を調整 */
  left: 0;                                  /* 重ねる位置(横軸)を調整 */
  z-index: 1;                               /* 重なり順を指定 */
}

.flow li::after {
  border: solid 35px transparent;           /* 25pxのborderを指定 */
  border-left: solid 20px #efefef;          /* 左のborderで背景色と同じ▶の部分を作成する */
  border-right: solid 10px transparent;     /* 幅を合わせるために右線は10pxにする */
  top: 0;                                   /* 重ねる位置(縦軸)を調整 */
  right: -30px;                             /* 重ねる位置(横軸)を調整 */
  z-index: 2;                               /* 重なり順の優先度を他よりも上げる */
}

.flow li:first-child::before,
.flow li:last-child::after {
  content: none;                            /* 最初のliの左と最後のliの右は作らない */
}

/* 以下.currentだけ色を変えるCSS */

.flow li.current {
  color: #FFF;
  background: #0E5883;
}
.flow li.current::after {
  border-left: solid 20px #0E5883;
}

.submit-area {
    background-color: #f5f5f5;
    padding: 30px 0 40px;
}
.submit-area-confirm {
    margin-top: 40px;
}
.submit-area p {
    margin-bottom: 20px;
    font-size: 14px;
}
.back-area {
    padding: 30px 0 40px;
}
.back-area p {
    margin-bottom: 20px;
    font-size: 14px;
}
.download-area {
    background-color: #FBF7F2;
    padding: 50px 0;
}
.download-area a {
    display: block;
}


/* 必須と任意アイコン */
.required,
.optional {
    background-color: #CB3938;
    font-size: 0.7em;
    padding: 4px 8px;
    margin-left: 5px;
    color: #fff;
}
.optional { background-color: #666; }
/* input間のスペース */
.input-space { margin: 0 10px; }

.Error-all {
    text-align: center;
    padding: 15px;
    margin-bottom: 45px;
    background-color: #CB3938;
    color: #FFF;
}
/* sp size */
@media screen and (max-width: 767px) {
	.Error-all {
	    margin-bottom: 35px;
	    font-weight: 800;
	}
}

@media screen and (min-width: 768px) { /* pc size */
    .line {
        border-top: 1px dotted #CCC;
        padding-top: 30px;
    }
    .form_basic dl,
    .log-frame dl {
        width: 80%;
        margin: 0 auto;
    }
    .form_basic dt,
    .form_basic dd,
    .log-frame dt,
    .log-frame dd {
        display: inline-block;
        vertical-align: top;
        text-align: left;
        width: 60%;
        padding-bottom: 30px;
    }
    .form_basic dt,
    .log-frame dt {
        width: 40%;
        font-weight: bold;
        padding-top: 15px;

        font-family: "HiraKaku M7";
    }
    .form_basic .confirm dt {
        padding-top: 0;
    }
    .form_basic li dl,
    .log-frame li dl {
        width: 100%;
    }
    .form_basic li dt,
    .log-frame li dt {
        margin-top: 0;
    }
    .form_basic dd .input--text--login,
    .form_basic dd .input--text--cmn {
        width: 100%;
    }
    .form_basic dd span {
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) { /* sp size */

    .form_basic dl,
    .log-frame dl {
        width: 100%;
        margin: 0 auto;
    }
    .form_basic dd .input--text--login,
    .form_basic dd .input--text--cmn,
    .form_basic dd .input--text--count,
    .form_basic dd .input--text--order,
    .form_basic dd .input--text--tel {
        width: 100%;
        height: 50px;
        margin-top: 0px;
    }
    .form_basic dd .input--text--count {
        width: 40%;
    }
    .form_basic dd .input--text--tel {
        width: 24%;
    }
    .form_basic dd .input--text--order {
        width: 80px;
        text-align: center;
    }
    .form_basic textarea {
	    width: 100%;
    }
    .form_basic dt,
    .log-frame dt {
        border-bottom: 1px dotted #ccc;
        padding-bottom: 6px;
        margin-bottom: 10px;
        margin-top: 20px;
        text-align: left;
        padding-left: 5%;
        font-family: "HiraKaku M7";
    }
    .form_basic .confirm dl div {
        text-align: left;
        padding-left: 5%;
    }
    .form_basic dd span {
        padding-top: 10px;
        font-size: 3.4888vw;
    }
}

.form_basic dd p {
    margin-top: 5px;
}
.form_basic dd .bold {
    margin-bottom: 5px;
    display: block;
}
.form_basic div {
    margin: 0;
}
.layout--form .form_basic div {
    margin: 0 auto;
}
.layout--form .form_basic div.select2 {
    margin: 0;
}

/* ---- [.select.form-select] ---- */
.select2.form-select {
    border-radius: 10px;
}
.select2.form-select select {
    padding: 18px 38px 18px 18px;
}
@media screen and (max-width: 767px) {
    .select2.form-select select {
      padding: 18px 38px 18px 18px !important;
    }
    .select2.form-select::before {
      top: 1.4em;
      right: 0.8em;
    }
}

/* ---------------------------------------------
*   layout--check 会員登録（入力内容確認ページ）
--------------------------------------------- */

@media screen and (min-width: 768px) { /* pc size */
    .form-check ul,
    .log-frame ul {
        margin: 0 auto;
        width: 60%;
    }
    .order--form-check div.u-inner > ul {
        margin: 0 auto;
        width: 80%;
    }
    .form-check li,
    .log-frame li,
    .order--form-check div.u-inner > ul li {
        border-bottom: 1px solid #ccc;
        margin-top: 30px;
    }
}
@media screen and (max-width: 767px) { /* sp size */
    .form-check ul,
    .log-frame ul,
    .order--form-check ul {
        margin: 0 auto;
        width: 100%;
    }
    .form-check li,
    .log-frame li,
    .order--form-check li {
        margin-top: 30px;
    }
    .form_basic li dt,
    .log-frame li dt {
        font-weight: bold;
        font-size: 3.8888vw;
    }
    .form_basic li dd,
    .log-frame li dd {
        border-bottom: 0;
    }
}


.input--text--login,
.input--text--cmn {
    width: 100%;
}
.input--text--name {
    width: 100%;
}
.input--text--number {
    width: 300px;
}
.input--text--count {
    width: 160px;
}
.input--text--tel {
    width: 100px;
}
.input--text--order {
    width: 80px;
    text-align: center;
}
.page_title-area {
    margin-top: 50px;
}
.page_title-area .contents-title {
    font-size: 38px;
}
@media screen and (max-width: 767px) { /* sp size */
    .page_title-area {
        margin: 10px;
    }
    .page_title-area .contents-title {
        font-size: 7.8888vw;
    }
}
@media screen and (min-width: 768px) { /* pc size */
    .input--text--login,
    .input--text--cmn {
        height: 60px;
        font-size: 16px;
    }
    .input--text--name {
        height: 60px;
        font-size: 16px;
    }
    .input--text--number {
        height: 60px;
        font-size: 16px;
    }
    .input--text--count {
        height: 60px;
        font-size: 16px;
    }
    .input--text--tel {
        height: 60px;
        font-size: 16px;
    }
    .input--text--order {
        height: 50px;
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) { /* sp size */
    .input--text--login,
    .input--text--cmn {
        height: 50px;
        width: 82.8888vw;
    }
    .input--text--name {
        width: 82.8888vw;
    }
    .input--text--number {
        width: 82.8888vw;
    }
    .input--text--count {
        width: 82.8888vw;
    }
    .input--text--tel {
        width: 82.8888vw;
    }
    .input--text--order {
        width: 80px;
    }
}
#attachment-img { margin-bottom: 20px; }
#attachment-img img {
    width: 280px;
}
input.submit,
input.delete,
input.return,
.download-area a {
    font-weight: bold;
    color: #FFF;
    width: 500px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    background-color: #0E5882;
    border: 0;
    padding: 14px;
    font-family: "HiraKaku M7";

    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}
input.delete {
    background-color: #AD5332;
}
input.return {
    margin-top: 30px;
    width: 340px;
    background-color: #7d7d7d;
}
@media screen and (min-width: 768px) { /* pc size */
    input.submit,
    input.delete,
    .download-area a {
        font-size: 20px;
    }
    input.return {
        font-size: 20px;
    }
}
@media screen and (max-width: 767px) { /* sp size */
    input.submit,
    input.delete,
    .download-area a {
        width: 89.8888vw;
        margin-bottom: 10px;
        font-size: 5.2888vw;
    }
    input.return {
        width: 72.8888vw;
        margin-bottom: 10px;
        font-size: 3.8888vw;
        padding: 14px 0;
        margin-top: 10px;
    }
}
.layout--list .cmn-tbl input.submit {
    width: 100px;
    padding: 6px;
    background-color: #df043a;
    font-size: 14px;
}
input.submit:hover {
    background-color: #021E42;
    transition: all 0.4s;
    cursor: pointer;
}
input.delete:hover {
    background-color: #80351A;
    transition: all 0.4s;
    cursor: pointer;
}
input.return:hover {
    background-color: #666;
    transition: all 0.4s;
    cursor: pointer;
}
.layout--list .cmn-tbl input.submit:hover {
    background-color: #c3000d;
}
textarea.content,
textarea.order-form-content {
    width: 100%;
    height: 200px;
    padding: 14px 20px;
    margin: 0 auto;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #f5f5f5;
}
@media screen and (max-width: 767px) { /* sp size */
    textarea.content {
        width: 82.8888vw;
    }
    textarea.order-form-content {
        margin: 0 auto;
        width: 100%;
        margin-bottom: 20px;
    }
}
.form_basic {
    margin: 0 auto;
}
.ERR {
    color: #df043a;
    display: block;
    margin: 8px 0 14px;
    font-weight: bold;
}

#error-box {
    margin-top: 20px;
}
#error-box p {
    background-color: #df043a;
    color: #fff;
    padding: 10px 30px;
    margin-bottom: 10px;
    display: inline-block;

    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
}
.err-list {
    background-color: #ffcb3f;
    padding: 10px;
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) { /* sp size */
    .err {
        margin: 0 0 22px;
        font-weight: bold;
    }
}
.annotation {
    display: block;
    margin-top: 10px;
}
.post-btn {
    text-align: center;
    margin-bottom: 40px;
}
.cat-list li {
    display: inline-block;
}
@media screen and (max-width: 767px) { /* sp size */
    .cat-list li {
        font-size: 3.8888vw;
    }
}
.logo-title {
    max-width: 160px;
}
/* ---------------------------------------------
*   cmn-tbl
--------------------------------------------- */
.cmn-tbl {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
}
.cmn-tbl th {
    padding: 15px;
    text-align: center;
    vertical-align: top;
    color: #333;
    background-color: #fafafa;
    border: 1px solid #eee;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
}
.cmn-tbl td {
    padding: 15px;
    background-color: #fff;
    border: 1px solid #eee;
    vertical-align: middle;
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .scroll {
        overflow-x: auto;
    }
    .cmn-tbl {
    min-width: 727px;
    margin: 0 10px 30px;
    }
}

/* ---- [.yellow-box] ---- */

.yellow-box {
    font-size: 12px;
    padding: 14px;
    margin-top: 20px;
    background-color: #fef7e5;
}
.yellow-box span {
    font-size: 12px !important;
}
/* pc size */
@media screen and (min-width: 768px) {
    .yellow-box span.menu-txt {	font-size: 16px !important; }
}
.layout--form .yellow-box {
    width: 500px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}
@media screen and (max-width: 767px) { /* sp size */
    .yellow-box,
    .yellow-box span {
        font-size: 3.46667vw !important;
    }
    .layout--form .yellow-box {
        width: 100%;
    }
}
.product-detail div span {
    margin-left: 10px;
}　

/* ---------------------------------------------
*   pagination
--------------------------------------------- */
#page {
    margin: 0 auto;
}
#page nav {
    display: flex;
    justify-content: center;
    margin-top: 1em;
    padding-top: .5em;
    font-size: 14px;
}
#page .pagination {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
#page .pagination li {
    margin: 0 1px;
}
#page .pagination a {
    display: block;
    padding: .5em 1em;
    border: 1px solid #df043a;
    border-radius: .2em;
    text-decoration: none;
}
#page .pagination a[aria-current="page"] {
    background-color: #df043a;
    color: #fff;
}

.c-ttl3__jp {
    border-bottom: 1px solid #df043a;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.stop-message {
	color: #df043a;
	font-weight: bold;
	margin-bottom: 10px;
}
