@charset "UTF-8";

/**
 * reset
 */
html, body, div, main, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, main, section {
  display: block;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  max-width:100%;
  height:auto;
  vertical-align:bottom;
}
strong {
  font-weight: bolder;
}
a {
  outline: none;
  color: var(--text-color);
  transition: opacity 0.3s;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
@media (hover:hover) and (pointer:fine) {
  a:hover,
  input[type="submit"]:hover {
    opacity: 0.5;
  }
}

/**
 * vars
 */
:root {
  --main-color: #0F9A5D;
  --main-light-color: #5C829E;
  --sub-color: #FFE646;
  --bg-color: #ECECEC;
  --text-color: #333;
  --link-color: #0017C1;
  --attention-color: #F13B3B;
}

/**
 * contents
 */
html {
  font-size: 62.5%;
}
body {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--text-color);
  /*font-feature-settings:"palt";
  -webkit-font-smoothing: antialiased;*/
  -webkit-text-size-adjust:none;
}
body::before {
  position: fixed;
  display: block;
  width: 100vw;
  height: 100vh;
  background: url('../img/common/mv_bg0.jpg') no-repeat center center / cover;
  content: '';
}
body.scrollstop,
main {
  overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}
/* micro clearfix */
.cf:before, .cf:after {
  content: "";
  display: table;
}
.cf:after { clear: both; }

.clear {
  clear: both;
}
.tal {
  text-align: left;
}
.tac {
  text-align: center;
}
.tar {
  text-align: right;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
}
@media only screen and (min-width:821px) {
  .sp {
    display:none !important;
  }
}
@media only screen and (min-width:374px) {
  .sp_s {
    display:none !important;
  }
}
@media only screen and (max-width:820px) {
  body::before {
    display:none
  }
  body.index::before {
    display:block;
    background: #F8E6D6 url('../img/common/mv_bg0_sp.jpg') no-repeat center center / cover;
  }
  .pc {
    display:none !important;
  }
  .inner {
    padding: 0 16px;
  }
}
/**/
@media print {
  .sp,
  .sp_s {
    display: none;
  }
}

/**
 * anime
 */
.ani_ttl {
   opacity: 0;
 }
.ani_ttl .word {
  white-space: nowrap;
}
.ani_ttl .char {
  position: relative;
  display: inline-block;
  opacity: 0;
}
.ani_ttl::after {
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0.5s;
}
.ani_ttl.on::after {
  transform: scaleX(1);
}

.ani_slideup {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.ani_slideup.on {
  opacity: 1;
  transform:translateY(0);
}

.ani_img {
  opacity: 0;
  transform: scale(1.02);
  filter: blur(5px);
  transition: all 1s ease-in-out;
}
.ani_img.on {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.ani_btn {
  display: inline-block;
  transition: opacity .3s ease-in, transform .4s cubic-bezier(0.175, 0.885, 0.320, 1.275);
  transform: scale(0.8);
  opacity: 0;
}
.ani_btn.on {
  transform: scale(1);
  opacity: 1;
}

/**
 * input
 */
input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="url"],
textarea,
select {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 6px 10px 8px;
  background: #fff;
  border: solid 1px var(--main-light-color);
  border-radius: 8px;
  vertical-align: middle;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  color: var(--text-color);

  -webkit-appearance:none;
  -moz-appearance:none;
  -o-appearance:none;
  -ms-appearance:none;
  appearance:none;
}
select::-ms-expand {
  display:none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  /*-webkit-appearance: none;*/
  margin: 0;
}
input[type="submit"],
input[type="button"] {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  transition: opacity 0.3s;
  cursor: pointer;
  -webkit-appearance:none;
  -moz-appearance:none;
  -o-appearance:none;
  -ms-appearance:none;
  appearance:none;
}
select {
  box-sizing: border-box;
  width: auto;
  max-width: 100%;
  padding-right: 32px;
  background: #fff url('../img/common/icon_arrow5.svg') no-repeat right 16px center / 9px auto;
  cursor: pointer;
}
textarea {
  min-height: 200px;
}
@media only screen and (max-width:820px) {
  textarea {
    min-height: 150px;
  }
}

/**
 * #container
 */
#container {
  position: relative;
}

/**
 * header
 */
