@charset "UTF-8";

:root {
  --BaseFontColor: #373029;
  --BaseColor: #39AC4A;
  --SecondColor: #a9d158;
  --Esinout: ease-in-out;
  --Baseeasing: cubic-bezier(0.2, 0.5, 0.4, 1);
}

/*-- Base
-------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  width: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
  background: #fff;
}

body {
  color: var(--BaseFontColor);
  font-size: 1.6rem;
  font-weight: normal;
  font-family: 'Yu Gochic', '游ゴシック', sans-serif;
  overflow-x: hidden;
}

main {
  width: 100%;
  position: relative;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--BaseColor);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
}

video {
  max-width: 100%;
}

/*-- Layout
-------------------------------------------------------------*/
/*--- container ---*/
.l-container {
  width: 100%;
  position: relative;
  padding: 3rem 0;
}

.l-container.is-short {
  padding: 0 0 4rem;
}

/*--- inner ---*/
.l-inner {
  width: 79.166%;
  max-width: 1520px;
  margin: 0 auto;
}

.l-inner-large {
  width: 95%;
  margin: 0 auto;
}

.l-inner-small {
  width: 52%;
  max-width: 1000px;
  min-width: 900px;
  margin: 0 auto;
}

/*--- block-title ---*/
.p-title {
  font-size: 3.1rem;
  font-weight: 800;
  color: var(--BaseColor);
  display: inline-block;
  margin-bottom: 2rem;
}

/*--- 仕事 ---*/
.p-title.is-job {
  position: relative;
  border-bottom: 4px solid var(--BaseColor);
  margin-bottom: 2rem;
}

.p-title.is-job:before {
  content: url('../img/common/cont-title-icon.svg');
  display: block;
}

/*--- 特産・買う食べる ---*/
.p-title.is-public {
  position: relative;
  color: var(--BaseFontColor);
  margin-bottom: 2rem;
}

.p-title.is-public:after {
  content: url('../img/common/cont-title-icon2.svg');
  position: absolute;
  bottom: calc(100% - 3.2rem);
  right: -3.7rem;
}

/*--- 特産・買う食べる ---*/
.p-title.is-recipe {
  position: relative;
  color: var(--BaseFontColor);
}

.p-title.is-recipe:before {
  content: url('../img/tokusan/recipe-title.svg');
  display: block;
}

