@charset "utf-8";
/* Common CSS */

/* RESET
----------------------------------------------------------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, cite, img, strong, i, dl, dt, dd, ol, ul, li,
form, label, table, tbody, thead, tr, th, td, article, embed, figure, figcaption, footer, header, hgroup, nav, section, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
article, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

body {
  line-height: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
}

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;
}

object {
  pointer-events: none;
}

img {
  pointer-events: none;
}

a {
  text-decoration: none;
  color: #000;
}

/* CONTENTS
----------------------------------------------------------------------------------------------------*/
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 10px;
}

body {
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "sans-serif", "Arial", "Meiryo", "-apple-system"; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  text-align: center;
  background-color: #fff;
  color: #000;
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden;
}

/* HEADER
----------------------------------------------------------------------------------------------------*/
header {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #fff;
  z-index: 130;
  transition: .3s;
}

.header_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  max-width: 1400px;
  height: 75px;
  margin: 0 auto;
}

/* LOGO
*************************************** */
.logo {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 190px;
}

.logo a {
  display: block;
}

.logo img {
  width: 100%;
  max-width: 190px;
}

/* NAV
 *************************************** */
 nav {
  width: 100%;
  z-index: 140;
  transition: .3s;
}

.nav_scroll {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

.menu {
  width: 100%;
  max-width: 1400px;
  height: 55px;
  margin: 0 auto;
}

.menu li a {
  transition: all .5s ease-in-out;
}

.menu li a:hover {
  border-bottom: solid 1px;
}

.site_map .nav_list_box {
  display: flex;
  flex-wrap:wrap;
  align-items: flex-start;
  justify-content: space-between;
  text-align: center;
}

.nav_list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  margin: auto;
  font-size: 1.6rem;
}

.site_map .nav_list {
  display: block;
  width: 47%;
  margin: 0 auto;
}

.nav_list li {
  width: 20%;
}

.site_map .nav_list li {
  width: 100%;
  margin: 8px 0;
}

.nav_list li:last-child {
  border-right: none;
}

.nav_list a {
  display: block;
  padding: 10px;
  border-radius: 20px;
  transition: all .5s ease-in-out;
}

.site_map .nav_list a {
  padding: 10px;
  border-radius: 30px;
  border: solid 1px #33af0d;
}

.nav_list a {
  transition: all .5s ease-in-out;
}

.nav_list a:hover {
  background-color: #33af0d;
  color: #fff;
}

.nav_list h4 {
  font-size: 1.5rem;
  font-weight: bold;
}

/* NAV TOGGLE
 *************************************** */
.nav_box {
  display: none;
  position: fixed;
  width: 50px;
  height: 50px;
  top: 15px;
  right: 25px;
  padding: 15px 10px 10px;
  border: solid 2px;
  border-radius: 50%;
  background-color: #33af0d;
  color: #fff;
  z-index: 160;
}

.nav_box span {
  background-color: #fff;
}

.nav_toggle {
  position: relative;
  cursor: pointer;
  width: 22px;
  height: 17px;
}

.nav_toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
}

.nav_toggle, .nav_toggle span {
  display: inline-block;
  box-sizing: border-box;
  transition: all .5s;
}

.nav_toggle span:nth-child(1) {
  top: 0;
}

.nav_toggle span:nth-child(2) {
  top: 7px;
}

.nav_toggle span:nth-child(3) {
  bottom: 0;
}

.nav_toggle.active span:nth-of-type(1) {
  transform: translateY(7px) rotate(-315deg);
}

.nav_toggle.active span:nth-of-type(2) {
  opacity: 0;
}

.nav_toggle.active span:nth-of-type(3) {
  transform: translateY(-7px) rotate(315deg);
}

/* ARROW
*************************************** */
.arrow_flex_box {
  display: flex;
  align-items: center;
}

.arrow {
  position: relative;
}

.arrow_flex_box .arrow {
  position: relative;
  width: 15px;
  min-width: 15px;
  height: 15px;
  margin-right: 10px;
}

.arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(135deg);
}

.arrow_flex_box .arrow::before{
  top: 2px;
  transform: rotate(45deg);
}

.arrow h3 {
  margin-left: 15px;
}