header {
  position: fixed;
  box-sizing: border-box;
  height: 100vh;
  padding: 16px;
}
header::before {
  position: absolute;
  display: block;
  width: 310px;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(20,60,100,1) 0%, rgba(20,60,100,0) 100%);
  content: '';
}
header h2 a {
  display: inline-block;
}
header .btn_menu {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
header .btn_menu > div {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: top 0.2s;
}
header .btn_menu > div:nth-child(2) {
  top: 9px;
}
header .btn_menu > div:nth-child(3) {
  top: 18px;
}
@media (hover:hover) and (pointer:fine) {
  header .btn_menu:hover > div:nth-child(1) {
    top: -3px;
  }
  header .btn_menu:hover > div:nth-child(3) {
    top: 21px;
  }
}
header .btn_close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  transition: transform 0.2s;
}
header .btn_close > div {
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
}
header .btn_close > div:nth-child(1) {
  transform: rotate(-45deg);
}
header .btn_close > div:nth-child(2) {
  transform: rotate(45deg);
}
@media (hover:hover) and (pointer:fine) {
  header .btn_close:hover {
    transition: transform 0.3s ease-out;
    transform: rotate(180deg);
  }
}
header .gnav {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 245px;
  max-height: calc(100vh - 32px);
  padding: 16px;
  border-radius: 8px;
  background-color: rgba(255,255,255,0.19);
  overflow: auto;
  color: #fff;
}
header .gnav h2 {
  border-bottom: solid 1px #fff;
  padding-bottom: 10px;
  text-align: center;
  font-size: 1rem;
  font-weight: 900;
}
header .gnav h2 img {
  display: block;
  width: 213px;
  margin: auto auto 5px;
}
header .gnav li {
  margin-top: 1.4em;
  line-height: 1.4;
}
header .gnav li li {
  margin: 0.8em 0 0 2em;
  font-size: 1.2rem;
}
header .gnav .btn_pull {
  position: relative;
  text-decoration: none;
  transition: opacity 0.3s;
  cursor: pointer;
}
header .gnav .btn_pull::after {
  display: block;
  position: absolute;
  top: 6px;
  bottom: 0;
  right: -16px;
  width: 0;
  height: 0;
  margin: auto;
  border: solid 3px transparent;
  border-top: solid 5px #fff;
  content: '';
}
header .gnav .open .btn_pull::after {
  top: 0;
  transform: rotate(180deg);
}
@media (hover:hover) and (pointer:fine) {
  header .gnav .btn_pull:hover {
    opacity: 0.5;
  }
}
header .gnav a {
  display: block;
  color: #fff;
}
header .gnav a[target="_blank"] span {
  padding-right: 20px;
}
header .gnav a[target="_blank"] span {
  background: url('../img/common/icon_blank0.svg') no-repeat right center / 12px;
}
header .gnav a b {
  display: block;
  font-size: 1.2rem;
}
header .gnav .btn {
  box-sizing: border-box;
  display: block;
  margin-top: 1.4em;
  padding: 0 20px 3px 20px;
  border: solid 1px #fff;
  border-radius: 100px;
  text-align: center;
}
header .gnav .btn[target="_blank"] {
  background-position: right 15px center;
}
.index header .anchor {
  display: block;
}
header .anchor {
  display: none;
  position: fixed;
  bottom: 16px;
  transform: translateX(-160px);
  width: 160px;
}
header .anchor li {
  margin-top: 8px;
}
header .anchor a {
  box-sizing: border-box;
  display: block;
  background-color: rgba(255,255,255,0.76);
  padding: 0 0 0 16px;
  margin-left: 20px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  color: var(--main-color);
}
header .anchor .act a {
  background-color: var(--main-color);
  border: solid 2px #fff;
  border-right: none;
  margin-left: 0;
  padding-left: 32px;
  color: #fff;
}
@media only screen and (min-width:821px) and (max-height:780px) {
  header .gnav h2 img {
    width: 90px;
  }
  header .gnav li {
    margin-top: 0.9em;
    font-size: 1.3rem;
  }
  header .gnav li li,
  header .gnav a b {
    font-size: 1rem;
  }
  header .gnav .btn {
    margin-top: 1em;
    font-size: 1.3rem;
  }
}
@media only screen and (max-width:820px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    padding: 0;
    background-color: var(--main-color);
    z-index: 1000;
    transition: background 0.3s;
  }
  header::before {
    display: none;
  }
  .index header.off {
    background-color: transparent;
  }
  .index header > h2 {
    transition: opacity 0.3s;
  }
  .index header.off > h2 {
    opacity: 0;
    pointer-events: none;
  }
  header > h2 {
    padding: 12px 16px 8px;
  }
  header > h2 img {
    display: block;
    width: 174px;
  }
  header .gnav {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    padding: 55px 16px 16px;
    border-radius: 0;
    background-color: var(--main-color);
    transform: translateX(100%);
    transition: transform 0.2s ease-in;
  }
  header.open .gnav {
    transform: translateX(0%);
    transition: transform 0.3s ease-out;
  }
  header .gnav h2 {
    text-align: left;
  }
  header .gnav h2 img {
    margin: auto 0 5px;
  }
  header .gnav a span {
    display: inline-block;
    width: 230px;
    padding-right: 20px;
    background: url('../img/common/icon_arrow0.svg') no-repeat right center / 12px auto;
  }
  header .gnav .btn {
    display: inline-block;
  }
  header .gnav .btn span {
    width: auto;
  }
  header .anchor {
    display: none;
  }
}
@media only screen and (max-width:1010px) {
  .index header .anchor {
    display: none;
  }
}
@media only screen and (max-height:730px) {
  .index header .anchor {
    display: none;
  }
}

/**
 * footer
 */
footer {
  position: relative;
  background-color: var(--bg-color);
  z-index: 2;
}
footer .inner {
  padding-top: 32px;
  padding-bottom: 16px;
}
main footer a {
  color: var(--text-color);
}
footer h2 img {
  width: 380px;
}
footer address {
  display: block;
  margin: 1em 0;
}
footer .body {
  display: flex;
}
footer .body h3 {
  font-weight: 700;
  color: var(--main-color);
}
footer .body * + h3 {
  margin-top: 2em;
}
footer .body p {
  margin-top: 0.6em;
  font-size: 1.2rem;
}
footer .body nav {
  margin-top: 2em;
  font-size: 1.2rem;
}
footer .body nav ul {
  padding: 0.6em 1.5em;
  border-left: solid 1px var(--main-light-color);
}
footer .body nav li + li {
  margin-top: 0.5em;
}
footer .body .sns {
  margin-left: 180px;
}
footer .body .sns h3 {
  font-size: 1.2rem;
  color: var(--text-color);
}
footer .body .sns ul {
  display: flex;
  border: none;
  padding: 0;
}
footer .body .sns li {
  width: 40px;
  margin: 8px;
}
footer .copy {
  margin-top: 1.5em;
}
footer .copy p:first-child {
  color: var(--main-color);
}
footer .copy {
  text-align: center;
  font-size: 1.2rem;
}
@media only screen and (max-width:820px) {
  footer h2,
  footer address {
    text-align: center;
  }
  footer .body {
    display: block;
  }
  footer .body * + h3 {
    margin-top: 1.5em;
  }
  footer .body nav {
    margin: 2em 0 0;
    font-size: 1.2rem;
  }
  footer .body nav ul {
    padding: 0.6em 1.5em;
  }
  footer .body .sns {
    text-align: center;
    margin: 1em 0 0 0;
  }
  footer .body .sns ul {
    justify-content: center;
  }
  footer .body .sns li {
    width: 40px;
    margin: 8px;
  }
  footer .copy {
    margin-top: 1.5em;
  }
  footer .copy p:first-child {
    margin-bottom: 1em;
  }
  footer .copy {
    line-height: 1.5;
  }
}

.btn_top {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease-out;
}
.btn_top.act {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s ease-out;
}
.btn_top a {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  border: solid 1px #fff;
  border-radius: 8px;
  background-color: var(--main-color);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  z-index: 100;
}
.btn_top a::before {
  display: block;
  margin: 10px auto 2px;
  width: 16px;
  height: 18px;
  background: url('../img/common/icon_arrow2.svg') no-repeat center center / contain;
  content: '';
}
@media only screen and (max-width:820px) {
  .btn_top a {
    bottom: 8px;
    right: 8px;
  }
}

/**
 * header
 * main
 */
@media only screen and (min-width:1400px) {
  header {
    width: 560px;
  }
  header .anchor {
    left: 560px;
  }
  main {
    margin-left: 560px;
  }
  .index #mv .inner,
  .reserve {
    width: calc(100vw - 560px);
  }
}
@media only screen and (max-width:1399px) {
  header {
    width: 40vw;
  }
  header .anchor {
    left: 40vw;
  }
  main {
    margin-left: 40vw;
  }
  .index #mv .inner,
  .reserve {
    width: 60vw;
  }
}
@media only screen and (max-width:820px) {
  header {
    width: 100vw;
  }
  header .anchor {
    left: 0;
  }
  main {
    margin-left: 0;
  }
  .index #mv .inner,
  .reserve {
    width: 100vw;
  }
}

