@charset "UTF-8";

/* --------------------------------
初期設定
---------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  color: #262626;
  font-family: "Noto Sans JP", sans-serif;
  height: 100%;
  width: 100%;
}
:root {
  background-color: #f8f8f8;
}

/* --------------------------------
よくつかうタグ
---------------------------------*/
a {
  color: #262626;
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  transition: all linear 0.2s;
  text-decoration: none;
}
li {
  list-style: none;
}
img {
  height: auto;
  max-width: 100%;
}
img.thumbnail {
  display: block;
  margin: 0px auto 60px;
}
blockquote {
  background-color: #f8f8f8;
  padding: 1.5em 1em 0.5em;
  position: relative;
  border: 3px solid #f8f8f8;
  margin: 1.5em 0em;
}
blockquote:before {
  content: "“";
  font-size: 400%;
  line-height: 1em;
  font-family: "ＭＳ Ｐゴシック", sans-serif;
  color: #999;
  position: absolute;
  left: 0;
  top: 0;
}
blockquote span {
  display: block;
  text-align: right;
}

/* --------------------------------
よくつかうクラス
---------------------------------*/
.sp {
  display: none;
}
.sp_menu {
  display: none;
}
.sp_header,
.search_font {
  display: none;
}
.title {
  color: #35c3b3;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 45px;
}
.business_title {
  border-left: 5px solid #35c3b3;
  line-height: 130%;
  padding-left: 5px;
  font-size: 20px;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.float_left {
  float: left;
}
.float_right {
  float: right;
}

.area {
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  width: 100%;
}
.area_s {
  margin: 0 auto;
  max-width: 950px;
}
.clear {
  clear: both;
}
.cover {
  background-position: center;
  background-size: cover;
  width: 100%;
}

.flex {
  display: flex;
}

.relative {
  position: relative;
}
.bold {
  font-weight: bold;
}

/* --------------------------------
ボタン
---------------------------------*/
.btn {
  background-color: #35c3b3;
  border-radius: 10px;
  color: #fff;
  display: block;
  line-height: 45px;
  height: 45px;
  font-size: 18px;
  text-align: center;
  margin: 40px auto 0;
  width: 100%;
}
.btn a {
  color: #fff;
}

/* --------------------------------
font
---------------------------------*/
.fontxl {
  font-size: 22px !important;
}
.fontll {
  font-size: 20px !important;
}
.fontl {
  font-size: 18px !important;
}
.fontm {
  font-size: 16px !important;
}
.fonts {
  font-size: 14px !important;
}
.fontss {
  font-size: 12px !important;
}

section {
  margin-top: 80px;
}

/* --------------------------------
header
---------------------------------*/
header {
  background-color: #fff;
  position: fixed;
  right: 0;
  height: 100%;
  z-index: 100;
}
header #menu_ico {
  cursor: pointer;
  height: 50px;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 55px;
  z-index: 30;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header #menu_ico:hover {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header input#menu_toggle {
  display: none;
}
header input#menu_toggle:checked + nav {
  right: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header nav {
  background-color: #e6e0d4;
  height: 100%;
  position: fixed;
  right: -300px;
  top: 0;
  width: 200px;
  z-index: 20;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header nav ul.header_menu {
  padding-top: 70px;
  padding-left: 20px;
}
header nav ul li a {
  color: #4c4c4c;
  display: block;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 3.7em;
  letter-spacing: 0.2em;
  text-align: left;
}
header nav ul li a.header_sns {
  line-height: 2.15em;
  letter-spacing: 0.2em;
}
header nav ul li a.instagram {
  margin-bottom: 1em;
}
header span.bar {
  background-color: #e27b5b;
  border-radius: 42em;
  display: block;
  height: 4px;
  margin-bottom: 5px;
  top: 18px;
  position: fixed;
  right: 20px;
  width: 30px;
  z-index: 20;
}
header span.bar2 {
  top: 27px;
  right: 19px;
  width: 20px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
header span.bar3 {
  top: 36px;
  margin-bottom: 0;
}
header input#menu_toggle ~ .bar1 {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
header input#menu_toggle:checked ~ .bar1 {
  width: 15px;
  margin-top: 0px;
  -moz-transform: rotate(42deg) translateX(4px) translateY(2px);
  -webkit-transform: rotate(42deg) translateX(4px) translateY(2px);
  -o-transform: rotate(42deg) translateX(4px) translateY(2px);
  -ms-transform: rotate(42deg) translateX(4px) translateY(2px);
  transform: rotate(42deg) translateX(4px) translateY(2px);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
header input#menu_toggle ~ .bar3 {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
header input#menu_toggle:checked ~ .bar3 {
  width: 15px;
  -moz-transform: rotate(-42deg) translateY(-5px) translateX(7px);
  -webkit-transform: rotate(-42deg) translateY(-5px) translateX(7px);
  -o-transform: rotate(-42deg) translateY(-5px) translateX(7px);
  -ms-transform: rotate(-42deg) translateY(-5px) translateX(7px);
  transform: rotate(-42deg) translateY(-5px) translateX(7px);
  margin-top: 4px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* --------------------------------
left_content
---------------------------------*/
#left_content {
  background-color: #fff;
  height: 100%;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  z-index: 100;
  border-right: 1px solid;
}
#left_content img {
  margin-top: 1em;
  width: 60px;
}
#left_content ul {
  position: absolute;
  top: 0;
  width: 100%;
}
#left_content li a {
  font-size: 12px;
  display: block;
  padding-top: 20px;
  border-bottom: 1px solid #262626;
  height: 120px;
}
#left_content li a i {
  font-size: 40px;
  margin-top: 10px;
}
#left_content li a.act {
  background-color: #35c3b3;
}
.swiper-button-prev {
  left: 100px;
}

