@charset "utf-8";

html,body,h1,h2,h3,h4,ul,ol,dl,li,dt,dd,p,div,span,img,a,table,tr,th,td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,header,footer,aside,figure,figcaption,nav,section {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

ol,ul {
  list-style: none;
  list-style-type: none;
}

i,cite,em,var,address,dfn {
  font-style: normal;
}

table {
  width: 100%;
  border-collapse: collapse;
}

caption,th,td {
  text-align: left;
}

a img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}


.clear {
  clear: both;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}


/*  common
------------------------------------*/

body {
  font-family: 'Noto Serif JP', 'EB Garamond', serif, Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN";
  font-size: 16px;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}

a {
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: .8;
}

img {
  max-width: 100%;
  height: auto;
  line-height: 1;
  vertical-align: bottom;
}

img.max {
  width: 100%;
}


.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: top;
  -ms-flex-align: top;
  align-items: top;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flexbox.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}


.link_btn {
  display: inline-block;
}

.link_btn a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
  display: block;
  background-color: #fff;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 3.5em;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  padding:0 45px;
}
.link_btn a:before {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  border-bottom: 1px solid #aaa;
  position: absolute;
  right: 24px;
  bottom: 25px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.link_btn a:after {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  border-bottom: 1px solid #aaa;
  position: absolute;
  right: 25px;
  bottom: 24px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.link_btn a:hover:after {
  right: 18px;
}

.link_btn a:hover:before {
  right: 17px;
}
/* ===================================
↓サイドのグローバルナビ用 css
=================================== */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 301;
}

@media only screen and (max-width: 768px) {
  .overlay {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
}

/*.side-openがjsで付与されたとき*/
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(32, 51, 77, 0.4);
}

/* サイドメニュー */
.side-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 260px;
  height: 100%;
  padding-top: 27vh;
  padding-left: 40px;
  text-align: left;
  font-size: 13px;
  background: #fff;
  z-index: 400;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  /*ul*/
  /*↓検索窓*/
}

@media only screen and (max-width: 768px) {
  .side-menu {
    width: 100%;
    right: -100%;
    text-align: center;
    padding-top: 10vh;
    padding-left: 0;
    z-index: 400;
  }
}

.side-menu ul {
  /*li a*/
}

.side-menu ul li a {
  color: #20334d;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.3em;
  line-height: 4em;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .side-menu ul li a {
    line-height: 10vh;
  }
}

.side-menu ul li a:before,
.side-menu ul li a:after {
  position: absolute;
  top: 1.5em;
  content: "";
  display: inline-block;
  width: 0%;
  height: 1px;
  background: #a0aab7;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.side-menu ul li a:before {
  left: 50%;
}

.side-menu ul li a:after {
  right: 50%;
}

.side-menu ul li a:hover:before,
.side-menu ul li a:hover:after {
  width: 50%;
}

.side-menu ul li:last-of-type a {
  margin-right: 0;
}


/* サイドメニューここまで */
/* 開閉用ボタン */
.side-menu-btn {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 48px;
  height: 45px;
  padding: 15px 0 0 10px;
  background: #ffffff;
  cursor: pointer;
  z-index: 500;
}

@media only screen and (max-width: 768px) {
  .side-menu-btn {
    display: block;
    top: 10px;
    right: 10px;
    width: auto;
    height: auto;
    background: #fff;
    padding: 10px;
    z-index: 400;
  }
}

.side-menu-btn .trigger,
.side-menu-btn .trigger span {
  display: inline-block;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.side-menu-btn .trigger {
  position: relative;
  width: 28px;
  height: 19px;
}

.side-menu-btn .trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #20334d;
}

.side-menu-btn .trigger span:nth-of-type(1) {
  top: 1px;
}

.side-menu-btn .trigger span:nth-of-type(2) {
  top: 9px;
}

.side-menu-btn .trigger span:nth-of-type(3) {
  bottom: 1px;
  width: 80%;
}

.side-menu-btn .trigger.active span:nth-of-type(1),
.side-menu-btn .trigger.active span:nth-of-type(3) {
  width: 10px;
}

.side-menu-btn .trigger.active span:nth-of-type(1) {
  -webkit-transform: translate(20px, 4.5px) rotate(45deg);
  transform: translate(20px, 4.5px) rotate(45deg);
}

.side-menu-btn .trigger.active span:nth-of-type(3) {
  -webkit-transform: translate(20px, -4.5px) rotate(-45deg);
  transform: translate(20px, -4.5px) rotate(-45deg);
}
/* サイドメニューオープン */
.side-open .wrapper,
.side-open .overlay {
  -webkit-transform: translate3d(-200px, 0, 0);
  transform: translate3d(-200px, 0, 0);
}

@media only screen and (max-width: 768px) {

  .side-open .wrapper,
  .side-open .overlay {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.side-open .side-menu {
  right: 0;
}

/*  header
------------------------------------*/
#header{
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
}
#header.is-fixed  {
  position:fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  -webkit-transition: all .4s ease 0s,background .6s ease .2s;
  transition: all .4s ease 0s,background .6s ease .2s;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  padding:10px 70px 10px 10px;
}
nav.nav_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