/**
 * main
 */
main {
  background-color: #fff;
}
main a {
  color: var(--link-color);
}
h2.ttl {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
}
* + h2.ttl {
  margin-top: 2em;
}
h2.ttl::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 4px;
  background: url('../img/common/ttl_ornament0.svg') no-repeat center center / contain;
  content: '';
}
h2.ttl b {
  display: block;
  margin: auto;
  font-size: 1.2rem;
}
h2.ttl em {
  display: block;
  margin: auto;
  font-size: 1.2rem;
  color: var(--main-color);
}
h3.ttl {
  position: relative;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: solid 1px var(--main-light-color);
  font-weight: 700;
}
* + h3.ttl {
  margin-top: 2em;
}
h3.ttl::after {
  display: block;
  position: absolute;
  bottom: 0;
  width: 44px;
  height: 4px;
  background: url('../img/common/ttl_ornament2.svg') no-repeat center center / contain;
  content: '';
}
.btn_link,
.btn_inv,
.btn_more,
input[type="button"] {
  display: inline-block;
  padding: 6px 32px;
  background: var(--main-color) url('../img/common/icon_arrow0.svg') no-repeat right 16px center / 12px auto;
  border: solid 1px var(--main-color);
  border-radius: 100px;
  text-decoration: none !important;
  color: #fff;
}
.btn_link.inact,
.btn_inv.inact,
.btn_more.inact,
input[type="button"].inact {
  pointer-events: none;
  border-color: #D5D5D5;
  background-color: #D5D5D5;
}
.btn_inv {
  padding-right: 38px;
  background: #fff url('../img/common/icon_arrow6.svg') no-repeat right 20px center / 12px auto;
  color: var(--main-color);
}
input[type="button"] {
  border-color: #999;
  background: #ddd;
  color: #333;
}
input[type="button"].btn_link {
  border-color: var(--main-color);
  background: #fff;
  color: var(--main-color);
}
.btn_link[target="_blank"],
.btn_inv[target="_blank"],
.btn_more[target="_blank"] {
  padding: 8px 52px 8px 32px !important;
  background: var(--main-color) url('../img/common/icon_blank0.svg') no-repeat right 32px center / 12px auto  !important;
}
@media only screen and (max-width:820px) {

}
/* main #head */
main #head {
  position: relative;
  background-color: var(--main-color);
  color: #fff;
}
main #head h3 {
  position: absolute;
  top: -36px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
}
main #head h3 span {
  padding: 2px 10px;
  background-color: var(--sub-color);
}
main #head a {
  color: #fff;
}
main #head .inner {
  padding-top: 32px;
  padding-bottom: 32px;
}
main #head h1 {
  margin: 1em 0;
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
}
main #head h1 b {
  display: block;
  font-size: 1.6rem;
}
.breadcrumb {
  margin-bottom: 32px;
  background-color: rgba(0,0,0,0.13);
  border-radius: 8px;
  padding: 5px 16px;
}
.breadcrumb ol {
  display: flex;
}
.breadcrumb li {
  font-size: 1.2rem;
}
.breadcrumb li + li::before {
  display: inline-block;
  width: 12px;
  height: 9px;
  background: url('../img/common/icon_arrow3.svg') no-repeat center center / contain;
  margin: 0 1em;
  content: '';
}
.breadcrumb li a {
  text-decoration: underline;
}
.breadcrumb li a:hover {
  text-decoration: none;
}
main #head #mv {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 32px;
}
main #head h4 {
  width: 100%;
  margin-top: 2em;
  text-align: center;
}
main #head #mv .img0 {
  position: absolute;
  top: 38px;
  width: 100%;
  height: 235px;
  background: no-repeat center center / cover;
  border-radius: 500px;
}
main #head #mv .img1 {
  position: absolute;
  left: 7%;
  top: 46%;
  transform: translateY(-50%);
  width: 20%;
}
main #head #mv .img2 {
  position: absolute;
  right: 7%;
  width: 25.25%;
}
main #head #mv .img3 {
  position: absolute;
  left: 62%;
  top: 260px;
  transform: translateY(-50%);
  width: 12.37%;
}
main #head #mv h3 {
  position: relative;
  top: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 2rem;
  font-weight: 900;
  color: var(--main-color);
}
main #head #mv h3 b {
  display: inline-block;
  transform: translateY(-0.15em) rotate(-90deg);
  transform-origin: center center;
  letter-spacing: 0;
}
main #head #mv h3 span {
  position: relative;
  display: inline-block;
  background-color: #fff;
  margin: 0 0.3em;
  padding: 10px 0;
  white-space: nowrap;
}
main #head #mv h3 span:nth-child(3) {
  margin-top: 30px;
}
.osusume main #head #mv h3 {
  text-orientation: upright;
}
.tosashu main #head #mv h3 span {
  letter-spacing: 0.3em;
}
@media only screen and (max-width:820px) {
  main #head .inner {
    padding-top: 66px;
  }
  main #head h1 {
    font-size: 2.4rem;
  }
  main #head #mv .img0 {
    height: 195px;
  }
  main #head #mv .img1 {
    top: 26%;
    width: 18%;
  }
  main #head #mv .img2 {
    top: 5%;
    width: 26%;
  }
  main #head #mv .img3 {
    left: 70%;
    top: 220px;
    width: 16%;
  }
  main #head #mv h3 span:nth-child(3) {
    margin-top: 50px;
  }
}
/* main #body */
main #body {
  position: relative;
  padding: 32px 0 64px;
}
main #body::before {
  display: block;
  position: absolute;
  left: 0;
  top: -30px;
  width: 100%;
  height: 32px;
  background: url('../img/common/seg1.svg') repeat-x left -1px bottom / auto 100%;
  content: '';
}
main #body time {
  font-size: 1.2rem;
  color: var(--main-light-color);
}
main #body h1 {
  font-weight: 700;
  font-size: 3.2rem;
}
main #body * + h1 {
  margin-top: 1em;
}
main #body time + h1,
main #body .tags + h1 {
  margin-top: 0.5em;
}
main #body figure {
  margin: 1em 0;
  text-align: center;
}
main #body * + p {
  margin: 1.5em 0;
}
main #body p i {
  display: inline-block;
  margin: 0 0 0 1.5em;
}
main #body h3.ttl + p {
  margin-top: 0;
}
main #body p em {
  color: var(--main-color);
}
main #body p.note {
  margin-bottom: 0 !important;
  padding-left: 1em;
}
main #body p.note::before {
  margin-left: -1em;
  content: '※';
}
main #body p.note + p.note {
  margin: 0.4em 0;
}
main #body .btns {
  margin: 2em 0;
  text-align: center;
}
main #body > *:last-child {
  margin-bottom: 0 !important;
}
main #body a {
  text-decoration: underline;
}
main #body a[target="_blank"] {
  padding-right: 16px;
  background: url('../img/common/icon_blank2.svg') no-repeat right center / 12px auto;
}
main #body .bnrs a[target="_blank"],
main #body .relate a[target="_blank"],
main #body .contents_list a[target="_blank"],
main #body .products_relate_list a[target="_blank"],
main #body .contents_list_circle a[target="_blank"],
main #body .products_other_list a[target="_blank"],
main #body .news_list a[target="_blank"] {
  padding: 0;
  background: none;
}
/* .styled */
main #body .styled li {
  padding-left: 1em;  
}
main #body ul.styled li::before {
  margin-left: -1em;
  content: '・';
}
main #body .styled li + li {
  margin-top: 0.5em;
}
main #body ul.styled.maru li::before {
  margin-left: -1em;
  content: '●';
}
main #body ul.styled.maru li em {
  font-weight: bold;
}
@media only screen and (max-width:820px) {
  main #body {
    padding: 16px 0 32px;
  }
  main #body h2.ttl {
    font-size: 2.4rem;
  }
}
/* .single_body */
main #body .single_body {
  margin: 1.2em 0;
  padding: 1.2em 0;
  border-top: solid 1px var(--main-light-color);
  border-bottom: solid 1px var(--main-light-color);
}
/* .sort */
.sort + h2.ttl {
  margin-top: 1em;
}
.sort h3 {
  margin-bottom: 0.5em;
  font-weight: 700;
}
.sort select {
  min-width: 380px;
}
@media only screen and (max-width:480px) {
  .sort select {
    min-width: 280px;
  }
}
.sort .note {
  margin-top: 0.5em !important;
  font-size: 1.2rem;
  color: var(--main-light-color);
}
/* .tags */
.tags {
  display: flex;
  gap: 6px;
  margin: 5px 0;
}
.tags li a,
.tags li span {
  display: inline-block;
  background-color: var(--bg-color);
  padding: 0 6px;
  border-radius: 6px;
  text-decoration: none !important;
  font-size: 1rem;
  color: var(--text-color);
}
/* .tab */
.tab {
  margin: 2em 0;
  text-align: center;
}
.tab ul {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: var(--bg-color);
  border-radius: 20px;
}
.tab li a {
  display: block;
  padding: 8px 24px;
  text-decoration: none !important;
  color: var(--main-color);
}
.tab li.act a {
  background-color: var(--main-color);
  border-radius: 100px;
  color: #fff;
}
/* .contents_list, .products_relate_list. products_other_list */
ul.contents_list,
ul.products_relate_list,
ul.products_other_list {
  display: flex;
  flex-wrap: wrap;
  margin: -12px;
}
.contents_list > li,
.products_relate_list > li,
.products_other_list > li {
  box-sizing: border-box;
  width: 33.33%;
  padding: 12px;
}
.contents_list a,
.products_relate_list a,
.products_other_list a {
  display: block;
  text-decoration: none !important;
  color: var(--text-color);
}
.contents_list.swiper,
.contents_list_circle.swiper {
  padding: 0 40px;
}
.contents_list figure,
.products_relate_list figure {
  margin: 0 0 0.5em !important;
  border-radius: 8px;
  overflow: hidden;
}
.contents_list figure img,
.products_relate_list figure img,
.products_other_list figure img {
  width: 100%;
  aspect-ratio: 1 / 0.75;
  object-fit: cover;
}
.contents_list time
.products_relate_list time {
  font-size: 1.2rem;
  color: var(--main-light-color);
}
.contents_list p {
  line-height: 1.4;
  font-size: 1.2rem;
}
.contents_list a[target="_blank"] > *:last-child span,
.products_relate_list a[target="_blank"] > *:last-child span {
  padding-right: 18px;
  background: url('../img/common/icon_blank1.svg') no-repeat right center / 12px auto;
}
.products_other_list a {
  text-align: center;
}
.products_other_list figure img {
  box-shadow: 8px 8px 0 0 var(--main-color);
  border: solid 1px #707070;
  border-radius: 1000px;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
@media only screen and (max-width:820px) {
  ul.contents_list {
    margin: -8px;
  }
  .contents_list > li {
    width: 50%;
    padding: 8px;
  }
  .contents_list > li.large,
  .products_relate_list > li,
  .products_other_list > li {
    width: 100%;
  }
  ul.products_relate_list,
  ul.products_other_list {
    display: block;
  }
  .products_other_list figure img {
    max-width: 240px;
  }
}
/* .contents_list_circle */
.contents_list_circle .swiper-slide {
  text-align: center;
}
.contents_list_circle figure {
  border-radius: 500px;
  border: solid 1px var(--text-color);
  overflow: hidden;
}
.contents_list_circle figure img {
  background-color: #ececec;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.contents_list_circle h3 {
  margin-top: 1em;
}
.contents_list_circle a {
  display: block;
  text-decoration: none !important;
  color: var(--text-color);
}
/* .news_list */
.sort + .news_list {
  margin-top: 2rem;
}
.news_list li {
  border-bottom: solid 1px var(--main-light-color);
}
.news_list a {
  display: block;
  padding: 10px 0;
  text-decoration: none !important;
  color: var(--text-color);
}
.news_list time {
  font-size: 1.2rem;
  color: var(--main-light-color);
}
.news_list p {
  margin: 0.3em 0 0 !important;
  font-size: 1.2rem;
}
.news_list p span {
  padding-right: 32px;
  background: url('../img/common/icon_arrow1.svg') no-repeat right center / 24px auto;
}
/* .movie_list */
.menu_list {
  display: flex;
  flex-wrap: wrap;
  margin: -12px;
}
.menu_list li {
  box-sizing: border-box;
  width: 33.33%;
  padding: 12px;
  font-size: 700;
}
.menu_list li figure {
  margin: 0 0 0.5em !important;
  border-radius: 16px;
  overflow: hidden;
}
.menu_list li p {
  margin: 0.2em 0 0 !important;
  font-size: 1.2rem;
}
@media only screen and (max-width:820px) {
  .menu_list {
    display: block;
    flex-wrap: wrap;
    margin: 0;
  }
  .menu_list li {
    display: flex;
    width: 100%;
    padding: 12px 0;
  }
  .menu_list li .txt {
    min-width: 50%;
    padding-left: 15px;
    font-size: 1.2rem;
  }
}
/* .menu_box */
.menu_box {
  position: relative;
  background-color: var(--bg-color);
  border-radius: 16px;
  padding: 0 22px 32px;
  margin-top: 46px;
}
.menu_box .head {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  top: -22px;
  align-items: center;
}
.menu_box figure {
  width: 210px;
  margin: 0 !important;
  border-radius: 16px;
  overflow: hidden;
}
.menu_box h3 {
  padding-left: 1em;
  font-weight: 700;
  font-size: 2.4rem;
}
.menu_box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.menu_box li {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: calc(50% - 16px);
  margin-top: 0.5em;
}
.menu_box li::before {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-top: dashed 1px var(--main-light-color);
  content: '';
}
.menu_box li span {
  display: inline-block;
  position: relative;
  background-color: var(--bg-color);
}
.menu_box li span:first-child {
  padding-right: 0.5em;
}
.menu_box li span:last-child {
  padding-left: 0.5em;
}
@media only screen and (max-width:820px) {
  .menu_box {
    padding: 16px 16px 32px;
    margin-top: 24px;
  }
  .menu_box .head {
    display: block;
    top: 0;
  }
  .menu_box figure {
    width: 100%;
  }
  .menu_box h3 {
    width: 100%;
    margin-bottom: 0.5em;
    padding: 0;
  }
  .menu_box ul {
    display: block;
    margin-top: 1em;
  }
  .menu_box li {
    width: 100%;
  }
}
/* .menu_plan */
.menu_plan {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 24px;
}
.menu_plan figure {
  width: calc(50% - 8px);
  margin: 0 !important;
  border-radius: 16px;
  overflow: hidden;
}
.menu_plan .txt {
  width: calc(50% - 8px);
  margin: 0 !important;
}
.menu_plan .txt .btns {
  margin-top: 1em !important;
  text-align: left !important;
}
.menu_plan h3 {
  color: var(--main-color);
}
.menu_plan p {
  margin: 0.5em 0 0 !important;
  font-size: 1.2rem;
}
.menu_plan .plan {
  margin-top: 0.5em;
  padding: 0.5em 0;
  border-top: dashed 1px var(--main-light-color);
}
.menu_plan table {
  margin-top: 0.5em;
  width: 100%;
}
.menu_plan th,
.menu_plan td {
  padding: 0.5em 0;
  font-size: 1.2rem;
}
.menu_plan th {
  padding-right: 1em;
  color: var(--main-color);
}
@media only screen and (max-width:820px) {
  .menu_plan {
    display: block;
  }
  .menu_plan figure {
    width: 100%;
  }
  .menu_plan .txt {
    width: 100%;
    margin: 1em 0 0 !important;
  }
  .menu_plan .txt .btns {
    text-align: center !important;
  }
}
/* .products_list */
.products_list li {
  display: flex;
  align-items: flex-start;
  padding: 24px 0 32px;
}
.products_list li + li {
  border-top: solid 1px var(--main-light-color);
}
.products_list li > figure {
  width: 33.7%;
  min-width: 33.7%;
  margin: 0 !important;
}
.products_list li > figure img,
.products .imgs .swiper-slide img,
.products .imgs li img {
  box-shadow: 8px 8px 0 0 var(--main-color);
  border: solid 1px #707070;
  border-radius: 1000px;
  background-color: #ececec;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.products_list .txt {
  margin-left: 16px;
}
.products_list li h3,
.products h3 {
  padding: 1em 0;
  font-weight: 700;
  font-size: 2.4rem;
}
.products_list .voice,
.products .voice {
  display: flex;
  align-items: self-start;
}
.products_list .voice figure,
.products .voice figure {
  margin: 0 !important;
  width: 60px;
  min-width: 60px;
}
.products_list .voice img,
.products .voice img {
  border-radius: 1000px;
}
.products_list .voice figcaption,
.products .voice figcaption {
  white-space: nowrap;
  transform: scale(0.8);
  font-size: 1rem;
}
.products_list .voice > div,
.products .voice > div {
  margin-left: 8px;
  background-color: var(--main-color);
  border-radius: 16px;
  padding: 16px;
  color: #fff;
}
.products_list .btns {
  margin: 1em 0 0 0 !important;
  text-align: right !important;
}
@media only screen and (max-width:820px) {
  .products_list li {
    display: block;
  }
  .products_list li + li {
    border-top: solid 1px var(--main-light-color);
  }
  .products_list li > figure {
    display: block;
    width: 240px;
    min-width :240px;
    margin: auto !important;
  }
  .products_list .txt {
    margin-left: 0;
  }
  .products_list li h3 {
    text-align: center;
  }
  .products_list .btns {
    text-align: center !important;
  }
}
/* .products */
.products {
  display: flex;
  align-items: flex-start;
  padding: 24px 0 32px;
  overflow: hidden;
}
.products .imgs {
  width: calc(50% - 16px);
  min-width: calc(50% - 16px);
  margin: 0 16px 0 0 !important;
}
.products .products-swiper {
  overflow: hidden;
}
.products .imgs .swiper-slide {
  box-sizing: border-box;
  margin: 0 !important;
  padding: 0 16px 16px 0 !important;
}
.products .imgs ul {
  display: flex;
  flex-wrap: wrap;
  padding-right: 16px;
  margin: 0 -4px 0.5em;
}
.products .imgs ul li {
  box-sizing: border-box;
  width: 25%;
  padding: 4px;
  transition: opacity 0.3s;
  cursor: pointer;
}
.products .imgs ul li:hover {
  opacity: 0.5;
}
.products .imgs li img {
  box-shadow: 3px 3px 0 0 var(--main-color);
  pointer-events: none;
}
.products h4 {
  font-size: 1.2rem;
  color: var(--main-light-color);
}
.products h3 {
  padding: 0;
}
.products .price {
  margin: 0 0 0.5em 0 !important;
  text-align: right;
}
.products .price em {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-color) !important;
}
.products .box {
  background-color: var(--bg-color);
  border-radius: 16px;
  margin-top: 1em;
  padding: 0 16px;
  font-size: 1.2rem;
}
.products .box li {
  padding: 16px 0;
}
.products .box li + li {
  border-top: dashed 1px var(--main-light-color);
}
.products .box h5 {
  font-weight: 700;
}
.products .box p {
  margin: 0.3em 0 0 !important;
}
@media only screen and (max-width:820px) {
  .products {
    display: block;
    padding: 0;
    overflow: visible;
  }
  .products .imgs {
    width: 100%;
    min-width: 100%;
    margin: 0 !important;
  }
  .products .products-swiper {
    width: 80%;
    min-width: 240px;
    margin: auto;
    overflow: visible;
  }
  .products .imgs ul {
    display: none;
  }
  .products .imgs .pos {
    margin: 1em 0;
  }
}
/* .movie_list */
ul.movie_list {
  display: flex;
  flex-wrap: wrap;
  margin: -12px;
}
.movie_list > li {
  box-sizing: border-box;
  width: 33.33%;
  padding: 12px;
}
.movie_list a {
  display: block;
  text-decoration: none !important;
  color: var(--text-color);
}
.movie_list a > * {
  pointer-events: none;
}
.movie_list figure {
  margin: 0 0 0.5em !important;
  border-radius: 8px;
  overflow: hidden;
}
.movie_list time {
  font-size: 1.2rem;
  color: var(--main-light-color);
}
.movie_list p {
  display: none;
}
@media only screen and (max-width:820px) {
  ul.movie_list {
    margin: 0;
  }
  .movie_list > li {
    width: 100%;
    padding: 8px 0;
  }
}
/* .pagination */
.pagination {
  margin: 2em 0;
  text-align: center;
}
.pagination a,
.pagination .current {
  box-sizing: border-box;
  display: inline-block;
  width: 32px;
  height: 32px;
  margin: 8px;
  padding: 4px 0 0 0 !important;
  border: none !important;
  background-color: #D5D5D5;
  border-radius: 8px;
  vertical-align: middle;
  text-align: center;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 1.2rem;
  color: #65676B;
}
.pagination .current {
  background-color: var(--main-color);
  color: #fff;
}
.pagination .pages {
  display: none;
  margin-left: 0;
  margin-right: 8px;
  background-color: transparent;
  font-size: 1.2rem;
  color: var(--main-light-color);
}
.pagination .previouspostslink,
.pagination .nextpostslink {
  margin-left: 0;
  margin-right: 0;
  background-color: transparent;
  text-indent: 120%;
  white-space: nowrap;
  overflow: hidden;
  background: url('../img/common/icon_arrow4.svg') no-repeat center center / 16px auto;
}
.pagination .previouspostslink {
  transform: rotate(-180deg);
}
@media only screen and (max-width:414px) {
  .pagination a,
  .pagination .current {
    margin: 5px;
  }
}
@media only screen and (max-width:374px) {
  .pagination a,
  .pagination .current {
    width: 28px;
    height: 28px;
    margin: 3px;
    padding-top: 2px !important;
  }
}