.drawer_button {
  cursor: pointer;
  height: 50px;
  position: absolute;
  left: 10px;
  top: 0px;
  width: 55px;
  z-index: 1000;
}

.drawer_button span {
  background-color: #35c3b3;
  border-radius: 10px;
  display: block;
  height: 2px;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; 
}
.drawer_button span.bar1 {
  top: 23px;
  width: 25px; 
}
.drawer_button span.bar2 {
  top: 32px;
  width: 15px;
  opacity: 1;
}
.drawer_button span.bar3 {
  top: 41px;
  width: 25px; 
}
/*.active span {
  background-color: red;
  }*/
  .active span.bar1 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 31px;
  }
  .active span.bar2 {
    opacity: 0;
  }
  .active span.bar3 {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 31px; 
  }
  nav {
    background-color: #ffffff;
    display: none;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 100;
        padding-bottom: 100%;
  }
  nav ul li {
    border: 1px solid #eeeeee;
    border-bottom: none;
    padding: 0 1.5em;
    margin: 0 auto;
    letter-spacing: 1.3px;
  }
  nav ul li:nth-of-type(1) {
    border-top: none; 
  }
  nav ul li a {
    color: #737373;
    display: block;
    font-family: 'Montserrat', sans-serif;
    padding: 0 1.5em;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 60px;
    height: 60px;
  }
  .header {
    position: fixed;
    top: 0;
    height: 50px;
    width: 100%;
    z-index: 100;
  }
   nav ul li a.act {
    color: #35c3b3;
   }

/* --------------------------------
breadcrumb
---------------------------------*/
#breadcrumb ul {
  height: 4em;
  line-height: 4em;
  list-style: none;
  margin-bottom: 2em;
}
#breadcrumb ul li {
  display: inline-block;
  padding-right: 1em;
}
#breadcrumb a {
  color: #e27b5b;
}
#breadcrumb a:hover {
  color: #fc4231;
}

@media screen and (max-width: 800px) {
  .pc {
    display: none;
  }
  .area {
    padding: 0 10px;
  }
  .sp {
    display: block;
  }

  /* --------------------------------
  header
  ---------------------------------*/
  header .header {
    background: rgba(0, 0, 0, 1);
    border-radius: 0;
    top: 0;
    padding: 0 10px;
    position: fixed;
    z-index: 10;
  }
  .sp_header {
    background-color: #fff;
    position: fixed;
    right: 0;
    height: 100%;
    z-index: 100;
  }
  .sp_header #menu_ico {
    cursor: pointer;
    height: 30px;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 55px;
    z-index: 30;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .sp_header #menu_ico:hover {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .sp_header input#menu_toggle {
    display: none;
  }
  .sp_header input#menu_toggle:checked + .sp_nav {
    right: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .sp_header .sp_nav {
    background-color: #fff;
    height: 100%;
    position: fixed;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    right: -100%;
    top: 50px;
    width: 100%;
    z-index: 20;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .sp_header .sp_nav ul li a {
    border-bottom: 1px solid #e0e0e0;
    color: #4c4c4c;
    display: block;
    font-weight: bold;
    font-size: 13px;
    padding: 0 1em;
    height: 75px;
    line-height: 75px;
    letter-spacing: 0.2em;
    text-align: left;
    width: 100%;
  }
  .sp_header .sp_nav ul li {
    position: relative;
  }
  .sp_header li.sub {
    background-color: #eee;
    display: none;
  }
  .sp_header .sp_nav ul li i {
    position: absolute;
    right: 10px;
    top: 30px;
    font-size: 22px;
  }
  .sp_header span.bar {
    background-color: #fff;
    border-radius: 42em;
    display: block;
    height: 4px;
    margin-bottom: 5px;
    top: 15px;
    position: fixed;
    right: 20px;
    width: 30px;
    z-index: 20;
  }
  .sp_header span.bar2 {
    top: 24px;
    right: 19px;
    width: 20px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  .sp_header span.bar3 {
    top: 33px;
    margin-bottom: 0;
  }
  .sp_header input#menu_toggle ~ .bar1 {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  .sp_header input#menu_toggle:checked ~ .bar1 {
    width: 15px;
    margin-top: 0px;
    -moz-transform: rotate(42deg) translateX(4px) translateY(2px);
    -webkit-transform: rotate(42deg) translateX(4px) translateY(2px);
    -o-transform: rotate(42deg) translateX(4px) translateY(2px);
    -ms-transform: rotate(42deg) translateX(4px) translateY(2px);
    transform: rotate(42deg) translateX(4px) translateY(2px);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  .sp_header input#menu_toggle ~ .bar3 {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  .sp_header input#menu_toggle:checked ~ .bar3 {
    width: 15px;
    -moz-transform: rotate(-42deg) translateY(-5px) translateX(7px);
    -webkit-transform: rotate(-42deg) translateY(-5px) translateX(7px);
    -o-transform: rotate(-42deg) translateY(-5px) translateX(7px);
    -ms-transform: rotate(-42deg) translateY(-5px) translateX(7px);
    transform: rotate(-42deg) translateY(-5px) translateX(7px);
    margin-top: 4px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  header .header nav {
    display: none;
  }
  .btn {
    width: 80%;
    font-size: 14px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
  nav ul li {
    padding:0;
  }
  nav ul li a {
    font-size: 14px;
  }
}
