/*---------------------------
body
----------------------------*/
@media (min-width: 768px) {
  body {
    min-width: 1000px;
  }
}
/*---------------------------
wrap
----------------------------*/
#wrap {
  width: 100%;
  margin: 0px;
  padding: 0px;
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  #wrap {
    /*tablet*/
    overflow: hidden;
  }
}
@media screen and (max-width: 640px) {
  #wrap {
    /*sp*/
    overflow: hidden;
  }
}

.sp_nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_nav {
    position: fixed;
    display: block;
    width: 55px;
    height: 55px;
    background-color: #FFC100;
    background-image: url(../img/common/sp_menu_bg.webp);
    background-repeat: no-repeat;
    background-position: center center;
    top: 10px;
    right: 3%;
    border-radius: 100px;
    z-index: 1001;
  }
}
@media screen and (max-width: 767px) {
  .sp_nav.close {
    background-image: url(../img/common/sp_menu_bg_close.webp);
    background-color: #fff;
  }
}

/*---------------------------
header
----------------------------*/
header {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  border-bottom: 1px solid #ccc;
}
header nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
}
header nav ul li {
  padding: 0 1rem;
  border-right: 1px solid #F8601B;
}
@media screen and (max-width: 767px) {
  header nav ul li {
    padding: 0 0.5rem;
  }
}
header nav ul li a {
  color: #F8601B;
  text-decoration: none;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  header nav ul li a {
    font-size: 0.8rem;
  }
}

/* copy＆pasteボタン */
.copybtn {
  display: inline-block;
  padding: 0.6em 1em;
  width: 40%;
  display: block;
  border: none;
  border-radius: 5px;
  color: black;
  box-sizing: border-box;
  cursor: pointer;
  box-shadow: 0 5px 0 #C0C0C0;
  font-size: 0.9rem;
}

@media screen and (max-width: 767px) {
  .copybtn {
    display: inline-block;
    padding: 0.6em 1em;
    width: 100%;
    display: block;
    border: none;
    border-radius: 5px;
    color: black;
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: 0 5px 0 #C0C0C0;
    font-size: 0.9rem;
  }
}

/* クリック時 */
.copybtn:active {
  box-shadow: none;
  transform: translateY(3px);
}

/* flow */
/* .whole_process {
  white-space:nowrap;
 
 }
 
 .whole_process ul {
  display: flex;
 
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
 }
 
 .whole_process li {
  padding: 0px;
  border-radius: 50%;
  list-style: none;
  text-align: center;
 }
 
 .whole_process .main {
  transform: translateY(0px);
  width: 120px;
  height: 120px;
  background: orange;
  color: black;
 }
 
 .whole_process .main p {
  transform: translateY(48px);
  font-weight: bold;
  font-size: 18px;
 }
 
 .whole_process .other {
  transform: translateY(20px);
  width: 90px;
  height: 90px;
  background: navy;
  color: white;
 }
 
 .whole_process .other p {
  transform: translateY(33px);
  font-size: 14px;
 }
 
 .whole_process .arrow {
  transform: translateY(52px);
  width: 30px;
  height: 120px;
 }
 
 .whole_process .arrow p {
  transform: translateY(35px);
 } */

/*---------------------------
footer
---------------------------*/
footer {
  margin-top: 6rem;
  border-top: 1px solid #F8601B;
  padding: 2rem 0;
}
footer .inner {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 75% 1fr;
}
@media screen and (max-width: 767px) {
  footer .inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 90%;
  }
}
footer .inner .info {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  footer .inner .info {
    width: 100%;
    display: block;
    order: 2;
  }
}
footer .inner .info > img {
  margin-right: 20px;
  width: 35%;
}
@media screen and (max-width: 767px) {
  footer .inner .info > img {
    margin-right: 0px;
    margin-bottom: 20px;
    width: 60%;
  }
}
footer .inner .info .txt {
  text-align: left;
  font-size: 0.9rem;
}
@media screen and (max-width: 767px) {
  footer .inner .info .txt {
    font-size: 0.8rem;
  }
}
footer .inner .info .txt br {
  display: none;
}
@media screen and (max-width: 767px) {
  footer .inner .info .txt br {
    display: block;
  }
}
footer .inner .fnav {
  text-align: left;
}
@media screen and (max-width: 767px) {
  footer .inner .fnav {
    width: 100%;
    margin-bottom: 1rem;
    order: 1;
  }
}
footer .inner .fnav ul {
  list-style: none;
}
@media screen and (max-width: 767px) {
  footer .inner .fnav ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
  }
}
footer .inner .fnav ul li {
  display: block;
}
footer .inner .fnav ul li a {
  display: block;
  color: #F8601B;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  footer .inner .fnav ul li a {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }
}