/**
 * #modal
 */
#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateY(-120%);
  z-index: 9999;
}
#modal.act {
  transform: translateY(0);
}
#modal .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  opacity: 0;
}
#modal.act .bg {
  transition: opacity 0.3s;
  opacity: 1;
}
#modal .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 90%;
  max-height: 90%;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  overflow: auto;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
  transform-origin: center center;
}
#modal.act .inner {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.320, 1.275) 0.2s, opacity 0.3s 0.2s;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#modal .inner .btn_close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  background: url('../img/common/btn_close.svg') no-repeat center center / contain;
}
#modal .movie iframe {
  width: 800px;
  aspect-ratio: 16 / 9;
}
#modal .movie h3 {
  font-weight: 700;
  font-size: 2.4rem;
}
#modal .movie time {
  margin: 1.6rem 0 !important;
  font-size: 1.2rem;
  color: var(--main-light-color);
}
#modal .movie p {
  margin: 0 !important;
}
@media only screen and (max-width:880px) {
  #modal .inner.movie {
    max-width: 100%;
    max-height: calc(100vh - 220px);
    padding: 44px 16px 32px;
    border-radius: 0;
  }
  #modal .movie iframe {
    width: calc(100vw - 32px);
  }
}

/**
 * .index
 */
/* .index section */
.index main {
  background: transparent;
}
.index section {
  position: relative;
  background-color: #fff;
  padding: 32px 0;
  z-index: 2;
}
.index section .btns {
  margin-top: 25px;
  text-align: center;
}

