@charset "utf-8";
/* CSS Document */
a:hover {
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
}
.sp_only{
	display: none;
}

.inner {
    width: 94%;
    margin: 0 auto;
}
.mb{
	margin-bottom: 20px;
}
 /* スクロールバー非表示 */
 .center-scroll::-webkit-scrollbar {
  display: none;
}
.layout {
  display: grid;
  grid-template-columns: 1fr 375px 1fr;
  background-color: #f6e3e5;
  height: 100vh;
  background-image: url(../img/bk.png);
  background-repeat: no-repeat;
  background-position: center bottom;
}
main.center-scroll {
    background-color: #f6e3e5;
	height: 100vh;
    overflow-y: auto; /* ←ここだけスクロール */
    overflow-x: hidden;
	border-left: 4px solid #fff;
	border-right: 4px solid #fff;
}
.pc-logo {
    max-width: 408px;
}
.left-fixed {
	position: relative;
}
.pc-logo {
    max-width: 408px;
    position: absolute;
    top: 8%;
    right: 4%;
}
.right-fixed {
    position: relative;
}
.nav {
    position: absolute;
    top: 8%;
    left: 10%;
}
.g-nav {
    width: 65%;
    margin: 0 auto 5%;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.g-nav li a {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;

  background: #F40C06;
  color: #fff;
  text-decoration: none;
  padding: 12px 23px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: 0.2s;
  box-sizing: border-box;
}

.g-nav li a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.2);
}

/* アイコン＋文字を中央列に置く */
.g-nav li a .left {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  min-width: max-content;
}

/* 左アイコン */
.g-nav .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.g-nav .icon img {
  display: block;
  width: 24px;
  height: auto;
}

/* 右の丸矢印を右列へ */
.g-nav .arrow {
  grid-column: 3;
  justify-self: end;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #fff;
  color: #e60012;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

p.ec-bnr {
  max-width: 343px;
}
.sp-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: calc(100% - 24px);
  margin: 0 auto 0;
  min-height: 56px;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 5px 0 rgba(0,0,0,0.12);
  overflow: hidden;
}

.sp-header__brand {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 10px;
  color: #333;
  text-decoration: none;
}

.sp-header__logo {
  width: 48px;
  flex: 0 0 auto;
}

.sp-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.sp-header__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.sp-hamburger {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  margin: 0;
  flex: 0 0 65px;
  background: #F40C06;
  border-radius: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.sp-hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 999px;
  transition: transform .3s ease, opacity .3s ease;
}

/* 上の線 */
.sp-hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

/* 真ん中 */
.sp-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

/* 下の線 */
.sp-hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ここ大事 */
.sp-menu {
  width: calc(100% - 24px);
  margin: 0 auto;
  background: #f6e3e5;
  border-radius: 0 0 6px 6px;
  position: relative;
  z-index: 10;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: max-height .4s ease, opacity .3s ease, transform .3s ease, visibility .3s ease;
  pointer-events: none;
}

.sp-menu.is-open {
  max-height: 500px; /* メニューが収まる十分な高さ */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.sp-menu__inner {
  padding: 18px;
}

.sp-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-menu__list li + li {
  margin-top: 12px;
}

.sp-menu__list a {
  display: block;
  padding: 14px 16px;
  background: #F40C06;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  border-radius: 999px;
  text-align: center;
}
.sp-menu__list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* ← テキスト中央 */
  padding:10px 16px;
  background: #e60012;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}
.sp-menu__list a .arrow {
  position: absolute;
  right: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;
  background: #fff;
  color: #e60012;
  border-radius: 50%;
}
.fv-slider {
  padding: 5px;
  background-color: #f6e3e5;
  margin-top: 5%;
}

.heroSwiper {
  overflow: hidden; 
}

.heroSwiper .swiper-slide {
  position: relative;
}

.heroSwiper .swiper-slide a {
  display: block;
}

.heroSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.heroSwiper .swiper-pagination {
  position: static;
  margin-top: 12px;
  text-align: center;
}

.heroSwiper .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 10px !important;
  background: #fff;
  opacity: 1;
  border: 1px solid #e60012;
}

