@charset "UTF-8";
/* GUIDE
  ・margin,paddingは8の倍数を基本とする。
  ・フォントサイズは最小12px(コピーライト)、本文16px、タイトル40px(PC)/24px(SP)、
  ・使用カラーは背景（#）、文字（#）

*/

body {
  position: relative;
}
ul {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
h1, h2, h3 {
  margin: 0;
}
p {
  margin: 0;
}
a {
  color: #181818;
  text-decoration: none;
}

/* - - - - - - - - - - common - - - - - - - - - - */
body {
  color: #181818;
}
h2, h3 {
  text-align: center;
  margin-bottom: 16px;
}
/* - - - - - - - - - - SP - - - - - - - - - - */
/* ========== header ========== */
header {
  z-index: 100;
  position: sticky;
  top: 0;
  background-color: #2666E2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header a {
  color: white;
}
header .logo img {
  margin: 16px;
}
header .menu {
  display: flex;
}
header .menu .item {
  margin: 0 8px;
}
header .menu .item a {
  display: inline-flex;
  flex-direction: column;
}
header .menu .item:last-child {
  border-right: none;
}
header .menu .item i {
  color: white;
  margin: 0 auto 0.5rem;
}
header .menu .item span {
  font-size: 12px;
}

/* ========== main ========== */
/* ----- catch ----- */
#catch {
  width: calc(100vw - 48px);
  margin: 24px auto;
}
#catch .image-container img {
  width: 100%;
}
#catch .text-container {
  position: absolute;
  top: 120px;
  margin: 8px;
}
#catch .text-container h1 {
  font-size: 24px;
  color: white;
  display: flex;
  flex-direction: column;
}
/* ----- what's new ----- */
#whats-new {
  width: calc(100vw - 48px);
  margin: 24px auto;
  padding: 16px 8px;
  border: solid 1px #C4C4C4;
}
#whats-new .date {
  text-align: right;
  margin-bottom: 8px;
}
#whats-new .text {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
}
#whats-new .text span {
  margin-bottom: 8px;
}
#whats-new .text .center {
  text-align: center;
}
#whats-new .text .right {
  text-align: right;
}
/* ----- menu ----- */
#menu {
  width: calc(100vw - 48px);
  margin: 24px auto;
  padding: 16px 8px;
  text-align: center;
}
#menu h2 {
  margin: 0;
}
#menu h3 {
  margin-top: 16px;
  margin-bottom: 8px;
}
#menu .category {
  margin-bottom: 16px;
}
#menu .category p {
  text-align: left;
}
#menu .category ul {
  border-top: solid 1px #C4C4C4;
  border-bottom: solid 1px #C4C4C4;
  padding: 8px 0;
  margin-bottom: 8px;
}
#menu .category ul li {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
}
#menu .category ul li .price {
  font-weight: bold;
}
/* ----- FAQ ----- */
#faq {
  width: calc(100vw - 48px);
  margin: 24px auto;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
}
#faq h2 {
  width: 100%;
}
#faq input {
  display: none;
}
#faq label {
  background-color: #E3F2FD;
  margin: 8px;
  padding: 8px 4px;
  position: relative;
}
#faq label span {
  display: inline-block;
  width: calc(100% - 16px);
  font-weight: bold;
  letter-spacing: 0.1rem;
}
#faq label::after {
  content: "＋";
  position: absolute;
}
#faq #answer_1,
#faq #answer_2,
#faq #answer_3,
#faq #answer_4 {
  display: none;
}
#faq #question_1:checked ~ #answer_1,
#faq #question_2:checked ~ #answer_2,
#faq #question_3:checked ~ #answer_3,
#faq #question_4:checked ~ #answer_4 {
  display: block;
}
#faq .answer {
  margin: 8px;
  padding: 4px;
}
/* ----- about ----- */
#about {
  width: calc(100vw - 48px);
    margin: 24px auto;
}
#about ul {
  border: solid 1px #C4C4C4;
  padding: 16px 8px;
}
#about ul li {
  margin-bottom: 16px;
  display: flex;
}
#about ul li.sp.googlemap {
  display: block;
  padding: 0 24px;
}
#about ul li.pc.googlemap {
  display: none;
  padding: 0 16px;
}
#about ul li.googlemap iframe {
  margin: auto;
  display: block;
  max-width: 100%;
}
#about ul li .title {
  width: 5em;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  margin-right: 8px;
}
#about ul li .text {
  width: calc(100% - 5em - 8px);
  display: inline-block;
}
/* ========== fab ========== */
#fab-pc {
  display: none;
}
#fab-sp {
  background-color: #2666E2;
  color: white;
  position: sticky;
  bottom: 0;
  padding: 8px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#fab-sp p {
  font-size: 24px;
}
#fab-sp .button {
  color: #181818;
  background-color: white;
  padding: 8px 16px;
  border-radius: 26px;
  margin: 8px 0;
  font-size: 24px;
}

