@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kurenaido&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/* ===== Normalize =============================================
   normalize.css v2.1.3 | MIT License | git.io/normalize
   ==================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

html {
  background: #fff;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

body {
  margin: 0;
}

a {
  background: transparent;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: 800;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: "“" "”" "‘" "’";
}

q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

button, input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/* ===== mixin =============================================
   ==================================================================== */
/* =======================
	Initialize
	======================================================= */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  background: #f5f5e9;
}

body {
  font-family: "Open Sans", "Zen Kurenaido", "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: clamp(1.4rem, 1rem + 0.4vw , 1.6rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  box-sizing: border-box;
  background: #f5f5e9;
  color: #333;
  width: 100%;
  min-width: 1000px;
  min-height: 100vh;
  position: relative;
  --space-xs: clamp(1.0rem, 0.5rem + 0.5vw, 1.875rem);
  --space-sm: calc(var(--space-xs) * 1.5);
  --space-md: calc(var(--space-xs) * 2);
  --space-lg: calc(var(--space-xs) * 3);
  --space-xl: calc(var(--space-xs) * 4);
  --space-xxl: calc(var(--space-xs) * 5);
}
@media only screen and (max-width: 1000px) {
  body {
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
  }
}
body.is_mb_menuOpen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

@media only screen and (max-width: 1000px) {
  body,
  html {
    min-width: 100%;
  }
}

ul {
  margin: 0;
  padding: 0;
}

p {
  margin: 0 0 1rem;
  line-height: 2.2;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  margin: 0;
}

a {
  color: #1f81c7;
  text-decoration: none;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
}
a:hover {
  color: rgb(24.1260869565, 100.3956521739, 154.8739130435);
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}

hr {
  border: 0;
  height: 0;
  border-top: 1px solid #e2ae3e;
  margin: 20px 0;
}
@media only screen and (max-width: 767px) {
  hr {
    margin: 12px 0;
  }
}