.index main > h3 {
  position: fixed;
  top: 60px;
  left: 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  text-align: left;
}
.index main > h3 span {
  padding: 2px 10px;
  background-color: var(--sub-color);
}
/* .index .circle */
.index .circle {
  position: absolute !important;
  width: 200px;
  height: 200px;
  right: 50px;
  bottom: 40px;
}
.index .circle img {
  position: absolute;
  top: 0;
  left: 0;
}
.index .circle img:first-child {
  animation-name: circle;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes circle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg);  }
}
/* .index #mv */
.index #mv {
  width: 100%;
  padding: 0;
  background: none;
  z-index: 1;
}
.index #mv .inner {
  box-sizing: border-box;
  position: fixed;
  max-width: none;
  padding: 64px 32px 0 10px;
  margin: auto;
}
.index #mv .inner > * {
  position: relative;
  z-index: 2;
}
.index #mv .inner > div:first-child {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  margin: auto;
}
.index #mv .inner h2 {
  margin-right: 5%;
}
.index #mv .bnrs {
  margin: 20px auto auto;
  text-align: center;
}
@media only screen and (max-width:820px) {
  .index #mv {
    width: 100vw;
    height: 100svh;
    min-height: 550px;
  }
  .index #mv .inner {
    width: 100%;
    max-width: 100%;
    height: 100svh;
    top: 0;
    padding: 0 16px;
    text-align: center;
    z-index: 2;
  }
  .index #mv .inner > div:first-child {
    display: block;
  }
  .index #mv .inner h1 {
    position: relative;
    top: 80px;
  }
  .index #mv .inner h1 img {
    max-width: 168px;
  }
  .index .circle {
    width: 165px;
    height: 165px;
    right: -20px;
    bottom: -20px;
  }
}
/* .index #head */
.index #head {
  position: relative;
  padding: 0;
  margin-top: 450px;
  background-color: transparent;
}
.index #head > div {
  position: relative;
  overflow: hidden;
  background-color: rgba(0,0,0,0.35);
  margin-bottom: -10px;
}
.index #head > div::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 49px;
  width: 100%;
  height: 32px;
  background: url('../img/common/seg0.svg') repeat-x left -1px bottom / auto 100%;
  content: '';
}
.index #head > div > figure {
  margin-bottom: -20px;
  border-radius: 16px 0 0 0;
  overflow: hidden;
}
.index #head .scroll {
  position: relative;
  background-color: var(--main-color);
}
.index #head .scroll > div {
  position: relative;
  width: 30px;
  height: 50px;
  margin: auto;
}
.index #head .scroll > div::before {
  position: absolute;
  display: block;
  width: 2px;
  height: 100%;
  background-color: #fff;
  content: '';
}
.index #head .scroll > div::after {
  position: absolute;
  display: block;
  top: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 100px;
  content: '';

  animation-name: scroll;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1);
}
@keyframes scroll {
    0% { top: 0; }
    100% { top: calc(100% - 10px);  }
}
.index #head .scroll span {
  position: absolute;
  display: block;
  top: 50%;
  transform: translate(-4px, -50%) rotate(90deg);
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
}
@media only screen and (max-width:820px) {
  .index #head {
    margin-top: 0;
    background-color: var(--main-color);
  }
  .index #head figure {
    display: none;
  }
  .index #head > div {
    border-top-left-radius: 0;
    overflow: visible;
    background-color: transparent;
  }
  .index #head > div::after {
    bottom: auto;
    top: -24px;
    height: 24px;
  }
  .index #head .scroll {
    display: none;
  }
  .index #head .anchor {
    padding: 1em 0;
  }
  .index #head .anchor ol {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  .index #head .anchor ol a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95px;
    height: 95px;
    border: solid 1px #fff;
    border-radius: 100px;
    text-align: center;
    font-size: 1.4rem;
    color: #fff;
  }
  .index #head .anchor span {
    display: block;
  }
  .index #head .anchor ol img {
    display: block;
    margin: 5px auto 2px;
  }
  .index #head .anchor ol b {
    display: block;
    margin: -6px auto 0;
    font-size: 1rem;
    transform: scale(0.7);
  }
}
/* .index #alert */
.index #alert {
  background-color: var(--main-color);
  padding-bottom: 32px;
}
.index #alert .inner {
  padding-bottom: 32px;
}
.index #alert h2 span {
  display: inline-block;
  background-color: #fff;
  padding: 2px 8px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--main-color);
}
.index #alert li {
  padding: 8px 0 16px 0;
  border-bottom: solid 1px #fff;
}
.index #alert a {
  display: block;
  color: #fff;
}
.index #alert time {
  font-size: 1.2rem;
}
@media only screen and (max-width:820px) {
  .index #alert {
    padding-bottom: 0;
  }
}