/*----------------------
main content
------------------------*/
h1 {
  color: #F8601B;
  padding: 1rem;
  font-size: clamp(1rem, 2vw, 1.4rem);
  border-bottom: 1px dashed #F8601B;
}

.guide {
  border-bottom: 3px solid #F8601B;
  background-color: #FBE5D6;
}
.guide .inner {
  padding: 2rem 0;
} 
.guide .inner img {
  width: 100%;
  height: auto;
  max-width: 450px;
}
.flow {
  padding: 2rem 0;
}
.flow ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  list-style: none;
  max-width: 80%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .flow ul {
    max-width: 100%;
  }
}
.flow ul li {
  position: relative;
}
.flow ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 0;
  width: 40%;
  height: 1px;
  background-color: #BCBFC3;
}
.flow ul li::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  right: 0;
  width: 40%;
  height: 1px;
  background-color: #BCBFC3;
}
.flow ul li:first-child::before {
  display: none;
}
.flow ul li:last-child::after {
  display: none;
}
.flow ul li.current::before, .flow ul li.current::after {
  background-color: #F8601B;
}
.flow ul li.current span {
  background-color: #F8601B;
}
.flow ul li.current p {
  color: #F8601B;
}
.flow ul li.next::before, .flow ul li.next::after {
  background-color: #FFAC7D;
}
.flow ul li.next span {
  background-color: #FFAC7D;
}
.flow ul li.next p {
  color: #F8601B;
}
.flow ul li span {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 100px;
  background-color: #BCBFC3;
  color: #fff;
  margin: auto;
  margin-bottom: 0.5rem;
}
.flow ul li p {
  font-size: 1rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .flow ul li p {
    font-size: 0.8rem;
  }
}

.form {
  max-width: 520px;
  margin: auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .form {
    max-width: 90%;
  }
}
.form > h2 {
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: 1.5rem;
}
.form > h2.mt {
  margin-top: 2rem;
}
.form .txt {
  margin-bottom: 2rem;
}
.form .txt > h2 {
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: 0.5rem;
}
.form .txt > p span {
  color: #dc0000;
}
.form .plus {
  max-width: 480px;
  margin: auto;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid #0062ff;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  color: #0062ff;
  cursor: pointer;
  text-align: center;
}
.form .box {
  max-width: 480px;
  margin: auto;
  margin-bottom: 1.5rem;
}
.form .box .note a {
  color: #0062ff;
  display: block;
  padding-top: 0.3rem;
}
.form .box .note p {
  margin-top: 0.5rem;
}
.form .box .date {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}
.form .box .name {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}
.form .box label {
  display: block;
  margin-bottom: 0.5rem;
}
.form .box label span {
  display: inline-block;
  color: #dc0000;
  padding-left: 0.5rem;
  font-size: 1.1rem;
}
.form .box input,
.form .box select {
  box-sizing: border-box;
  background-color: #eee;
  font-size: 1rem;
}

.form .flexbox{
  display: flex;
  align-items: stretch;
}

.form .flexbox .hyphen{
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
  .form .box input {
    -webkit-appearance: none;
  }
}
.form .box input[type=text] {
  width: 100%;
  padding: 15px 10px;
  border: 1px solid #999;
  border-radius: 3px;
}
.form .box input[type=tel] {
  width: 100%;
  padding: 15px 10px;
  border: 1px solid #999;
  border-radius: 3px;
}
.form .box input[type=email] {
  width: 100%;
  padding: 15px 10px;
  border: 1px solid #999;
  border-radius: 3px;
}
.form .box input[type=checkbox] {
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 5px;
}
.form .box.selectbox {
  position: relative;
}
.form .box.selectbox::after {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
  z-index: 100;
  content: "";
}

.flextbox {
  display: flex;
}