/*--- 背景緑　---*/
.p-green-title {
  width: 100%;
  line-height: 3.5rem;
  padding-left: 1em;
  font-size: 2.2rem;
  color: #fff;
  background: linear-gradient(to right, #39ac4a, #86ca3f);
  margin-bottom: 1rem;
}

.item-title {
  font-size: 2.2rem;
}

.item-title.is-green {
  color: var(--BaseColor);
}

.item-title span {
  font-size: 1.6rem;
}

/*--- block-img ---*/
.p-txt-box {
  line-height: 2.5em;
  margin-bottom: 2em;
}

/*--- block-img ---*/
.p-img-box {
  overflow: hidden;
  border-radius: 20px;
}

.p-img-box img {
  margin-bottom: -1rem;
  display: block;
}

/*--- item ---*/
.item {
  position: relative;
}

.item40 {
  width: 36%;
}

.item50 {
  width: 55%;
}

.item70 {
  width: 70%;
}

.item-tit {
  font-size: 1.7rem;
}

.item-black-tit {
  line-height: 3rem;
  margin-bottom: 1rem;
  padding: 0 1em;
  display: inline-block;
  color: #fff;
  background: var(--BaseFontColor);
}

h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

img.icon {
  transform: translateY(2px);
}

/*--- 共通テキスト部分 ---*/
.p-public-txt {
  /* margin-top:2em; */
}

.p-public-txt .p-title-box {
  margin-bottom: 1em;
}

.p-public-txt .p-txt-box {
  line-height: 2em;
  margin-bottom: 1em;
}

/*--- 共通画像部分 ---*/
.p-public-pict {
  width: calc((100% / 2) - 2rem + 10.417vw);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.p-public-pict.is-left {
  margin-left: -10.417vw;
  border-radius: 0 3rem 3rem 0;
}

.p-public-pict.is-right {
  margin-right: -10.417vw;
  border-radius: 3rem 0 0 3rem;
}

.p-public-pict img {
  display: block;
}


/*--- tablet ---*/
@media only screen and (min-width:924px) and (max-width:1280px) {
  .l-inner-small {
    width: 80%;
    max-width: 1080px;
    min-width: 1px;
  }

  .p-public-pict.is-right,
  .p-public-pict.is-left {
    margin-left: 0;
    margin-right: 0;
    border-radius: 3rem;
  }
}

/*--- phone ---*/
@media only screen and (max-width:924px) {
  .l-container {
    padding: 3rem 0;
  }

  .l-container.is-short {
    padding: 0 0 3rem;
  }

  .l-inner,
  .l-inner-large,
  .l-inner-small {
    max-width: 100%;
    min-width: 1px;
    width: 100%;
    padding: 0 1.5rem;
  }

  .p-title img {
    max-height: 100%;
  }

  .p-title.is-public {
    height: auto;
  }

  .p-title.is-public:after {
    content: "";
    width: 5rem;
    height: 5rem;
    bottom: calc(100% - 1.4rem);
    right: -4.6rem;
    background: url('../img/common/cont-title-icon2.svg')no-repeat top right;
    background-size: auto;
    background-size: cover;
  }

  .p-title.is-job {
    height: auto;
  }

  .p-public-pict {
    /* width: 100%; */
    border-radius: 3rem !important;
		width:320px;
  }

  .p-public-pict.is-left {
    margin-left: 0;
  }

  .p-public-pict.is-right {
    margin-right: 0;
    border-radius: 3rem;
  }

  .item70 {
    width: 100%;
  }

  .p-public-txt {
    margin-top: 2em;
  }
}

/*--- スタイル ---*/
.is-bar {
  padding-left: 1em;
  text-indent: -1em;
}

.is-bar:before {
  content: "";
  width: 9px;
  height: 5px;
  border-top: 2px solid #28221d;
  display: inline-block;
  margin-right: 3px;
}

/*-- Flex
-------------------------------------------------------------*/
.l-flex {
  display: flex;
}

.l-flex.is-fc {
  flex-direction: column;
}

.l-flex.is-js {
  justify-content: flex-start;
}

.l-flex.is-jb {
  justify-content: space-between;
}

.l-flex.is-jc {
  justify-content: center;
}

.l-flex.is-je {
  justify-content: flex-end;
}

.l-flex.is-ac {
  align-items: center;
}

.l-flex.is-ae {
  align-items: flex-end;
}

.l-flex.is-as {
  align-items: stretch;
}

.l-flex.is-afs {
  align-items: flex-start;
}

.l-flex.is-wn {
  flex-wrap: nowrap;
}

.l-flex.is-ww {
  flex-wrap: wrap;
}

@media only screen and (min-width:924px) and (max-width:1280px) {
  .l-flex.is-fr {
    flex-direction: row !important;
  }
}

@media only screen and (max-width:924px) {
  .l-flex {
    flex-direction: column;
  }

  .l-flex.is-fr {
    flex-direction: row;
  }

  .l-flex.is-fcr {
    flex-direction: column-reverse;
  }

  .l-flex.is-frr {
    flex-direction: row-reverse;
  }

  .l-flex.is-ac {
    justify-content: center;
  }

  .l-flex.is-ae {
    justify-content: flex-end;
  }

  .l-flex.is-js {
    align-items: flex-start;
  }

  .l-flex.is-jc {
    align-items: center;
  }

  .l-flex.is-je {
    align-items: flex-end;
  }

  .l-flex.is-wn {
    flex-wrap: wrap;
  }
}

/*--- text
-------------------------------------------------------------*/
.is-tl {
  text-align: left;
}

.is-tc {
  text-align: center;
}

.is-tr {
  text-align: right;
}

/*-- Font-Size ----------*/
.font-size-09 {
  font-size: 0.85em;
}

/*-- Show,Hide
-------------------------------------------------------------*/
@media screen and (min-width: 1281px) {
  .hide-lg {
    display: none !important;
  }
}

@media screen and (min-width:1281px) and (max-width: 1480px) {
  .hide-mmd {
    display: none !important;
  }
}

@media only screen and (min-width:924px) and (max-width:1280px) {
  .hide-md {
    display: none !important;
  }
}

@media only screen and (max-width:924px) {
  .hide-sp {
    display: none !important;
  }
}

/*-- Link
-------------------------------------------------------------*/
/*-- Base-Style ----------*/
.p-link {
  position: relative;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.5s ease;
}

.p-link:hover {
  text-decoration-color: transparent;
}

/* .p-link:before{
  content: "";
  width: 100%;
  height: 1px;
  background-color:var(--BaseColor);
  position: absolute;
  bottom: 0;
  right: 0em;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform .5s cubic-bezier(1,0,0,1);
}
.p-link:hover:before{
  transform: scaleX(0);
  transform-origin: right center;
} */
/*-- Link-Arrow-Icon ----------*/
.p-link.is-arrow {
  margin-left: 1em;
}

.p-link.is-arrow:after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  bottom: 7px;
  right: calc(-1em + 2px);
  border-top: 2px solid var(--BaseColor);
  border-right: 2px solid var(--BaseColor);
  transform: rotate(45deg);
}

/*-- Link-Blank-Icon ----------*/
.p-link.is-blank {
  margin-right: 23px;
}

.p-link.is-blank:after {
  content: url("../img/common/blank_icon.svg");
  position: absolute;
  bottom: -2px;
  right: -18px;
}

/*-- Link-Blank-Icon ----------*/
.p-link.is-pdf {
  margin-left: 1.6em;
}

.p-link.is-pdf:after {
  content: url("../img/common/link-pdf-icon.svg");
  position: absolute;
  top: 0;
  left: calc(-1em - 4px);
  /* top: 50%;
  transform: translateY(calc(-50% + 1px)); */
}

@media only screen and (min-width:926px) and (max-width:1280px) {
  .p-link {
    text-decoration: underline;
  }

  .p-link:before {
    transform: scaleX(1);
    transform-origin: left center;
    display: none;
  }
}

@media only screen and (max-width:924px) {
  .p-link {
    text-decoration: underline;
  }

  .p-link:before {
    transform: scaleX(1);
    transform-origin: left center;
    display: none;
  }
}

/*-- LinkBtn
-------------------------------------------------------------*/
/*-- Base-Style ----------*/
.p-btn {
  width: 100%;
  line-height: 3.5rem;
  border-radius: 1rem;
  display: inline-block;
  text-align: center;
  position: relative;
  padding-left: 2.4rem;
  overflow: hidden;
  color: var(--BaseFontColor);
  background: url("../img/common/btn-back.jpg")no-repeat center;
  background-size: 100%;
  opacity: 1;
  transition: opacity 0.5s;
}

.p-btn.is-white {
  background: #fff;
  border: 5px solid #f2c64c;
}

.p-btn.is-red {
  color: #fff;
  font-weight: bold;
  background-color: #ea6060;
  background-image: none;
}
.p-btn.is-red:before {
  background-image: url("../img/common/btn-arrow-icon-red.svg");
}

.p-btn:hover,
.p-btn:focus {
  opacity: 0.8;
}

.p-btn span {
  width: 100%;
  position: relative;
  z-index: 10;
}

.p-btn:before {
  content: "";
  background: url('../img/common/btn-arrow-icon.svg')no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 1.3rem;
  transform: translateY(-50%);
  display: block;
  width: 2rem;
  height: 2rem;
  min-width: 1.8rem;
  min-height: 1.8rem;
  transition: transform 0.5s;
}

.p-btn:hover:before {
  transform: translateY(-50%) rotate(360deg);
}

.p-btn.is-white:before {
  background: url('../img/common/btn-arrow-icon-white.svg')no-repeat center;
  background-size: 100%;
}

/*--- 普通のボタンSMLサイズ ---*/
.p-btn.is-sll {
  max-width: 350px;
}

.p-btn.is-sl {
  max-width: 300px;
}

.p-btn.is-sm {
  max-width: 240px;
}

.p-btn.is-ss {
  max-width: 160px;
}

/*--- 大きいボタン ----------*/
.p-btn.is-fl {
  line-height: 5.5rem;
  border-radius: 1.5rem;
  padding: 0 0 0 2rem;
  font-size: 1.8rem;
  font-weight: 500;
}

.p-btn.is-fl:before {
  left: 1.7rem;
  width: 2.2rem;
  height: 2.2rem;
  min-width: 2rem;
  min-height: 2rem;
}

/*--- PDFリンク ----------*/
.p-btn.is-pdf:before {
  background: url('../img/common/btn-pdf-icon.svg')no-repeat center;
}

/*--- オンラインショップ ----------*/
.p-btn.is-shop {
  font-size: 3.3rem;
  font-weight: bold;
  max-width: 760px;
  line-height: 14rem;
  border-radius: 3rem;
  border: 3px solid #f2c64c;
  background: none;
}

.p-btn.is-shop:before {
  display: none;
}

.p-btn.is-shop:after {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.5s ease-in-out;
  background: #f2c64c;
}

.p-btn.is-shop:hover:after,
.p-btn.is-shop:focus:after {
  width: 100%;
}

.p-btn.is-shop span:before,
.p-btn.is-shop span:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
}

