@charset "UTF-8";
/*
Theme Name: agri-info
Theme URI: https://ichi-flyingbird.com/
Description: agri-ssのinformation 等のページです。
Version: 1.1
Author: owndmedia-lab
*/
/*--------------------------------------------------------------
## 共通
--------------------------------------------------------------*/
body {
  width: 100%;
  margin: 0 auto;
  background-color: #18191b;
  color: #000000;
  font-size: 16px;
  line-height: 2rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 4px;
  font-feature-settings: "palt";
}

.container1 {
  width: calc(100% - 288px);
  margin: auto;
}

.container2 {
  width: 1180px;
  margin: 100px auto 200px;
  color: #fafffd;
}

h1 {
  margin: 2rem 0;
  font-size: 5rem;
  line-height: 6rem;
}

h2 {
  margin: 0.5rem 0;
  font-size: 2rem;
  line-height: 4rem;
}

h3 {
  font-size: 1.6rem;
  line-height: 2.6rem;
}

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

table {
  width: 100%;
  margin: 1.5rem auto;
  overflow: hidden;
}
table tr th,
table tr td {
  padding: 1rem 2rem;
  border: 1px solid;
}
table tr th {
  font-weight: bold;
}

/*ボタンデザイン*/
.more-btn {
  font-size: 0.9rem;
}
.more-btn a {
  position: relative;
  padding: 5rem 3rem 5rem 5rem;
  color: #fff;
}
.more-btn a::before, .more-btn a::after {
  position: absolute;
  right: 0;
  height: 1px;
  background: #fff;
  content: "";
}
.more-btn a::before {
  top: 5.6rem;
  width: 2.5rem;
}
.more-btn a::after {
  top: 5.45rem;
  transform: rotate(30deg);
  width: 0.5rem;
}

.more-btn2 {
  font-size: 0.9rem;
}
.more-btn2 span {
  position: relative;
  padding: 5rem 3rem 5rem 5rem;
  color: #fafffd;
}
.more-btn2 span::before, .more-btn2 span::after {
  position: absolute;
  right: 0;
  height: 1px;
  background: #fafffd;
  content: "";
}
.more-btn2 span::before {
  top: 5.6rem;
  width: 2.5rem;
}
.more-btn2 span::after {
  top: 5.45rem;
  transform: rotate(30deg);
  width: 0.5rem;
}

/* その他共通 */
.only-pc {
  display: block;
}

.only-mobile {
  display: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.deco-title {
  position: relative;
  margin: auto;
}
.deco-title::before {
  position: absolute;
  top: 3.5rem;
  z-index: -1;
  width: 360px;
  height: 1px;
  background-color: #fafffd;
  content: "";
}
.deco-title h2 {
  display: inline-block;
  padding-right: 3rem;
  background-color: #18191b;
}
.deco-title p {
  margin-bottom: 2rem;
  padding-left: 0.2rem;
  font-size: 0.9rem;
}

/*スクロールバーデザイン*/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  border-left: solid 1px #ececec;
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #ffffff;
  background: #D7945F;
}

/*--------------------------------------------------------------
## loading
--------------------------------------------------------------*/
.loader-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}
.loader-wrap .loader {
  position: absolute;
  top: 38vh;
  right: 0;
  left: 0;
  margin: auto;
}
.loader-wrap .loader .ball {
  width: 10px;
  height: 10px;
  margin: 10px auto;
  border-radius: 50px;
}
.loader-wrap .loader .ball:nth-child(1) {
  background: #D7945F;
  animation: right 1s infinite ease-in-out;
  -webkit-animation: right 1s infinite ease-in-out;
  -moz-animation: right 1s infinite ease-in-out;
}
.loader-wrap .loader .ball:nth-child(2) {
  background: #D7945F;
  animation: left 1.1s infinite ease-in-out;
  -webkit-animation: left 1.1s infinite ease-in-out;
  -moz-animation: left 1.1s infinite ease-in-out;
}
.loader-wrap .loader .ball:nth-child(3) {
  background: #D7945F;
  animation: right 1.05s infinite ease-in-out;
  -webkit-animation: right 1.05s infinite ease-in-out;
  -moz-animation: right 1.05s infinite ease-in-out;
}
.loader-wrap .loader .ball:nth-child(4) {
  background: #D7945F;
  animation: left 1.15s infinite ease-in-out;
  -webkit-animation: left 1.15s infinite ease-in-out;
  -moz-animation: left 1.15s infinite ease-in-out;
}
.loader-wrap .loader .ball:nth-child(5) {
  background: #D7945F;
  animation: right 1.1s infinite ease-in-out;
  -webkit-animation: right 1.1s infinite ease-in-out;
  -moz-animation: right 1.1s infinite ease-in-out;
}
.loader-wrap .loader .ball:nth-child(6) {
  background: #D7945F;
  animation: left 1.05s infinite ease-in-out;
  -webkit-animation: left 1.05s infinite ease-in-out;
  -moz-animation: left 1.05s infinite ease-in-out;
}
.loader-wrap .loader .ball:nth-child(7) {
  background: #D7945F;
  animation: right 1s infinite ease-in-out;
  -webkit-animation: right 1s infinite ease-in-out;
  -moz-animation: right 1s infinite ease-in-out;
}
@keyframes right {
  0% {
    transform: translate(-15px);
  }
  50% {
    transform: translate(15px);
  }
  100% {
    transform: translate(-15px);
  }
}
@keyframes left {
  0% {
    transform: translate(15px);
  }
  50% {
    transform: translate(-15px);
  }
  100% {
    transform: translate(15px);
  }
}