.ly_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.cp_about {
  display: flex;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cp_about {
    flex-direction: column;
  }
}
.cp_about__contents {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .cp_about__contents {
    width: 100%;
  }
}
.cp_about__img {
  width: 50%;
  transform: translate(0%, 18%);
}
@media only screen and (max-width: 767px) {
  .cp_about__img {
    width: 100%;
    transform: translate(0%, 0%);
  }
}
.cp_about__img img {
  width: 100%;
  height: auto;
  display: block;
}
.cp_about__title {
  font-size: clamp(1.9rem, 1.6rem + 2.0vw , 4.0rem);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.cp_headLogo {
  width: calc(120px + var(--space-lg) * 2);
  background: #fff;
  display: block;
  padding: var(--space-md) var(--space-lg);
}
@media only screen and (max-width: 767px) {
  .cp_headLogo {
    width: calc(80px + var(--space-md) * 2);
    padding: var(--space-sm) var(--space-md);
  }
}
.cp_headLogo img {
  width: 100%;
  height: auto;
  display: block;
}

.cp_headNav {
  padding: var(--space-lg) 80px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  background: rgba(255, 255, 255, 0.95);
  right: -100%;
  height: 100vh;
  width: 80%;
  transition: right 0.3s ease-in-out;
  position: fixed;
}
.is_mbMenuOpen .cp_headNav {
  right: 0;
  transition: right 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .cp_headNav {
    padding: var(--space-lg) 20px;
  }
}
.cp_headNav__grp {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  padding-top: var(--space-xxl);
  min-height: calc(100vh - var(--space-xxl) * 2);
}
.cp_headNav__item {
  display: block;
  list-style: none;
  opacity: 0;
}
.is_mbMenuOpen .cp_headNav__item {
  animation-name: menuToLeft;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.cp_headNav__item:nth-child(1) {
  animation-delay: 0.45s;
}
.cp_headNav__item:nth-child(2) {
  animation-delay: 0.5s;
}
.cp_headNav__item:nth-child(3) {
  animation-delay: 0.55s;
}
.cp_headNav__item:nth-child(4) {
  animation-delay: 0.6s;
}
.cp_headNav__item:nth-child(5) {
  animation-delay: 0.65s;
}
.cp_headNav__item:nth-child(6) {
  animation-delay: 0.7s;
}
.cp_headNav__item:nth-child(7) {
  animation-delay: 0.75s;
}
.cp_headNav__item:nth-child(8) {
  animation-delay: 0.8s;
}
.cp_headNav__item:nth-child(9) {
  animation-delay: 0.85s;
}
.cp_headNav__item:nth-child(10) {
  animation-delay: 0.9s;
}
.cp_headNav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-sm) var(--space-sm);
  color: #333;
  gap: var(--space-sm);
  font-size: clamp(1.6rem, 1.3rem + 1.2vw , 2.2rem);
}
.cp_headNav__link::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: #d44209;
}
.cp_headNav__link:hover {
  color: #333;
}
@keyframes menuToLeft {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.cp_headMobileBtn {
  display: block;
  position: fixed;
  top: 5px;
  right: 5px;
  width: 44px;
  height: 44px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.cp_headMobileBtn__bar {
  width: 60%;
  height: 2px;
  background: rgb(236.4615384615, 73.6153846154, 10.0384615385);
  margin: 4px 0;
  transition: all 0.3s ease;
}
.is_mbMenuOpen .cp_headMobileBtn__bar {
  position: absolute;
}
.is_mbMenuOpen .cp_headMobileBtn__bar:first-child {
  transform: rotate(45deg);
  margin: 0;
}
.is_mbMenuOpen .cp_headMobileBtn__bar:nth-child(2) {
  opacity: 0;
}
.is_mbMenuOpen .cp_headMobileBtn__bar:last-child {
  transform: rotate(-45deg);
  margin: 0;
}

.cp_footer {
  background: #3f3b25;
  color: #fff;
}

.cp_footerImg {
  background-image: url(../../img/footer_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 4/1.85;
}

.cp_footerInner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 60px;
}
@media only screen and (max-width: 767px) {
  .cp_footerInner {
    padding: 0 20px;
  }
}

.cp_footerTop {
  display: flex;
  gap: 0 40px;
  padding-top: var(--space-xl);
  margin-bottom: var(--space-lg);
}
@media only screen and (max-width: 767px) {
  .cp_footerTop {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.cp_footerLogo {
  max-width: 120px;
}
@media only screen and (max-width: 767px) {
  .cp_footerLogo {
    max-width: 70px;
  }
}
.cp_footerLogo img {
  width: 100%;
  height: auto;
  display: block;
}

@media only screen and (max-width: 767px) {
  .cp_footerContent {
    font-size: clamp(1.0rem, 1.0rem + 0.1vw , 1.1rem);
  }
}

.cp_footerContact {
  margin-left: 100px;
}
@media only screen and (max-width: 767px) {
  .cp_footerContact {
    margin-top: var(--space-md);
    margin-left: 0;
    width: 100%;
  }
}
.cp_footerContact__title {
  margin-bottom: var(--space-sm);
  font-weight: bold;
  font-size: clamp(1.3rem, 1.2rem + 0.5vw , 1.8rem);
}

.cp_footerName {
  margin-bottom: var(--space-sm);
  font-weight: bold;
  font-size: clamp(1.3rem, 1.2rem + 0.5vw , 1.8rem);
}

.cp_footerTextLink {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.cp_footerTextLink__item {
  list-style: none;
  display: flex;
  gap: var(--space-sm);
}
.cp_footerTextLink__item::after {
  content: "";
  display: block;
  border-right: 1px solid #fff;
  width: 1px;
  height: 10px;
}
.cp_footerTextLink__item:last-child::after {
  display: none;
}
.cp_footerTextLink__link {
  color: #fff;
  font-size: clamp(1.1rem, 1.0rem + 0.25vw , 1.4rem);
}

.cp_footerBottom {
  padding: var(--space-sm) 0;
}
.cp_footerBottom__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  gap: 0 40px;
}
@media only screen and (max-width: 767px) {
  .cp_footerBottom__inner {
    padding: 0 20px;
    flex-direction: column;
    gap: var(--space-sm);
  }
}

.cp_copyrights {
  font-size: clamp(1.1rem, 1.0rem + 0.25vw , 1.4rem);
}
@media only screen and (max-width: 767px) {
  .cp_copyrights {
    order: 2;
  }
}

.cp_btnArea {
  padding: var(--space-xxl) 0;
  display: flex;
  justify-content: center;
}

.cp_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0px var(--space-sm);
  min-width: 200px;
  height: 44px;
  border-radius: 22px;
  background-color: #d44209;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: center;
  position: relative;
  font-weight: bold;
  border: none;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.cp_btn:hover {
  background-color: rgb(187.5384615385, 58.3846153846, 7.9615384615);
  color: #fff;
}
.cp_btn--sm {
  min-width: 150px;
  font-size: clamp(1.2rem, 1.1rem + 0.4vw , 1.4rem);
  height: 40px;
  padding: 0px var(--space-xs);
  border-radius: 20px;
}
.cp_btn--lg {
  font-size: clamp(1.6rem, 1.2rem + 1.0vw , 2.0rem);
  height: 60px;
  padding: 0px var(--space-lg);
  border-radius: 30px;
}
.cp_btn--full {
  width: 100%;
}
.cp_btn--fsSm {
  font-size: clamp(1.4rem, 1.0rem + 0.1vw , 1.4rem);
}
.cp_btn--white {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}
.cp_btn--white:hover {
  background: #d44209;
  color: #fff;
  border: 1px solid #d44209;
}
.cp_btn--arrow {
  padding: 0px var(--space-lg);
  position: relative;
}
.cp_btn--arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s ease-in-out;
}
.cp_btn--arrow.cp_btn--sm {
  padding: 0px var(--space-xs);
}
.cp_btn--arrow.cp_btn--white::before {
  border-color: #000;
}
.cp_btn--arrow.cp_btn--white:hover {
  background: #ddd;
  color: #000;
  border-color: #000;
}
.cp_btn--arrow.cp_btn--white:hover::before {
  border-color: #000;
}
.cp_btn--cancel {
  background: #eee;
  color: #666;
  border-color: #666;
  position: relative;
}
.cp_btn--cancel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #666;
  border-left: 1px solid #666;
  transform: translateY(-50%) rotate(-45deg);
  transition: border-color 0.3s ease-in-out;
}
.cp_btn--cancel:hover {
  background: #ddd;
  color: #666;
}
.cp_btn--back {
  background: #fff;
  color: #000;
  border: 1px solid #000;
  min-width: auto;
  padding: 0 32px;
}
.cp_btn--back::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #666;
  border-left: 1px solid #666;
  transform: translateY(-50%) rotate(-45deg);
  transition: border-color 0.3s ease-in-out;
}
.cp_btn--back:hover {
  background: #ddd;
  color: #000;
  border-color: #000;
}

.cp_textlink--hasUl {
  text-decoration: underline;
}
.cp_textlink--white {
  color: #fff;
}
.cp_textlink--black {
  color: #000;
}

.cp_cover {
  text-align: center;
  min-height: 100vh;
  background: #fee0a3;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .cp_cover {
    padding: 0 20px;
    min-height: -moz-fit-content;
    min-height: fit-content;
    aspect-ratio: 1/1.5;
  }
}
.cp_cover__container {
  position: relative;
  z-index: 2;
}
.cp_cover__logo {
  max-width: 340px;
  margin: 0 auto var(--space-xxl);
  display: block;
}
@media only screen and (max-width: 767px) {
  .cp_cover__logo {
    max-width: 180px;
  }
}
.cp_cover__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.cp_cover__taglineJp {
  font-size: clamp(1.9rem, 1.6rem + 2.0vw , 4.0rem);
  line-height: 1.4;
  color: #000;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
  text-shadow: 0 0 5px rgb(255, 255, 255), 0 0 10px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.8);
}
.cp_cover__bg {
  position: absolute;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-bottom-left-radius: 20%;
  background-image: url("../../img/cover_01.jpg");
}
@media only screen and (max-width: 767px) {
  .cp_cover__bg {
    height: auto;
    aspect-ratio: 1/1.5;
  }
}
.cp_cover__bgCaption {
  position: absolute;
  bottom: 10px;
  right: 14px;
  z-index: 1;
  font-size: clamp(1.1rem, 1.0rem + 0.25vw , 1.4rem);
  color: rgba(255, 255, 255, 0.7);
}