.p-btn.is-shop span:before {
  content: url("../img/tokusan/online-btn-icon.svg");
  height: 8rem;
  left: -8.8rem;
}

.p-btn.is-shop span:after {
  content: url("../img/common/btn-arrow-icon-25.svg");
  /* height: 25px; */
  right: -4.2rem;
}

@media only screen and (max-width:924px) {
  .p-btn.is-shop span:after {
    margin-top: 4px;
  }
}

/*-- Header
-------------------------------------------------------------*/
header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  z-index: 2000;
  padding: 0;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

header.is-fixed {
  position: fixed;
  /* top: 0; */
  animation: is-h-fixed 1s forwards;
}

header.is-footer {
  animation: is-h-fixed 1s reverse 2.3s;
}

@keyframes is-h-fixed {
  0% {
    top: -100%;
  }

  100% {
    top: 0%;
  }
}

header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

header h1 {
  width: 18%;
  min-width: 1.6rem;
  height: 15rem;
  min-height: 9.1rem;
  max-height: 13.6rem;
  padding: 0 1%;
  background: var(--BaseColor);
  border-bottom-right-radius: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

header h1 a {
  margin-bottom: -1rem;
}

header .p-gmenu-box {
  width: auto;
  height: 8.6rem;
  padding: 0 2.5vw;
  border-bottom-left-radius: 3rem;
  background: rgba(255, 255, 255, 0.9);
}

header #gn_menu ul li.h-sub > a {
  position: relative;
}