/*--------------------------------------------------------------
## header
--------------------------------------------------------------*/
.site-title {
  position: fixed;
  top: 50px;
  left: 144px;
  z-index: 100;
}
.site-title h1 {
  margin: auto;
  font-size: 1.2rem;
  line-height: 1.2rem;
}
.site-title h1 a {
  color: #ffffff !important;
  transition: 0.3s;
}
.site-title h1 a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

/*-- ▼drower-nav▼ --*/
.menu-trigger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border: none;
  cursor: pointer;
}
.menu-trigger-bar {
  position: absolute;
  right: 0;
  left: 0;
  width: 28px;
  height: 3px;
  margin: auto;
  background-color: #ffffff;
}
.menu-trigger-bar.top {
  top: 15px;
}
.menu-trigger-bar.middle {
  top: 25px;
}
.menu-trigger-bar.bottom {
  top: 35px;
}

.close-trigger {
  display: none;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1100;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.close-trigger-bar {
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  width: 30px;
  height: 4px;
  margin: auto;
  background-color: #ffffff;
}
.close-trigger-bar.left {
  transform: rotate(45deg);
}
.close-trigger-bar.right {
  transform: rotate(135deg);
}

/*-- ▼site-navi▼ --*/
.global-nav {
  position: fixed;
  top: 0;
  right: -560px;
  z-index: 1000;
  width: 560px;
  height: 100vh;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, 0.9);
}
.global-nav_list {
  flex-direction: column;
  padding: 50px 100px;
}
.global-nav_list li {
  margin: 1rem 0;
}
.global-nav_list li h2 {
  margin: 3rem 0;
  color: #ffffff;
}
.global-nav_list li a {
  display: inline-block;
  padding: 1rem;
  color: #ffffff;
  transition: 0.3s;
}
.global-nav_list li a:hover {
  color: #d16014;
  transition: 0.3s;
}

/*-- ▼sns-navi▼ --*/
.sns-nav {
  display: none;
  position: fixed;
  bottom: 100px;
  left: 144px;
  z-index: 100;
}
.sns-nav ul li {
  display: inline-block;
  margin-right: 1rem;
  font-size: 1.5rem;
}
.sns-nav ul li a {
  display: block;
  color: #999999;
  transition: 0.3s;
}
.sns-nav ul li a:hover {
  transform: scale(1.2);
  transition: 0.3s;
}

/*-- ▼ページャー▼ --*/
.page-numbers {
  display: flex;
  justify-content: space-around;
  margin-top: 3rem;
}
.page-numbers li span {
  padding: 1rem;
  background-color: #999999;
  color: #ffffff;
}
.page-numbers li a {
  padding: 1rem;
  background-color: #86e0aa;
  color: #ffffff;
  transition: 0.3s;
}
.page-numbers li a:hover {
  background-color: #3cb371;
  transition: 0.3s;
}
.page-numbers li .prev,
.page-numbers li .next {
  background-color: transparent;
  color: #86e0aa;
  transition: 0.3s;
}
.page-numbers li .prev:hover,
.page-numbers li .next:hover {
  background-color: transparent;
  color: #3cb371;
  transition: 0.3s;
}