.heroSwiper .swiper-pagination-bullet-active {
  background: #e60012;
}
.main-tit {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2%;
}
h1 {
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.ilust {
    max-width: 96px;
    
}
.ilust2 {
    max-width: 170px;
    margin: 0 auto;
}
p.text-en{
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
 font-size: 20px;
 color: #F40C06;
}
span.red {
	color: #F40C06;
}
.news {
  padding: 24px 0;
  background: #F40C06;
}

.news-section__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.news-section__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ff9ea0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.news-section__icon img {
  display: block;
  width: 28px;
  height: auto;
}

.news-section__title {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

/* お知らせカード */
.news-card {
  position: relative;
  display: block;
  padding: 8px 34px 8px 8px;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
}

.news-card__date {
  margin: 0 ;
  color: #ff1608;
  font-size: 16px;
  font-weight: 500;
}

.news-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}


.news-card__arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ff1608; 
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 矢印（CSSで作る） */
.news-card__arrow::before {
  content: "";
  width: 4px;
  height: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;

  transform: rotate(45deg);
}
/* 一覧ボタン */
.news-section__more {
  margin: 20px 0 0;
  text-align: center;
}

.news-section__more a {
	position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 214px;
  padding: 9px 24px;
  background: #fff;
  color: #ff1608;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 999px;
  box-shadow: 0 6px 0 #c91d12;
  border: 2px solid #FFA6B4;
}

/* 右の丸 */
.news-section__more .arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);

  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ff1608;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* 矢印 */
.news-section__more .arrow::before {
  content: "";
  width: 4px;
  height: 4px;

  border-top: 2px solid #fff;
  border-right: 2px solid #fff;

  transform: rotate(45deg);
}
section.online {
    background-color: #fff;
    padding: 20px 0;
}
.slider-arrow-wrap {
  overflow: visible;
}

.arrowSlider {
  position: relative;
  overflow: visible;
}

.arrowSlider .swiper-wrapper {
  overflow: visible;
}

.arrowSlider .swiper-slide {
  overflow: visible;
}


.arrowSlider .slide-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.arrowSlider .slide-frame a {
  display: block;
}

.arrowSlider .slide-frame img {
  display: block;
  max-width: 343px;
  height: auto;
}
.arrowSlider .slide-frame {
  max-width: 343px;  
  margin: 0 auto;    
}
/* デフォルト矢印を消す */
.arrowSlider .swiper-button-prev::after,
.arrowSlider .swiper-button-next::after {
  content: none;
}


.arrowSlider .slider-arrow-btn {
  width: 56px;
  height: 56px;
  background: #ff1608;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;

  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow-wrap,
.arrowSlider,
.arrowSlider .swiper-wrapper {
  overflow: visible;
}
/* 左 */
.arrowSlider .swiper-button-prev {
  left: 0;
  transform: translate(-0%, -50%);
}

/* 右 */
.arrowSlider .swiper-button-next {
  right: 0;
  transform: translate(0%, -50%);
}

/* 矢印の中身（白） */
.arrowSlider .slider-arrow-btn::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

/* 左矢印 */
.arrowSlider .swiper-button-prev::before {
  transform: rotate(-135deg);
}

/* 右矢印 */
.arrowSlider .swiper-button-next::before {
  transform: rotate(45deg);
}

/* ページャー */
.arrowSlider .swiper-pagination {
  position: static;
  margin-top: 12px;
  text-align: center;
}

.arrowSlider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
  background: #fff;
  opacity: 1;
  border: 1px solid #ff1608;
}

.arrowSlider .swiper-pagination-bullet-active {
  background: #ff1608;
}
section.slider-arrow-wrap {
    margin: 5% 0;
}
section.reccomend {
    padding: 48px 0 20px 0;
}
h2 {
    margin-bottom: 24px;
}
p.text-center {
    text-align: center;
    font-weight: bold;
}
p.text-center span{
	color: #ff1608;
}
.infomation {
  padding: 48px 0;
  background: #fff;
}



/* タイトル */
.info-hours__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin:12px 0;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  border-bottom: 2px solid #F40C06;
}

/* 赤丸 */
.info-hours__title .dot {
  width: 8px;
  height: 8px;
  background: #F40C06;
  border-radius: 50%;
  flex: 0 0 auto;
}

/* 時間 */
.info-hours__time {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
dl.check-list {
    display: flex;
    border-bottom: 2px solid #F40C06;
    padding-bottom: 10px;
    margin:12px auto;
    gap: 10px;
}
dl.check-list dd{
	font-size: 18px;
	font-weight: bold;
}
.check {
    background-color: #f6e3e5;
    margin: 8% 0;
    border-radius: 8px;
    border: 2px solid #F40C06;
	padding: 10px 10px 20px 10px;
}
.check a{
	color:#ff1608;
}
span.bold {
    font-weight: bold;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 56px 10px 24px;
    border-radius: 999px;
    background: #ff1608;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.15);
    transition: 0.2s;
}

/* 右の丸 */
.cta-btn__arrow {
  position: absolute;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
}

.cta-btn__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-top: 2px solid #ff1608;
  border-right: 2px solid #ff1608;
  transform: translate(-60%, -50%) rotate(45deg);
}

