@charset "UTF-8";
/* common */
/*** media ***/
/*** font-size ***/
/*** wide-size ***/
/*** color ***/
/*** font-family ***/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
body {
  font-family: "Noto Sans JP", "Roboto", "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  text-align: center;
  font-size: 1.4rem;
}
body.open {
  position: fixed;
  width: 100%;
}

a,
button {
  cursor: pointer;
}

.container__alert {
  text-align: center;
  padding: 0;
}

.alert {
  padding: 1rem;
  border: solid 1px red;
  color: red;
  text-align: left;
  margin: 3rem auto;
  max-width: 100%;
}
.alert ul li {
  color: red;
}
.alert a {
  color: red;
}

.text-center {
  text-align: center !important;
}

/*
input[type=checkbox] {
    display: none;
}

.checkbox01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 0 1rem 0 1.7rem;
    position: relative;
    width: auto;
}

.checkbox01::before {
    background: #fff;
    border: 1px solid #707070;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}

.checkbox01::after {
    border-right: 2px solid #333;
    border-bottom: 3px solid #333;
    content: '';
    display: block;
    height: 11px;
    left: 11px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 6px;
}

input[type=checkbox]:checked+.checkbox01::after {
    opacity: 1;
}
*/
/** pc or sp **/
.pc {
  display: none;
}

.sp {
  display: block;
}

@media only screen and (min-width: 1024px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
/** inner **/
.inner {
  margin: 0 auto;
  text-align: left;
}
@media only screen and (min-width: 1024px) {
  .inner {
    max-width: 1180px;
  }
}

/** header **/
header {
  border-bottom: 1px solid #ccc;
  padding: 1.5rem 0;
}
header .inner {
  position: relative;
}
header .nav_toggle {
  display: block;
  width: 2.75rem;
  height: 2.5rem;
  position: absolute;
  right: 2rem;
  top: 2.5rem;
  z-index: 9999;
}
@media only screen and (min-width: 1024px) {
  header .nav_toggle {
    display: none;
  }
}
header .nav_toggle i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  position: absolute;
  transition: transform 0.5s, opacity 0.5s;
}
header .nav_toggle i:nth-child(1) {
  top: 0;
}
header .nav_toggle i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
header .nav_toggle i:nth-child(3) {
  bottom: 0;
}
header .nav_toggle.show i:nth-child(1) {
  transform: translateY(11px) rotate(-45deg);
}
header .nav_toggle.show i:nth-child(2) {
  opacity: 0;
}
header .nav_toggle.show i:nth-child(3) {
  transform: translateY(-12px) rotate(45deg);
}
header .inner {
  /* nav */
}
header .inner .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .inner .nav .logo {
  padding-left: 1rem;
  width: 30vw;
}
@media only screen and (min-width: 1024px) {
  header .inner .nav .logo {
    width: 31%;
  }
}
header .inner .nav ul {
  display: none;
}
@media only screen and (min-width: 1024px) {
  header .inner .nav ul {
    display: flex;
  }
}
header .inner .nav ul li {
  padding-left: 3rem;
}
header .inner .nav ul li a {
  color: black;
  font-weight: 600;
}
header .inner .nav ul li a:hover {
  color: #E94F18;
}
@media only screen and (min-width: 1024px) {
  header .inner .nav ul li.on a {
    color: #E94F18;
    text-decoration: underline;
  }
}
header .inner .nav.show {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: block;
  width: 100%;
  transition: all 0.2s ease-in-out;
  background-color: white;
}
header .inner .nav.show .logo {
  padding: 1.5rem 0 1.5rem 1rem;
}
header .inner .nav.show ul {
  display: block;
}
header .inner .nav.show ul li {
  border-bottom: 1px solid #646464;
  margin: 0 1rem;
}
header .inner .nav.show ul li a {
  display: block;
  padding: 1rem 0;
}

.mct_link {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .mct_link {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
}
.mct_link .login-lp {
  margin-left: 1rem;
}
.mct_link .login-lp a {
  font-size: 1.6rem;
  font-weight: 500;
  display: inline-block;
  padding: 0 1.5rem;
  text-align: center;
  background-color: #42a8e0;
  border-radius: 5px;
  color: white;
}
.other_btn {
  display: none;
}

.show .other_btn {
  display: block;
}

/** main **/
/** sns **/
/** tag **/
.tags a {
  border-radius: 20px;
  display: inline-block;
  padding: 0.3rem 1rem;
}

/** form **/
select,
input {
  font-size: 1.6rem;
  padding: 0.5rem;
  border: none;
  /*  -webkit-appearance: none; */
  outline: none;
}

/** btn **/
button {
  font-size: 1.6rem;
  padding: 0.5rem;
  -webkit-appearance: none;
  border: none;
  border-radius: 5px;
}

.btn-search,
.btn-next {
  background-color: #e94f18;
  color: white;
  padding: 1.5rem 2rem;
}

.btn-prev {
  background-color: #e94f18;
  color: white;
}

.btn-select {
  border: #E94F18 solid 2px;
  background-color: white;
  color: #E94F18;
}

/** fotter **/
footer {
  background-color: #323232;
  padding: 1rem 0;
}
footer .inner ul {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  footer .inner ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }
}
footer .inner ul li {
  margin: 0 1rem 1rem;
}
@media only screen and (min-width: 768px) {
  footer .inner ul li {
    margin: 0 3rem 0 0;
  }
}
footer .inner ul li a {
  font-size: 1.4rem;
  color: white;
}
footer .inner ul li a::before {
  content: "▶︎";
  font-size: 1rem;
  padding-right: 0.5rem;
  vertical-align: text-bottom;
}
footer .inner .logo {
  text-align: center;
  margin-left: 1%;
}
footer .inner .logo img {
  max-width: 192px;
}
footer .inner address {
  text-align: center;
  margin: 0 auto 0;
  color: white;
}

.notes {
  font-size: 1.2rem;
}

.btn-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}
.btn-footer--order {
  width: 100%;
  display: block;
  height: 80px;
  line-height: 80px;
  background: rgb(233, 79, 24);
  background: linear-gradient(0deg, rgb(233, 79, 24) 0%, rgb(233, 152, 24) 100%);
  color: white;
  font-size: 2.5rem;
  font-weight: 900;
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.btn-footer--order::after {
  content: "";
  position: absolute;
  right: 15px;
}
.btn-footer--order:hover {
  color: white;
  background-color: #f9622c;
}