/**
 * .index #about
 */
.index #about {
  background-color: var(--main-color);
  padding: 0;
}
.index #about .inner > div {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background: url('../img/common/mv_bg1_sp.jpg') no-repeat center center / cover;
  padding: 32px 16px 64px;
  color: #fff;
}
.index #about h2.ttl {
  font-size: 2.4rem;
  color: #fff;
}
.index #about h2.ttl::after {
  background-image: url('../img/common/ttl_ornament1.svg')
}
.index #about p {
  line-height: 3;
  text-align: center;
}

/**
 * .index #event
 */
.index #event {
  position: relative;
  padding-bottom: 96px;
}
.index #event::before {
  display: block;
  position: absolute;
  left: 0;
  top: -30px;
  width: 100%;
  height: 32px;
  background: url('../img/common/seg1.svg') repeat-x left -1px bottom / auto 100%;
  content: '';
}
.index #event h2.ttl {
  color: var(--main-color) !important;
}

/**
 * .index #specialty
 */
.index #specialty {
  position: relative;
  background: #b7dcc7 url('../img/index/bg_specialty0.png') no-repeat center 150px / 100% auto;
  padding-bottom: 96px;
}
.index #specialty::before {
  display: block;
  position: absolute;
  left: 0;
  top: -30px;
  width: 100%;
  height: 32px;
  background: url('../img/index/seg_specialty0.png') repeat-x left -1px bottom / 100% 100%;
  content: '';
}
@media only screen and (max-width:820px) {
  .index #specialty {
    background-size: 820px auto;
    background-position: center 240px;
  }
}