@media screen and (max-width: 767px) {
  .form .box.selectbox::after {
    top: 50px;
  }
}
.form .box.selectbox select {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 15px 10px;
  border: 1px solid #999;
  border-radius: 3px;
  background-color: #eee;
  cursor: pointer;
  position: relative;
}
.form .box.selectbox select option {
  padding: 10px;
}
.form .box .checkbox input {
  margin-right: 1rem;
  width: 18px;
  height: 18px;
}
.form .box .radiobox {
  margin-bottom: 1rem;
}
.form .box .radiobox input {
  margin-right: 1rem;
  width: 15px;
  height: 15px;
}
.form .btn {
  margin-top: 5rem;
  text-align: center;
}
.form .btn input[type=submit],
.form .btn input[type=button] {
  width: 100%;
  max-width: 480px;
  margin: auto;
  display: block;
  border: none;
  border-radius: 5px;
  padding: 1rem;
  font-size: 1.1rem;
  color: #fff;
  box-sizing: border-box;
  cursor: pointer;
}
.form .btn input[type=submit] {
  background-color: #F8601B;
}
.form .btn input[type=submit]:hover {
  background-color: #ff5100;
}
.form .btn input[type=button] {
  background-color: #C0B3B3;
  margin-bottom: 1rem;
}
.form .btn input[type=button]:hover {
  background-color: #9a8d8d;
}
.form.check .box label {
  background-color: #eee;
  padding: 1rem;
}
.form.check .box p {
  padding: 1rem 0 1rem 0;
}
.form.comp .txt {
  padding: 2rem;
  background-color: #FEECD7;
}
.form.comp .txt h2 {
  text-align: center;
}
.form.comp .txt p {
  text-align: left;
}
.form.comp .txt p:first-child {
  margin-bottom: 2rem;
}
.form .box.error input,
.form .box.error select {
  border: 1px solid #dc0000;
  background-color: #fff3f3;
}
.form .error_top {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 5px;
  color: #dc0000;
  border: 1px solid #dc0000;
}
.form .box .error_txt {
  color: #dc0000;
  padding: 0.5rem 0;
}

.form .box .error_txt_customercode {
  color: #dc0000;
  padding: 0.5rem 0;
}

@media screen and (max-width: 767px) {
  .form .box .error_txt_customercode {
    color: #dc0000;
    padding: 0rem 0;
  }
}

.box_cus, .hyphen {
  height: 2em;
}

@media screen and (max-width: 767px) {
  .box_cus {
    height: 3em;
  }
}

/*---------------------------
common
-----------------------------*/
* .inner {
  max-width: 700px;
  margin: auto;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  * .inner {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  * .inner {
    max-width: 90%;
  }
}

* {
  box-sizing: border-box;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.content_title {
  width: 100%;
  background: url(../img/common/title_bg.png) no-repeat;
  background-size: cover;
  text-align: left;
}
.content_title .inner {
  padding: 60px 0px;
}
@media screen and (max-width: 640px) {
  .content_title .inner {
    /*sp*/
    padding: 30px 0px;
  }
}
.content_title .inner h2 {
  color: #fff;
  font-size: 1.6em;
  letter-spacing: 10px;
  text-shadow: 0 0 6px #7E8AC6;
}
@media screen and (max-width: 640px) {
  .content_title .inner h2 {
    /*sp*/
    font-size: 1.3em;
    text-align: center;
  }
}

/* ポップアップ */
.tool_customer_code {
  display: inline-block;
  color: #006BB3;
  text-decoration: underline;
  cursor: pointer;
}

.tool_mcs_shop {
  display: inline-block;
  color: #006BB3;
  text-decoration: underline;
  cursor: pointer;
}

.musk_customer_code {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  position: fixed;
  display: none;
  cursor: pointer;
}

.musk_mcs_shop {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  position: fixed;
  display: none;
  cursor: pointer;
}

.window_customer_code {
  width: 100%;
  height: 100%;
  max-width: 800px;
  max-height: 570px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 101;
  box-sizing: border-box;
  padding: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff;
  display: none;
}
@media screen and (max-width: 767px) {
  .window_customer_code {
    max-width: 95%;
    max-height: 80vw;
    padding: 1rem;
    padding-top: 2rem;
  }
}
.window_customer_code .customer_code_slide {
  list-style: none;x
}
.window_customer_code .customer_code_slide div {
  width: 100%;
}
.window_customer_code .customer_code_slide div .txt p {
  margin: auto;
  margin-bottom: 0.5rem;
}
.window_customer_code .customer_code_slide div .txt p:nth-of-type(1) {
  color: #3ABCEA;
  font-size: 1.1rem;
  font-weight: bold;
}
.window_customer_code .customer_code_slide div .txt p:nth-of-type(2) {
  color: #fff;
  background-color: #3ABCEA;
  border-radius: 40%/250%;
  max-width: 250px;
}
.window_customer_code .customer_code_slide div img {
  max-width: 80%;
  margin: auto;
}
.window_customer_code .customer_code_slide .slick-prev,
.window_customer_code .customer_code_slide .slick-next {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 20px;
  height: 35px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .window_customer_code .customer_code_slide .slick-prev,
  .window_customer_code .customer_code_slide .slick-next {
    width: 10px;
    height: 17px;
  }
}
.window_customer_code .customer_code_slide .slick-prev:before,
.window_customer_code .customer_code_slide .slick-next:before {
  display: none;
}
.window_customer_code .customer_code_slide .slick-prev {
  left: 15px;
  background-image: url(../img/slide_arrow_left.webp);
}
@media screen and (max-width: 767px) {
  .window_customer_code .customer_code_slide .slick-prev {
    left: 0px;
  }
}
.window_customer_code .customer_code_slide .slick-next {
  right: 15px;
  background-image: url(../img/slide_arrow_right.webp);
}
@media screen and (max-width: 767px) {
  .window_customer_code .customer_code_slide .slick-next {
    right: 0px;
  }
}
.window_customer_code .customer_code_slide .slick-dots {
  bottom: -35px;
}
.window_customer_code .btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 3rem;
  font-weight: normal;
  color: #0074c0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .window_customer_code .btn {
    top: 10px;
    right: 10px;
    font-size: 2rem;
  }
}