header #gn_menu ul li.h-sub > a:after {
  content: url("../img/common/h-sub-icon.svg");
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  transform: translateX(-50%);
}

header #gn_menu ul li a.h-btn {
  width: auto;
  height: 6.3rem;
  padding: 0 1.6rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 1;
  transition: opacity 0.5s;
}

header #gn_menu ul li a.h-btn:hover {
  color: #fff;
  opacity: 0.8;
}

header #gn_menu ul li a.h-recruit {
  background: #f25561;
}

header #gn_menu ul li a.h-recruit:after {
  content: url("../img/common/h-recruit-icon.svg");
  margin-bottom: -0.7rem;
  margin-left: 0.6rem;
}

header #gn_menu ul li a.h-contact {
  background: #009b4a;
}

header #gn_menu ul li a.h-contact:after {
  content: url("../img/common/h-contact-icon.svg");
  margin-bottom: -0.7rem;
  margin-left: 0.6rem;
}

header #gn_menu ul li a.h-etc-menu {
  width: 6.3rem;
  padding: 0;
  background: var(--BaseFontColor);
}

header #gn_menu ul li a.h-etc-menu:after {
  display: none;
}

header .sub-h-menu {
  min-width: 190px;
  height: auto;
  padding: 2rem;
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  transform: translate(-50%, -1rem);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2rem;
  display: none;
  /* opacity:0; */
  transition: transform 1s;
  white-space: nowrap;
}

header .sub-h-menu.etc-menu {
  left: auto;
  right: 0;
  transform: translate(0, -1rem);
}

header .sub-h-menu.show {
  /* display: block;
  opacity:1; */
  transform: translate(-50%, 0);
}

header .sub-h-menu.etc-menu.show {
  transform: translate(0, 0);
}

