@charset "utf-8";
/* last-update 2021/12/15 */

/*------------------------------
	モバイルメニュー
------------------------------*/
.toggle-menu {
  display: none;
}
@media screen and (max-width: 960px) {
  .toggle-menu {
    display: block;
  }
}
.toggle-menu__checkbox {
  display: none;
}
.toggle-menu__button {
  position: fixed;
  z-index: 300;
  cursor: pointer;
}
.toggle-menu__button.-cross {
  top: 5px;
  right: 5px;
  height: 46px;
  width: 46px;
  background: #E65C76; /*ハンバーガーの背景色*/
  border-radius: 3px; /*ハンバーガーの丸角*/
}
.toggle-menu__button.-cross::before,
.toggle-menu__button.-cross::after,
.toggle-menu__button.-cross span {
  content: '';
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  width: 30px;
  margin: -1px auto 0;
  background-color: #fff; /*ハンバーガーの三本線の色*/
}
.toggle-menu__button.-cross::before {
  top: 12px;
}
.toggle-menu__checkbox:checked ~ .toggle-menu__button.-cross::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.toggle-menu__button.-cross::after {
  bottom: 12px;
}
.toggle-menu__checkbox:checked ~ .toggle-menu__button.-cross::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.toggle-menu__button.-cross span {
  top: 50%;
}
.toggle-menu__checkbox:checked ~ .toggle-menu__button.-cross span {
  display: none;
}
.toggle-menu__nav {
  background: #fff; /*スマホナビの背景色*/
  position: fixed;
  top: 0;
  z-index: 200;
  height: 100%;
  width: 260px;
  padding: 20px 10px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  overflow-y: scroll;
  scrollbar-width: none;
}
.toggle-menu.-left .toggle-menu__nav {
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.toggle-menu.-left .toggle-menu__checkbox:checked ~ .toggle-menu__nav {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.toggle-menu.-down .toggle-menu__nav {
  width: 100%;
  left: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}
.toggle-menu.-down .toggle-menu__checkbox:checked ~ .toggle-menu__nav {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.toggle-menu.-cover .toggle-menu__nav {
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  pointer-events: none;
}
.toggle-menu.-cover .toggle-menu__checkbox:checked ~ .toggle-menu__nav {
  opacity: 1;
  pointer-events: all;
}
.toggle-menu__nav::-webkit-scrollbar {
  display: none;
}
.toggle-menu__nav-item {
  margin-bottom: 20px;
}
.toggle-menu__overla {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.toggle-menu__checkbox:checked ~ .toggle-menu__overla {
  opacity: 1;
  pointer-events: all;
}
.toggle-menu.-cover .toggle-menu__checkbox:checked ~ .toggle-menu__overla {
  opacity: 0;
  pointer-events: none;
}

.sp-nav {
  background: #f999aa;
  padding: 20px 0;
  margin-bottom: 30px;
}
.sp-nav > li {
  margin-bottom: 0;
  text-align: center;
}
/* .sp-nav a {
  display: block;
  position: relative;
  padding: 16px 40px 14px 20px;
  border-bottom: 2px solid #f00;
  text-decoration: none;
  color: #999;
}
.sp-nav a::after {
  content: '';
  position: absolute;
  z-index: 10;
  top: 20px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #f00;
  border-right: 2px solid #f00;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sp-nav a:hover {
  color: #f00;
} */
.sp-banner {
  margin-bottom: 30px;
}
.sp-banner li {
  margin-bottom: 10px;
}
.toggle-menu .catlist li {
  font-size: 1.2rem;
}
br.sp {
  display: none;
}
/*===============================================
  画面の横幅が680px以下に適用
===============================================*/
@media screen and (max-width: 680px) {
  /*--------------------------------------
		common
	--------------------------------------*/
  html {
    font-size: 62.5%;
  }
  /* box-sizing（padding、borderを含んだ幅、高さにする） */
  *,
  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  /* border-boxでfancyboxがズレるのでその対策 */
  #overlaybox,
  #fancybox-tmp,
  #fancybox-loading,
  #fancybox-overlay,
  #fancybox-wrap,
  #fancybox-outer,
  #overlaybox *,
  #fancybox-tmp *,
  #fancybox-loading *,
  #fancybox-overlay *,
  #fancybox-wrap *,
  #fancybox-outer * {
    -o-box-sizing: content-box;
    -ms-box-sizing: content-box;
    box-sizing: content-box;
  }
  img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
  p {
    text-align: left;
  }
  br.sp {
    display: block;
  }
  body,
  #wrap {
    width: auto;
    min-width: 320px;
  }
  div.sbox-cen h1.stext {
    font-weight: normal;
  }
  div.sbox-cen p.summary {
    display: none;
  }
  body h1.seotext {
    padding-bottom: 0;
    font-size: 1rem;
  }
  body h1.seotext span {
    display: none;
  }
  /* drawer */
  .drawer--left .drawer-hamburger,
  .drawer--left .drawer-nav {
    display: block;
  }
  /*--------------------------------------
		#header
	--------------------------------------*/
  #header {
    width: 100%;
    padding: 0;
  }
  #header .header {
    width: auto;
    padding: 20px 60px;
  }
  #header .header .logo {
    float: none;
    width: 200px;
    padding: 0;
    margin: 0 auto;
    text-align: center;
  }
  #header .header .info {
    display: none;
  }
  #nav {
    display: none;
  }
  /*--------------------------------------
		#content
	--------------------------------------*/
  #main {
    width: 100%;
    padding: 30px 0;
    margin: 0;
  }
  #content {
    float: none;
    width: 92.6%;
    padding: 0 0 30px;
    margin: 0 auto;
    font-size: 1.4rem;
  }
  #content .panz {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  /* table */
  #content table th {
    width: 30%;
  }
  #content table th,
  #content table td {
    padding: 11px 10px 8px;
  }
  #content .scroll {
    overflow: auto;
    white-space: nowrap;
  }
  #content .scroll::-webkit-scrollbar {
    height: 5px;
  }
  #content .scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  #content .scroll::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
  .module.mod_text .responsive-table table.table {
    min-width: 660px;
  }
  /* #content p.contact {
    margin-bottom: 0;
  } */
  #pagetop,
  #main #pagetop {
    display: none;
    position: fixed;
    z-index: 100;
    right: 5px;
    bottom: 5px;
  }
  /*--------------------------------------
		#side
	--------------------------------------*/
  #side {
    display: none;
  }
  .side {
    float: none;
    margin: 0 auto;
    font-size: 1rem;
  }
  #side p.top,
  #side .nav,
  #side .infobar,
  #side .info {
    display: none;
  }
  #side .banner,
  #side .catbar,
  #side .catlist {
    text-align: center;
  }
  /*--------------------------------------
		#footer
	--------------------------------------*/
  #fnav,
  #fnav ul {
    display: none;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  #fnav ul li {
    display: block;
    position: relative;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #f00;
  }
  #fnav ul li:first-child {
    border-top: 1px solid #f00;
  }
  #fnav ul li + li {
    border-left: none;
  }
  #fnav ul li a {
    position: relative;
    display: block;
    padding: 11px 10px 9px;
    font-size: 1.4rem;
    font-weight: normal;
    text-align: left;
    text-decoration: none;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #fnav ul li a::after {
    content: '';
    position: absolute;
    z-index: 10;
    top: 17px;
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #f00;
    border-right: 2px solid #f00;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #fnav ul li a:hover {
    text-decoration: none;
  }
  #fnav ul li a:hover::after {
    -webkit-transform: translateX(3px) rotate(45deg);
    transform: translateX(3px) rotate(45deg);
  }
  #footer .footer {
    width: auto;
    padding: 15px 20px;
  }
  #footer .footer .info br {
    display: none;
  }
  #footer .footer p {
    line-height: 1.6;
    text-align: center;
  }
  #footer .footer address {
    text-align: center;
  }
  .pagetop {
    display: none !important;
  }
  /*--------------------------------------
		contents
	--------------------------------------*/
  /* .imgleft, .imgright */
  #content .imgleft .image,
  #content .imgright .image {
    width: 30%;
  }
  #content .imgleft .image {
    margin-right: 20px;
  }
  #content .imgright .image {
    margin-left: 20px;
  }
  #content .imgleft .image li,
  #content .imgright .image li {
    margin-bottom: 10px;
  }
  #content .imgleft .image li a,
  #content .imgright .image li a,
  #content #news.imgright .image li.fancybox a,
  #content .imgleft .image li span,
  #content .imgright .image li span {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 0 99%;
  }
  #content #news.imgright .image li a {
    padding: 0;
  }
  #content .imgleft .image li a img,
  #content .imgright .image li a img,
  #content #news.imgright .image li.fancybox a img,
  #content .imgleft .image li span img,
  #content .imgright .image li span img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    padding: 4px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #content #news.imgright .image li a img {
    position: relative;
    top: auto;
    left: auto;
    padding: 0;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  #content .imgleft > p,
  #content .imgleft .text {
    overflow: hidden;
    margin-left: auto;
  }
  #content .imgright > p,
  #content .imgright .text {
    overflow: hidden;
    margin-right: auto;
  }
  /* aside */
  #content .aside dl,
  #content .aside li {
    width: 48%;
    margin: 0 4% 20px 0;
  }
  #content .aside dl:nth-child(2n),
  #content .aside li:nth-child(2n) {
    margin-right: 0;
  }
  /* pagebute */
  #content ul.page {
    vertical-align: middle;
  }
  #content ul.page li a.link_page,
  #content ul.page li span.current_page {
    width: 25px;
    height: 25px;
    padding: 6px 0;
    font-size: 1.2rem;
  }
  /* iframe */
  #content #map {
    position: relative;
    width: 100%;
    height: 300px;
    margin-right: 0;
    margin-left: 0;
  }
  #content .movie {
    overflow: hidden;
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
  }
  #content #map iframe,
  #content .movie iframe {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /*--------------------------------------
		index
	--------------------------------------*/
  #info #map {
    float: none;
    margin-bottom: 15px;
  }
  #info .text {
    float: none;
    margin: 0;
  }
  /*--------------------------------------
		gallery,product
	--------------------------------------*/
  #gallery,
  #product {
    margin-bottom: 20px;
  }
  #gallery dl,
  #product dl {
    width: 32%;
    margin: 0 2% 15px 0;
  }
  #gallery dl dd.image a,
  #product dl dd.image a {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 0 99%;
  }
  #gallery dl dd.image a img,
  #product dl dd.image a img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    padding: 4px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  /*--------------------------------------
		.imgbox
	--------------------------------------*/
  #content .imgbox {
    margin: 0 0 15px;
  }
  #content .imgbox ul.imgbig {
    float: none;
    width: 100%;
    margin: 0 0 10px;
    text-align: center;
  }
  #content .imgbox ul.imgbig li {
    width: 300px;
    height: 300px;
    padding: 0;
    margin: 0 auto 10px;
  }
  #content .imgbox ul.imgbig li a,
  #content .imgbox ul.imgbig li span {
    width: 300px;
    height: 300px;
    padding: 0;
  }
  #content .imgbox ul.imgbig li a img,
  #content .imgbox ul.imgbig li span img {
    max-width: 290px;
    max-height: 290px;
  }
  #content .imgbox ul.imglist {
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 0;
  }
  #content .imgbox ul.imglist li {
    display: inline-block;
    float: none;
    width: 60px;
    height: 60px;
    padding: 0;
    margin: 0 5px 10px;
    text-align: center;
    letter-spacing: normal;
  }
  #content .imgbox ul.imglist li a,
  #content .imgbox ul.imglist li span {
    width: 60px;
    height: 60px;
  }
  #content .imgbox ul.imglist li a img,
  #content .imgbox ul.imglist li span img {
    max-width: 50px;
    max-height: 50px;
  }
  /*--------------------------------------
		contact
	--------------------------------------*/
  #content #mailform table th,
  #content #mailform table td {
    display: block;
    width: 100%;
    padding: 9px 20px 7px;
  }
  #content #mailform table td input[type='text'] {
    width: 100%;
    height: 30px;
    background: #fff;
    border-radius: 0;
    font-size: 1.6rem;
  }
  #content #mailform table td input.short {
    width: 30px;
  }
  #content #mailform table td input.datepicker {
    width: 240px;
  }
  #content #mailform table td input.postage {
    width: 130px;
  }
  #mailform table td select {
    background: #fff;
    border-radius: 0;
    font-size: 1.6rem;
  }
  #content #mailform table textarea {
    width: 100%;
    height: 200px;
    margin: 2px 0;
    padding: 5px;
    font-size: 1.6rem;
  }
  /* datepicker */
  /* カレンダー自体を大きく */
  div.ui-datepicker {
    font-size: 1.4em;
  }
}