/* 押した時 */
.cta-btn:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 rgba(0,0,0,0.15);
}
p.btn {
    text-align: center;
}
.cta-btn {
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta-btn:hover {
  transform: translateY(-3px); /* ←上に浮く */
  box-shadow: 0 10px 16px rgba(0,0,0,0.2); /* ←影も強く */
}
.cta-btn2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 56px 10px 56px;
    border-radius: 999px;
    background: #ff1608;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.15);
    transition: 0.2s;
}

/* 右の丸 */
.cta-btn__arrow {
  position: absolute;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
}

.cta-btn__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-top: 2px solid #ff1608;
  border-right: 2px solid #ff1608;
  transform: translate(-60%, -50%) rotate(45deg);
}

/* 押した時 */
.cta-btn2:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 rgba(0,0,0,0.15);
}
p.btn {
    text-align: center;
}
.cta-btn2 {
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta-btn2:hover {
  transform: translateY(-3px); /* ←上に浮く */
  box-shadow: 0 10px 16px rgba(0,0,0,0.2); /* ←影も強く */
}
span.icon2 {
    position: absolute;
    left: 20px;
}
p.info-rink a{
	color: #000;
}
ul.commit-list {
    display: flex;
    justify-content: space-between;
}
ul.commit-list li{
	width: 49%;
}
section.commitment {
    background-color: #fff;
	padding: 48px 0;
}
p.sub-titred {
    text-align: center;
    font-weight: bold;
	color: #F40C06;
}
section.cafe-menu {
    padding: 48px 0;
}
ul.ig {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 40px auto 20px;
}
ul.ig li{
	width: 49%;
	margin-bottom: 6px;
}
section.store {
    background-color: #fff;
    padding: 48px 0;
}
dl.tel {
    display: flex;
	gap:10px;
}
dl.tel dt{
	width: 24px;
	display: flex;
	align-items: center;
}
dl.tel dd a{
	font-size: 24px;
	color: #F40C06;
	text-decoration: underline;
	font-weight: bold;
}
/* SNSリスト */
.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 40px 0;
}

/* アイコンリンク */
.sns li a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

/* コピーライト */
.copy {
  font-size: 12px;
  color: #fff;
  background-color: #ff1608;
  padding: 24px 0;
	text-align: center;
  margin-top: 20px;
}
section#contact {
    padding: 48px 0;
}
.fixed-cta {
  position: fixed;
  right: 0;
  top: 58%;
  transform: translateY(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fixed-cta__item {
    font-size: 12px;
    width: 69px;
    /* min-height: 92px; */
    padding: 10px 4px;
    border-radius: 14px 0 0 14px;
    text-decoration: none;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.fixed-cta__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 14px rgba(0,0,0,0.18);
}

.fixed-cta__item--red {
  background: #ff1608;
}

.fixed-cta__item--white {
  background: #fff;
  border: 3px solid #ff1608;
 border-right: none;
}

.fixed-cta__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-cta__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.fixed-cta__icon--mail {
  font-size: 28px;
  line-height: 1;
  color: #ff1608;
}

.fixed-cta__text {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.fixed-cta__text--dark {
  color: #333;
}
dl.contact_form7_wrap {
    display: block;
    margin-bottom: 35px;

}
dl.contact_form7_wrap dt {
    display: flex;
    align-items: center;
    width: 100%;
    font-weight: bold;
    margin-bottom: 16px;
	border-bottom: 1px solid #fff;

}
dl.contact_form7_wrap dd {
    width: 100%;
    margin: 0;
}
.contact_form7_wrap dt label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
}
span.required {
    color: #F40C06;
    font-size: 12px;
}

span.privacy-text a{
	color: #F40C06;
}
/* 赤丸 */
.contact_form7_wrap .dot {
  width: 8px;
  height: 8px;
  background: #ff1608;
  border-radius: 50%;
}

.wpcf7 input.wpcf7-form-control:not([type=submit]), .wpcf7 textarea.wpcf7-form-control {
    padding: 12px 16px;
}dl.contact_form7_wrap dd input[type="text"], dl.contact_form7_wrap dd input[type="tel"], dl.contact_form7_wrap dd input[type="email"], dl.contact_form7_wrap dd input[type="url"], dl.contact_form7_wrap dd textarea,select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    width: 100% !important;
    max-width: 100%;
    flex: 0 1 400px;
    height: 40px;
    padding: 8px;
    border: 1px solid #ddd;
    background: #fff;
    box-sizing: border-box;
}

dl.contact_form7_wrap dd textarea {
    height: 100px;
}
.form {
    padding: 40px 0 0 0;
}
select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    font-size: 14px;
}
/* セレクト本体 */
.contact_form7_wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 16px;
  padding-right: 48px; 
  background: #fff;
  border: 1px solid #ddd;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
}