/* MAIN
--------------------------------------------------------------------------------------*/
main {
  display: block;
  margin: 75px auto 0;
  font-size: 1.6rem;
  line-height: 1.6;
  overflow: hidden;
}

/* Bread Crumbs
*************************************** */
.bread_crumbs ul {
  display: flex;
  flex-wrap: wrap;
}

.bread_crumbs li {
  position: relative;
  margin: 0 15px 10px 0;
  padding-right: 10px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.bread_crumbs li:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  margin-top: 4px;
  margin-left: 7px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}

.bread_crumbs li:last-child:after {
  display: none;
}

.bread_crumbs li a {
  color: #000;
  transition: all .5s ease-in-out;
}

.bread_crumbs li a:hover {
  color: #ff9900;
  text-decoration: underline;
}

/* SECTION
*************************************** */
section {
  width: 100%;
  font-size: 1.6rem;
  z-index: 90;
}

.first_section {
  padding-top: 15px;
  padding-bottom: 0;
}

.frame_box {
  width: 95%;
  max-width: 1400px;
  margin: 20px auto;
  text-align: left;
}

h2 {
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

h2 p {
  color: #c6000b;
  font-size: 1.2rem;
}

.sub_box {
  margin: 20px 0;
  padding-bottom: 20px;
  border-bottom: dotted 1px #000;
}

.sub_box:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.sub_title {
  width: 100%;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
}

.lead_text {
  padding-bottom: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
}

.text_box {
  padding-top: 15px;
  border-bottom: solid 1px #a9a7a7;
}

.text {
  padding-bottom: 15px;
  line-height: 1.6;
}

.fas {
  transform: rotate(90deg);
}

.circle {
  position: relative;
  font-weight: bold;
  word-break: break-all;
  line-height: 1.4;
}

.circle::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
  color: #33af0d;
  font-size: 1.6rem;
  vertical-align: middle;
}

.circle span {
  display: block;
  margin-left: 20px;
}

.price {
  margin-top: 5px;
  font-size: 1.4rem;
}

.price span {
  margin-left: 5px;
  font-size: 1.2rem;
}

/* POPUP DETAIL
*************************************** */
.popup_detail {
  position: relative;
  width: 95%;
  max-width: 900px;
  margin: 40px auto;
  padding: 15px;
  border: solid 2px #ffbb21;
  border-radius: 15px;
  background-color: #fff;
  font-size: 1.6rem;
}

.mfp-bg {
  transition: all 0.15s ease-out;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.15s ease-out;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-close {
  cursor: pointer;
  right: calc(100% / 2 - 270px);
}

.mfp-title {
  color: #000;
  font-weight: bold;
}

.popup_jacket_box {
  margin: 0 auto;
  padding: 20px;
  width: 540px;
  max-width: 100%;
  background-color: #fff;
}

.popup_jacket {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 500px;
}

.popup_jacket .image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.popup_jacket_box .circle::before,
.popup_jacket_box h3 {
  font-size: 2rem;
}

.popup_jacket_box .price {
  font-size: 1.75rem;
}

/* Button
*************************************** */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
  width: 95%;
  max-width: 400px;
  margin: 20px auto 0;
  padding: 5px;
  border-radius: 20px;
  border: solid 2px #33af0d;
  background-color: #33af0d;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  transition: all .5s ease-in-out;
}

@media all and (-ms-high-contrast:none) {
  .btn {
    padding-top: 8px;
  }
}

.more_btn {
  width: 100%;
  max-width: 150px;
}

.btn {
  transition: all .5s ease-in-out;
}

.btn:hover {
  background-color: #fcf7e1;
  color: #33af0d;
}

.btn_flex_cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.btn_flex_cont a {
  display: block;
  margin: 10px 8px;
}

.btn_flex_cont .btn {
  width: 100%;
  max-width: 205px;
  font-size: 1.6rem;
  line-height: 1.2;
}

.btn_flex_cont img {
  width: 100%;
}

.info_link {
  display: block;
  width: 95%;
  margin: 20px auto 0;
  color: #003fb3;
  line-height: 1.4;
  transition: all .5s ease-in-out;
}

.info_link:hover {
  text-decoration: underline;
}