.cp_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .cp_content {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}
.cp_content--news {
  background: #fff;
}
.cp_content--profile {
  background: #fff;
}
.cp_content--kitchen {
  background: #f5f5e9;
}
.cp_content--404 {
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding: var(--space-xxl) 20px;
}
.cp_content--fitContent {
  min-height: -moz-fit-content;
  min-height: fit-content;
}

.cp_contentWrapper {
  width: 100%;
}
.cp_content--news .cp_contentWrapper {
  border-bottom-right-radius: 40%;
  background: #fee0a3;
}
.cp_content--about .cp_contentWrapper {
  border-bottom-left-radius: 40%;
  background: #fff;
  padding-bottom: calc(var(--space-xxl) * 2.5);
}
@media only screen and (max-width: 767px) {
  .cp_content--about .cp_contentWrapper {
    border-bottom-left-radius: 100px;
    padding-bottom: var(--space-xxl);
  }
}
.cp_content--profile .cp_contentWrapper {
  border-bottom-right-radius: 40%;
  background: #f5f5e9;
  padding-bottom: calc(var(--space-xxl) * 1);
}
@media only screen and (max-width: 767px) {
  .cp_content--profile .cp_contentWrapper {
    border-bottom-right-radius: 100px;
    padding-bottom: var(--space-xxl);
  }
}
.cp_content--kitchen .cp_contentWrapper {
  border-bottom-left-radius: 40%;
  background: #fff;
  padding-bottom: calc(var(--space-xxl) * 2.5);
}
@media only screen and (max-width: 767px) {
  .cp_content--kitchen .cp_contentWrapper {
    border-bottom-left-radius: 100px;
    padding-bottom: var(--space-xxl);
  }
}