header .sub-h-menu li {
  border-bottom: 1px dotted var(--BaseFontColor);
  padding: 10px 0;
  justify-content: center;
  display: flex;
}

#gn_menu>ul>li.h_menu_btn {
  padding: 1px 0;
}

/*---- 文字間隔 ----*/
.equalize {
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
}

.equalize>span {
  flex: 0 0 auto;
}

.equalize[data-chars="1"] {
  justify-content: center;
}

.equalize-5 {
  width: 5em;
}

.equalize-7 {
  width: 7em;
}

.equalize-9 {
  width: 9em;
}

.equalize-10 {
  width: 10em;
}

.equalize-11 {
  width: 11em;
}

.equalize-12 {
  width: 12em;
}

.equalize-ww {
  flex-wrap: wrap;
}
.kumiai-equalize span{
  flex: 0 0 calc(100% / 9);
}
.kumiai-equalize span:nth-child(9n){
  margin-right: 0;
}

/* 1文字だけは中央に */
@media only screen and (min-width:924px) and (max-width:1280px) {
  header #gn_menu ul li {
    font-size: 1.5rem;
  }

  header .p-gmenu-box {
    width: auto;
    padding: 0;
  }
}

@media only screen and (max-width: 1129px) {
  header .p-gmenu-box {
    width: auto;
    padding: 0;
    border-radius: 0;
    background: none;
  }
}

@media only screen and (max-width:924px) {
  header {
    width: 100%;
    height: 7rem;
    padding: 0 0;
    align-items: flex-start;
  }

  header h1 {
    width: auto;
    /* max-width:20%; */
    min-width: 1px;
    height: 100%;
    min-height: 1px;
    max-height: 100%;
    padding: 1rem 2rem;
  }

  header h1 a {
    height: 100%;
  }

  header h1 img {
    height: 100%;
  }

  /* header .p-logo-box img{
    height:100%;
  } */
  header .p-gmenu-box {
    width: auto;
    padding: 0;
    border-radius: 0;
    background: none;
  }
}

/*-- Footer
-------------------------------------------------------------*/
/*--- base ----------*/
footer {
  position: relative;
  padding: 2.6rem 0 0;
  margin-top: 4rem;
  background: #f9f6e8;
}

footer:before {
  content: "";
  width: 100%;
  height: 4rem;
  position: absolute;
  top: calc(-4rem + 3px);
  left: 50%;
  transform: translateX(-50%);
  background: url("../img/common/footer-top-back.png")no-repeat top;
  background-size: 100% auto;
  margin-bottom: -1px;
}

footer .footer-inner {
  width: 95%;
  margin: 0 auto;
}

footer .p-flogo-box {
  max-width: 100%;
  align-items: center;
}

footer .p-flogo-box p {
  margin: 10px 0;
}

/*--- menu ----------*/
footer .p-fmenu-box ul {
  gap: 3em;
}

footer .p-fmenu-box ul li {
  font-size: 2rem;
  font-weight: 600;
}

footer .p-fmenu-box ul li a {
  color: #212121;
  transition: color 0.2s ease-in-out;
  margin-bottom: 1rem;
  display: block;
  position: relative;
}

footer .p-fmenu-box ul li a:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  background: #969696;
  position: absolute;
  top: 1.3rem;
  left: -0.8em;
  display: block;
}

footer .p-fmenu-box ul li a:hover {
  color: var(--BaseColor);
}

/*--- sub-menu ----------*/
footer .p-fmenu-box ul li .f-sub {
  padding-left: 1em;
}

footer .p-fmenu-box ul li .f-sub li {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 1rem;
}

footer .p-fmenu-box ul li .f-sub li a:before {
  content: "";
  width: 0.6rem;
  height: 0.1rem;
  border-radius: 0.25rem;
  background: #969696;
  position: absolute;
  top: 1.2rem;
  left: -0.8em;
  display: block;
}

footer .p-fmenu-box ul li .f-sub li a {
  color: #969696;
}

/*--- footer-bottom ----------*/
footer .p-ft-btm-box {
  border-top: 1px solid #ddd;
  padding: 15px 0;
}

footer .p-copy-box {
  font-size: 1.5rem;
  color: #969696;
}

footer .p-sns-box ul {
  height: 3rem;
  gap: 1.5rem;
}