/**
 * .index #sake
 */
.index #sake {
  position: relative;
  background: #FCF7EB url('../img/index/bg_sake0.png') no-repeat center 210px / 100% auto;
  padding-bottom: 64px;
}
.index #sake::before {
  display: block;
  position: absolute;
  left: 0;
  top: -30px;
  width: 100%;
  height: 32px;
  background: url('../img/index/seg_sake0.png') repeat-x left -1px bottom / 100% 100%;
  content: '';
}
@media only screen and (max-width:820px) {
  .index #sake {
    background-size: 820px auto;
    background-position: center 240px;
  }
}

/**
 * .index #event
 * .index #specialty
 * .index #sake
 */
.index #event,
.index #specialty,
.index #sake {
  padding-top: 40px;
}
.index #event h2.ttl,
.index #specialty h2.ttl,
.index #sake h2.ttl {
  text-align: center;
  padding-bottom: 0;
  margin-bottom: 25px;
  font-size: 1.6rem;
}
.index #event h2.ttl::after,
.index #specialty h2.ttl::after,
.index #sake h2.ttl::after {
  display: none;
}
.index #event h2.ttl img,
.index #specialty h2.ttl img,
.index #sake h2.ttl img {
  display: block;
  margin: 0.5em auto auto;
}
@media only screen and (max-width:820px) {
  .index #event,
  .index #specialty,
  .index #sake {
    padding-top: 32px;
    padding-bottom: 64px;
  }
  .index #event::before,
  .index #specialty::before,
  .index #sake::before {
    top: -23px;
    height: 24px;
  }
}

/**
 * .index #news
 * .index #pickup
 * .index #relate
 * .index #sns
 * .index #business
 */
.index #pickup ul,
.index #relate ul,
.index #sns ul {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.index #pickup li,
.index #relate li {
  box-sizing: border-box;
  width: 50%;
  padding: 8px;
}
.index #sns ul {
  display: flex !important;
  justify-content: center;
}
.index #sns li {
  width: 40px;
  margin: 8px;
}
.index #business {
  padding-bottom: 80px;
}
.index #business a {
  box-sizing: border-box;
  display: block;
  width: 365px;
  max-width: 100%;
  padding: 30px;
  margin: auto;
  background-color: var(--main-color);
  border-radius: 8px;
  line-height: 1.4;
  color: #fff;
}
.index #business a span {
  padding-right: 16px;
  background: url('../img/common/icon_blank0.svg') no-repeat right center / 12px auto;
}
@media only screen and (max-width:820px) {
  .index #pickup ul,
  .index #relate ul,
  .index #sns ul {
    display: block;
    margin: 0;
  }
  .index #pickup li,
  .index #relate li {
    width: 100%;
    padding: 8px 0;
  }
  .index #business {
    padding-top: 0;
    padding-bottom: 64px;
  }
  .index #business a {
    padding: 16px;
  }
}