/* SNS SHARE
*************************************** */
.share_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 95%;
  max-width: 225px;
  margin: 0 auto 30px;
  padding: 7px;
  border-radius: 50px;
  background-color: #fcf7e1;
  line-height: 0;
}

.share {
  margin-right: 9px;
  color: #33af0d;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

.sns_share {
  display: flex;
  justify-content: center;
}

.sns_share li {
  margin-left: 15px;
}

.sns_share li:first-child {
  margin-left: 0;
}

.sns_share a {
  display: block;
  transition: all .5s ease-in-out;
}

.sns_share a:hover {
  opacity: .7;
}

.sns_share img {
  width: 100%;
  max-width: 35px;
}

/* PAGINATION
*************************************** */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 15px 0;
  line-height: 1;
}

.pagination a, .pagination span {
  display: block;
  margin: 8px;
  padding: 5px 8px;
  border-radius: 5px;
  border: solid 1px #666666;
  color: #666666;
  font-weight: bold;
  transition: all .5s ease-in-out;
}

@media all and (-ms-high-contrast:none) {
  .pagination a, .pagination span {
    padding-top: 10px;
  }
}

.pagination a:hover {
  background-color: #666666;
  color: #fff;
}

.pagination .current {
  border: solid 1px #33af0d;
  background-color: #33af0d;
  color: #fff;
}

/* SITEMAP
----------------------------------------------------------------------------------------------------*/
.sitemap, #not_found_cont .frame_box {
  min-height: 40vw;
}

/* FOOTER
----------------------------------------------------------------------------------------------------*/
footer {
  width: 100%;
  padding: 30px 0;
  background-color: #26830a;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}

.link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  margin: 10px auto 20px;
  text-align: center;
  transition: all .5s ease-in-out;
}

.link li {
  margin: 0 10px 15px;
}

.link li:last-child {
  margin-bottom: 0;
}

.link a {
  display: block;
  padding: 5px 10px;
  border: solid 1px #33af0d;
  border-radius: 20px;
  background-color: #33af0d;
  color: #fff;
  transition: all .5s ease-in-out;
}

@media all and (-ms-high-contrast:none) {
  .link a {
    padding-top: 8px;
  }
}

.link a:hover {
  background-color: #fcf7e1;
  color: #33af0d;
}

/* CONNECT BOX
*************************************** */
.connect_box .link {
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  margin: 20px auto 0;
}

.connect_box .link a {
  background-color: #666666;
}

/* SITE MAP
*************************************** */
.site_map_li {
  border-bottom: solid 1px #666666;
}

.site_map_li .list {
  padding-top: 20px;
}

.site_map_li .list .arrow::before {
  top: 0;
  transform: rotate(135deg);
}

.site_map_li .search_select {
  padding: 10px 0;
}

.site_map_li .search_select li{
  font-size: 1.6rem;
  font-weight: normal;
}

.site_map_li a {
  padding: 20px 0;
  transition: all .5s ease-in-out;
}

.site_map_li a:hover {
  background-color: #ffbb21;
}

.site_map_li h3 {
  font-weight: bold;
}

/* PAGE TOP
----------------------------------------------------------------------------------------------------*/
.page-top {
  display: none;
  position: fixed;
  overflow: hidden;
  width: 40px;
  height: 40px;
  right: 30px;
  bottom: 0;
  margin-bottom: 30px;
  padding: 7px 13px;
  border-radius: 50%;
  border: solid 2px #33af0d;
  background-color: #33af0d;
  z-index: 120;
  transition: all .5s ease-in-out;
}

.page-top .top {
  transition:all 0.5s;
}

.top::before {
  top: 7px;
  left: -2px;
  width: 15px;
  height: 15px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(315deg);
}

.page-top:hover {
  background-color: #fcf7e1;
}

.page-top:hover .top::before {
  border-top: 3px solid #33af0d;
  border-right: 3px solid #33af0d;
}

.grecaptcha-badge { visibility: hidden; }