.cp_contentInner {
  margin: 0 auto;
  padding: var(--space-xxl) 60px;
  width: 1240px;
  min-width: 1000px;
}
@media only screen and (max-width: 1240px) {
  .cp_contentInner {
    width: 100%;
    min-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .cp_contentInner {
    padding: var(--space-lg) 20px;
    width: 100%;
    min-width: 100%;
  }
}

.cp_contentHead {
  margin-bottom: var(--space-xxl);
}
.cp_contentHead__title {
  display: flex;
  align-items: center;
  color: #000;
  position: relative;
}
.cp_contentHead__title--center {
  justify-content: center;
}
.cp_contentHead__titleLabel {
  font-size: clamp(1.6rem, 1.3rem + 1.2vw , 2.2rem);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.cp_contentHead__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: calc(var(--space-sm) * -1);
  background-color: #d44209;
}
.cp_contentSubTitle {
  margin-bottom: var(--space-lg);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.3rem + 1.2vw , 2.2rem);
}
.cp_contentSubTitle::before {
  content: "";
  background: #fee0a3;
  width: clamp(1.6rem, 1.3rem + 1.2vw , 2.2rem);
  height: clamp(1.6rem, 1.3rem + 1.2vw , 2.2rem);
  display: inline-block;
}

.cp_contentText {
  margin-bottom: var(--space-xl);
}

.cp_contentSubBlock {
  margin: calc(var(--space-xxl) * 1) 0;
}

.cp_contentImg--hasMgBtmXs {
  margin-bottom: var(--space-xs);
}
.cp_contentImg img {
  width: 100%;
  height: auto;
  display: block;
}

