@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;400;700&display=swap");
@import url("all.css");
/*===============================

共通

================================*/
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
/*
タイトル
================================*/
.ttl {
  text-align: center;
}
.ttl h2 {
  display: block;
  padding: 0 0 10px;
}
@media screen and (max-width: 767px) {
  .ttl h2 {
    padding: 0 0 5px;
  }
}
.ttl .logo {
  width: 400px;
  margin: auto;
  padding: 50px 0 15px;
}
@media screen and (max-width: 767px) {
  .ttl .logo {
    width: 200px;
    padding: 25px 0 5px;
  }
}
.ttl .line {
  width: 600px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .ttl .line {
    width: 100%;
  }
}
.ttl .ttl_tel {
  font-weight: bold;
}
.ttl .ttl_tel a {
  display: block;
  color: #c60000;
  font-size: 2.2rem;
  text-decoration: none;
}
.ttl .ttl_tel small {
  padding: 10px 0 0;
  font-size: 1.4rem;
}

.fade_wrap {
  position: relative;
  margin: 0 auto;
}

.fademovie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.fade_text_01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.fade_text_02 {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
}

.fade_text_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	background: url("../img/bg.jpg");
  z-index: 1;
}

.fade_click_inner {
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 103%;
  height: 103%;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
}

.fade_image {
  position: absolute;
  top: 3.5%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 92%;
  height: 92%;
  z-index: 1;
  object-fit: cover;
}

.fade_movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fade_click {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
}

.swiper-slide-active .fade_text_01 {
  animation: slideFromText 1s ease 0s 1 normal;
}

.swiper-slide-active .fade_text_02 {
  animation: slideFromText 1s ease 0s 1 normal;
}