ul.nav_list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  #header, header nav.nav_box {
    display: none;
  }
}

@media only screen and (max-height: 700px) {
  header nav.nav_box {
    font-size: 24px;
    height: 80px;
  }
}
ul.nav_list li{
  margin-right: 20px;
}
ul.nav_list li:last-child{
  margin-right: 0px;
}

ul.nav_list li a {
  color: #000;
  font-size: 15px;
  padding: 15px 0;
  text-align: center;
  line-height: 1.5em;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.svg-icon {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
  letter-spacing: 0;
  line-height: 0;
  fill: #000;
}
a.shop_btn{
  display: inline-block;
  vertical-align: middle;
  padding: 0 25px;
  line-height: 45px;
  background: #3f6208;
  color: #fff;
  font-size: 14px;
}
a.shop_btn img{
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#footer{
  padding: 80px 0;
  background: #f5f4f0;
}
#footer .container{
  overflow:hidden;
  margin-bottom: 30px;
}

.tel{
  font-size: 44px;
  font-weight: bold;
}
.tel a{
  border: 3px dashed #000;
  padding: 10px 30px;
  display: inline-block;
  margin-top: 20px;
}
.address{
  float: left;
  width: 50%;
}
.address p{
  line-height: 1.6;

}
.partner{
  float: right;
  width: 50%;
}
.partner img{
  width: 200px;
  margin-left: -100px;
}

.copy{
  text-align: center;
}

/*modal*/
#apple{
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}
.modal_list{
  text-align: center;
  cursor: pointer;
  width:740px;
  background:#fff;
  margin:5% auto;
  padding:20px 30px 40px;
  position:relative;
  -webkit-animation:animatetop 0.4s;
  animation:animatetop 0.4s}

@-webkit-keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}
}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}
}
.modal_list .modal_close{
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #000;
}

.modal_list .modal_title{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 40px;
}
.modal_list .modal_title span{
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.modal_list p{
  text-align: left;
  line-height: 1.8;
  margin-bottom: 40px;
}

.modal_list table.priceTable {
  width: 100%;
  margin: 0 auto 40px;
  letter-spacing: 0.1em;
  border-top: 1px solid #000;
}

.modal_list table.priceTable tbody {
  width: 100%;
}

.modal_list table.priceTable tr {
  width: 100%;
  border-bottom: 1px solid #000;
  text-align: center;
}

.modal_list table.priceTable th {
  vertical-align: middle;
  padding: 3px 0;
  text-align: center;
}

.modal_list table.priceTable th.itemTH {
  background: #F7F7F7;
  font-size: 140%;
  line-height: 1.3em;
}

.modal_list table.priceTable th.itemTH span {
  font-size: 60%;
  display: block;
  line-height: 1.4em;
}

.modal_list table.priceTable td {
  text-align: center;
  vertical-align: center;
  vertical-align: middle;
  padding: 8px 0;
}

.modal_list table.priceTable span.price {
  font-size: 20px;
}

.modal_list table.priceTable .capTH {
  width: 20%;
}

.modal_list table.priceTable tr.tableCaption th {
  padding: 10px 0;
}

.modal_list a.contactBtn {
  width: 190px;
  display: block;
  margin: 0 auto 10px;
  margin: 0 auto 0;
  border: 1px solid #000;
  background: #fff;
  text-align: center;
  position: relative;
  line-height: 45px;
}
.modal_list a.contactBtn:hover {
  background: #000;
  color: #fff;}



/*消えている状態から現れるアニメーション*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*じわっと拡大するアニメーション*/
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

/*はじめにブロックを伸ばすアニメーション*/
@-webkit-keyframes secondaryImageOverlayIn {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes secondaryImageOverlayIn {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

/*のび太ブロックを横に追いやるアニメーション*/
@-webkit-keyframes secondaryImageOverlayOut {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(102%);
    transform: translateX(102%);
  }
}

@keyframes secondaryImageOverlayOut {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(102%);
    transform: translateX(102%);
  }
}
@media only screen and (max-width:768px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
  
  #footer {
    padding: 40px 1em;
    background: #f5f4f0;
  }


  .address {
    float: none;
    width: 100%;
    margin-bottom: 40px;
  }
  .partner {
    float: none;
    width: 100%;
  }
  
  .partner img {
    width: 200px;
    margin-left: 0;
  }
  .tel {
    font-size: 30px;
    font-weight: bold;
  }
  .tel a {
    border: 2px dashed #000;
    padding: 10px 30px;
    display: block;
    margin-top: 20px;
    text-align: center;
  }
  
  .modal_list {
    width: 100%;
  }
  .modal_list table.priceTable th.itemTH {
    background: #F7F7F7;
    font-size: 120%;
    line-height: 1.3em;
  }
  .modal_list table.priceTable span.price {
    font-size: 18px;
  }
}