/* 矢印用ラッパー */
.contact_form7_wrap dd:has(select) {
  position: relative;
}

/* カスタム矢印 */
.contact_form7_wrap dd:has(select)::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);

  width: 8px;
  height: 8px;

  border-right: 2px solid #ff1608; /* ←赤 */
  border-bottom: 2px solid #ff1608;

  pointer-events: none;
}
.submit-wrap {
  text-align: center;
  margin-top: 36px;
}

.sousin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 20px 72px 20px 72px;
  border-radius: 999px;

  background: #ff1608;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  border: none;
  cursor: pointer;
  position: relative;

  box-shadow: 0 6px 0 rgba(0,0,0,0.15);
  transition: transform .2s ease, box-shadow .2s ease;
}

/* 左アイコン */
.sousin .icon {
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 22px;
  background: url("../img/mail2.svg") no-repeat center / contain;
}

/* 右の白丸 */
.sousin .arrow {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width:24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sousin .arrow::before {
 content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-top: 2px solid #ff1608;
    border-right: 2px solid #ff1608;
    transform: translate(-60%, -50%) rotate(45deg);
}


.sousin:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 16px rgba(0,0,0,0.2);
}

.sousin:active {
  transform: translateY(2px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}
/*下層ページ*/
.lower_kv {
    padding: 40px 0;
}
h3{
	font-size: 28px;
	font-weight: bold;
}
p.l_subtit {
    font-size: 20px;
	font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
	color: #FF95A5;
}
.breadcrumb {
    padding: 20px 0;
	background-color: #fff;
	
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: auto;
  padding: 0;
	width: 94%;
}

/* 各アイテム */
.breadcrumb__item {
  color: #323232;
  display: flex;
  align-items: center;
}

/* 区切り矢印 */
.breadcrumb__item + .breadcrumb__item::before {
  content: "›";
  color: #e60012;
  font-size: 22px;
  margin: 0 8px;
}

/* リンク */
.breadcrumb a {
  color: #e60012;
  text-decoration: underline;
  text-underline-offset: 6px;
  font-weight: 500;
}

/* ホーム */
.breadcrumb__home {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* アイコン */
.breadcrumb__home-icon {
    width: 16px;
    display: flex;
    align-items: center;
}
/* 現在ページ（最後） */
.breadcrumb__item:last-child {
  color: #323232;
  text-decoration: none;
}
section.news-archive {
    background-color: #fff;
    padding: 48px 0;
}
.news-card2 {
    border-bottom: 1px solid #F40C06;
    padding: 0 0 24px 0;
    margin-bottom: 24px;
}

.news-card__link {
  display: grid;
  grid-template-columns: 88px 1fr 24px;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  align-items: center;
}

.news-card__thumb {
  border-radius: 12px;
  overflow: hidden;
}

.news-card__thumb img {
  max-width: 88px;
  max-height: 88px;
  object-fit: cover;
}

.news-card__date2 {
  display: block;
  margin-bottom: 5px;
  color: #F40C06;
  line-height: 1;
}

.news-card__title {
  margin: 0;
}

.news-card__arrow2 {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F40C06;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 19px;
    line-height: 1;
    padding-bottom: 3px;
}
.pager {
  margin: 40px 0;
}

.pager ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pager li {
  list-style: none;
}

.pager a, .pager span {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid #e60012;
    border-radius: 50%;
    color: #e60012;
    text-decoration: none;
    font-size: 14px;
}

.pager .current {
  background: #e60012;
  color: #fff;
}

.pager .dots {
  border: none;
  width: auto;
}

.pager .prev,
.pager .next {
  width: 40px;
  height: 40px;
}

.pager svg {
  width: 30px;
  height: 30px;
}
section.news-post {
    background-color: #fff;
	padding: 48px 0;
}
.single-news__thumb {
  width: 260px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  margin:0 auto 40px;
}

.single-news__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ←これ重要 */
  display: block;
}
p.single-news__date {
    color: #e60012;
}
p.single-news__title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 40px;
}
p.news-section__more2 {
    text-align: center;
    margin-top: 20px;
}
.news-ach-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 36px;
  border: 3px solid #F40C06;
  border-radius: 999px;
  color: #F40C06;
  background: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.15);
}