footer .p-sns-box img {
  max-height: 100%;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

footer .p-sns-box img:hover {
  opacity: 0.5;
}

/*--- colorbar ----------*/
footer .footer-color-bar {
  position: relative;
  width: 100%;
  height: 60vh;
  max-height: 50rem;
  overflow-y: hidden;
}

footer .footer-color-bar:before {
  content: url('../img/common/f_bar.svg');
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 20;
}

footer .footer-color-bar .l-inner-small {
  position: relative;
  z-index: 20;
}

footer .footer-color-bar .color1 {
  position: absolute;
  width: 0%;
  height: 100%;
  opacity: 0;
  left: 0;
  top: 0;
  background: var(--BaseColor);
  transition: 4s var(--Baseeasing);
  transition-property: opacity, width;
}

footer .footer-color-bar .color2 {
  position: absolute;
  width: 0%;
  height: 100%;
  opacity: 0;
  right: 0;
  top: 0;
  background: var(--SecondColor);
  transition: 4s var(--Baseeasing);
  transition-property: opacity, width;
}

footer .footer-color-bar .color1.is_show {
  width: 72%;
  opacity: 1;
}

footer .footer-color-bar .color2.is_show {
  width: 28%;
  opacity: 1;
}
footer .f_copy{
  margin-left: auto;
  text-align: right;
}
footer .f_copy .p-link.is-arrow {
  margin-right: 1em;
}

@media only screen and (min-width:926px) and (max-width:1280px) {
  footer .footer-inner>.l-flex {
    justify-content: left;
  }

  /* footer .p-flogo-box img {
    margin-top: 2.8rem;
  } */

  .p-fmenu-box>.l-flex {
    flex-wrap: wrap;
  }
}

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

  /* footer:before{
    content:"";
    width: 100%;
    height: 16px;
    background: url("../img/common/footer-top-back.png")no-repeat top;
    background-size: 100%;
    margin-left: -1px;
  } */
  footer:before {
    transform: translate(-50%, 1px);
    background-size: auto;
  }

  footer .f_copy,
  footer .f_copy a.p-link.is-arrow,
  footer .f_cookie a.p-link.is-arrow{
    margin-left: 0;
  text-align: left;
  }
  footer .p-fmenu-box {
    padding-left: 1em;
    margin-bottom: 2em;
  }

  footer .footer-inner .l-flex {
    justify-content: left;
    align-items: flex-start;
  }

  footer .footer-color-bar .f-logo {
    left: 1.5rem;
  }
}

/*-- オンラインショップ
-------------------------------------------------------------*/
.shop-btn {
  position: fixed;
  right: 0;
  /* top: 50%; */
  top: 20%;
  z-index: 1000;
  opacity: 1;
  /* transform: translateY(-50%); */
  /* animation: fadeIn 1s linear forwards 2.3s; */
  transition: opacity 0.2s linear;
}

.shop-btn.is-hide {
  opacity: 0;
}

.shop-btn.is-footer {
  opacity: 0;
}

.shop-btn:hover {
  opacity: 0.8;
}