/* -------------------- for SP (480px) ---480px以下
----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
  /* CONTENTS
  --------------------------------------------------------------------------------------*/


  /* HEADER
  --------------------------------------------------------------------------------------*/
  .header_contents {
    width: 95%;
  }

  /* LOGO
  *************************************** */
  .logo {
    width: 60vw;
    min-width: 130px;
  }

  /* NAV
  *************************************** */
  .menu {
    left: 0;
    right: 0;
  }

  .menu li a:hover {
    border-bottom: none;
  }

  .nav_list {
    display: none;
  }

  /* NAV TOGGLE
  *************************************** */
  .nav_box {
    display: block;
    right: 2vw;
  }

  /* S NAV
  *************************************** */
  .menu {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    padding-top: 95px;
    background-color: rgba(255, 255, 255, .95);
    z-index: 150;
  }

  .nav_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 90%;
    height: auto;
    margin: 0 auto;
    color: #fff;
  }

  .site_map .nav_list {
    width: 90%;
  }

  .nav_list li {
    width: 100%;
    margin: 8px 0;
  }

  .nav_list a {
    padding: 20px 10px;
    border-radius: 30px;
    border: solid 1px #33af0d;
  }

  .snav_list {
    display: block;
  }

  .snav_list li {
    width: 100%;
  }

  /* MAIN
  --------------------------------------------------------------------------------------*/
  /* SECTION
  *************************************** */

  /* POPUP DETAIL
  *************************************** */
  .mfp-close {
    right: 1%;
  }

  .popup_jacket_box {
    width: 98%;
  }

  .popup_jacket {
    max-width: 100vw;
    max-height: 100vw;
  }

  .popup_detail {
    padding: 3vw;
  }

  /* Button
  *************************************** */
  .btn {
    font-size: 1.6rem;
  }

  .btn_flex_cont {
    margin: 4vw 0 0;
  }

  .btn_flex_cont a {
    margin: 0 2vw 4vw;
  }

  .btn_flex_cont .btn {
    max-width: 100%;
    font-size: 1.6rem;
  }

  /* SNS SHARE
  *************************************** */

  /* FOOTER
  ----------------------------------------------------------------------------------------------------*/
  footer {
    padding: 20px 3vw 85px;
  }

  /* PAGE TOP
  *************************************** */
  .page-top {
    right: 2vw;
  }

  #glt-translate-trigger {
    left: 5px !important;
  }
}
/* (max-width: 480px) end */


/* -------------------- for Tablet (481px) and (1023px) ---481から1023px以内
----------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 481px) and (max-width: 1023px) {
  /* CONTENTS
  ----------------------------------------------------------------------------------------------------*/


  /* HEADER
  --------------------------------------------------------------------------------------*/
  .header_contents {
    width: 95%;
  }

  /* LOGO
  *************************************** */

  /* NAV
  *************************************** */

  /* NAV TOGGLE
  *************************************** */
  .nav_box {
    display: block;
  }

  /* S NAV
  *************************************** */
  .menu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding-top: 95px;
    background-color: rgba(255, 255, 255, .95);
    z-index: 150;
  }

  .nav_list {
    display: flex;
    flex-wrap:wrap;
    justify-content: space-around;
    align-items: flex-start;
    width: 90%;
    height: auto;
    margin: 0 auto;
  }

  .nav_list li {
    width: 47%;
    margin: 8px 0;
  }

  .nav_list a {
    padding: 20px 10px;
    border-radius: 30px;
    border: solid 1px #33af0d;
  }

  /* MAIN
  --------------------------------------------------------------------------------------*/
  /* SECTION
  *************************************** */
  

  /* POPUP DETAIL
  *************************************** */
  .mfp-close {
    right: calc(100% / 2 - 232.5px);
  }

  .popup_jacket_box {
    width: 465px;
  }

  .popup_jacket {
    max-width: 425px;
    max-height: 425px;
  }

  /* Button
  *************************************** */
  .btn {
    font-size: 1.8rem;
  }

  .sitemap, #not_found_cont .frame_box {
    min-height: 37.5vw;
  }

  /* FOOTER
  ----------------------------------------------------------------------------------------------------*/
  footer {
    padding-bottom: 85px;
  }

  /* PAGE TOP
  *************************************** */
  .page-top {
    right: 25px;
  }
}
/* (min-width: 481px) and (max-width: 1023px) end */