.news-list-ach__icon {
  width: 24px;
  height: 24px;
  display: block;
}
article.single-news__article {
    padding-bottom: 40px;
    border-bottom: 1px solid #F40C06;
}
ul.ank-rink{
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto;
}
ul.ank-rink li {
    width: 49%;
}
ul.ank-rink li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px;
    background: #ff1200;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.3s;
}
.down-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
section#strawberry {
    background-color: #fff;
    padding: 48px 0;
}
section.tomato {
    background-color: #fff;
    padding: 48px 0;
}
p.image {
    margin: 40px auto;
    max-width: 260px;
}
h5 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
p.pro-tit {
  color: #fff;
  background-color:#ff1200 ;
  padding: 10px 0;
  text-align: center;
   margin-bottom: 20px;
   border-radius: 5px;
    font-weight: bold;
}
p.pro-tit2 {
  color: #ff1200;
  background-color:#fff ;
  padding: 10px 0;
  text-align: center;
   margin-bottom: 20px;
   border-radius: 5px;
    font-weight: bold;
}
dl.pro-info {
  margin-bottom: 20px;
}
dl.pro-info dt{
  color:#ff1200 ;
  background-color:#F6E2E5 ;
  padding: 5px 0 5px 5px;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 16px;
}
.comment {
  background-color:#ff1200 ;
  padding: 40px 0;
}
.voice {
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
}
.ank-wrap{
  background-color: #fff;
}
p.pro-name {
    font-size: 20px;
    font-weight: bold;
    margin: 40px 0 16px 0;
}
p.pro-nametit {
    font-weight: bold;
    margin: 25px 0 16px 0;
    color:#ff1200 ;
}
section.lineup{
  padding: 48px 0;
}
section#tomato{
  padding: 48px 0;
  background-color: #fff;
}
p.pro-text {
    margin-bottom: 25px;
}
p.recip-text {
    margin-bottom: 25px;
}
hr {
    margin: 40px 0;
    height: 1px;
  background: #ff1200;
}
.mb{
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .news-card__link {
    grid-template-columns: 100px 1fr 36px;
    gap: 16px;
  }

  .news-card__thumb {
    width: 100px;
  }

  .news-card__date {
    font-size: 16px;
  }

  .news-card__title {
    font-size: 18px;
  }

  .news-card__arrow {
    width: 34px;
    height: 34px;
    font-size: 28px;
  }
}
/* ■02.横幅1280px以上（PC用）
--------------------------------------------------- */
@media screen and (min-width:768px) and (max-width:1200px) {
    /* ▼PC用================================================================== */

/* ▲PC用================================================================== */
}
/* ■02.横幅1280px以上（PC用）
--------------------------------------------------- */
@media screen and (min-width:1024px) and (max-width:1280px) {
    /* ▼PC用================================================================== */
  /* ▲PC用================================================================== */
}   

/* ■03.横幅768px以上、1299px以下（Tab用）スクロールバー対策で+20pxを指定する
--------------------------------------------------- */
@media screen and (min-width:1280px) and (max-width:1024px) {
    /* ▼tab用================================================================= */


    /* ▲tab用================================================================== */
}
/* ■05.横幅767px以下（SP用）
--------------------------------------------------- */
@media screen and (min-width:0px) and (max-width:768px) {
/* ▼SP用================================================================ */
.sp_only{
		display: block;
	}
.pc_only{
		display: none;
	}
.inner {
    width: 90%;
}
  body {
    overflow: auto;
  }
.layout {
    display: block;
    height: auto;
  }	   
.left-fixed,
  .right-fixed {
    display: none;
  }
	.center-scroll {
  overflow-y: scroll; /* ←常に表示 */
}
	main.center-scroll {
    height: auto;
    border-left: none;
    border-right: none;
}
	footer {
    padding-bottom: 0;
}
	.fixed-cta {
    position: fixed;
    right: 0;
    top: 78%;
    transform: translateY(-50%);
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* ▲sp用================================================================== */
}


