@media only screen and (max-width: 767px) {
  .cp_kitchen {
    flex-direction: column;
  }
}
.cp_kitchen__contents {
  margin-bottom: var(--space-xxl);
}
@media only screen and (max-width: 767px) {
  .cp_kitchen__contents {
    width: 100%;
  }
}
.cp_kitchen__imgs {
  display: flex;
  gap: var(--space-md);
}
@media only screen and (max-width: 767px) {
  .cp_kitchen__imgs {
    flex-direction: column;
  }
}
.cp_kitchen__img {
  width: 50%;
  padding: var(--space-sm);
  display: inline-block;
  background: #fff; /* フチの白 */
  padding: 12px 12px 34px; /* 下だけ太め＝チェキ感 */
  border: 1px solid #e6e6e6; /* うっすら外枠 */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  border-radius: 6px; /* 角丸は好みで */
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  height: auto;
  transform: rotate(1.2deg); /* 任意：少し傾ける */
  transition: 0.18s ease;
  cursor: pointer;
}
.cp_kitchen__img:nth-child(2) {
  transform: rotate(-2.9deg) translateY(-15px); /* 任意：少し傾ける */
}
.cp_kitchen__img:hover {
  transform: rotate(0deg) translateY(-2px);
}
@media only screen and (max-width: 767px) {
  .cp_kitchen__img {
    width: 100%;
  }
}
.cp_kitchen__img img {
  width: 100%;
  height: auto;
  display: block;
}

.cp_memberBlock {
  margin: var(--space-xxl) 0;
}

.cp_memberList {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}
.cp_memberList__item {
  width: calc(33.33% - 20px);
  display: flex;
}
@media only screen and (max-width: 767px) {
  .cp_memberList__item {
    width: 100%;
  }
}

.cp_member {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0 20px;
  background: #fff;
  padding: var(--space-lg) 28px;
  border-radius: var(--space-md);
  line-height: 1.8;
}
.cp_member__name {
  font-weight: bold;
  font-size: clamp(1.2rem, 2vw + 1rem, 2.0rem);
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-sm);
  width: 100%;
}
.cp_member__content {
  display: flex;
  flex-direction: column;
  gap: 0 20px;
  justify-content: start;
  height: 100%;
}
.cp_member__photo {
  width: 50%;
  max-width: 160px;
  overflow: hidden;
  margin: 0 auto var(--space-sm) auto;
}
.cp_member__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
}
.cp_member__profile {
  font-size: clamp(1.1rem, 1.0rem + 0.25vw , 1.4rem);
  display: block;
  margin-bottom: var(--space-sm);
}
.cp_member__comment {
  display: flex;
  flex-direction: column;
  font-size: clamp(1.1rem, 1.0rem + 0.25vw , 1.4rem);
  margin-top: auto;
  border-bottom: 1px solid #ddd;
  padding-bottom: var(--space-xs);
}
.cp_member__commentLabel {
  position: relative;
  padding-left: 1em;
}
.cp_member__commentLabel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.5em;
  height: 1px;
  background: #ddd;
}
.cp_member__commentLabel::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(100% - 3.5em);
  height: 1px;
  background: #ddd;
}
.cp_member__commentText {
  flex: 1;
}

.br_inPc {
  display: none;
}
@media only screen and (min-width: 767px) {
  .br_inPc {
    display: inline;
  }
}

.br_inSp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .br_inSp {
    display: inline;
  }
}

.txt_center {
  text-align: center;
}

.txt_accent {
  color: #000000;
}

.txt_green {
  color: #d44209;
}

.txt_red {
  color: #ff3c4e;
}

.txt_bold {
  font-weight: bold;
}

.txt_sm {
  font-size: 0.8em;
}

.ul_bgWhite {
  background: #fff;
}

.ul_annotation {
  font-size: clamp(1.1rem, 1.0rem + 0.25vw , 1.4rem);
  color: #666;
}

.ul_accent {
  font-weight: bold;
  display: inline;
}