@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
/*------------------------------------------------------------
	clearfix（float解除）
------------------------------------------------------------*/
.clearfix {
  *zoom: 1;
}

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

/*------------------------------------------------------------
    Default
------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
button,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  font-size: 62.5%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
table,
input,
textarea,
select,
option,
button,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

iframe {
  width: 100%;
  height: 100%;
}

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

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
  max-width: 100%;
}

a {
  color: #302d2c;
  display: inline-block;
  text-decoration: none;
}

a:hover,
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

.u-df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

.u-df .f-left,
.u-df .f-right {
  width: 50%;
}

.u-pd100 {
  padding: 100px 0 120px;
}

@media screen and (max-width: 767px) {
  .u-df .f-left,
  .u-df .f-right {
    width: 100%;
  }
  .u-pd100 {
    padding: 50px 0;
  }
}

.u-fwb {
  font-weight: bold;
}

.u-center {
  text-align: center;
}

.u-bgcolor01 {
  background-color: #FFFDF8;
}
.u-bgcover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  -webkit-background-size: cover !important;
  background-size: cover !important;
}

.u-justify {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.custom_object_fit {
  position: relative;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
}

.custom_object_fit .object-fit {
  opacity: 0;
}

@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}

/* .fadein
------------------------------------------------------------*/
.u-fadein {
	opacity: 0;
	-webkit-transform: translateY(100px);
	-ms-transform: translateY(100px);
	transform: translateY(100px);
	-webkit-transition: opacity 1s, -webkit-transform 1s;
	transition: opacity 1s, -webkit-transform 1s;
	transition: transform 1s, opacity 1s;
	transition: transform 1s, opacity 1s, -webkit-transform 1s;
}

.u-fadein.on {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}


/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/

body {
  min-width: 768px;
  line-height: 1.5;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  color: #191d1e;
}

@media screen and (max-width: 767px) {
  body {
    min-width: auto;
    font-size: 1.6rem;
  }
}

.l-container {
  margin: 0 auto;
  width: 1100px;
}

@media screen and (max-width: 1220px) and (min-width: 767px) {
  .l-container {
    width: 92%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .l-container {
    width: 94%;
    margin: 0 auto;
  }
}

/*------------------------------------------------------------
    header
    ------------------------------------------------------------*/
.c-header {
  position: relative;
}

.c-header #nav-toggle.fixed span {
  background: #000;
}

.c-header #nav-toggle.fixed.on span {
  background: #ccc;
}

.c-header #nav-toggle {
  cursor: pointer;
  width: 80px;
  height: 80px;
  z-index: 1050;
  position: fixed;
  right: 20px;
  top: 20px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-header #nav-toggle div {
}

.c-header #nav-toggle span {
  display: block;
  width: 34px;
  height: 2px;
  background: #b78e1a;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

.c-header #nav-toggle.on span {
}

.c-header #nav-toggle span:nth-child(1) {
}
.c-header #nav-toggle span:nth-child(2) {
  margin-top: 10px;
}

.c-header #nav-toggle.on span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-header #nav-toggle.on span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -1px;
}

@media screen and (max-width: 767px) {
  .c-header #nav-toggle {
    width: 40px;
    height: 40px;
    right: 0;
    top: 0;
  }

  .c-header #nav-toggle div {
    position: relative;
  }
  .c-header #nav-toggle span {
    height: 1px;
    width: 20px;
  }
  .c-header #nav-toggle span:nth-child(2) {
    margin-top: 8px;
  }
}

.c-header .header-menu-inner {
  visibility: hidden;
  position: relative;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.c-header .header-menu-inner.open {
  visibility: visible;
  -webkit-transition: opacity 0.24s ease;
  transition: opacity 0.24s ease;
}

.c-header #header-menu-bg {
  display: block;
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.c-header .header-menu-inner.open #header-menu-bg {
  visibility: visible;
  opacity: 1;
}

.c-header .g-nav-wrapper {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 998;
  top: 0;
  width: 100%;
  height: 100vh;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow-x: hidden;
}

.c-header .header-menu-inner.open .g-nav-wrapper {
  visibility: visible;
  opacity: 1;
}

.c-header .g-nav-wrapper .l-container {
}

.c-header .g-nav-logo {
  text-align: center;
  align-self: center;
}

.c-header .g-nav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

@media screen and (max-width: 767px) {
  .c-header .g-nav-inner {
    display: block;
  }
}