/*--------------------------------------------------------------
## TOP
--------------------------------------------------------------*/
.home_header-img {
  position: relative;
  height: 100vh;
}
.home_header-img .header_slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home_header-img .header_slider .slick-list {
  height: 100vh;
}
.home_header-img .header_slider .slick-list .slick-track {
  height: 100%;
}
.home_header-img .header_slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home_header-img .home_site-title {
  position: absolute;
  top: 50%;
  left: 144px;
  transform: translateY(-50%);
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
}
.home_header-img .home_site-title p {
  font-size: 2rem;
  line-height: 1.2;
}

.fixed-title {
  display: none;
}

.home .content1 {
  /*-- ▼content1▼ --*/
  padding: 160px 0;
  color: #fafffd;
  font-family: "Zen Old Mincho", serif;
  text-align: right;
  position: relative;
}
.home .content1_text h2 {
  margin: 0 0 3rem 0;
  font-size: 2.5rem;
}
.home .content1_text p {
  margin-bottom: 2rem;
}
.home .content1 .more-btn {
  position: absolute;
  right: calc(-20px + 2.5rem);
  bottom: 90px;
  transition: 0.3s;
}
.home .content1 .more-btn:hover {
  right: calc(-40px + 3rem);
  transition: 0.3s;
}
.home .concept {
  /*-- ▼concept▼ --*/
  position: relative;
  margin-bottom: 100px;
}
.home .concept_img {
  position: relative;
  width: 75vw;
  height: 30vw;
  background-image: url("img/top_concept.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.home .concept_bk {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 120%;
  background-color: #D7945F;
  content: "";
}
.home .content2-wrap {
  padding: 120px 0;
}
.home .content2-wrap .content2-title {
  color: #ffffff;
  text-align: center;
  margin-bottom: 5rem;
}
.home .content2-wrap .content2-title h2 {
  display: inline-block;
  position: relative;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 6px;
}
.home .content2-wrap .content2-title h2::before {
  display: block;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  z-index: -1;
  transform: rotate(34deg);
  width: 1px;
  height: calc(100% + 40px);
  margin: auto;
  background: #d16014;
  content: "";
}
.home .content2 {
  /*-- ▼content2▼ --*/
}
.home .content2 .content2-section {
  width: 33%;
  color: #fafffd;
  font-family: "Zen Old Mincho", serif;
}
.home .content2 .content2-section_title {
  width: 420px;
}
.home .content2 .content2-section_img {
  position: relative;
  width: 420px;
  margin: auto;
}
.home .content2 .content2-section_img .content2-section_img-bk {
  position: absolute;
  top: 0;
  width: 420px;
  height: 420px;
  background-color: transparent;
  content: "";
}
.home .content2 .content2-section_img img {
  z-index: -1;
  width: 100%;
  height: 420px;
  transition: 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .content2 .content2-section_img p {
  visibility: hidden;
  position: absolute;
  bottom: 1rem;
  padding: 2rem;
  color: #ffffff;
  transition: 0.2s;
}
.home .content2 .content2-section_img a:hover .content2-section_img-bk {
  background: rgba(0, 0, 0, 0.7);
  transition: 0.3s;
}
.home .content2 .content2-section_img a:hover img {
  z-index: -1;
  transition: 0.3s;
}
.home .content2 .content2-section_img a:hover p {
  visibility: visible;
  transition: 0.2s;
}
.home .content3 {
  /*-- ▼content3▼ --*/
  position: relative;
  padding: 80px 0 160px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url(img/top_news.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
}
.home .content3 .news-title {
  color: #ffffff;
  margin-bottom: 5rem;
  text-align: center;
}
.home .content3 .news-title h2 {
  display: inline-block;
  position: relative;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 6px;
  z-index: 0;
}
.home .content3 .news-title h2::before {
  display: block;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  z-index: -1;
  transform: rotate(34deg);
  width: 1px;
  height: calc(100% + 40px);
  margin: auto;
  background: #d16014;
  content: "";
}
.home .content3 .news-title p {
  font-size: 16px;
}
.home .content3 .news-content {
  justify-content: space-between;
}
.home .content3 .news-content .news-article {
  width: 48%;
  margin-bottom: 2%;
  background-color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}
.home .content3 .news-content .news-article:hover {
  transform: rotate(-1.5deg);
  transition: 0.3s;
}
.home .content3 .news-content .news-article:hover a {
  color: #999999;
  transition: 0.3s;
}
.home .content3 .news-content .news-article:hover .news-article_text {
  border-top: 1px solid #999999;
  transition: 0.3s;
}
.home .content3 .news-content .news-article a {
  display: block;
  padding: 2rem;
  color: #000000;
  transition: 0.3s;
}
.home .content3 .news-content .news-article_date {
  padding-left: 0.1rem;
  color: #333333;
  font-size: 0.7rem;
}
.home .content3 .news-content .news-article_text {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #000000;
  transition: 0.3s;
}
.home .content3 .more-btn {
  position: absolute;
  right: calc(144px + 3rem);
  bottom: 90px;
  transition: 0.3s;
}
.home .content3 .more-btn:hover {
  right: calc(114px + 3rem);
  transition: 0.3s;
}
.home .content4-wrap {
  padding: 120px 0;
}
.home .content4-wrap .content4-title {
  color: #ffffff;
  text-align: center;
}
.home .content4-wrap .content4-title h2 {
  display: inline-block;
  position: relative;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 6px;
}
.home .content4-wrap .content4-title h2::before {
  display: block;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  z-index: -1;
  transform: rotate(34deg);
  width: 1px;
  height: calc(100% + 40px);
  margin: auto;
  background: #d16014;
  content: "";
}
.home .content4 {
  /*-- ▼content4▼ --*/
  justify-content: space-between;
  padding: 160px 0;
}
.home .content4 .content4-section {
  position: relative;
  width: 35vw;
}
.home .content4 .content4-section_bk {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 90%;
  height: 70%;
  background: #D7945F;
  content: "";
}
.home .content4 .content4-section a {
  display: block;
  height: 70%;
  padding-top: 8.5rem;
  color: #fafffd;
}
.home .content4 .content4-section a:hover .more-btn2 {
  left: calc(440px - 5rem);
  transition: 0.3s;
}
.home .content4 .content4-section_title {
  padding-left: 144px;
}
.home .content4 .content4-section_title h2 {
  background: #D7945F;
}
.home .content4 .content4-section_text {
  padding-top: 2.5rem;
  padding-left: 144px;
}
.home .content4 .more-btn2 {
  position: absolute;
  top: 70%;
  left: calc(410px - 5rem);
  transition: 0.3s;
}
.home .content4 .content4-img {
  width: 60vw;
}
.home .content4 .content4-img img {
  width: 100%;
}
.home .content5 {
  /*-- ▼content5▼ --*/
  justify-content: space-between;
  padding: 0 0 160px 0;
}
.home .content5 .content5-img {
  width: 60vw;
}
.home .content5 .content5-img img {
  width: 100%;
}
.home .content5 .content5-section {
  position: relative;
  width: 35vw;
}
.home .content5 .content5-section_bk {
  position: absolute;
  right: 0;
  z-index: -1;
  width: 90%;
  height: 70%;
  background-color: #D7945F;
  content: "";
}
.home .content5 .content5-section a {
  display: block;
  height: 70%;
  padding-top: 8.5rem;
  color: #fafffd;
}
.home .content5 .content5-section a:hover .more-btn2 {
  right: 124px;
  transition: 0.3s;
}
.home .content5 .content5-section_title {
  padding-right: 144px;
  text-align: right;
}
.home .content5 .content5-section_title::before {
  right: 144px;
}
.home .content5 .content5-section_title h2 {
  padding-right: 0;
  padding-left: 3rem;
  background: #ddf3cd;
  background-color: #D7945F;
}
.home .content5 .content5-section_text {
  padding-top: 2.5rem;
  padding-right: 144px;
}
.home .content5 .more-btn2 {
  position: absolute;
  top: 70%;
  right: 154px;
  transition: 0.3s;
}
.home .content6 {
  /*-- ▼content6▼ --*/
  position: relative;
  padding: 80px 0;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url(img/top_contact.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  text-align: center;
}
.home .content6 .contact-title {
  margin-bottom: 5rem;
}
.home .content6 .contact-title h2 {
  display: inline-block;
  position: relative;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 6px;
  z-index: 0;
}
.home .content6 .contact-title h2::before {
  display: block;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  z-index: -1;
  transform: rotate(34deg);
  width: 1px;
  height: calc(100% + 40px);
  margin: auto;
  background: #d16014;
  content: "";
}
.home .content6 .contact-text .contact-tel {
  font-size: 32px;
  margin: 2.5rem 0 0.5rem;
  display: block;
  line-height: 1.6;
}
.home .content6 .contact-text .contact-tel a {
  color: #fafffd;
}
.home .content6 .contact-text .contact-tel::before {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fafffd;
  margin-right: 0.75em;
}
.home .content6 .contact-text .contact-time {
  margin-bottom: 2.5rem;
  display: block;
  line-height: 1.5;
}
.home .content6 .more-btn3 {
  width: 35%;
  background: #D7945F;
  margin: 0 auto;
  padding: 1.5rem 0;
  transition: 0.3s;
}
.home .content6 .more-btn3 a {
  display: block;
  color: #fafffd;
}
.home .content6 .more-btn3:hover {
  background-color: rgba(215, 148, 95, 0.8);
}
.home .gallery ul li {
  /*-- ▼gallery▼ --*/
  height: 25vw;
}
.home .gallery ul li img {
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------------------------------------------------------
## lower
--------------------------------------------------------------*/
.lower_header-img {
  position: relative;
  height: 600px;
}
.lower_header-img::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
}
.lower_header-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lower_header-img .page-title {
  position: absolute;
  top: calc(50% - 3.5rem);
  right: 0;
  left: 0;
  color: #ffffff;
  text-align: center;
}
.lower_header-img .page-title h2 {
  font-size: 2.5rem;
  line-height: 5rem;
}
.lower_header-img .page-title p {
  font-size: 1.5rem;
}

.lower .lower__dedication-title {
  margin-bottom: 3rem;
  color: #fafffd;
  text-align: center;
}
.lower .lower__dedication-title h2 {
  display: inline-block;
  position: relative;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 6px;
}
.lower .lower__dedication-title h2::before {
  display: block;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  z-index: -1;
  transform: rotate(34deg);
  width: 1px;
  height: calc(100% + 40px);
  margin: auto;
  background: #d16014;
  content: "";
}
.lower .lower__coursemenu-image {
  background: url(https://ichi-flyingbird.com/info/wp-content/uploads/pixta_94521427_M.jpg) no-repeat;
  background-size: cover;
  height: 400px;
  background-attachment: fixed;
  background-position: center;
}
.lower .lower__coursemenu-choose-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 1.5rem auto;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed #fafffd;
}
.lower .lower__coursemenu-choose-list-item {
  width: 48%;
  margin-bottom: 1.5rem;
}
.lower .lower__coursemenu-choose-list-ttl {
  padding: 1.5rem 0;
  border-bottom: 1px solid #fafffd;
  -o-border-image: linear-gradient(to right, #fafffd, rgba(250, 255, 253, 0.1)) 0 0 80% 0;
     border-image: linear-gradient(to right, #fafffd, rgba(250, 255, 253, 0.1)) 0 0 80% 0;
  font-size: 2rem;
  color: #d16014;
}
.lower .lower__coursemenu-choose-list-txt {
  padding: 1rem 0;
}
.lower .lower__coursemenu-course-list-item {
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
}
.lower .lower__coursemenu-course-list-item-details p {
  font-size: 1.5rem;
}
.lower .lower__coursemenu-course-list-item-details p::before {
  content: "● ";
  color: #d16014;
}
.lower .lower__coursemenu-course-list-item-details ul {
  list-style-type: disc;
  margin-top: 1rem;
  padding-left: 2rem;
}
.lower .lower__coursemenu-course-list-item-price {
  font-size: 1.5rem;
}
.lower .lower__coursemenu-submenu {
  background: rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
}
.lower .lower__coursemenu-submenu table tr td:last-child {
  text-align: right;
}
.lower .lower__coursemenu-submenu-right-table table tr td {
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px dashed #fafffd;
}
.lower .lower__ichi-title {
  position: relative;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 6px;
}
.lower .lower__ichi-title::before {
  display: block;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  z-index: -1;
  transform: rotate(34deg);
  width: 1px;
  height: calc(100% + 40px);
  margin: auto;
  background: #d16014;
  content: "";
}
.lower .is-style-regular td {
  border: 1px solid #d16014;
}
.lower .is-style-regular td:first-child {
  background: rgba(210, 96, 20, 0.3);
}
.lower .lower__drinkmenu-image {
  background: url(https://ichi-flyingbird.com/info/wp-content/uploads/pixta_54117842_M.jpg) no-repeat;
  background-size: cover;
  height: 400px;
  background-attachment: fixed;
  background-position: center;
}
.lower .lower__drinkmenu {
  text-align: center;
}
.lower .lower__drinkmenu-list-item {
  border-bottom: 1px dashed;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.lower .lower__drinkmenu-list-item-ttl {
  text-align: center;
  color: #d16014;
  font-size: 1.75em;
  margin-bottom: 1.5rem;
}
.lower .lower__drinkmenu-list-item-ttl-sort {
  color: #fafffd;
  display: block;
  font-size: 13px;
  margin: 10px 0 0;
  line-height: 1.4;
}
.lower .lower__drinkmenu-list-item .lower__drinkmenu-inner-list-item {
  font-size: 1.25em;
}
.lower .lower__drinkmenu-list-item .lower__drinkmenu-inner-list-item-cap {
  font-size: 12px;
  font-weight: 600;
}
.lower .lower__drinkmenu-notice {
  background: rgba(209, 96, 20, 0.15);
  border: 1px solid #D16014;
  padding: 2rem;
}
.lower .lower__fb-txt {
  line-height: 1.7;
}
.lower .lower__fb-ttl {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
  margin-bottom: 2rem;
  background: #6b7a8f;
}
.lower .lower__fb-menu-table table tr td {
  width: 50%;
  border-top: none;
  border-right: none;
  border-bottom: 1px dashed #fafffd;
  border-left: none;
  vertical-align: middle;
}
.lower .lower__fb-menu-table table tr td:last-child {
  text-align: right;
}
.lower .lower__info {
  margin-bottom: 2rem;
}
.lower .lower__info table tr td {
  border: 1px solid #d16014;
}
.lower .lower__info table tr td:first-child {
  text-align: center;
  vertical-align: middle;
  background: rgba(210, 96, 20, 0.3);
}
.lower .lower__fb-contact {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url(https://ichi-flyingbird.com/info/wp-content/uploads/pixta_80293639_M.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 3rem 1rem;
}
.lower .lower__contact-block {
  width: 80%;
  margin: 0 auto;
}
.lower .lower__contact-block h4 {
  margin: 2rem 0 1rem;
  text-align: center;
}
.lower .lower__contact-block h4::before {
  content: "/ ";
  color: #D7945F;
}
.lower .lower__contact-tel {
  margin: 1rem 0 2rem;
  font-size: 2rem;
  text-align: center;
}
.lower .lower__contact-tel a {
  color: #fafffd;
  transition: 0.3s;
  line-height: 1.6;
}
.lower .lower__contact-tel a:hover {
  opacity: 0.8;
}
.lower .lower__contact-tel a::before {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fafffd;
  margin-right: 0.5em;
}
.lower .lower__contact-tel-time {
  display: block;
  font-size: 14px;
  line-height: 1.5;
}
.lower .lower__contact-btn a {
  display: block;
  width: 60%;
  margin: 0 auto;
  padding: 1rem 0;
  background-color: #D7945F;
  color: #fafffd;
  text-align: center;
  transition: 0.3s;
}
.lower .lower__contact-btn a:hover {
  background-color: rgba(215, 148, 95, 0.8);
}

/*--------------------------------------------------------------
## archive※使わない場合は削除してください
--------------------------------------------------------------*/
.archive .articles .article {
  margin-bottom: 2rem;
  background: rgba(250, 255, 253, 0.8);
}
.archive .articles .article a {
  display: block;
  padding: 2rem;
  color: #18191b;
  transition: 0.3s;
}
.archive .articles .article a:hover {
  color: #999999;
  transition: 0.3s;
}
.archive .articles .article a:hover .article_contents-data p {
  color: #d16014;
  transition: 0.3s;
}
.archive .articles .article a:hover .article_contents-text {
  border-top: 1px solid #999999;
  transition: 0.3s;
}
.archive .articles .article_contents-data p {
  padding-left: 0.1rem;
  color: #d16014;
  font-size: 0.7rem;
  transition: 0.3s;
}
.archive .articles .article_contents-text {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #18191b;
  transition: 0.3s;
}

/*--------------------------------------------------------------
## single※使わない場合は削除してください
--------------------------------------------------------------*/
.single {
  padding: 30px 0 0;
}
.single .container2 {
  position: relative;
}
.single .container2 .breadcrumb {
  /*-- ▼パンくず▼ --*/
  position: absolute;
  top: -4.5rem;
  font-size: 0.9rem;
}
.single .container2 .breadcrumb a {
  text-decoration: underline;
  transition: 0.3s;
}
.single .container2 .breadcrumb a:hover {
  color: #D7945F;
  transition: 0.3s;
}
.single .container2 .article {
  padding: 5rem 3rem;
  /*-- ▼記事▼ --*/
  background-color: rgba(250, 255, 253, 0.8);
  color: #18191b;
}
.single .container2 .article_data {
  padding-bottom: 1rem;
  border-bottom: 1px solid #18191b;
}
.single .container2 .article_data h3 {
  font-size: 2rem;
  line-height: 3.5rem;
  text-align: center;
  color: #18191b;
}
.single .container2 .article_data p {
  padding-top: 1rem;
  color: #d16014;
  font-size: 0.9rem;
  text-align: right;
}
.single .container2 .article_text {
  padding-top: 5rem;
  color: #18191b;
}
.single .container2 .page-btn {
  /*-- ▼前後の投稿ボタン▼ --*/
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}
.single .container2 .page-btn a {
  transition: 0.3s;
}
.single .container2 .page-btn a:hover {
  color: #d16014;
  transition: 0.3s;
}

/*--------------------------------------------------------------
## lower > contact
--------------------------------------------------------------*/
.wpcf7 .any {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0 0.5rem;
  border-radius: 5px;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.8rem;
  text-align: center;
  background-color: blue;
}

.wpcf7 .required {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0 0.5rem;
  border-radius: 5px;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.8rem;
  text-align: center;
  background-color: #d16014;
}

input[type=submit] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

.wpcf7 p label {
  display: block;
  width: 100%;
  color: #ffffff;
}
.wpcf7 p label .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-top: 1rem;
}
.wpcf7 p label .wpcf7-form-control-wrap .wpcf7-form-control {
  display: block;
  width: 100%;
  padding: 1rem;
  border: 1px solid #333333;
  border-radius: 3px;
  box-sizing: border-box;
  background-color: #efefef;
}
.wpcf7 p .wpcf7-acceptance {
  display: block;
  text-align: center;
  margin-bottom: 2rem;
}
.wpcf7 p .wpcf7-submit {
  background: #D7945F;
  color: #fafffd;
  display: block;
  width: 240px;
  margin: 0 auto;
  padding: 1rem;
  border: none;
}
.wpcf7 .privacy-policy-wrap {
  width: 100%;
  max-width: 100%;
  height: 30em;
  margin: 2em auto;
  overflow: auto;
  border: 1px solid #fafffd;
  background-color: #efefef;
  color: #18191b;
}
.wpcf7 .privacy-policy-wrap .privacy-txt {
  padding: 5%;
  font-size: 0.9em;
  line-height: 1.8;
}
.wpcf7 .privacy-policy-wrap .privacy-txt h4 {
  margin: 0 0 2rem 0;
  color: #d16014;
  font-weight: bold;
  font-size: 1.1rem;
}
.wpcf7 .privacy-policy-wrap .privacy-txt h5 {
  margin: 0.3rem 0;
  color: #333333;
  font-weight: bold;
}
.wpcf7 .privacy-policy-wrap .privacy-txt p {
  margin: 0 0 2rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

/*--------------------------------------------------------------
## footer
--------------------------------------------------------------*/
footer {
  padding: 160px 0 150px;
  background: #6b7a8f;
}
footer .container1 {
  justify-content: space-between;
}
footer .container1 .footer-section {
  width: 49%;
  color: #ffffff;
}
footer .container1 .footer-section a {
  color: #ffffff;
  transition: 0.3s;
}
footer .container1 .footer-section a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
footer .container1 .footer-section h2 {
  margin-top: 1rem;
  font-size: 2.5rem;
}
footer .container1 .footer-section .footer-text {
  margin: 5.5rem 0 6rem;
}
footer .container1 .footer-section .footer-text_address, footer .container1 .footer-section .footer-text_tel {
  margin-bottom: 1rem;
}
footer .container1 .footer-section .footer-text_tel::before {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fafffd;
}
footer .container1 .footer-section .footer-text_time .line::before {
  content: "/ ";
  color: #D7945F;
}
footer .container1 .footer-section .footer-copyright {
  font-size: 0.7rem;
}/*# sourceMappingURL=style 2.css.map */