.shop-btn .shop-btn-pc {
  width: 50px;
  border-radius: 20px 0 0 20px;
  display: block;
  background: url("../img/common/btn-back.jpg");
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-btn .shop-btn-pc .shop-link-icon {
  max-width: 120%;
}

.shop-btn .shop-btn-pc .shop-link-text {
  margin-top: 10px;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease;
}

.shop-btn .shop-btn-pc:hover .shop-link-text {
  grid-template-rows: 1fr;
}

.shop-link-text-inner {
  overflow: hidden;
}

@media only screen and (max-width:924px) {
  .shop-btn {
    top: auto;
    bottom: 0;
    transform: translateY(0);
  }

  .shop-btn .hide-lg {
    display: block;
  }
}

/*-- Page-Top-Link
-------------------------------------------------------------*/
.p-scroll-top {
  width: 2rem;
  height: auto;
  position: fixed;
  bottom: 3rem;
  right: 0.5%;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  font-weight: 800;
  z-index: -1;
}

.p-scroll-top.is-active {
  opacity: 1;
  z-index: 100;
}

/*--- Font ----------*/
.p-scroll-top p {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #212121;
  transition: color 0.2s ease-in-out;
}

.p-scroll-top:hover p {
  color: var(--BaseColor);
}

/*--- Icon ----------*/
.p-scroll-top span {
  width: 100%;
  height: 5rem;
  position: relative;
  display: block;
}

.p-scroll-top span:before,
.p-scroll-top span:after {
  content: "";
  position: absolute;
  top: 0px;
  border-left: 0.2rem solid #212121;
  transition: border-left 0.2s ease-in-out;
}

.p-scroll-top:hover span:before,
.p-scroll-top:hover span:after {
  border-left: 0.2rem solid var(--BaseColor);
}

.p-scroll-top span:before {
  left: 1rem;
  height: 3rem;
  transition: height 0.2s ease-in-out;
}

.p-scroll-top:hover span:before {
  height: 4.5rem;
}

.p-scroll-top span:after {
  left: 1.5rem;
  height: 1.2rem;
  transform: rotate(-45deg);
}

/*--- Font ----------*/
@media only screen and (max-width:924px) {
  .p-scroll-top {
    display: none;
  }
}

/*-- パンくずリスト
-------------------------------------------------------------*/
.p-bread-crumb {
  position: absolute;
  bottom: 0;
  z-index: 10;
}

.p-bread-crumb li {
  padding-left: 1.4rem;
  white-space: nowrap;
  position: relative;
  margin-right: 1.4rem;
}

.p-bread-crumb li span {
  margin-top: -0.3rem;
  display: inline-block;
}

.p-bread-crumb li::before {
  content: "";
  display: block;
  width: 1px;
  height: 1.6rem;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0px;
  border-right: 1px solid var(--BaseFontColor);
}
.p-bread-crumb li.no-bf::before {
  content: "";
  display: none;
}

.p-bread-crumb li:first-child {
  padding-left: 0;
}

.p-bread-crumb li:first-child::before {
  content: "";
  display: none;
}

@media only screen and (max-width:924px) {
  .p-bread-crumb {
    display: none;
  }
}

/*-- イメージ
-------------------------------------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 2rem;
  min-width: 40rem;
}

th,
td {
  padding: 1.2rem 1.5rem;
  border: 1px solid #c3c3c3;
  text-align: left;
}

th {
  background-color: #dddddd;
  font-weight: normal;
}

.margin-up {
  padding-top: 0.6rem;
  display: block;
}

figcaption {
  text-align: center;
}

table.public {
  width: auto;
  max-width: 100%;
  min-width: 0;
}

table.public.is-wide {
  width: 100%;
}

table.public th {
  background-color: var(--BaseColor);
  color: #fff;
  font-weight: bold;
}

table.public td {
  background-color: #fff;
}

table.route td {
  height: 3.4em;
}

#map1 table td{
  height: 5em;
}

#map1 .map-route table td{
  height: 11em;
}

table.is-fixed {
  table-layout: fixed;
}

@media only screen and (max-width:924px) {
  .p-table {
    max-width: 100%;
    overflow-x: scroll;
  }

  table {
    min-width: 20rem;
    white-space: nowrap;
  }
  #map1 table td{
    height: auto;
  }

}

/*-- テキスト
-------------------------------------------------------------*/
input[type="text"],
input[type="tel"],
input[type="date"] {
  border: 1px solid #c3c3c3;
  width: 100%;
  height: 4em;
  padding: 0 1em;
  font-size: 1.6rem;
}

input[type="text"]:disabled,
input[type="tel"]:disabled,
input[type="date"]:disabled,
select:disabled {
  background-color: gray;
}

select {
  border: 1px solid #c3c3c3;
  width: 100%;
  height: 4em;
  padding: 0 1em;
  background: #fff;
}

textarea {
  border: 1px solid #c3c3c3;
  width: 100%;
  height: 10em;
  padding: 1em;
}

.confirm-box>div {
  border-bottom: 1px solid #acacac;
  padding: 2rem 0;
}

.confirm-box p:first-child {
  width: 10em;
  max-width: 100%;
  padding-left: 1em;
}

.confirm-box p:last-child {
  width: calc(100% - 12em);
  max-width: 100%;
}

.must {
  color: #fff;
  background: #f25561;
  padding: 0px 0.8rem;
  font-size: 1.3rem;
  transform: translateY(-0.2rem);
  display: inline-block;
  border-radius: 0.5rem;
  margin-left: 0.8rem;
}

.caution {
  color: #ff0000;
}

.item-num-box {
  margin-bottom: 2em;
}

.item-num-box b {
  font-size: 4.8rem;
  display: block;
}

.item-num-box b:before {
  content: url('../img/contact/tel-icon.svg');
  margin-right: 1rem;
  transform: translateY(0.4rem);
  display: inline-block;
}

.item-num-box span {
  color: #646464;
}

@media only screen and (min-width:926px) and (max-width:1280px) {
  .item-num-box b {
    font-size: 3.8rem;
    display: block;
  }
  .item-num-box b:before {
    transform: translateY(0.4rem);
  }
}

@media only screen and (max-width:924px) {
  .confirm-box p:first-child {
    width: 7.5em;
    max-width: 100%;
    padding-left: 0;
    font-weight: bold;
  }

  .confirm-box p:last-child {
    width: calc(100% - 8.5em);
    max-width: 100%;
  }

  .confirm-box>div {
    justify-content: flex-start;
  }

  .item-num-box b {
    font-size: 2.8rem;
    display: block;
  }
  .item-num-box b:before {
    content:"";
    background: url('../img/contact/tel-icon.svg')no-repeat center;
    background-size: auto 100%;
    transform: translateY(0.4rem);
    width: 31px;
    height: 1.3em;
  }
}


/*-- アニメーション画像
-------------------------------------------------------------*/
.item-pict-box {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 20px;
}

.item-pict-box img {
  min-width: calc(100% + 2px);
  min-height: calc(100% + 2px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1, 1);
  z-index: 0;
  transition: transform 0.2s ease-in-out;
}

.item-pict-box:hover img {
  transform: translate(-50%, -50%) scale(1.2, 1.2);
  transition: transform 0.2s ease-in-out;
}

/*-- 緑バーが出るリスト
-------------------------------------------------------------*/
.item-list-bar {
  padding-left: calc(1em + 2px);
  padding-top: 1em;
}

.item-list-bar li {
  position: relative;
  margin-bottom: 0.5rem;
}

.item-list-bar li:before {
  content: "";
  width: 10px;
  height: 1px;
  background: var(--BaseColor);
  position: absolute;
  top: 1.2rem;
  left: -1em;
  display: block;
}

/* .item-list-bar li a{
  color:var(--BaseFontColor);
} */
.item-list-bar.is-link {
  width: auto;
  display: inline-block;
  text-align: left;
}

/*-- 数字リスト
-------------------------------------------------------------*/
.item-list-num {
  padding-left: calc(1em + 2px);
  padding-top: 1em;
}

.item-list-num li {
  position: relative;
  margin-bottom: 0.5rem;
  list-style: number;
}

/*-- ドットリスト
-------------------------------------------------------------*/
.item-list-dot {
  padding-left: calc(1em + 2px);
  padding-top: 1em;
}

.item-list-dot li {
  position: relative;
  margin-bottom: 0.5rem;
  list-style: none;
}

.item-list-dot li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 3.5px;
  background: var(--BaseColor);
  position: absolute;
  top: 0.9rem;
  left: -1em;
  display: block;
}

/*-- 赤い線に囲まれたテキストボックス
-------------------------------------------------------------*/
.item-redline-box {
  border: 1px solid #a10806;
  padding: 1em;
}

.item-inyou-box {
  border-radius: 0.5rem;
  background: var(--BaseColor);
  border: 0.5rem solid var(--BaseColor);
}

.item-inyou-box p {
  width: calc(100% - 5rem);
  padding: 1em;
  border-radius: 0.5rem;
  background: #fff;
}

.item-inyou-box:before {
  content: "";
  width: 5rem;
  height: 5rem;
  background: url('../img/common/inyou-icon.svg')no-repeat center;
  display: block;
}

/*-- Cookie
-------------------------------------------------------------*/
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10000;
  display: block;
  max-width: 33%;
  padding: 2rem;
  border-top-right-radius: 2rem;
  background: rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width:924px) {
  #cookie-banner {
    max-width: 98%;
    border-top-right-radius: 0;
  }
}