.c-header .g-nav > li {
  padding: 10px 0;
  opacity: 0;
  -webkit-transform: translate3d(0,3rem,0);
  transform: translate3d(0,3rem,0);
  transition: opacity .4s linear,-webkit-transform .6s cubic-bezier(.25,.46,.45,.94); 
  transition: opacity .4s linear,transform .6s cubic-bezier(.25,.46,.45,.94);
  transition: opacity .4s linear,transform .6s cubic-bezier(.25,.46,.45,.94),-webkit-transform .6s cubic-bezier(.25,.46,.45,.94);
}
.c-header .g-nav > li.fade {
  opacity: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* @for $i from 1 through 10 {
  .myClass img:nth-child(#{$i}n) {
      animation-delay: #{$i * 0.5}s;
  }
}
@for $i from 0 to 49 {
  &:nth-child(#{$i+1}) { transition-delay: ($i % 8 + 1) * 100ms; }
} */

.c-header .g-nav li a {
  color: #6C6C6C;
  display: block;
  font-size: 16px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-header .g-nav li a span {
  color: #191D1E;
  font-size: 32px;
  margin-right: 10px;
  font-family: futura-pt-condensed, sans-serif;
}
.c-header .g-nav li a h3 {
  color: #191D1E;
  font-size: 17px;
  font-family: futura-pt-condensed, sans-serif;
}

@media screen and (max-width: 767px) {
  .c-header .g-nav-wrapper {
    justify-content: stretch;
    padding: 10vw 0;
  }
  .c-header .g-nav-logo {
    margin-bottom: 5vw;
  }

  .c-header .g-nav-logo img {
    /* max-width: 70px; */
  }

  .c-header .g-nav > li {
    padding: 1.2vw;
  }

  .c-header .g-nav li a {
    font-size: 1.4rem;
  }
  .c-header .g-nav li a span {
    font-size: 2.5rem;
    margin-right: 5px;
  }
  .c-header .g-nav li a h3 {
    font-size: 1.5rem;
  }
}


/*------------------------------------------------------------
	footer
	------------------------------------------------------------*/
.c-footer {
  z-index: 5;
  position: relative;
  text-align: center;
  background-color: #f6f2e8;
  font-family: futura-pt-condensed, sans-serif;
}
.c-footer .details {
  position: relative;
  padding: 100px 0 40px;
}

.c-footer__link {
  margin-top: 135px;
  text-align: right;
}
.c-footer__link li {
  display: inline-block;
}
.c-footer__link li + li {
  margin-left: 30px;
}
.c-footer__link li {
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .c-footer .details {
    padding: 60px 0 25px;
  }
  .c-footer__link {
    margin-top: 100px;
  }
  .c-footer__link li + li {
    margin-left: 15px;
  }
}

.c-footer__back,
.c-footer__top {
  z-index: 2;
  position: absolute;
  pointer-events: auto;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.c-footer__back {
  left: -50px;
  top: 58%;
  transform: translate(0, -50%);
}
.c-footer__top {
  right: -25px;
  top: 100px;
}
@media screen and (max-width: 1220px) and (min-width: 767px) {
  .c-footer__back {
    left: 0;
  }
  .c-footer__top {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-footer__back {
    left: 0;
  }
  .c-footer__top {
    right: 0;
    top: 60px;
  }
  .c-footer__back img,
  .c-footer__link img,
  .c-footer__top img {
    max-width: 35px;
  }
}

.c-footer__copy {
  font-size: 14px;
  padding-top: 60px;
}

@media screen and (max-width: 767px) {
  .c-footer__copy {
    padding-top: 40px;
  }
}

/*------------------------------------------------------------
c-title
------------------------------------------------------------*/
.c-title01 {
  padding-bottom: 60px;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-title01 {
    padding-bottom: 50px;
  }
}

.c-title01 h2 {
  font-size: 50px;
  line-height: 1;
  font-weight: bold;
  font-family: futura-pt-condensed, sans-serif;
}

@media screen and (max-width: 767px) {
  .c-title01 h2 {
    font-size: 4.5rem;
  }
}

.c-title01 p {
  color: #6c6c6c;
  font-size: 18px;
  padding-top: 27px;
}

@media screen and (max-width: 767px) {
  .c-title01 p {
    font-size: 1.5rem;
    padding-top: 12px;
  }
}

.c-title02 {
  font-size: 32px;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .c-title02 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
  }
}

/*------------------------------------------------------------
	c-btn
	------------------------------------------------------------*/
.c-btn01 {
  display: table;
  font-size: 14px;
  color: #7b5d09;
  margin: 60px auto 0;
  font-family: futura-pt-condensed, sans-serif;
}
.c-btn01:after {
  content: "";
  height: 44px;
  width: 200px;
  display: block;
  margin: -20px auto 0;
  background: url(../image/top/bd01.png) center no-repeat;
}
.c-btn01--left {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .c-btn01 {
    margin: 40px auto 0;
  }
  .c-btn01:after {
    height: 30px;
    width: 120px;
    margin: -10px auto 0;
    background-size: contain;
  }
}

/*------------------------------------------------------------
	c-list
	------------------------------------------------------------*/
  .c-list01 {
    flex-wrap: wrap;
  }
  .c-list01 .c-list01__item {
    border: 1px solid #6c6c6c;
    border-radius: 13px;
    background-color: #fff;
  }

  .c-list01 .c-list01__item a {
    display: block;
  }
  .c-list01 .c-list01__item--txt {
    padding: 13% 6%;
    text-align: center;
    font-size: 16px;
  }
  .c-list01 .c-list01__item--img {
    height: 23vw;
    max-height: 330px;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
  }
  
  @media screen and (max-width: 767px) {
    .c-list01 .c-list01__item {
      border-radius: 6px;
    }
    .c-list01 .c-list01__item--img {
      height: 270px;
      max-height: auto;
      border-top-left-radius: 6px;
      border-top-right-radius: 6px;
    }
    .c-list01 .c-list01__item--txt {
      padding: 20px;
      font-size: 1.4rem;
    }
  }

/* --------------------------------------------------
      7. Slick
-------------------------------------------------- */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track::before,
.slick-track::after {
  content: "";
  display: table;
}

.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  /* border: 1px solid transparent; */
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev,
.slick-next {
  display: block;
  /* overflow: hidden; */
  color: transparent;
  text-decoration: none;
  text-indent: 110%;
  white-space: nowrap;
  font-size: 0;
  /* width: 35px;
  height: 35px; */
  position: absolute;
  top: 50%;
  padding: 0;
  line-height: 0;
  border: none;
  outline: none;
  background-color: transparent;
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  z-index: 1;
  /* opacity: 0.8; */
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

@media screen and (max-width: 767px) {
  .slick-prev,
  .slick-next {
  }
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev::before,
.slick-next::before {
  /* position: absolute; */
  /* top: 13px; */
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  /* opacity: 0.75; */
  margin: 0 auto;
}

.slick-prev {
  left: -40px;
}

.slick-prev::before {
  /* left: 13px; */
  border-top: 2px solid #191d1e;
  border-left: 2px solid #191d1e;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.slick-next {
  right: -40px;
}

@media screen and (max-width: 1220px) and (min-width: 767px) {
  .slick-prev {
    left: -10px;
  }
  .slick-next {
    right: -10px;
  }
}

.slick-next::before {
  /* right: 13px; */
  border-top: 2px solid #191d1e;
  border-right: 2px solid #191d1e;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .slick-prev {
    left: 7px;
  }
  .slick-next {
    right: 7px;
  }
  .slick-prev::before,
  .slick-next::before {
    width: 12px;
    height: 12px;
  }
  .slick-prev::before {
    border-top: 1px solid #191d1e;
    border-left: 1px solid #191d1e;
  }
  .slick-next::before {
    border-top: 1px solid #191d1e;
    border-right: 1px solid #191d1e;
  }
}

.slick-dots {
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 2;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  width: 15px;
  height: 15px;
  outline: none;
  line-height: 0;
  font-size: 0;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover::before,
.slick-dots li button:focus::before {
  background-color: #b78e1a;
}

.slick-dots li button::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #c1c1c1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button::before {
  background-color: #b78e1a;
}

@media screen and (max-width: 767px) {
  .slick-dots {
  }
  .slick-dots li,
  .slick-dots li button,
  .slick-dots li button::before {
    width: 8px;
    height: 8px;
  }
}

/* c-mainvisual
    ------------------------------------------------------------*/
.c-mainvisual {
  height: 200px;
  margin: 4% 4% 2%;
  border-radius: 13px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .c-mainvisual {
    height: 150px;
    margin: 3%;
    border-radius: 6px;
  }
}

.c-mainvisual__logo {
  top: -20px;
  left: -20px;
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .c-mainvisual__logo {
    top: -10px;
    left: -10px;
  }
  .c-mainvisual__logo img {
    width: 50px;
  }
}

.c-mainvisual__text {
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 2;
}

.c-mainvisual__text h1 {
  font-size: 50px;
  font-family: futura-pt-condensed, sans-serif;
}
.c-mainvisual__text p {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .c-mainvisual__text h1 {
    font-size: 4rem;
  }
}

/* c-breadcrumb
------------------------------------------------------------*/
.c-breadcrumb {
  margin: 0 4%;
}

.c-breadcrumb ul li {
  display: inline-block;
  position: relative;
  font-size: 14px;
}

.c-breadcrumb ul li a {
  
}

.c-breadcrumb ul li:after {
  content: "●";
  font-size: 10px;
  color: #ECEAA1;
  margin: 0 0px 0 3px;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb ul li {
    font-size: 1.2rem;
  }
}

.c-breadcrumb ul li:last-of-type {
}

.c-breadcrumb ul li:last-of-type:after {
  content: none;
}

/* c-items
    ------------------------------------------------------------*/
.c-items {
  align-items: center;
}
.c-items + .c-items {
  margin-top: 50px;
}

.c-items__txt {
  padding-left: 4%;
}

@media screen and (max-width: 767px) {
  .c-items {
  }
  .c-items__txt {
    width: 100%;
    padding: 25px 0 0;
  }
}

.c-items__txt p {
  line-height: 1.7;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .c-items__txt p {
    margin-top: 15px;
  }
}

.c-items__img {
  height: 420px;
  border-radius: 13px;
}

@media screen and (max-width: 767px) {
  .c-items__img {
    height: 275px !important;
    border-radius: 6px !important;
  }
}

/*------------------------------------------------------------
p-top
------------------------------------------------------------*/
.c-maintop {
  margin: 4%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .c-maintop {
    margin: 3%;
  }
}

.c-maintop__logo,
.c-maintop__text {
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-weight: 500;
}
.c-maintop__logo {
  top: 80px;
}

@media screen and (max-width: 767px) {
  .c-maintop__logo {
    top: 40px;
    max-width: 70px;
    margin: 0 auto;
  }
  .c-maintop__text {
    max-width: 230px;
    margin: 0 auto;
  }
}

.c-maintop .slider-main .item img {
  height: 650px;
  object-fit: cover;
  border-radius: 13px;
}
.c-maintop .slick-dots {
  right: -2.7%;
  display: flex;
  flex-direction: column;
  top: 50%;
  transform: translate(0, -50%);
}
.c-maintop .slick-dots li {
  margin: 5px 0;
}

@media screen and (max-width: 767px) {
  .c-maintop .slick-dots {
    right: 8px;
  }
  .c-maintop .slider-main .item img {
    height: 70vw;
    border-radius: 6px;
  }
}

/* tabs
------------------------------------------------------------*/
.c-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .c-tabs {
    margin-bottom: 40px;
  }
}

.c-tabs li {
  cursor: pointer;
  width: calc((100% - 8%) / 5);
  margin-right: 2%;
}

@media screen and (max-width: 767px) {
  .c-tabs li {
    margin-right: 4px !important;
    width: calc((100% - 16px) / 5) !important;
  }
}

.c-tabs li:last-child {
  margin-right: 0 !important;
}

.c-tabs li.current a {
  color: #fff;
  background: #171717;
}

.c-tabs a {
  display: block;
  color: #fff;
  font-size: 14px;
  padding: 3px 0;
  text-align: center;
  border-radius: 5px;
  background: #b78e1a;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-tabs a:active {
  background: #171717;
}

@media screen and (max-width: 767px) {
  .c-tabs a {
    width: 100% !important;
    font-size: 1.2rem;
    padding: 2px 0;
  }
}

.tab-content {
  display: none;
}
.tab-content.current {
  display: block;
}

.c-listnews a {
  display: block;
  font-size: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 1200px) {
  .c-listnews a {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .c-listnews a {
    font-size: 1.3rem;
  }
}

.c-listnews a .date {
  margin-right: 15px;
}

@media screen and (max-width: 1200px) {
  .c-listnews a .date {
    margin-right: 10px;
  }
}

.c-listnews a .text {
  margin-left: 12px;
}

@media screen and (max-width: 767px) {
  .c-listnews a .text {
    width: 100%;
    margin: 5px 0 0;
  }
}

.p-top {
  /* section-news
------------------------------------------------------------*/
  /* section-concept
------------------------------------------------------------*/
  /* section-gelato
------------------------------------------------------------*/
  /* section-flavor
------------------------------------------------------------*/
  /* section-size
------------------------------------------------------------*/
  /* section-shop
------------------------------------------------------------*/
  /* section-company
------------------------------------------------------------*/
}

.p-top .s-news .details {
  position: relative;
}
.s-scroll {
  left: 0;
  right: 0;
  top: 67px;
  position: absolute;
  color: #957064;
  text-align: center;
  font-family: futura-pt-condensed, sans-serif;
}
.s-scroll:after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #b68d2a;
  left: 0;
  right: 0;
  bottom: -50px;
  margin: 0 auto;
  text-align: center;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .p-top .s-news .details {
    margin-top: 80px;
  }
  .s-scroll {
    top: -30px;
  }
  .s-scroll:after {
  }
  .s-scroll:before {
    content: "";
    width: 1px;
    height: 50px;
    background-color: #b68d2a;
    left: 0;
    right: 0;
    bottom: -50px;
    margin: 0 auto;
    text-align: center;
    position: absolute;
  }
}

.p-top .s-news .s-news__left {
  padding-right: 3%;
  border-right: 1px solid #b68d2a;
}

@media screen and (max-width: 767px) {
  .p-top .s-news .s-news__left {
    padding-right: 0;
    border-right: 0;
  }
}

.p-top .s-news .s-news__inner {
  display: flex;
}
.p-top .s-news .s-news__inner--img {
  margin-right: 4%;
}
.p-top .s-news .s-news__inner--img,
.p-top .s-news .s-news__inner--txt {
  width: calc((100% - 4%) / 2);
}
@media screen and (max-width: 767px) {
  .p-top .s-news .s-news__inner--img {
  }
}

.p-top .s-news .s-news__inner--txt {
}
.p-top .s-news .s-news__inner--txt table {
  width: 100%;
  border-collapse: collapse;
}
.p-top .s-news .s-news__inner--txt table th {
  padding: 30px 0;
  border: 1px solid #707070;
}
.p-top .s-news .s-news__inner--txt thead th {
  font-size: 16px;
  padding: 15px 0;
  background-color: #eef6ed;
}
.p-top .s-news .s-news__inner--txt tbody th {
  font-size: 22px;
}

  .p-top .s-news .s-news__inner--txt tbody th span {
    display: block;
  }
@media screen and (max-width: 767px) {
  .p-top .s-news .s-news__inner--txt tbody th {
    font-size: 1.8rem;
  }
  .p-top .s-news .s-news__inner--txt tbody th span {
    /* margin-left: 15px; */
  }
}

.p-top .s-news .s-news__right {
  padding-left: 3%;
}
.p-top .s-news .s-news__right .c-btn01 {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .p-top .s-news .s-news__inner--txt {
    margin-top: 50px;
  }
  .p-top .s-news .s-news__right {
    padding-left: 0;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #b68d2a;
  }
  .p-top .s-news .s-news__right .c-btn01 {
    margin-right: auto;
  }
}

/*  */
.p-top .s-concept {
  background: url(../image/top/concept_bg.png);
}
.p-top .s-concept .c-items {
  background-color: #fff;
  align-items: stretch;
  border-radius: 13px;
}

.p-top .s-concept .c-items__txt {
  padding: 4%;
}

.p-top .s-concept .c-items__img {
  height: auto;
  background: url(../image/top/concept_img.png);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

@media screen and (max-width: 767px) {
  .p-top .s-concept .c-items {
    border-radius: 6px;
  }
  .p-top .s-concept .c-items__txt {
    padding: 30px 20px;
  }
  .p-top .s-concept .c-items__img {
  }
}

/*  */
.p-top .s-secret .s-secret__list li {
  text-align: center;
}
.p-top .s-secret .s-secret__list--item {
  width: calc((100% - 130px) / 2);
}
.p-top .s-secret .s-secret__list h3 {
  display: block;
  color: #fff;
  font-size: 32px;
  max-width: 325px;
  padding: 10px 0;
  margin: -20px auto 30px;
  background-color: #191d1e;
  position: relative;
  font-family: futura-pt-condensed, sans-serif;
}

@media screen and (max-width: 767px) {
  .p-top .s-secret .s-secret__list--item {
    width: 100%;
  }
  .p-top .s-secret .s-secret__list li img {
    max-width: 70%;
  }
  .p-top .s-secret .s-secret__list h3 {
    padding: 5px 0;
    font-size: 2.2rem;
    max-width: 60%;
  }
}
.p-top .s-secret .s-secret__list p {
  text-align: left;
}
.p-top .s-secret .s-secret__list--mul {
  width: 130px;
  margin-top: -20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top .s-secret .s-secret__list--mul span {
  display: block;
  width: 6px;
  height: 130px;
  transform: rotate(45deg);
  background-color: #191d1e;
}
.p-top .s-secret .s-secret__list--mul span:nth-child(2) {
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .p-top .s-secret .s-secret__list--mul {
    margin: 35px auto 40px;
  }
  .p-top .s-secret .s-secret__list--mul span {
    width: 3px;
    height: 60px;
  }
}

/*  */
.p-top .s-menu {
  background: url(../image/top/menu_bg.png);
}
.p-top .s-menu .s-menu__boxright {
  margin-left: 3%;
  border-radius: 13px;
  background: url(../image/top/menu_img.png);
}
.p-top .s-menu .s-menu__item {
  border-radius: 13px;
  background-color: #fff;
}
.p-top .s-menu .s-menu__item .c-btn01 {
  margin-top: 20px;
}
.p-top .s-menu .s-menu__item + .s-menu__item {
  margin-top: 20px;
}
.p-top .s-menu .s-menu__item--txt {
  padding: 5%;
}
.p-top .s-menu .s-menu__item--txt h3 {
  font-size: 28px;
}
.p-top .s-menu .s-menu__item--img {
  width: 35%;
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
}
.p-top .s-menu .item01 .s-menu__item--img {
  background: url(../image/top/menu_thumb01.png);
}
.p-top .s-menu .item02 .s-menu__item--img {
  background: url(../image/top/menu_thumb02.png);
}
.p-top .s-menu .item03 .s-menu__item--img {
  background: url(../image/top/menu_thumb03.png);
}

@media screen and (max-width: 767px) {
  .p-top .s-menu .inner {
    display: flex;
    flex-direction: column-reverse;
  }
  .p-top .s-menu .s-menu__item {
    border-radius: 6px;
  }
  .p-top .s-menu .s-menu__item--img {
    width: 100%;
    height: 70vw;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 0;
  }
  .p-top .s-menu .s-menu__item--txt {
    padding: 20px;
  }
  .p-top .s-menu .s-menu__item--txt h3 {
    font-size: 2.2rem;
  }
  .p-top .s-menu .s-menu__boxright {
	  display: none;
    margin-left: 0;
    height: 290px;
    border-radius: 6px;
    margin-bottom: 50px;
  }
}

/*  */
.p-top .s-shop .c-list01 .c-list01__item {
  margin: 0 15px;
}
@media screen and (max-width: 767px) {
  .p-top .s-shop .c-list01 .c-list01__item {
    margin: 0 30px;
  }
}

.p-top .s-shop .item01 .c-list01__item--img {
  background: url(../image/top/shop_img01.png);
}
.p-top .s-shop .item02 .c-list01__item--img {
  background: url(../image/top/shop_img02.png);
}
.p-top .s-shop .item03 .c-list01__item--img {
  background: url(../image/top/shop_img03.png);
}
.p-top .s-shop .item04 .c-list01__item--img {
  background: url(../image/top/shop_img04.png);
}
.p-top .s-shop .slick-track {
    display: flex !important;
}

.p-top .s-shop .slick-slide {
    height: inherit !important;
}
.p-top .s-shop .slick-dots {
  left: 0;
  right: 0;
  bottom: -55px;
  text-align: center;
}
.p-top .s-shop .slick-dots li {
  margin: 0 5px;
}
.p-top .s-shop .c-btn01 {
  margin-top: 96px;
}

@media screen and (max-width: 767px) {
  .p-top .s-shop .c-btn01 {
    margin-top: 80px;
  }
  .p-top .s-shop .slick-dots {
    bottom: -40px;
  }
}

/*  */
.p-top .s-store {
  background-color: #fffdf8;
}

.p-top .s-store .c-items__img {
  background: url(../image/top/store_img.png);
}

.p-top .s-store .c-btn01 {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .p-top .s-store .c-btn01 {
    margin: 40px auto 0;
  }
}

/*------------------------------------------------------------
p-menu
------------------------------------------------------------*/
.visual-menu {
  background: url(../image/menu/mainvisual.png);
}
.p-menu .s-anchor .details {
  padding-bottom: 0;
}
.p-menu .s-anchor ul {
  display: flex;
  justify-content: center;
}
.p-menu .s-anchor ul li {
  max-width: 250px;
  width: calc((100% - 6%) / 3);
}
.p-menu .s-anchor ul li:not(:last-child) {
  margin-right: 3%;
}
.p-menu .s-anchor ul a {
  display: block;
  text-align: center;
  border: 1px solid #191d1e;
  font-family: futura-pt-condensed, sans-serif;
}

.p-menu .c-items__txt {
}
.p-menu .c-items__txt span {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-menu .c-items__txt {
    
  }
  .p-menu .c-items__txt span {
    text-align: center;
  }
}

/* s-flavor */
.p-menu .s-flavor {
}

.p-menu .s-flavor .c-items__img {
  background: url(../image/menu/flavor_img.png);
}

.p-menu .s-flavor__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-menu .s-flavor__list li {
  width: calc((100% - 80px) / 5);
  margin-top: 40px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-menu .s-flavor__list li:not(:nth-child(5n)) {
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-menu .s-flavor__list li {
    width: calc((100% - 10px) / 2);
  }
}

@media screen and (max-width: 767px) {
  .p-menu .s-flavor__list li:not(:nth-child(2n)) {
    margin-right: 10px;
  }
}

.p-menu .s-flavor__list a {
  display: block;
  text-align: center;
}

/* s-brioche */
.p-menu .s-brioche {
  background: url(../image/menu/brioche_bg.png);
}

.p-menu .s-brioche .c-items__img {
  background: url(../image/menu/brioche_img.png);
}

.p-menu .s-brioche__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-menu .s-brioche__list li {
  width: calc((100% - 60px) / 4);
  margin-top: 40px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-menu .s-brioche__list li:not(:nth-child(4n)) {
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-menu .s-brioche__list li {
    width: calc((100% - 10px) / 2);
  }
}

@media screen and (max-width: 767px) {
  .p-menu .s-brioche__list li:not(:nth-child(2n)) {
    margin-right: 10px;
  }
}

.p-menu .s-brioche__list a {
  display: block;
  text-align: center;
}

.p-menu .s-brioche__list li p {
  padding-top: 10px;
}

/* s-flow */
.p-menu .s-flow {
}

.p-menu .s-flow__label {
  position: relative;
  margin: 70px 0 30px;
}
.p-menu .s-flow__label h3 {
  color: #7B5D09;
  font-size: 26px;
  text-align: center;
  max-width: 668px;
  padding: 7px 0;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #7B5D09;
}
.p-menu .s-flow__label:after {
  content: "";
  left: 0;
  right: 0;
  top: 50%;
  z-index: -1;
  position: absolute;
  border: 2px solid #7A5C16;
  transform: translate(0, -50%);
}

.p-menu .s-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /* margin-top: 50px; */
}

.p-menu .s-flow__list li {
  margin: 0 1.5%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-menu .s-flow__list li {
    margin: 20px auto 30px !important;
  }
  .p-menu .s-flow__label h3 {
    font-size: 2rem;
    padding: 4px 0;
  }
}

.p-menu .s-flow__list a {
  display: block;
  text-align: center;
}
.p-menu .s-flow__list li p {
  padding-top: 20px;
}
.p-menu .s-flow__list .s-flow__list--arrow {
  width: 30px;
  height: 30px;
  min-width: 30px;
  align-self: center;
  margin: -60px 12px 0 6px;
  border-bottom: 6px solid #191d1e;
  border-right: 6px solid #191d1e;
  transform: rotate(-45deg);
}
.p-menu .s-flow__list .s-flow__list--or {
  align-self: center;
  font-size: 49px;
}
.p-menu .s-flow__list .s-flow__list--border {
  width: 2px;
  height: 128px;
  align-self: center;
  background-color: #957064;
}

@media screen and (max-width: 767px) {
  .p-menu .s-flow__list {
    display: block;
  }
  .p-menu .s-flow__list li p {
    padding-top: 10px;
  }
  .p-menu .s-flow__list .s-flow__list--arrow {
    width: 15px;
    height: 15px;
    min-width: auto;
    border-bottom: 3px solid #191d1e;
    border-right: 3px solid #191d1e;
    transform: rotate(45deg);
  }
  .p-menu .s-flow__list .s-flow__list--or {
    font-size: 4rem;
    text-align: center;
  }
  .p-menu .s-flow__list .s-flow__list--border {
    width: 100%;
    height: 1px;
  }
}

/* s-other */
.p-menu .s-other {
  background: url(../image/menu/other_bg.png);
}

.p-menu .s-other .item01 .c-items__img {
  background: url(../image/menu/other_img01.png);
}
.p-menu .s-other .item02 .c-items__img {
  background: url(../image/menu/other_img02.png);
}
.p-menu .s-other .item03 .c-items__img {
  background: url(../image/menu/other_img03.png);
}
.p-menu .s-other .c-items h4 {
  color: #fff;
  padding: 20px;
  background-color: #957064;
}
.p-menu .s-other .c-items img {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-menu .s-other .c-items h4 {
    padding: 12px;
    text-align: center;
  }
}


/*------------------------------------------------------------
	Contact
------------------------------------------------------------*/
.visual-contact {
  background: url(../image/contact/mainvisual.png);
}

.p-contact .s-contact {
}

.p-contact .s-contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .p-contact .s-contact__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-contact .s-contact .blue {
  color: #44AF37;
}
.p-contact .s-contact__form h3 {
  padding-bottom: 10px;
}

.p-contact .s-contact__form input,
.p-contact .s-contact__form select,
.p-contact .s-contact__form textarea {
  color: #6C6C6C;
  width: 100%;
  height: 60px;
  padding: 3%;
  font-size: 16px;
  line-height: 1;
  border-radius: 13px;
  border: 1px solid #6C6C6C;
}

@media screen and (max-width: 767px) {
  .p-contact .s-contact__form h3 {
    padding-bottom: 5px;
  }
  .p-contact .s-contact__form input,
  .p-contact .s-contact__form select,
  .p-contact .s-contact__form textarea {
    height: 35px;
    padding: 2%;
    font-size: 1.4rem;
    border-radius: 6px;
  }
}

.p-contact .s-contact__form .form-content {
  height: calc(100% - 134px);
}
.p-contact .s-contact__form .form-content .group-input,
.p-contact .s-contact__form textarea {
  height: 100%;
}

@media screen and (max-width: 767px) {
  .p-contact .s-contact__form textarea {
    height: 200px;
  }
}

.p-contact .s-contact__form .form-group + .form-group {
  padding-top: 30px;
}

.p-contact .s-contact .form-left {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .p-contact .s-contact__form .form-group + .form-group {
    padding-top: 20px;
  }
  .p-contact .s-contact .form-left {
    width: 100%;
  }
}

.p-contact .s-contact .form-right {
  width: 50%;
  margin-left: 2%;
}

@media screen and (max-width: 767px) {
  .p-contact .s-contact .form-right {
    width: 100%;
    margin: 20px 0 0;
  }
}

.p-contact .s-contact .form-note {
  padding: 50px 0;
}
.p-contact .s-contact .form-note p {
  display: flex;
}
.p-contact .s-contact .form-note p span {
  margin-right: 5px;
}

.p-contact .s-contact .form-btn {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-contact .s-contact .form-note {
    padding: 30px 0 40px;
  }
}

.p-contact .s-contact .form-btn input {
  width: 200px;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  padding: 10px 0;
  margin: 0 auto;
  border-radius: 13px;
  background-color: #B78E1A;
}
.p-contact .s-contact .form-btn input.wpcf7c-btn-back {
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .p-contact .s-contact .form-btn input {
    width: 126px;
    font-size: 1.2rem;
    padding: 6px 0;
    border-radius: 8px;
  }
}
div.wpcf7 .ajax-loader {
  position: absolute;
}
span.wpcf7-not-valid-tip {
  font-size: 0.8em !important;
}


/*------------------------------------------------------------
	Shop
------------------------------------------------------------*/
.visual-shop {
  background: url(../image/shop/mainvisual.png);
}

.c-list03 {
  display: flex;
  flex-wrap: wrap;
}
.c-list03 li {
  border-radius: 13px;
  width: calc((100% - 4%) / 2);
  border: 1px solid #707070;
}
@media screen and (min-width: 768px) {
  .c-list03 li:not(:nth-child(2n)) {
    margin-right: 4%;
  }
  .c-list03 li:nth-child(-n+2) {
    margin-top: 0;
  }
  .c-list03 li {
    margin-top: 4%;
  }
}
.c-list03 li a {
  display: block;
}
.c-list03__img {
  height: 190px;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}
.c-list03__txt {
  padding: 26px 4% 20px;
  background-color: #fff;
  border-bottom-left-radius: 13px;
  border-bottom-right-radius: 13px;
}
.c-list03__txt h3 {
  text-align: center;
  padding-bottom: 25px;
}
.c-list03__txt--time {
  display: flex;
  font-size: 16px;
}
@media screen and (max-width: 1200px) and (min-width: 767px) {
  .c-list03__txt--time {
    font-size: 1.3vw;
  }
}
.c-list03__txt--time dl {
  display: flex;
  width: 50%;
  align-items: baseline;
}
.c-list03__txt--time dl + dl {
  margin-left: 10px;
}
.c-list03__txt--time dt {
  width: 35%;
  padding: 1px;
  margin-right: 5px;
  text-align: center;
  background-color: #E8E8E8;
}
.c-list03__txt--address {
  font-size: 16px;
  padding-top: 10px;
}
.c-list03 .c-btn01 {
  margin: 30px 0 0;
}

@media screen and (max-width: 767px) {
  .c-list03 {
    display: block;
  }
  .c-list03 li {
    border-radius: 6px;
    width: 100%;
  }
  .c-list03 li:not(:last-child) {
    margin-bottom: 50px;
  }
  .c-list03__img {
    height: 270px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
  .c-list03__txt {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  .c-list03__txt--time {
    display: block;
    font-size: 1.4rem;
  }
  .c-list03__txt--time dl {
    width: 100%;
  }
  .c-list03__txt--time dl + dl {
    margin: 10px 0 0;
  }
  .c-list03__txt--time dt {
    width: 22%;
  }
  .c-list03__txt--address {
    font-size: 1.4rem;
  }
}

.c-map {
  position: relative;
  padding-top: 30%;
  margin-top: 50px;
}
.c-map iframe {
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .c-map {
    padding-top: 50%;
    margin-top: 30px;
  }
}


.p-shop .shop-img01 {
  background: url(../image/shop/shop-img01.png);
}
.p-shop .shop-img02 {
  background: url(../image/shop/shop-img02.png);
}
.p-shop .kitchen-img01 {
  background: url(../image/shop/kitchen-img01.png);
}
.p-shop .kitchen-img02 {
  background: url(../image/shop/kitchen-img02.png);
}

.p-shop .s-shopdetails .c-list03__txt--time {
  font-size: 14px;
}
.p-shop .shopdetails-img01 {
  background: url(../image/shop/shopdetails-img01.png);
}
.p-shop .shopdetails-img02 {
  background: url(../image/shop/shopdetails-img02.png);
}
.p-shop .shopdetails-img03 {
  background: url(../image/shop/shopdetails-img03.png);
}
.p-shop .shopdetails-img04 {
  background: url(../image/shop/shopdetails-img04.png);
}

/*------------------------------------------------------------
p-policy
------------------------------------------------------------*/
.visual-policy {
  background: url(../image/policy/mainvisual.png);
}

.p-policy .s-policy .s-policy__item {
  padding: 26px 4%;
  border-radius: 10px;
  background-color: #F4F4F4;
  box-shadow: 0px 2px 3px 2px #ECECEC;
}
.p-policy .s-policy .s-policy__item:not(:last-child) {
  margin-bottom: 20px;
}

.p-policy .s-policy h3 {
  font-size: 28px;
}
.p-policy .s-policy p, .p-policy .s-policy ul {
  font-size: 16px;
  padding-top: 18px;
}

.p-policy .s-policy ul {
  counter-reset: item;
}
.p-policy .s-policy ul li {
  counter-increment: item;
  display: flex;
}
.p-policy .s-policy ul li:before {
  content: counter(item) "）";
}

@media screen and (max-width: 767px) {
  .p-policy .s-policy .s-policy__item {
    border-radius: 5px;
    padding: 20px 4%;
  }
  .p-policy .s-policy h3 {
    font-size: 2rem;
  }
  .p-policy .s-policy p, .p-policy .s-policy ul {
    font-size: 1.4rem;
  }
}


/*------------------------------------------------------------
p-property
------------------------------------------------------------*/
.visual-property {
  background: url(../image/property/mainvisual.png);
}

.p-property .property-img01 {
  background: url(../image/property/property-img01.png);
}

.p-property .s-property .c-list03__txt--time dl {
  display: block;
}

/*------------------------------------------------------------
p-company
------------------------------------------------------------*/
.visual-company {
  background: url(../image/company/mainvisual.png);
}

.p-company .company-img01 {
  background: url(../image/company/company-img01.png);
}

.p-company .s-company table {
  font-size: 16px;
  line-height: 1.7;
}
.p-company .s-company table td:first-child {
  width: 18%;
}
@media screen and (max-width: 767px) {
  .p-company .s-company table {
    font-size: 1.4rem;
  }
}


/*------------------------------------------------------------
p-franchise
------------------------------------------------------------*/
.visual-franchise {
  background: url(../image/franchise/mainvisual.png);
}

.p-franchise .franchise-img01 {
  background: url(../image/franchise/franchise-img01.png);
}
.p-franchise .franchise-img02 {
  background: url(../image/franchise/franchise-img02.png);
}

/*------------------------------------------------------------
p-news
------------------------------------------------------------*/
.visual-news {
  background: url(../image/news/mainvisual.png);
}

@media screen and (min-width: 768px) {
  .s-archive .c-list01__item {
    margin-top: 3%;
    width: calc((100% - 6%) / 3);
  }
  .s-archive .c-list01__item:not(:nth-child(3n)) {
    margin-right: 3%;
  }
  .s-archive .c-list01__item:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .s-archive .c-list01__item {
    width: 100%;
  }
  .p-news .s-news .c-list01__item:not(:last-child) {
    margin-bottom: 30px;
  }
}

.s-single .s-single__details {
  text-align: center;
}
.s-single .s-single__details p {
  
}
.s-single .s-single__details--thumb {
  width: 100%;
  height: 60vw;
  max-height: 600px;
  text-align: center;
}

.s-single .s-single__details--txt {
  margin-top: 30px;
}

.s-single .s-single__details--txt span {
  display: block;
  margin-bottom: 20px;
}


  /* pagination
------------------------------------------------------------*/
.c-pagination {
  text-align: center;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 60px;
}

@media screen and (max-width: 767px) {
  .c-pagination {
    padding-top: 50px;
  }
}

.c-pagination a,
.c-pagination span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .c-pagination a,
  .c-pagination span {
    margin-left: 7px;
    font-size: 1.2rem;
  }
}

.c-pagination a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-pagination a:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.c-pagination span.current {
  color: #fff;
  background-color: #6C6C6C;
}

.c-pagination span.dots {
  border: none;
  padding: 0;
}

.c-pagination .page-numbers {
  width: 40px;
  height: 40px;
  background-color: #F4F4F4;
}

@media screen and (max-width: 767px) {
  .c-pagination .page-numbers {
    width: 30px;
    height: 30px;
  }
}

.c-pagination .next.page-numbers,
.c-pagination .prev.page-numbers {
  color: #302D2C;
  background: none;
  width: auto;
}

.c-pagination .next.page-numbers {
  margin-left: 23px;
}

.c-pagination .prev.page-numbers {
  margin-right: 23px;
}

@media screen and (max-width: 767px) {
  .c-pagination .next.page-numbers {
    margin-left: 15px;
  }

  .c-pagination .prev.page-numbers {
    margin-right: 15px;
  }
}


/*------------------------------------------------------------
p-recruit
------------------------------------------------------------*/
.visual-recruit {
  background: url(../image/recruit/mainvisual.png);
}

.p-recruit .recruit-img01 {
  background: url(../image/recruit/recruit-img01.png);
}
.p-recruit .s-recruit .c-items {
  padding-bottom: 30px;
}
.p-recruit .s-recruit__box {
  padding: 4%;
  border-radius: 10px;
  font-size: 16px;
  margin-top: 20px;
  background-color: #F4F4F4;
  box-shadow: 0px 2px 3px 2px #ECECEC;
}
.p-recruit .s-recruit__box .f-right {
  margin-left: 2%;
  padding-left: 2%;
  border-left: 1px solid #707070;
}

.p-recruit .s-recruit__box h3 {
  font-size: 28px;
  margin-bottom: 20px;
}
.p-recruit .s-recruit__box ul span {
  color: #44AF37;
}
.p-recruit .s-recruit__box table {
  margin-top: 20px;
}
.p-recruit .s-recruit__box table caption {
  text-align: left;
  margin-bottom: 5px;
}
.p-recruit .s-recruit__box table td {
  padding: 1px 0;
}

@media screen and (max-width: 767px) {
  .p-recruit .s-recruit__box {
    padding: 20px 4%;
    border-radius: 5px;
    font-size: 1.4rem;
  }
  .p-recruit .s-recruit__box .f-right {
    margin-left: 0;
    padding-left: 0;
    margin-top: 15px;
    border-left: 0;
    border-top: 1px solid #707070;
  }
  .p-recruit .s-recruit__box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .p-recruit .s-recruit__box table {
    margin-top: 15px;
  }
  .p-recruit .s-recruit__box table td {
    display: block;
    padding: 0;
  }
}


/*------------------------------------------------------------
p-season
------------------------------------------------------------*/
.visual-season {
  background: url(../image/season/mainvisual.png);
}

.p-season .season-img01 {
  background: url(../image/season/season-img01.png);
}

.p-season .s-season .c-items {
  padding-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .p-season .s-season .c-items {
    padding-bottom: 50px;
  }
}

.p-season .s-season .c-list01__item {
  border: none;
}
.p-season .s-season .c-list01__item h3 {
  text-align: center;
  padding: 12px 0 20px;
}
.p-season .s-season .c-list01__item img {
  width: 100%;
	border: 1px solid #ccc;
    height: 458px;
    object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-season .s-season .c-list01 {
    display: flex;
  }
  .p-season .s-season .c-list01__item {
    margin-top: 25px;
    width: calc((100% - 3%) / 2);
  }
  .p-season .s-season .c-list01__item:not(:nth-child(2n)) {
    margin-right: 3%;
  }
  .p-season .s-season .c-list01__item:nth-child(-n+2) {
    margin-top: 0;
  }
  .p-season .s-season .c-list01__item h3 {
    padding: 7px 0 10px;
    font-size: 1.4rem;
  }
  .p-season .s-season .c-list01__item img {
	  height: auto;
  }
}

.s-single__details--img span {
  display: block;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .s-single__details--img img {
    max-width: 620px;
  }
}

.p-season .c-tabs li {
  max-width: 95px;
}
.p-season .c-tabs a.active {
  color: #fff;
  background: #171717;
}