/* ========== footer ========== */
footer {
  background-color: #2666E2;
  color: white;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer span {
  font-size: 12px;
}


/* - - - - - - - - - - PC - - - - - - - - - - */
@media only screen and (min-width:1280px) {
  /* ========== common ========== */
  h2 {
    font-size: 32px;
    letter-spacing: 0.1rem;
  }
  h3 {
    font-size: 24px;
  }
  /* ========== header ========== */
  header .menu {
    margin: 16px;
  }
  header .menu .item {
    margin: 0 16px;
  }
  header .menu .item a {
    align-items: center;
    flex-direction: unset;
  }
  header .menu .item a i {
    margin: 0;
    padding-right: 0.5rem;
  }
  header .menu .item a span {
    font-size: 16px;
  }
/* ========== main ========== */
  /* ----- catch ----- */
  #catch {
    max-width: 1200px;
    margin: 32px auto;
  }
  #catch .image-container img {
    width: 100%;
  }
  #catch .text-container {
    top: 132px;
    margin: 40px;
  }
  #catch .text-container h1 {
    font-size: 40px;
  }
  /* ----- what's new ----- */
  #whats-new {
    max-width: 880px;
    margin: 48px auto;
    padding: 24px 16px;
  }
  #whats-new .text span {
    margin-bottom: 16px;
  }
  /* ----- menu ----- */
  #menu {
    width: 880px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #menu h2 {
    width: 100%;
    margin-bottom: 16px;
  }
  #menu .category {
    width: 400px;
  }
  /* ----- FAQ ----- */
  #faq {
    max-width: 880px;
    padding: 0;
  }
  #faq h2 {
    margin-bottom: 16px;
  }
  #faq label {
    margin: 16px;
    padding: 8px;
  }
  #faq label::after {
    font-size: 24px;
    right: 10px;
  }
  #faq label span {
    font-size: 24px;
  }
  #faq .answer {
    padding: 8px;
    margin: 16px;
    font-size: 20px;
  }
  /* ----- about ----- */
  #about {
    max-width: 880px;
    margin: 48px auto;
  }
  #about ul {
    padding: 24px 16px;
  }
  #about ul li {
    font-size: 24px;
    margin-bottom: 24px;
  }
  #about ul li.sp.googlemap {
    display: none;
  }
  #about ul li.pc.googlemap {
    display: block;
  }
  #about ul li .title {
    width: 30%;
  }
    #about ul li .text {
      width: calc(100% - 30% - 8px);
    }

/* ========== fab ========== */
  #fab-sp {
    display: none;
  }
  #fab-pc {
    background-color: #2666E2;
    position: sticky;
    bottom: 40px;
    left: 78%;
    width: 280px;
    height: 280px;
    border-radius: 100%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
  }
  #fab-pc h1 {
    margin: 8px 0;
  }
  #fab-pc h2 {
    font-size: 24px;
  }
}
/* ========== footer ========== */