.pointcard #body figure {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/**
 * .okyaku
 */
.okyaku #body .time {
  display: flex;
  flex-wrap: wrap;
}
.okyaku #body .time > div {
  box-sizing: border-box;
  width: 50%;
}
.okyaku #body .time > div:nth-child(odd) {
  padding-right: 12px;
}
.okyaku #body .time > div:nth-child(even) {
  padding-left: 12px;
}
.okyaku #body .time h3 {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
}
.okyaku #body .time .box {
  background-color: var(--bg-color);
  border-radius: 16px;
  margin-top: 0.5em;
  padding: 16px;
}
.okyaku #body .time p {
  margin-top: 0.5em;
}
.okyaku iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.okyaku #head {
  padding: 67px 0 0 0;
}
.reserve {
  box-sizing: border-box;
  position: fixed;
  display: flex;;
  justify-content: space-between;
  align-items: center;
  background-color: #B58A26;
  padding: 12px 32px;
  color: #fff;
  z-index: 100;
}
.reserve h3 {
  font-size: 2.4rem;
}
.reserve > div {
  display: flex;
  align-items: center;
}
.reserve div b {
  display: inline-block;
  padding-left: 20px;
  background: url('../img/common/icon_tel0.svg') no-repeat left center / 12px auto;
}
.reserve a,
.reserve span {
  margin: 0 1em 0 0.5em;
  font-size: 2.4rem;
  color: #fff;
}
.reserve .btn_reserve {
  display: inline-block;
  padding: 6px 32px;
  background: url('../img/common/icon_arrow0.svg') no-repeat right 16px center / 12px auto;
  border: solid 1px #fff;
  border-radius: 100px;
  text-decoration: none !important;
  color: #fff;
}
@media only screen and (max-width:1170px) and (min-width:820px) {
  .okyaku #head {
    padding: 57px 0 0 0;
  }
  .reserve {
    font-size: 1rem;
  }
  .reserve h3,
  .reserve a,
  .reserve span {
    font-size: 1.4rem;
  }
  .reserve div div {
    background-position: left 10px;
  }
}
@media only screen and (max-width:820px) {
  .okyaku #head {
    padding: 0;
  }
  .okyaku #body .time {
    display: block;
  }
  .okyaku #body .time > div {
    width: 100%;
  }
  .okyaku #body .time > div + div {
    margin-top: 1em;
  }
  .reserve {
    bottom: 0;
    justify-content: space-between;
    padding: 5px 16px;
    line-height: 1.4;
    font-size: 1.2rem;
  }
  .reserve a,
  .reserve span {
    display: block;
    font-size: 1.6rem;
    white-space: nowrap;
  }
  .reserve > div {
    text-align: center;
  }
  .reserve div b {
    display: inline-block;
    padding-left: 16px;
    background-position: left center;
  }
  .reserve .btn_reserve {
    font-size: 1.3rem;
  }
}

/**
 * .tosashu
 */
.tosashu ul.bnrs {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.tosashu ul.bnrs li {
  box-sizing: border-box;
  width: 50%;
  padding: 8px;
}
.tosashu ul.bnrs a {
  text-decoration: none !important;
  color: var(--text-color);
}
.tosashu ul.bnrs a p {
  margin: 0.5em 0 !important;
}
@media only screen and (max-width:820px) {
  .tosashu ul.bnrs {
    margin: 0;
  }
  .tosashu ul.bnrs li {
    width: 100%;
    padding: 8px 0;
  }
}

/**
 * .kikizake
 */
.kikizake .flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.kikizake .flex figure {
  display: block;
  width: 180px;
  margin: 0 16px 0 0 !important;
  border-radius: 300px;
  margin-left: 16px;
  overflow: hidden;
}
@media only screen and (max-width:820px) {
  .kikizake .flex {
    display: block;
    text-align: center;
  }
  .kikizake .flex figure {
    margin: auto auto 16px !important;
  }
  .kikizake .flex ul {
    display: inline-block;
    text-align: left;
  }
}
/**
 * .contact
 */
.contact table {
  width: 100%;
}
.contact tr {
  border-top: dashed 1px var(--main-light-color);
}
.contact tr:first-child {
  border: none;
}
.contact th,
.contact td {
  box-sizing: border-box;
  padding: 6px 16px;
}
.contact th {
  background-color: var(--bg-color);
}
.contact .required::after {
  display: inline-block;
  background-color: var(--attention-color);
  margin-left: 0.5em;
  padding: 1px 6px;
  font-size: 1.2rem;
  color: #fff;
  content: '必須';
}
.contact input + input {
  margin-left: 3px;
}
.contact input {
  width: 345px;
  max-width: 96%;
}
.contact input.small {
  width: 110px;
  max-width: 30%;
}
.contact .pane {
  box-sizing: border-box;
  height: 250px;
  margin-top: 3em;
  border: solid 1px var(--main-light-color);
  overflow: auto;
}
.contact .pane .pane_inner {
  padding: 16px;
}
@media only screen and (max-width:880px) {
  .contact input {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width:820px) {
  .contact tr {
    border: none;
  }
  .contact th {
    display: block;
    padding: 6px 16px;
  }
  .contact td {
    display: block;
    padding: 16px;
  }
  .contact th {
    background-color: var(--bg-color);
  }
  .contact .pane {
    height: 500px;
  }
  .contact #send {
    letter-spacing: 0;
  }
}

/**
 * .policy
 */
.policy li + li {
  margin-top: 1.5em;
}
.policy li *:last-child {
  margin-bottom: 0 !important;
}

/**
 * .sitemap
 */
.sitemap #body li {
  font-size: 1.2rem;
}

/**
 * .info
 */
.info #body .bnrs {
  display: flex;
  flex-wrap: wrap;
}
.info #body .bnrs li {
  width: 50%;
  margin-top: 24px;
}
.info #body .bnrs img {
  display: block;
}

/**
 * .swiper
 */
.swiper {
  overflow: visible;
}
.swiper .swiper-pagination {
  position: static;
  margin-top: 10px;
}
.products .pos {
  display: flex;
  justify-content: center;
}
.swiper .swiper-pagination-bullet,
.products .pos li {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 2px !important;
  border-radius: 10px;
  background: #6B6B6B;
  opacity: 1;
  transition: all 0.2s;
  cursor: pointer;
}
.swiper .swiper-pagination-bullet-active,
.products .pos li.act {
  width: 16px;
  background: var(--main-color);
}