.swiper-slide-active .fade_text_inner {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_image {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_movie {
  animation: slideFromRightMovie 555.5s ease 0s 1 normal;
}

.swiper-slide-active .fade_click {
  animation: slideFromClick 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_click_inner {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes slideFromText {
  0%, 25% {
    transform: translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideFromClick {
  0%, 25% {
    transform: translateY(0px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideFromWhite {
  0%, 25% {
    transform: translateX(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    opacity: 0;
  }
}
.main_pc_01 {
  animation-delay: 0.5s;
}

.main_pc_02 {
  animation-delay: 1s;
}

.main_pc_03 {
  animation-delay: 1.5s;
}

.main_pc_04 {
  animation-delay: 2s;
}

.main_pc_05 {
  animation-delay: 2.5s;
}

.main_pc_06 {
  animation-delay: 3s;
}

.main_pc_07 {
  animation-delay: 3.5s;
}

.main_pc_08 {
  animation-delay: 4.5s;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeStay {
  animation-name: fadeStayAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeStayAnime {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mainFrom01 {
  0%, 25% {
    transform: translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes mainFrom02 {
  0%, 25% {
    transform: translateY(0px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/*
オン・オフ
================================*/
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 15px 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  vertical-align: middle;
  border-radius: 0.5rem;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn,
a.btn,
button.btn {
    padding: 15px 5px;
    font-size: 1.2rem;
  }
}

a.btn_day {
  margin: 0 5px;
  color: #fff;
  background-color: #004628;
  border-bottom: 5px solid #111;
}
a.btn_day:hover {
  margin-top: 3px;
  color: #fff;
  background: #00693c;
  border-bottom: 2px solid #444;
}
@media screen and (max-width: 767px) {
  a.btn_day {
    margin: 2.5px;
  }
}

a.btn_shadow {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.link_click {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: -30px;
  background-color: brown;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.link_click:hover {
  background-color: burlywood;
}
@media screen and (max-width: 767px) {
  .link_click {
    width: 60px;
    height: 60px;
    left: -8%;
  }
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -webkit-tab-size: 4;
  tab-size: 4;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  font-size: 1.6rem;
	  background: url("../img/bg.jpg");
}

.background {
  background: url("../../img/background_pc2.jpg");
  min-height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .background {
  background: url("../img/bg.jpg");
	  background-size: cover
  }
}

img {
  max-width: 100%;
}

h1 {
  padding: 10px 0 0;
  font-size: 1.2rem;
  font-weight: 200;
  text-align: center;
  letter-spacing: 0.2em;
}

/*
補足
================================*/
.br_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br_sp {
    display: block;
  }
}

.br_pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .br_pc {
    display: none;
  }
}

.flex {
  display: flex;
}

/*===============================

メイン

================================*/
main {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
main .main_pc_01, main .main_pc_02, main .main_pc_03, main .main_pc_04, main .main_pc_05, main .main_pc_06, main .main_pc_07, main .main_pc_08 {
  position: absolute;
  top: 0;
  left: 0;
}

/*===============================

認証ページ

================================*/
.index {
  position: relative;
  width: 100%;
  line-height: 1.4;
  text-align: center;
}
.index a {
  color: #b20202;
}
.index .logo {
  max-width: 1200px;
  margin: auto;
}
.index .enter {
  width: 500px;
  margin: auto;
  padding: 25px 0 0;
}
@media screen and (max-width: 767px) {
  .index .enter {
    width: 75%;
    margin-top: -10px;
    padding: 0;
  }
}
.index .text {
  padding: 10px 10px 25px;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .index .text {
    font-size: 1.2rem;
  }
}
.index .left {
  position: absolute;
  top: 5%;
  left: 5%;
}
.index .left img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .index .left {
    display: none;
  }
}
.index .right {
  position: absolute;
  top: 50%;
  right: -20%;
}
.index .right img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .index .right {
    display: none;
  }
}

.sakura{
	width: 160px;
	margin: auto;
}

/*===============================

パンくずリスト

================================*/
.breadcrumb ol {
  display: flex;
  justify-content: center;
  padding: 10px 0 0;
  color: #888;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb ol {
    font-size: 1rem;
  }
}
.breadcrumb li {
  display: inline;
  list-style-type: none;
}
.breadcrumb li::after {
  content: " > ";
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb a {
  color: #888;
  text-decoration: none;
}

/*===============================

スライドバナー

================================*/
.slide {
  overflow: hidden;
  padding: 100px 0 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .slide {
    padding: 20px 0 30px;
  }
}
.slide h2 {
  padding-bottom: 30px;
}
.slide h3 {
  padding: 5px 0 15px;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .slide h3 {
    font-size: 2rem;
  }
}
.slide .txt {
  color: #b20202;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .slide .txt {
    font-size: 1.5rem;
  }
}

.slide_sp{
	width: 97%;
	margin: auto;
}
.slide_sp ul{
	display: flex;
	flex-wrap: wrap;
}
.slide_sp li{
	width: 50%;
	margin: -10px 0 0;
}

.movie {
  position: relative;
  width: 100%;
  height: auto;
}
.movie .adjustment:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.movie .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movie .inner video, .movie .inner .image {
  display: block;
  width: 92%;
  height: 92%;
  margin: auto;
  margin-top: 6%;
  object-fit: cover;
}
.movie .inner .frame {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.move_inner {
  padding-top: 60px;
}

/*===============================

枝

================================*/
.branch {
  width: 40%;
  margin-top: -3.5%;
}
@media screen and (max-width: 767px) {
  .branch {
    width: 100%;
    margin: 0;
  }
}

.branch_02 {
  width: 50%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .branch_02 {
    width: 100%;
    margin: 0;
  }
}

.branch_03 {
  width: 35%;
  margin-top: -50px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .branch_03 {
    width: 80%;
    margin-top: -30px;
    margin-left: auto;
  }
}

/*===============================

雀紹介動画

================================*/
.suzume_video {
  max-width: 1280px;
  margin: auto;
}

/*===============================

雀とは

================================*/
.about {
  position: relative;
  max-width: 1280px;
  height: 750px;
  margin: auto;
  margin-top: -3%;
}
@media screen and (max-width: 767px) {
  .about {
    width: 100%;
    max-width: 100%;
    height: 400px;
    margin-top: -10px;
    padding-bottom: 0;
  }
}
.about h2 {
  position: absolute;
  top: 0%;
  left: 25%;
  font-size: 6rem;
  font-weight: 700;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .about h2 {
    top: 5%;
    right: 10%;
    left: 0%;
    font-size: 4rem;
  }
}
.about span {
  font-size: 3.5rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .about span {
    font-size: 2.5rem;
  }
}
.about .text {
  position: absolute;
  top: 0%;
  left: 0%;
  font-size: 2.2rem;
  font-weight: 200;
  writing-mode: vertical-rl;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .about .text {
    top: 6%;
    right: 40%;
    left: 0;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.about .twitter {
  position: absolute;
  top: 0%;
  right: 0%;
  width: 700px;
}

@media screen and (max-width: 767px) {
  .twitter {
    padding: 0 15px 10px 15px;
  }
}

.googlemap {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .googlemap {
    padding: 0 10px;
  }
}
.googlemap iframe {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 767px) {
  .googlemap iframe {
    height: 300px;
  }
}

/*===============================

チケット

================================*/
.ticket {
  width: 100%;
  margin-top: -8%;
  background: url("../img/bg_ticket2.png") no-repeat;
  background-size: auto 100%;
}
.ticket .image {
  width: 50%;
  margin: auto;
}
.ticket .image img {
  width: 600px;
}
@media screen and (max-width: 767px) {
  .ticket {
    width: 90%;
    margin-top: 10px;
    margin-bottom: 25px;
  }
  .ticket .image {
    width: 100%;
  }
}

/*===============================

出勤情報

================================*/
.schedule ul {
  display: flex;
  flex-wrap: wrap;
  width: 85%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .schedule ul {
    width: 96%;
  }
}
.schedule ul li {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .schedule ul li {
    width: 50%;
  }
}
.schedule ul img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .schedule ul img {
    width: 100%;
    height: 100%;
  }
}
.schedule ul figure {
  margin: 10px;
  background: white;
  border: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .schedule ul figure {
    display: block;
    margin: 5px;
    text-align: center;
  }
}
.schedule ul figure .click {
  width: 300px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .schedule ul figure .click {
    width: 100%;
  }
}
.schedule ul figure .click a {
  width: 100%;
  height: 100%;
  display: block;
}
.schedule ul figure .image {
  position: relative;
}
.schedule ul figure .new {
  position: absolute;
  top: -7px;
  left: 5px;
  width: 70px;
}
@media screen and (max-width: 767px) {
  .schedule ul figure .new {
    top: -5px;
    left: 3px;
    width: 50px;
  }
}
.schedule ul figure .new img {
  height: 58px;
}
@media screen and (max-width: 767px) {
  .schedule ul figure .new img {
    height: 42px;
  }
}
.schedule ul figure .soku {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 100px;
}
@media screen and (max-width: 767px) {
  .schedule ul figure .soku {
    width: 60px;
  }
}
.schedule ul figure .icon {
  position: absolute;
  display: flex;
  bottom: 2px;
  left: 2px;
  width: 60px;
}
@media screen and (max-width: 767px) {
  .schedule ul figure .icon {
    width: 35px;
  }
}
.schedule ul figure .icon img {
  margin: 2px;
}
.schedule ul figcaption {
  width: 100%;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .schedule ul figcaption {
    padding: 5px;
  }
}
.schedule ul figcaption .name {
  font-size: 2.5rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .schedule ul figcaption .name {
    font-size: 2rem;
  }
}
.schedule ul figcaption .size {
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .schedule ul figcaption .size {
    padding: 5px 0 10px;
    font-size: 1.3rem;
  }
}
.schedule ul figcaption .time {
  padding: 15px 0;
  background-color: #d5af68;
  border-radius: 5px;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .schedule ul figcaption .time {
    padding: 10px 0;
    font-size: 1.6rem;
  }
}
.schedule ul figcaption .on {
  background-color: #b20202;
}
.schedule ul figcaption .off {
  background-color: #ccc;
}
.schedule ul figcaption .comment {
  overflow-y: auto;
  height: 235px;
  margin: 10px 0 0;
  font-size: 1.4rem;
  line-height: 1.56;
}

/*
曜日
================================*/
.day {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 25px 0 50px;
}
@media screen and (max-width: 767px) {
  .day {
    margin: 15px 0 25px;
  }
}

.today {
  padding: 0 0 30px;
  color: #004628;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .today {
    padding: 0 0 20px;
    font-size: 1.8rem;
  }
}

/*===============================

プロフィール

================================*/
.profile {
  width: auto;
  padding: 0 10px;
  /*
  写真パネル
  ================================*/
  /*
  データ
  ================================*/
  /*
  詳細データ
  ================================*/
  /*
  週間出勤情報
  ================================*/
  /*
  ウィジェット
  ================================*/
}
.profile h2 {
  font-size: 3rem;
}
.profile h3 {
  font-size: 2.5rem;
  text-align: center;
}
.profile .name, .profile .size {
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
.profile .container {
  display: grid;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  margin-top: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-rows: max-content max-content 1fr auto;
  grid-gap: 20px;
}
@media screen and (max-width: 767px) {
  .profile .container {
    margin-top: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 1fr 2fr 1fr;
    grid-template-rows: max-content max-content 1fr auto;
    grid-gap: 10px;
  }
}
.profile .container .child1 {
  grid-row: 1/3;
  grid-column: 1/3;
}
@media screen and (max-width: 767px) {
  .profile .container .child1 {
    grid-row: 1/2;
    grid-column: 1/3;
  }
}
.profile .container .child2 {
  grid-row: 2/4;
  grid-column: 3/5;
}
@media screen and (max-width: 767px) {
  .profile .container .child2 {
    margin-bottom: -5px;
    grid-row: 3/4;
    grid-column: 1/3;
  }
}
.profile .container .child3 {
  grid-row: 3/4;
  grid-column: 1/2;
}
@media screen and (max-width: 767px) {
  .profile .container .child3 {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.profile .container .child4 {
  grid-row: 3/4;
  grid-column: 2/3;
}
@media screen and (max-width: 767px) {
  .profile .container .child4 {
    grid-row: 2/3;
    grid-column: 2/3;
  }
}
.profile .container .child5 {
  grid-row: 1/2;
  grid-column: 3/4;
}
@media screen and (max-width: 767px) {
  .profile .container .child5 {
    margin-top: 5px;
    margin-bottom: 20px;
    grid-row: 4/6;
    grid-column: 1/2;
  }
}
.profile .container .child6 {
  grid-row: 1/2;
  grid-column: 4/5;
}
@media screen and (max-width: 767px) {
  .profile .container .child6 {
    margin-top: 5px;
    margin-bottom: 20px;
    grid-row: 4/6;
    grid-column: 2/2;
  }
}
.profile .data {
  display: grid;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .profile .data {
    margin-top: -20px;
  }
}
.profile .data .hr {
  width: 300px;
  margin: auto;
  letter-spacing: 0.1em;
}
.profile .data .comment {
  font-size: 1.3rem;
  line-height: 2;
}
.profile .data .comment img {
  vertical-align: middle;
}
.profile .data .comment .red {
  color: red;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .profile .data .comment {
    margin: 0 0 20px;
  }
}
.profile .list ul {
  display: flex;
  flex-wrap: wrap;
  padding: 5% 0 4%;
}
@media screen and (max-width: 767px) {
  .profile .list ul {
    width: 100%;
    padding: 0 0 4%;
  }
}
.profile .list li {
  width: 50%;
  padding: 15px 0;
  border-bottom: 1px solid black;
  color: #004628;
}
@media screen and (max-width: 767px) {
  .profile .list li {
    width: 100%;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .profile .list li:last-child {
    border: 0;
  }
}
.profile .list li small {
  display: block;
  padding: 5px 15px 0;
  color: black;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .profile .list li small {
    padding: 5px 0 0 15px;
  }
}
.profile .weekly {
  width: 100%;
  margin: auto;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .profile .weekly {
    margin: 0 0 20px;
  }
}
.profile .weekly table {
  width: 100%;
  border-spacing: 0;
  border: none;
}
.profile .weekly th {
  padding: 20px 0;
  color: #fff;
  background: #d5af68;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .profile .weekly th {
    padding: 10px 0;
    font-size: 1.5rem;
  }
}
.profile .weekly td {
  width: 14.2857142857%;
  height: 80px;
  background: #fff;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  font-weight: 500;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .profile .weekly td {
    height: 65px;
  }
}
.profile .weekly td a {
  display: block;
  width: 85%;
  max-width: 150px;
  margin: auto;
  margin-top: 3px;
  padding: 5px 0;
  border: 1px solid #b20202;
  background: #fff;
  color: #b20202;
  font-size: 1.4rem;
  text-decoration: none;
}
.profile .weekly td span {
  color: #aaa;
  font-size: 1.4rem;
}
.profile .widget {
  margin: 100px 0 0;
}
.profile .widget ul {
  display: flex;
  flex-wrap: wrap;
}
.profile .widget li {
  width: 50%;
  background: url("../../img/widget_bg.png") no-repeat;
  background-size: 100% auto;
}
.profile .widget li p {
  width: 80%;
  margin: auto;
}
.profile .twitter_btn a, .profile .diary_btn a {
  display: block;
  margin: 0 0 10px;
  padding: 20px;
  background-color: deepskyblue;
  color: white;
  font-size: 2rem;
  font-weight: 400;
  text-decoration: none;
}
.profile .diary_btn a {
  background-color: chocolate;
}

/*===============================

料金システム

================================*/
.system {
  text-align: center;
}

/*
料金
================================*/
.price {
  padding: 0 10px 50px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .price {
    padding: 0 10px 20px;
  }
}
.price .image {
  width: 750px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .price .image {
    width: 100%;
  }
}

/*
ご利用カード
================================*/
.card {
  padding: 25px 0 50px;
  font-weight: 200;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .card {
    padding: 20px 0 30px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.card h2 {
  font-size: 2rem;
}
.card img {
  width: 250px;
  margin: auto;
  padding: 10px 0 10px;
}

/*
注意事項
================================*/
.notes {
  max-width: 1200px;
  margin: auto;
  padding: 0 10px 50px 10px;
  font-size: 1.3rem;
  text-align: left;
  line-height: 2;
}
.notes h2 {
  text-align: center;
}
.notes span {
  color: red;
  font-weight: 700;
}

/*
アクセス
================================*/
.map {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  line-height: 2;
}
.map .tel {
  font-size: 3.5rem;
  font-weight: 700;
}
.map .tel a {
  color: black;
  text-decoration: none;
}
.map .tel small {
  font-size: 2rem;
}

.mark {
  width: 300px;
  margin: auto;
  padding: 20px 0;
}

/*===============================

チャート

================================*/
.chart ul {
  display: flex;
  flex-wrap: wrap;
}
.chart li {
  width: 50%;
}
.chart canvas {
  width: 95%;
  margin: auto;
}

/*===============================

リンクバナーバナー

================================*/
.link_banner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.link_banner li {
  width: auto;
  padding: 5px;
}
.link_banner a {
  display: flex;
}
.link_banner img {
  width: auto;
}

.vanilla {
  width: 660px;
  margin: auto;
  padding: 25px 0;
}
@media screen and (max-width: 767px) {
  .vanilla {
    width: 320px;
  }
}
.vanilla ul {
  display: flex;
  flex-wrap: wrap;
}
.vanilla li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .vanilla li {
    width: 100%;
  }
}
.vanilla iframe {
  margin: 10px;
}
@media screen and (max-width: 767px) {
  .vanilla iframe {
    margin: 10px 0 0;
  }
}

header {
  position: relative;
  height: 427px;
  background: url("../img/header_pc.webp") repeat-x;
  background-size: auto 100%;
}
@media screen and (max-width: 767px) {
  header {
    position: initial;
    max-width: 100%;
    height: auto;
  }
}
header h1 {
  position: absolute;
  top: 10px;
  right: 5px;
  font-size: 1.3rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  header h1 {
    display: none;
  }
}
header .logo {
  max-width: 1280px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  header .logo {
    display: none;
  }
}
header .logo_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  header .logo_sp {
    display: block;
  }
}
header .rec_btn {
  position: absolute;
  top: 20px;
  right: 0;
}
header .rec_btn a {
  display: block;
  width: 310px;
  height: 80px;
}
header .pc_bg {
  position: relative;
  height: 427px;
  width: 100%;
  background: url("../img/header_pc.jpg") repeat-x;
  background-size: auto 100%;
  z-index: 1;
}

footer {
  margin-top: 100px;
  background: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer {
    margin-top: 30px;
    margin-bottom: 55px;
    font-size: 1.2rem;
  }
}
footer a {
  display: block;
  padding: 15px 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  footer a {
    font-size: 1.4rem;
  }
}
footer .copyright {
  padding: 15px 0;
  background: #eee;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  footer .copyright {
    padding: 8px 0;
    font-size: 1rem;
    line-height: 1.4;
  }
}

nav .menu {
  position: fixed;
  width: 150px;
  top: 15px;
  right: 15px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  nav .menu {
    width: 90px;
    top: 2px;
    right: 0;
  }
}

.menu_list ul {
  display: flex;
  flex-wrap: wrap;
}
.menu_list li {
  width: 20%;
  height: 100px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .menu_list li {
    width: 50%;
    height: 60px;
    font-size: 1.5rem;
  }
}
.menu_list a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.menu_list span {
  display: block;
  padding-bottom: 10px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .menu_list span {
    padding-bottom: 5px;
    font-size: 1.8rem;
    letter-spacing: 0.15em;
  }
}

.menu_open {
  padding: 50px 0 25px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .menu_open {
    padding: 0 0 25px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
}

.menu_tel {
  width: 350px;
  height: 80px;
  line-height: 80px;
  margin: auto;
  background-color: #b20202;
  border-radius: 5px;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .menu_tel {
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 2.5rem;
  }
}

.menu_area {
  display: none;
}

.suzume {
  width: 100px;
  margin: auto;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .suzume {
    width: 75px;
    margin-bottom: 30px;
  }
}

.nav_sp {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background: rgba(0, 70, 40, 0.95);
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  z-index: 100;
}
.nav_sp ul {
  display: flex;
}
.nav_sp li {
  width: 50%;
}
.nav_sp .reserve_tel img {
  width: auto;
  height: 55px;
}


.nenmatsu{
	width: 900px;
	margin: auto;
}
@media screen and (max-width: 768px) {
.nenmatsu{
	width: 100%;
}
}
/*# sourceMappingURL=style.css.map */




.vanilla_w {
  margin: auto;
  padding: 50px 0;
}
.vanilla_w ul{
	display: flex;
	width: 640px;
	margin: auto;
}
.vanilla_w li{
	width: auto;
	padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .vanilla {
	  padding: 50px 0 0;
  }
	.vanilla_w ul{
	display: flex;
		flex-wrap: wrap;
	width:320px;
	margin: auto;
}
	.vanilla_w li{
		padding: 0 0 10px;
}
	
	}
	
	