.window_mcs_shop {
  width: 100%;
  height: 100%;
  max-width: 800px;
  max-height: 570px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 101;
  box-sizing: border-box;
  padding: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff;
  display: none;
}
@media screen and (max-width: 767px) {
  .window_mcs_shop {
    max-width: 95%;
    max-height: 93vw;
    padding: 1rem;
    padding-top: 2rem;
  }
}
.window_mcs_shop .mcs_shop_slide {
  list-style: none;
}
.window_mcs_shop .mcs_shop_slide div {
  width: 100%;
}
.window_mcs_shop .mcs_shop_slide div .txt p {
  margin: auto;
  margin-bottom: 0.5rem;
}
.window_mcs_shop .mcs_shop_slide div .txt p:nth-of-type(1) {
  color: #3ABCEA;
  font-size: 1.1rem;
  font-weight: bold;
}
.window_mcs_shop .mcs_shop_slide div .txt p:nth-of-type(2) {
  color: #fff;
  background-color: #3ABCEA;
  border-radius: 40%/250%;
  max-width: 250px;
}
.window_mcs_shop .mcs_shop_slide div img.pc-image {
  max-width: 80%;
  margin: auto;
}
.window_mcs_shop .mcs_shop_slide div img.mobile-image {
  display: none;
}
@media screen and (max-width: 767px) {
  .window_mcs_shop .mcs_shop_slide div img.pc-image {
    display: none; 
  }
  .window_mcs_shop .mcs_shop_slide div img.mobile-image {
    max-width: 90%;
    margin: auto;
    display: block;
  }
}

.window_mcs_shop .mcs_shop_slide .slick-prev,
.window_mcs_shop .mcs_shop_slide .slick-next {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 20px;
  height: 35px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .window_mcs_shop .mcs_shop_slide .slick-prev,
  .window_mcs_shop .mcs_shop_slide .slick-next {
    width: 10px;
    height: 17px;
  }
}
.window_mcs_shop .mcs_shop_slide .slick-prev:before,
.window_mcs_shop .mcs_shop_slide .slick-next:before {
  display: none;
}
.window_mcs_shop .mcs_shop_slide .slick-prev {
  left: 15px;
  background-image: url(../img/slide_arrow_left.webp);
}
@media screen and (max-width: 767px) {
  .window_mcs_shop .mcs_shop_slide .slick-prev {
    left: 0px;
  }
}
.window_mcs_shop .mcs_shop_slide .slick-next {
  right: 15px;
  background-image: url(../img/slide_arrow_right.webp);
}
@media screen and (max-width: 767px) {
  .window_mcs_shop .mcs_shop_slide .slick-next {
    right: 0px;
  }
}
.window_mcs_shop .mcs_shop_slide .slick-dots {
  bottom: -35px;
}
.window_mcs_shop .btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 3rem;
  font-weight: normal;
  color: #0074c0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .window_mcs_shop .btn {
    top: 10px;
    right: 10px;
    font-size: 2rem;
  }
}

.tool_customer_code {
  display: inline-block;
  text-indent: 20px;
}

@media (max-width: 767px) {
  .tool_customer_code {
    display: inline-block;
    text-indent: 0px;
  }
}

.red-text {
  color: red
}

/*----------------------
admin
------------------------*/
.adminform {
  margin-top: 100px
}