/*===============================================
  画面の横幅が480px以下に適用
===============================================*/
@media screen and (max-width: 480px) {
  /*--------------------------------------
		#content
	--------------------------------------*/
  /* table */
  #content #mailform table {
    border-bottom: 1px solid #ccc;
  }
  #content table {
    border-bottom: 1px solid #ccc;
  }
  #content table th,
  #content table td {
    border-bottom: none;
    width: 100%;
    display: block;
  }
  #content .imgleft .image,
  #content .imgright .image {
    float: none;
    width: 80%;
    margin: 0 auto 20px;
    text-align: center;
  }
  #content .imgleft .image.w100,
  #content .imgright .image.w100 {
    width: 100%;
    text-align: center;
  }
  #content #news.imgright .image,
  #content #news.imgright .image li a {
    width: 200px;
  }
  #content .imgleft .image li a,
  #content .imgright .image li a,
  #content .imgleft .image li span,
  #content .imgright .image li span {
    width: 100%;
    padding-bottom: 100%;
    margin: 0 auto;
  }
  /* aside */
  #content .aside dl {
    float: none;
    width: 100%;
    margin: 0 0 20px;
  }
  #content .aside dl dt {
    text-align: center;
  }
  /*--------------------------------------
		index
	--------------------------------------*/
  #topics dt {
    float: none;
    font-size: 0.85em;
  }
  #topics dd {
    padding: 0;
  }
  /*--------------------------------------
		gallery,product
	--------------------------------------*/
  #gallery dl,
  #product dl {
    overflow: hidden;
    width: 100%;
    margin: 0 0 15px;
  }
  #gallery dl dd.image,
  #product dl dd.image {
    float: left;
    width: 35%;
    margin-right: 20px;
  }
  #gallery dl dt,
  #product dl dt {
    overflow: hidden;
    margin: 0 0 10px;
    font-size: 1.14em;
  }
  #gallery dl dd.comment,
  #product dl dd.comment {
    overflow: hidden;
    padding: 0;
  }
}
