@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  background-color: #f8ecde;
  font-family: "fot-udmarugo-large-pr6n", sans-serif;
  font-weight: 700;
  font-style: normal;
}

h1, h2, h3, h4 {
  margin: 0;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

::placeholder {
  color: #8a8a8a;
}

.body-container {
  overflow: hidden;
}

.header {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.header::before {
  content: "";
  width: 100%;
  height: 30px;
  background-image: url(../image/header_frame.png);
  background-position: top;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
}

.header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
}
@media screen and (min-width: 1200px) {
  .header-container {
    width: 90%;
    max-width: 1150px;
  }
}

.main-title {
  width: 150px;
  margin-left: 5%;
}
@media screen and (min-width: 1024px) {
  .main-title {
    width: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .main-title {
    width: 210px;
    margin-left: 0;
  }
}

.main-logo {
  width: 100%;
}

.main-nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .main-nav {
    display: block;
    width: 62%;
  }
}

.main-list-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0;
}

.main-list {
  margin-top: 1.5rem;
  margin-left: 10%;
}
@media screen and (min-width: 1024px) {
  .main-list {
    margin-top: 1.7rem;
  }
}
@media screen and (min-width: 1200px) {
  .main-list {
    text-align: center;
    margin-top: 0;
    margin-left: 0;
    position: relative;
  }
}
@media screen and (min-width: 1200px) {
  .main-list::before {
    content: "";
    width: 3px;
    height: 30px;
    background-image: url(../image/nav_dots.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -24px;
  }
}

@media screen and (min-width: 1200px) {
  .nav-list:nth-of-type(5)::after {
    content: "";
    width: 3px;
    height: 30px;
    background-image: url(../image/nav_dots.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: -26px;
  }
}

.main-list-link {
  font-size: 1.4rem;
  color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .main-list-link {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .main-list-link {
    font-size: 1.7rem;
    color: #16a6dc;
  }
}

.hamburger-btn {
  width: 36px;
  height: 36px;
  background-image: url(../image/hamburger_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  margin-right: 5%;
  cursor: pointer;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .hamburger-btn {
    width: 45px;
    height: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-btn span {
  width: 60%;
  height: 1.5px;
  background-color: #16a6dc;
  position: absolute;
  left: 7px;
  border-radius: 4px;
}
@media screen and (min-width: 1024px) {
  .hamburger-btn span {
    height: 2px;
    left: 9.5px;
  }
}
@media screen and (min-width: 1200px) {
  .hamburger-btn span {
    display: none;
  }
}

.hamburger-btn, .hamburger-btn span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
@media screen and (min-width: 1200px) {
  .hamburger-btn, .hamburger-btn span {
    display: none;
  }
}

.hamburger-btn span:nth-of-type(1) {
  top: 9px;
}
@media screen and (min-width: 1024px) {
  .hamburger-btn span:nth-of-type(1) {
    top: 11.5px;
  }
}

.hamburger-btn span:nth-of-type(2) {
  top: 16px;
}
@media screen and (min-width: 1024px) {
  .hamburger-btn span:nth-of-type(2) {
    top: 20px;
  }
}

.hamburger-btn span:nth-of-type(3) {
  top: 24px;
}
@media screen and (min-width: 1024px) {
  .hamburger-btn span:nth-of-type(3) {
    top: 28.5px;
  }
}

#hamburger.active {
  position: fixed;
  right: -3%;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

#hamburger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}
@media screen and (min-width: 1024px) {
  #hamburger.active span:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
}

#hamburger.active span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}

#hamburger.active span:nth-of-type(3) {
  opacity: 0;
}

.hamburger-menu-container {
  width: 45%;
  height: 100vh;
  background-color: #ab672a;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 9;
  transition: all 0.5s;
}
@media screen and (min-width: 768px) {
  .hamburger-menu-container {
    width: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .hamburger-menu-container {
    width: 20%;
  }
}
@media screen and (min-width: 1200px) {
  .hamburger-menu-container {
    display: none;
  }
}

.hamburger-menu {
  margin-top: 100px;
}
@media screen and (min-width: 1024px) {
  .hamburger-menu {
    margin-top: 120px;
  }
}

#hamburger-menu.active {
  transform: translateX(-100%);
}

.top-container {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .top-container {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .top-container {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .top-container {
    margin-bottom: 30px;
  }
}

.top-img-container {
  width: 100%;
  max-width: 1150px;
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .top-img-container {
    margin-top: 45px;
  }
}
@media screen and (min-width: 1024px) {
  .top-img-container {
    width: 90%;
    justify-content: space-around;
    margin: 65px auto 20px;
  }
}
@media screen and (min-width: 1200px) {
  .top-img-container {
    margin: 85px auto 20px;
  }
}

.top-img-first {
  display: none;
}
@media screen and (min-width: 1024px) {
  .top-img-first {
    width: 45%;
    display: inline;
  }
}

.top-img-second {
  display: none;
}
@media screen and (min-width: 1024px) {
  .top-img-second {
    width: 45%;
    display: inline;
  }
}

.top-img-third {
  width: 70%;
  display: inline;
}
@media screen and (min-width: 1024px) {
  .top-img-third {
    display: none;
  }
}

.sns-container {
  max-width: 1370px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .sns-container {
    justify-content: end;
  }
}

.sns-box {
  width: 90px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .sns-box {
    width: 120px;
    margin-right: 5%;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .sns-btn {
    width: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .sns-btn {
    width: auto;
  }
}

@media screen and (min-width: 1024px) {
  .sns-x {
    margin-right: 10px;
  }
}

.store-contents {
  padding-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .store-contents {
    padding-bottom: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .store-contents {
    padding-bottom: 60px;
  }
}

.main-model-box {
  display: flex;
  justify-content: center;
}

.main-model {
  width: 90%;
}
@media screen and (min-width: 768px) {
  .main-model {
    width: 80%;
  }
}

.store-doc-box {
  text-align: center;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .store-doc-box {
    margin-top: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .store-doc-box {
    margin-top: 50px;
  }
}

.store-info {
  width: 310px;
  display: inline-block;
  font-size: 1.4rem;
  color: #f66a1e;
  letter-spacing: 2px;
  border-top: 2px solid #f66a1e;
  border-bottom: 2px solid #f66a1e;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .store-info {
    width: 520px;
    font-size: 1.8rem;
    border-top: 2px solid #f66a1e;
    border-bottom: 2px solid #f66a1e;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .store-info {
    width: 560px;
  }
}
@media screen and (min-width: 1200px) {
  .store-info {
    width: 760px;
    font-size: 2.4rem;
  }
}

.store-list-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .store-list-container {
    margin-top: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .store-list-container {
    margin-top: 50px;
  }
}

.store-list-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .store-list-box {
    width: 560px;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .store-list-box {
    width: 710px;
  }
}
@media screen and (min-width: 1200px) {
  .store-list-box {
    width: 75%;
  }
}

.store-list {
  position: relative;
}
.store-list:nth-of-type(n+2) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .store-list:nth-of-type(n+2) {
    margin-top: auto;
  }
}
.store-list:nth-of-type(n+2)::after {
  content: "";
  width: 2px;
  height: 18px;
  display: none;
  background-color: #717171;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  left: -11px;
}
@media screen and (min-width: 768px) {
  .store-list:nth-of-type(n+2)::after {
    display: inline;
  }
}
@media screen and (min-width: 1024px) {
  .store-list:nth-of-type(n+2)::after {
    display: inline;
    height: 20px;
    left: -35px;
  }
}
@media screen and (min-width: 1200px) {
  .store-list:nth-of-type(n+2)::after {
    height: 25px;
    left: -25%;
  }
}

.store-space {
  padding-left: 0.3rem;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .store-space {
    padding-left: 1rem;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .store-space {
    padding-right: 2.8rem;
  }
}

.store-alert {
  color: #FF0000;
}

.goods-container {
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
}

.goods-first-container {
  background-image: url(../image/cloud_sp.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1200px) {
  .goods-first-container {
    background-image: url(../image/cloud_pc.png);
  }
}

.goods-second-container {
  background-color: #ffffff;
  border-radius: 0 0 30px 30px;
}

.goods-main-title-box {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}
@media screen and (min-width: 1024px) {
  .goods-main-title-box {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .goods-main-title-box {
    margin-bottom: 70px;
  }
}

.goods-main-title {
  position: relative;
  font-size: 1.6rem;
  color: #fe4d9c;
  letter-spacing: 2px;
  padding-top: 70px;
}
@media screen and (min-width: 768px) {
  .goods-main-title {
    font-size: 2rem;
    padding-top: 150px;
  }
}
@media screen and (min-width: 1024px) {
  .goods-main-title {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .goods-main-title {
    font-size: 3rem;
    padding-top: 210px;
  }
}
.goods-main-title::before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../image/reserve_icon1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -35px;
}
@media screen and (min-width: 768px) {
  .goods-main-title::before {
    width: 30px;
    height: 30px;
    left: -40px;
  }
}
@media screen and (min-width: 1024px) {
  .goods-main-title::before {
    width: 40px;
    height: 40px;
    left: -55px;
  }
}
@media screen and (min-width: 1200px) {
  .goods-main-title::before {
    width: 50px;
    height: 50px;
    left: -70px;
  }
}
.goods-main-title::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../image/reserve_icon2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 117px;
}
@media screen and (min-width: 768px) {
  .goods-main-title::after {
    width: 25px;
    height: 25px;
    left: 145px;
  }
}
@media screen and (min-width: 1024px) {
  .goods-main-title::after {
    width: 40px;
    height: 40px;
    left: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .goods-main-title::after {
    width: 50px;
    height: 50px;
    left: 218px;
  }
}

.goods-sub-title {
  font-size: 1.6rem;
  color: #ab672a;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 30px;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .goods-sub-title {
    font-size: 2rem;
    margin-bottom: 55px;
    padding-top: 55px;
  }
}
@media screen and (min-width: 1024px) {
  .goods-sub-title {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .goods-sub-title {
    font-size: 3rem;
    margin-bottom: 70px;
    padding-top: 70px;
  }
}

.goods-sub-title-space {
  padding-right: 4px;
}
@media screen and (min-width: 768px) {
  .goods-sub-title-space {
    padding-right: 6px;
  }
}
@media screen and (min-width: 1024px) {
  .goods-sub-title-space {
    padding-right: 8px;
  }
}
@media screen and (min-width: 1200px) {
  .goods-sub-title-space {
    padding-right: 10px;
  }
}

.goods-contents {
  width: 90%;
  position: relative;
  margin: 0 auto 45px;
}
.goods-contents::before {
  content: "";
  width: 100%;
  height: 2px;
  background-image: url(../image/dots_line.png);
  position: absolute;
}

.goods-third-contents {
  padding-bottom: 50px;
}

.goods-doc {
  font-size: 1.2rem;
  color: #717171;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .goods-doc {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .goods-doc {
    font-size: 1.6rem;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .goods-doc {
    font-size: 1.8rem;
    margin-top: 50px;
  }
}

.chiikawa-yaki-container {
  border: 5px solid #f8e2bd;
  border-radius: 15px;
  position: relative;
  margin-bottom: 80px;
}

.chiikawa-yaki-box-default {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .chiikawa-yaki-box-default {
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .chiikawa-yaki-box-default {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 255px;
    gap: 30px;
    margin: auto;
  }
}
@media screen and (min-width: 1200px) {
  .chiikawa-yaki-box-default {
    grid-template-rows: 300px;
    gap: 50px;
    font-size: 3rem;
  }
}

.chiikawa-yaki-box-limited {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .chiikawa-yaki-box-limited {
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .chiikawa-yaki-box-limited {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 305px;
    gap: 30px;
    margin: auto;
  }
}
@media screen and (min-width: 1200px) {
  .chiikawa-yaki-box-limited {
    grid-template-rows: 350px;
    gap: 50px;
    font-size: 3rem;
  }
}

.headingA {
  width: 140px;
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  background-color: #ffffff;
  margin: -24px auto auto auto;
}
@media screen and (min-width: 768px) {
  .headingA {
    width: 160px;
    margin: -25px auto auto auto;
  }
}
@media screen and (min-width: 1024px) {
  .headingA {
    width: 180px;
    margin: -30px auto auto auto;
    top: 8px;
  }
}
@media screen and (min-width: 1200px) {
  .headingA {
    width: 200px;
    margin: -40px auto auto auto;
    top: 16px;
  }
}

.headingB {
  width: 140px;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .headingB {
    width: 160px;
  }
}
@media screen and (min-width: 1024px) {
  .headingB {
    width: 180px;
    top: -21px;
  }
}
@media screen and (min-width: 1200px) {
  .headingB {
    width: 200px;
    top: -23px;
  }
}

.heading04 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #3fc1c9;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .heading04 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .heading04 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .heading04 {
    font-size: 26px;
  }
}

/*
.heading04::before,
.heading04::after {
	content: '';
	width: 3px;
	height: 40px;
	background-color: #3fc1c9;
}

.heading04::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}

.heading04::after {
	margin-left: 30px;
	transform: rotate(35deg)
}
*/
.first-line {
  margin-top: 30px;
}

.second-line {
  margin-bottom: 20px;
}

.lineup-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (min-width: 1200px) {
  .lineup-box {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 50px;
    font-size: 3rem;
  }
}

.goods-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .goods-box {
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .goods-box {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .goods-box {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 50px;
    font-size: 3rem;
  }
}

.goods-img-frame {
  width: 100%;
  text-align: center;
}

.goods-img {
  width: auto;
  height: 65px;
}
@media screen and (min-width: 768px) {
  .goods-img {
    height: 135px;
  }
}
@media screen and (min-width: 1024px) {
  .goods-img {
    height: 155px;
  }
}

.yaki-img {
  height: 100px;
}
@media screen and (min-width: 768px) {
  .yaki-img {
    height: 200px;
  }
}
@media screen and (min-width: 1024px) {
  .yaki-img {
    height: 180px;
  }
}
@media screen and (min-width: 1200px) {
  .yaki-img {
    height: auto;
  }
}

.set-img {
  height: 100px;
}
@media screen and (min-width: 768px) {
  .set-img {
    height: 200px;
  }
}
@media screen and (min-width: 1024px) {
  .set-img {
    height: 180px;
  }
}
@media screen and (min-width: 1200px) {
  .set-img {
    height: auto;
  }
}

.goods-name {
  font-size: 1rem;
  color: #f66a1e;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .goods-name {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1200px) {
  .goods-name {
    font-size: 1.6rem;
  }
}

.goods-name-space {
  padding-right: 2px;
}
@media screen and (min-width: 768px) {
  .goods-name-space {
    padding-right: 3px;
  }
}
@media screen and (min-width: 1024px) {
  .goods-name-space {
    padding-right: 4px;
  }
}
@media screen and (min-width: 1200px) {
  .goods-name-space {
    padding-right: 5px;
  }
}

.ogura {
  color: #4c4c4c;
}

.cream {
  color: #d2ba16;
}

.chocolate {
  color: #ad5b1f;
}

.goods-value {
  display: block;
  color: #25abdd;
  margin-top: 10px;
}

.imo {
  color: #8b6b26;
}

.goma {
  color: #5d5d5d;
}

.cheese {
  color: #e6a70e;
}

.strawberry {
  color: #ffaabd;
}

.azuki-butter {
  color: #96514d;
}

.pudding {
  color: #ff9900;
}

.pistachio {
  color: #77ba2f;
}

.strawberry-chocolate {
  color: #e32254;
}

.rare-cheese {
  color: #dc9b1d;
}

.item-date-box {
  display: flex;
  justify-content: center;
}

.item-date-box-space {
  margin-top: 20px;
}

.item-date {
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .item-date {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .item-date {
    font-size: 1.3rem;
  }
}

.close-date-bg {
  width: 90%;
  background-color: #1688dc;
  border-radius: 8px;
  padding: 6px 0;
}
@media screen and (min-width: 768px) {
  .close-date-bg {
    width: 60%;
  }
}

.open-date-bg {
  width: 90%;
  background-color: #fd556a;
  border-radius: 8px;
  padding: 6px 0;
}
@media screen and (min-width: 768px) {
  .open-date-bg {
    width: 60%;
  }
}

.set-item-date-box {
  display: flex;
  justify-content: center;
}

.set-item-date {
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .set-item-date {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .set-item-date {
    font-size: 1.3rem;
  }
}

.set-close-date-bg {
  width: 60%;
  background-color: #1688dc;
  border-radius: 15px;
  padding: 12px 0;
}

.set-open-date-bg {
  width: 60%;
  background-color: #f66a1e;
  border-radius: 15px;
  padding: 12px 0;
}

.set-menu {
  margin-top: 20px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .set-menu {
    margin-top: 25px;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .set-menu {
    margin-bottom: 20px;
  }
}

.taste-box {
  margin: 0;
}

.taste {
  font-size: 1rem;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .taste {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1200px) {
  .taste {
    font-size: 1.6rem;
  }
}

.goods-item {
  margin-top: 15px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .goods-item {
    margin-top: 12px;
    margin-bottom: 15px;
  }
}

.goods-annotation-box {
  background-color: #23abcd;
  letter-spacing: 1px;
  border-radius: 15px;
  padding: 10px;
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .goods-annotation-box {
    letter-spacing: 2px;
    padding: 15px;
    margin-top: 45px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .goods-annotation-box {
    padding: 20px;
    margin-top: 50px;
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .goods-annotation-box {
    padding: 25px;
    margin-top: 35px;
  }
}

.goods-annotation {
  font-size: 1.2rem;
  color: #ffffff;
  text-align: left;
  margin-top: 5px;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .goods-annotation {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .goods-annotation {
    font-size: 1.8rem;
  }
}

.reserve-container {
  width: 90%;
  max-width: 1150px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  border-radius: 30px;
  background-size: cover;
  margin: 20px auto;
}

.chiikawa {
  width: 80px;
}
@media screen and (min-width: 768px) {
  .chiikawa {
    width: 90px;
  }
}
@media screen and (min-width: 1024px) {
  .chiikawa {
    width: 135px;
  }
}
@media screen and (min-width: 1200px) {
  .chiikawa {
    width: 145px;
  }
}

.hachiware {
  width: 80px;
}
@media screen and (min-width: 768px) {
  .hachiware {
    width: 90px;
  }
}
@media screen and (min-width: 1024px) {
  .hachiware {
    width: 135px;
  }
}
@media screen and (min-width: 1200px) {
  .hachiware {
    width: 145px;
  }
}

.usagi {
  width: 80px;
  margin-top: -17px;
}
@media screen and (min-width: 768px) {
  .usagi {
    width: 90px;
    margin-top: -21px;
  }
}
@media screen and (min-width: 1024px) {
  .usagi {
    width: 135px;
    margin-top: -32px;
  }
}
@media screen and (min-width: 1200px) {
  .usagi {
    width: 145px;
    margin-top: -34px;
  }
}

.reserve-method {
  width: 90%;
  position: relative;
  margin: 0 auto;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .reserve-method {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-method {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-method {
    padding-bottom: 60px;
  }
}

.reserve-method-title {
  font-size: 1.6rem;
  color: #ab672a;
  text-align: center;
  letter-spacing: 2px;
  padding-top: 30px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .reserve-method-title {
    font-size: 1.8rem;
    padding-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-method-title {
    font-size: 2rem;
    padding-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-method-title {
    font-size: 2.8rem;
    padding-top: 60px;
    margin-bottom: 30px;
  }
}

.reserve-method-contents {
  display: flex;
  justify-content: center;
}

.reserve-method-doc-box {
  margin-top: 0;
  padding-left: 3%;
}
@media screen and (min-width: 768px) {
  .reserve-method-doc-box {
    max-width: 535px;
    padding-left: 6%;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-method-doc-box {
    max-width: 635px;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-method-doc-box {
    max-width: 805px;
  }
}

.reserve-method-doc {
  font-size: 1.2rem;
  color: #717171;
  line-height: 2rem;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 768px) {
  .reserve-method-doc {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-method-doc {
    font-size: 1.6rem;
    line-height: 3.4rem;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-method-doc {
    font-size: 1.8rem;
    line-height: 3.8rem;
  }
}

.reserve-doc-utility {
  margin-top: 1.2rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .reserve-doc-utility {
    margin-top: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-doc-utility {
    margin-top: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-doc-utility {
    margin-top: 1.8rem;
  }
}

.reserve-top-container {
  width: 90%;
  position: relative;
  margin: 0 auto;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .reserve-top-container {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-top-container {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-top-container {
    padding-bottom: 5px;
  }
}

.reserve-store-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px #717171 dotted;
  border-bottom: 2px #717171 dotted;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .reserve-store-container {
    border: none;
    margin: 0;
  }
}

.reserve-store-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .reserve-store-box {
    width: 560px;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-store-box {
    width: 710px;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-store-box {
    width: 100%;
    padding-bottom: 5px;
  }
}

.reserve-store-list {
  position: relative;
}
@media screen and (min-width: 768px) {
  .reserve-store-list {
    margin-top: auto;
  }
}
.reserve-store-list:nth-of-type(n+2) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .reserve-store-list:nth-of-type(n+2) {
    margin-top: auto;
  }
}
.reserve-store-list:nth-of-type(n+2)::after {
  content: "";
  width: 2px;
  height: 16px;
  display: none;
  background-color: #717171;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  left: -27px;
}
@media screen and (min-width: 768px) {
  .reserve-store-list:nth-of-type(n+2)::after {
    display: inline;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-store-list:nth-of-type(n+2)::after {
    height: 20px;
    left: -50px;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-store-list:nth-of-type(n+2)::after {
    left: -43%;
  }
}

.reserve-store-link {
  font-size: 1.4rem;
  color: #2595c9;
}
@media screen and (min-width: 768px) {
  .reserve-store-link {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-store-link {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-store-link {
    font-size: 2rem;
  }
}

.reserve-x-link {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .reserve-x-link {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-x-link {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-x-link {
    margin-top: 30px;
  }
}

.reserve-character-box {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 15px auto 15px;
}
@media screen and (min-width: 768px) {
  .reserve-character-box {
    width: 80%;
    margin: 20px auto 15px;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-character-box {
    margin: 15px auto 15px;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-character-box {
    margin: 20px auto 20px;
  }
}

.reserve-annotation-box {
  background-color: #23abcd;
  letter-spacing: 1px;
  border-radius: 15px;
  margin-top: -10px;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .reserve-annotation-box {
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 30px;
    padding: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-annotation-box {
    padding: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-annotation-box {
    margin-top: 40px;
    padding: 25px;
  }
}

.reserve-annotation {
  font-size: 1.2rem;
  color: #ffffff;
  text-align: left;
  margin-top: 5px;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .reserve-annotation {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-annotation {
    font-size: 1.8rem;
  }
}

.reserve-info {
  width: 90%;
  position: relative;
  margin: 0 auto;
  padding-bottom: 30px;
}
.reserve-info::before {
  content: "";
  width: 100%;
  height: 2px;
  background-image: url(../image/dots_line.png);
  position: absolute;
}
@media screen and (min-width: 768px) {
  .reserve-info {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-info {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-info {
    padding-bottom: 60px;
  }
}

.reserve-info-title {
  font-size: 1.6rem;
  color: #ab672a;
  text-align: center;
  letter-spacing: 2px;
  padding-top: 30px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .reserve-info-title {
    font-size: 1.8rem;
    margin-bottom: 35px;
    padding-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-info-title {
    font-size: 2rem;
    padding-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-info-title {
    font-size: 2.8rem;
    padding-top: 60px;
    margin-bottom: 45px;
  }
}

.reserve-info-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .reserve-info-contents {
    flex-direction: row;
    justify-content: center;
  }
}

.reserve-store-image {
  width: auto;
}
@media screen and (min-width: 768px) {
  .reserve-store-image {
    width: 230px;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-store-image {
    width: 320px;
  }
}

.reserve-info-box {
  width: 265px;
  margin: 10px auto 0;
}
@media screen and (min-width: 768px) {
  .reserve-info-box {
    width: 100%;
    margin: auto auto auto 20px;
    padding-right: 8%;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-info-box {
    width: 55%;
    margin-left: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-info-box {
    letter-spacing: 2px;
  }
}

.reserve-info-doc {
  font-size: 1.2rem;
  color: #717171;
}
@media screen and (min-width: 768px) {
  .reserve-info-doc {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-info-doc {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-info-doc {
    font-size: 1.8rem;
  }
}

.worldporters-doc-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.worldporters-doc {
  max-width: 300px;
  text-align: center;
  margin-top: 40px;
  color: #717171;
  border-top: 1px #717171 solid;
  border-bottom: 1px #717171 solid;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .worldporters-doc {
    padding: 13px;
  }
}
@media screen and (min-width: 1024px) {
  .worldporters-doc {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .worldporters-doc {
    margin-top: 40px;
    padding: 15px;
  }
}

@media screen and (min-width: 1024px) {
  .store-name {
    margin-top: 0;
  }
}

.reserve-info-space {
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .reserve-info-space {
    padding-right: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-info-space {
    padding-right: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-info-space {
    padding-right: 1.8rem;
  }
}

.worldporters-link {
  color: #2595c9;
}

.reserve-form {
  width: 90%;
  position: relative;
  margin: 0 auto;
  padding-bottom: 20px;
  margin-bottom: 45px;
}
.reserve-form::before {
  content: "";
  width: 100%;
  height: 2px;
  background-image: url(../image/dots_line.png);
  position: absolute;
}
@media screen and (min-width: 768px) {
  .reserve-form {
    padding-bottom: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-form {
    padding-bottom: 140px;
  }
}

.reserve-form-title {
  font-size: 1.6rem;
  color: #25abdd;
  text-align: center;
  letter-spacing: 2px;
  padding-top: 30px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .reserve-form-title {
    font-size: 1.8rem;
    padding-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-form-title {
    font-size: 2rem;
    padding-top: 50px;
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-form-title {
    font-size: 2.8rem;
    padding-top: 60px;
  }
}

.reserve-form-contents {
  display: flex;
  justify-content: center;
}

.reserve-form-box {
  padding-left: 3%;
}
@media screen and (min-width: 768px) {
  .reserve-form-box {
    padding-left: 6%;
  }
}

.reserve-form-doc {
  font-size: 1.2rem;
  color: #717171;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .reserve-form-doc {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-form-doc {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-form-doc {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .reserve-form-doc-first {
    margin: 0;
  }
}

@media screen and (min-width: 1024px) {
  .reserve-form-doc-second {
    margin-top: 5px;
  }
}

.reserve-btn {
  width: 200px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #9c5a25;
  font-size: 1.4rem;
  color: #ffffff;
  cursor: pointer;
  letter-spacing: 3px;
  border: none;
  border-radius: 25px;
  margin: 30px auto;
  padding-top: 0;
  padding-bottom: 2px;
}
@media screen and (min-width: 768px) {
  .reserve-btn {
    margin: 35px auto 0;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-btn {
    width: 240px;
    height: 45px;
    font-size: 1.6rem;
    margin: 60px auto 15px;
  }
}
@media screen and (min-width: 1200px) {
  .reserve-btn {
    width: 280px;
    height: 50px;
    font-size: 2rem;
    margin: 60px auto 15px;
  }
}

.passive-btn {
  background-color: gray;
}

.online-shop-container {
  width: 90%;
  max-width: 1150px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  border-radius: 30px;
  background-size: cover;
  margin: 20px auto;
}

.online-shop-form {
  width: 90%;
  position: relative;
  margin: 0 auto;
  padding-bottom: 10px;
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .online-shop-form {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .online-shop-form {
    padding-bottom: 100px;
  }
}

.online-shop-title {
  font-size: 1.6rem;
  color: #25abdd;
  text-align: center;
  letter-spacing: 2px;
  padding-top: 30px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .online-shop-title {
    font-size: 1.8rem;
    padding-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .online-shop-title {
    font-size: 2rem;
    padding-top: 50px;
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .online-shop-title {
    font-size: 2.8rem;
    padding-top: 60px;
  }
}

.online-shop-box {
  padding-left: 3%;
}
@media screen and (min-width: 768px) {
  .online-shop-box {
    padding-left: 6%;
  }
}

.online-shop-doc {
  font-size: 1.4rem;
  color: #717171;
  text-align: center;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .online-shop-doc {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .online-shop-doc {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .online-shop-doc {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .online-shop-first {
    margin: 0;
  }
}

@media screen and (min-width: 1024px) {
  .online-shop-second {
    margin-top: 5px;
  }
}

.online-shop-btn {
  width: 170px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #9c5a25;
  font-size: 1.4rem;
  color: #ffffff;
  cursor: pointer;
  letter-spacing: 3px;
  border: none;
  border-radius: 25px;
  margin: 30px auto;
  padding-top: 0;
  padding-bottom: 2px;
}
@media screen and (min-width: 768px) {
  .online-shop-btn {
    width: 180px;
    height: 35px;
    margin: 25px auto -10px;
  }
}
@media screen and (min-width: 1024px) {
  .online-shop-btn {
    width: 200px;
    height: 45px;
    font-size: 1.6rem;
    margin: 35px auto -35px;
  }
}
@media screen and (min-width: 1200px) {
  .online-shop-btn {
    width: 280px;
    height: 50px;
    font-size: 2rem;
  }
}

.company-container {
  width: 90%;
  max-width: 1150px;
  background-color: #b7803f;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  margin: 0 auto 55px;
  padding: 30px 25px;
}
@media screen and (min-width: 768px) {
  .company-container {
    padding: 35px 25px;
  }
}

.company-title {
  font-size: 1.6rem;
  color: #ffffff;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .company-title {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .company-title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .company-title {
    font-size: 3rem;
  }
}

.company-contents {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .company-contents {
    justify-content: center;
    margin-left: -45%;
  }
}

.company-logo {
  width: 115px;
}
@media screen and (min-width: 768px) {
  .company-logo {
    width: 140px;
    margin-top: -40px;
  }
}
@media screen and (min-width: 1024px) {
  .company-logo {
    width: 160px;
  }
}
@media screen and (min-width: 1200px) {
  .company-logo {
    width: 200px;
  }
}

.company-doc-box {
  padding-left: 10%;
}

.company-doc {
  font-size: 1.2rem;
  color: #ffffff;
}
.company-doc:first-child {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .company-doc {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .company-doc {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .company-doc {
    font-size: 1.8rem;
  }
}
.company-doc span {
  color: #fffdcd;
}

.kuriko-site {
  color: #fffdcd;
}

.footer {
  width: 100%;
  margin-top: 100px;
  padding-bottom: 15px;
}

.footer-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.footer-logo {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .footer-logo {
    width: 120px;
  }
}

.footer-sns {
  width: 25px;
}

.copyright {
  font-size: 1.2rem;
  color: #717171;
  text-align: center;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .copyright {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1200px) {
  .copyright {
    font-size: 1.6rem;
  }
}

.error-title {
  font-size: 2.8rem;
  color: #969696;
  text-align: center;
  letter-spacing: 2px;
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .error-title {
    font-size: 3rem;
  }
}

.chiikawa-yaki-error-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}

.chiikawa-yaki {
  width: 65px;
  height: 46px;
}

.error-message-box {
  margin-top: 70px;
  margin-bottom: 150px;
}

.error-message {
  font-size: 2rem;
  color: #ab672a;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .error-message {
    font-size: 2.8rem;
  }
}

.error-message-sub {
  font-size: 1.4rem;
  color: #ab672a;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .error-message-sub {
    font-size: 1.6rem;
  }
}

.link-top-box {
  text-align: center;
}

.link-top {
  font-size: 1.6rem;
  color: #2595c9;
  letter-spacing: 2px;
}

.busy-top-box {
  margin-top: 75px;
}

.app-container {
  width: 90%;
}
@media screen and (min-width: 768px) {
  .app-container {
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .app-container {
    max-width: 830px;
  }
}
@media screen and (min-width: 1200px) {
  .app-container {
    width: 100%;
  }
}

.app-title {
  font-size: 1.8rem;
  color: #717171;
  margin-top: 25px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .app-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .app-title {
    font-size: 2.8rem;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .app-title {
    margin-top: 50px;
  }
}

.app-form-alert {
  background-color: #23abcd;
  letter-spacing: 1px;
  border-radius: 10px;
  margin-top: 60px;
  margin-bottom: 30px;
}

body.store-makuhari .app-form-alert {
  background-color: #b2815d;
  border-color: #b2815d;
}

.app-form-alert h5 {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .app-form-alert h5 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .app-form-alert h5 {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .app-form-alert h5 {
    font-size: 2rem;
  }
}

.app-form-alert-list-index :nth-child(3) {
  margin-bottom: 0;
}

.app-form-alert-list {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .app-form-alert-list {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1200px) {
  .app-form-alert-list {
    font-size: 1.6rem;
  }
}

.app-form-alert-other-list {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .app-form-alert-other-list {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1200px) {
  .app-form-alert-other-list {
    font-size: 1.6rem;
  }
}

.app-form-label {
  font-size: 1.2rem;
  color: #717171;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .app-form-label {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .app-form-label {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

.app-form-check-label {
  font-size: 1.2rem;
  color: #717171;
  margin-left: 12px;
  margin-bottom: 5px;
}
@media screen and (min-width: 1024px) {
  .app-form-check-label {
    font-size: 1.4rem;
    margin-left: 14px;
    margin-bottom: 10px;
  }
}

.app-label-space {
  padding-right: 5px;
}

.app-form-check-input {
  width: 15px;
  height: 15px;
  border: 1px #000000 solid;
}
@media screen and (min-width: 1024px) {
  .app-form-check-input {
    width: 17px;
    height: 17px;
  }
}

.app-form-control {
  height: 30px;
  font-size: 1.2rem;
  color: #717171;
}
@media screen and (min-width: 768px) {
  .app-form-control {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .app-form-control {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .app-form-control {
    height: 35px;
  }
}

.app-email-alert {
  font-size: 1.2rem;
  color: #717171;
}
@media screen and (min-width: 1200px) {
  .app-email-alert {
    font-size: 1.4rem;
  }
}

.app-form-control-textarea {
  height: 150px;
  font-size: 1.2rem;
  color: #717171;
}
@media screen and (min-width: 768px) {
  .app-form-control-textarea {
    font-size: 1.4rem;
    height: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .app-form-control-textarea {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .app-form-control-textarea {
    height: 200px;
  }
}

.app-submit {
  width: 120px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ab672a;
  border: none;
  font-size: 1.2rem;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .app-submit {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .app-submit {
    font-size: 1.6rem;
  }
}
.app-submit:hover {
  background-color: #ab672a;
}

.app-back-btn {
  width: 120px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #969696;
  border: none;
  font-size: 1.2rem;
  margin-top: 30px;
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .app-back-btn {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .app-back-btn {
    font-size: 1.6rem;
  }
}

.app-confirm-doc {
  font-size: 1.2rem;
  color: #717171;
}
@media screen and (min-width: 768px) {
  .app-confirm-doc {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .app-confirm-doc {
    font-size: 1.6rem;
  }
}

.app-confirm-line {
  border-top: 1px solid;
  margin-top: 25px;
  padding-top: 25px;
}

.app-confirm-last-line {
  border-bottom: 1px solid;
  padding-bottom: 25px;
}

.alert-success {
  background-color: #23abcd;
  margin-bottom: 35px;
}

.app-form-space {
  margin-bottom: 30px;
}

.app-schedule-title {
  font-size: 1.4rem;
  color: #717171;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .app-schedule-title {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .app-schedule-title {
    font-size: 1.8rem;
  }
}

.app-schedule-description {
  font-size: 1.2rem;
  color: #717171;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .app-schedule-description {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .app-schedule-description {
    font-size: 1.6rem;
  }
}

.app-description-red {
  color: #f4351c;
}

.app-list-group-item {
  font-size: 1.2rem;
  color: #717171;
  border-top: 1px solid #1cbe8e !important;
  line-height: 24px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .app-list-group-item {
    font-size: 1.4rem;
    line-height: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .app-list-group-item {
    font-size: 1.6rem;
    line-height: 30px;
  }
}

.app-list-group-item-doc {
  font-size: 1rem;
  color: #717171;
}
@media screen and (min-width: 1024px) {
  .app-list-group-item-doc {
    font-size: 1.4rem;
  }
}

.app-list-last-group {
  margin-bottom: 35px;
}

.app-schedule-btn {
  width: 120px;
  height: 30px;
  background-color: #2aaba7;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 1.2rem;
}
.app-schedule-btn:hover {
  background-color: #2aaba7;
}

.app-schedule-alert-description {
  font-size: 1.2rem;
  color: #FF0000;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .app-schedule-alert-description {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .app-schedule-alert-description {
    font-size: 1.6rem;
  }
}

.app-term-description {
  font-size: 1.2rem;
  color: #717171;
}

.app-schedule-submit {
  width: 165px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ab672a;
  border: none;
  font-size: 1.2rem;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .app-schedule-submit {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .app-schedule-submit {
    font-size: 1.6rem;
  }
}
.app-schedule-submit:hover {
  background-color: #ab672a;
}

.app-back-schedule-btn {
  width: 165px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #969696;
  border: none;
  font-size: 1.2rem;
  margin-top: 30px;
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .app-back-schedule-btn {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .app-back-schedule-btn {
    font-size: 1.6rem;
  }
}

.app-back-schedule-confirm-btn {
  width: 165px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #969696;
  border: none;
  font-size: 1.2rem;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .app-back-schedule-confirm-btn {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .app-back-schedule-confirm-btn {
    font-size: 1.6rem;
  }
}

.app-form-alert-last {
  background-color: #23abcd;
  letter-spacing: 1px;
  margin-top: 5px;
  margin-bottom: 30px;
}

.app-danger-btn {
  width: 165px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .app-danger-btn {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .app-danger-btn {
    font-size: 1.6rem;
  }
}

.app-date-title {
  color: #1cbe8e;
}

.app-date-doc {
  color: #f38f0d;
}

.app-inquiry-description {
  font-size: 1.2rem;
  color: #717171;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .app-inquiry-description {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .app-inquiry-description {
    font-size: 1.6rem;
  }
}

.app-alert-danger {
  background-color: #ffffff;
  border-radius: 10px;
}

.app-inquiry-alert-title {
  color: #eb5523;
}

.app-inquiry-faq-link {
  color: #23abcd;
}

.thumbnail {
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.thumbnail:hover {
  transform: scale(1.1);
}

/* Lightbox (モーダル) */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
}

/* Lightboxの画像 */
.lightbox-img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
}

/* 閉じるボタン */
.lightbox-close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ff0000;
}

.sms-container {
  width: 90%;
  max-width: 720px;
  margin: 0 auto 35px;
}

.sms-title {
  font-size: 1.8rem;
  color: #ab672a;
  text-align: center;
  letter-spacing: 2px;
  margin-top: 50px;
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .sms-title {
    font-size: 2rem;
  }
}

.sms-doc {
  font-size: 1.4rem;
  color: #717171;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .sms-doc {
    font-size: 1.6rem;
  }
}

.sms-sub-title {
  font-size: 1.4rem;
  color: #717171;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .sms-sub-title {
    font-size: 1.6rem;
  }
}

.sms-list-box {
  margin-top: 35px;
  margin-bottom: 35px;
}

.sms-list-doc {
  font-size: 1.4rem;
  color: #717171;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .sms-list-doc {
    font-size: 1.6rem;
  }
}

.sms-line-link {
  font-size: 1.4rem;
  color: #23abcd;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .sms-line-link {
    font-size: 1.6rem;
  }
}

.sms-annotation-box {
  margin-top: 35px;
  margin-bottom: 50px;
}

.faq-main-title {
  font-size: 2.8rem;
  color: #969696;
  text-align: center;
  letter-spacing: 2px;
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .faq-main-title {
    font-size: 3rem;
  }
}

.faq-container {
  width: 90%;
  max-width: 720px;
  margin: 0 auto 35px;
}

.faq-top-link-container {
  width: 90%;
  max-width: 720px;
  margin: 70px auto 70px;
}

.faq-title {
  font-size: 1.8rem;
  color: #ab672a;
  text-align: center;
  letter-spacing: 2px;
  margin-top: 50px;
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }
}

.faq-doc {
  font-size: 1.4rem;
  color: #717171;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .faq-doc {
    font-size: 1.6rem;
  }
}

.faq-ans {
  font-size: 1.4rem;
  color: #29afad;
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .faq-ans {
    font-size: 1.6rem;
  }
}

.faq-red {
  color: #ff3366;
}

/*# sourceMappingURL=style.css.map */
