@charset "UTF-8";
:root {
  --color_txt: #3B1E00; /* テキストの色 */
  --color_bg-01: #D91616; /* メインカラー */
  --color_bg-02: #FFF545;
  --color_bg-03: #FFFDD6;
  --width_pc_main: 1200px; /* コンテンツの幅 */
  --width_sp_main: 88%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 全体設定
====================================================*/
html,
body {
  overflow-x: hidden;
}

body {
  font-size: 1.2rem;
  color: #3B1E00;
  font-family: "Zen Kaku Gothic New", Noto Sans JP, sans-serif;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
}

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

.section__body {
  width: 100%;
}

h2 {
  text-align: center;
}

.deco__nami {
  width: 22.7%;
  display: block;
  margin: 0 auto;
}

.triangle {
    width: 24px;
    margin: 0 auto;
}

/* スマホでは消す時 */
.only_pc {
  display: none;
}

.only_sp {
  display: block;
}


/* PCでは消す時 */
@media screen and (min-width: 768px) {
  .only_sp {
    display: none;
  }
  .only_pc {
  display: block;
}
}
@media screen and (min-width: 768px) {
  .triangle{
    width: 48px;
  }
}

@media screen and (min-width: 768px) {
  .pc__title {
    margin-top: 76px;
  }
}

.text_mini {
  font-size: 1rem;
}


/* 共通クラス
====================================================*/
.section {
  padding: 48px 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .section {
    padding: 76px 0;
  }
}

.section .title {
  text-align: center;
  position: relative;
}

/* LINEバナー */

/* スマホ */
.line_banner {
  width: 90%; /* スマホでは幅を90%くらいに調整 */
  height: auto;
  display: block;
  margin: 32px auto 20px auto; /* 上下32px / 48pxの余白 */
}

.line_banner_wrapper_pc {
  display: none;
}
/* タブレット、PC向（768px以上） */
@media (min-width: 768px) {
  .line_banner {
    width: 295px; /* PCでは固定幅に */
    margin-top: 40px; /* 上下の余白 */
    margin-bottom: 76px;
  }

  .line_banner_wrapper_pc {
    display: block;
    margin-top: 40px;
  }

  .line_banner_wrapper {
    display: none;
  }
}

/* PCだけLINEバナーホバー */
@media screen and (min-width: 768px) {
  .line_banner_pc:hover {
    filter: brightness(0.9);
    transition: filter 0.3s ease;
  }
}


.line_banner_width {
  width: 88%;
  margin: 0 auto;
}

.omakase_area{
  width: 88%;
  margin: 0 auto;
}

.omakase_title {
  margin-top: 40px;
  margin-bottom: 24px;
  text-align: center;
}

/* タブレット、PC向（768px以上） */
@media (min-width: 768px) {
  .omakase_title img {
    width: 350px;
  }
}

/*====================================================
▼ヘッダーここから*/

.header__logo {
  width: 120px;
}

/* タブレット、PC向（768px以上） */
@media (min-width: 768px) {
.header__logo {
  width: 180px;
  }
}

/* ヘッダ
====================================================*/
#mv {
  background-color: var(--color_bg-02);
}

#mv, .mv__inner {
  position: relative;
}

@media screen and (min-width: 768px) {
  #mv {
    background-color: #fff;
    padding-top: 50px;
  }
}

.mv_img {
  background:0 0 / cover no-repeat url(../images/mv.webp);
  width: 100vw;
  height: 165.333333vw;
}

@media screen and (max-width: 768px) {
  .mv__btn {
    width: 90%;
    margin: 24px auto 0;
    padding-bottom: 48px;
  }
}

@media screen and (min-width: 768px) {
  .mv__btn {
    padding: 0;
    margin: 0;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .mv_btn_pc {
    display: none;
  }
  .mv_point_pc {
    display: none;
  }

}

/* PC用のスタイル */
@media screen and (min-width: 768px) {
  .mv_btn_sp {
    display: none;
  }

  .mv_point {
    display: none;
  }

  .mv_btn_pc {
    position: absolute;
    width: 32%;
    bottom: 60px;
    left: 32%;
    transition: all 0.3s ease;
  }

  .mv_btn_pc:hover {
    filter: brightness(1.2);
    transform: scale(1.05); /* 拡大 */
    cursor: pointer; /* カーソルを指アイコンに変更 */
  }
}

@media screen and (min-width: 768px) {
  #mv {
    margin: 0 auto;
  }
  .mv_img {
    height: auto;
    width: 100%;
    aspect-ratio: 1440 / 786;
  }
}

/* PC */
@media screen and (min-width: 768px) {
  .mv_img {
    background: url(../images/pc_img/mv_pc.webp) no-repeat center/cover; /* PC画像に切り替え */
  }
}

/* タブレット用 */
@media (min-width: 769px) and (max-width: 1279px) {
  .mv_btn_pc {
      display: none;
  }

  .mv_btn_sp {
    position: absolute;
    display: block;
    width: 35%;
    bottom: 30px;
    left: 32%;
    transition: all 0.3s ease;
  }
}

.mv_point_inner {
    width: 88%;
    margin: 0 auto;
    overflow: hidden;
}

/* PC */

@media screen and (min-width: 768px) {
  .mv_point_pc {
    background-color:var(--color_bg-01) ;
    margin: 0 auto;
    padding-top: 40px;
  }
}

.line_banner_pc {
  width: 500px;
  margin: 0 auto;
  display: block;
}

.mv_point_img_pc {
  max-width: 700px;
  margin: 40px auto 0 auto;
}



/* YouTube */
.youtube-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9の比率 */
  height: 0;
  margin: 0 auto;
  max-width: 800px;
}

.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* PC用 YouTube エリア */
.youtube-container {
  width: 700px;
  margin: 0 auto;
}

.youtube-wrapper.only_pc {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 の比率 */
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
}

.youtube-wrapper.only_pc iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.mv_point_img_pc {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}


/* メインビジュアル
====================================================*/
#introduction {
  background-color: var(--color_bg-01);
  color: #fff;
  position: relative;
}

/* スマホ時 */
@media screen and (max-width: 767px) {

#introduction .pc__title {
  width: 60%;
}

  #introduction::before {
    content: '';
    position: absolute;
    top: 0px;
    left: auto;
    width: 100%;
    height: 50px;
    background-image: url(..//images/deko_nami_y.webp);
    background-repeat: repeat-x;
    background-size: 125px;
  }

  #introduction p {
    margin-top: 8px;
  }

  #introduction .pic_text {
    font-size: 0.875rem;
    font-weight: 700;
  }
  #introduction .pic_text_sub {
    font-size: 1.75rem;
    font-weight: 700;
  }

  .introduction__img {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }

  .introduction__img__right {
    align-self: flex-end;
    border-radius: 25px 0 0 25px;
  }

  .introduction__img__left {
    margin-top: 24px;
    align-self: flex-start;
    border-radius: 0 25px 25px 0;
  }

  .introduction__title {
    width: 88%;
    margin: 0 auto;
    position: absolute;
    left: 6%;
    bottom: 16px;
    padding-left: 26px;
  }
  .introduction__title.is-left {
    padding-left: 0;
    padding-right: 26px;
  }

  .introduction__text {
    width: 88%;
    margin: 0 auto;
    padding-left: 26px;
  }
  .introduction__text.is-left {
    padding-left: 0;
    padding-right: 26px;
  }
}



@media screen and (min-width: 768px) {
  .introduction__inner {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  #introduction .pc__title {
    width: 250px;
    margin-top: 76px;
  }

  .introduction__pc_flex {
    display: flex;
    margin-top: 68px;
    gap: 60px;
    justify-content: center;
  }

  .introduction__img img,
  .introduction__text,
  .introduction__img__left {
    width: 540px;
    height: auto;
    border-radius: 32px;
  }

  .pic_text {
    font-size: 1.3125rem;
  }

  .pic_text_sub {
    font-size: 2.625rem;
  }

  #introduction p {
    font-weight: 400;
    margin-bottom: 76px;
  }

  .introduction__img {
    position: relative;
  }

  .introduction__title {
    position: absolute;
    bottom: 22px;
    left: 40px;
  }
}

/* タブレット用 */
@media (min-width: 767px) and (max-width: 1279px) {
  .introduction__pc_flex {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    gap: 0;
  }

  .introduction__item {
    width: 100%;
    max-width: 500px;
  }

  .introduction__img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }
}

/* 代表の想い */
.owners_vision__inner {

  width: 88%;
  background-color: #ffffff;
  border-radius: 10px;
  max-width: 700px;
  margin: 40px auto 0 auto;
  padding: 24px 16px;      /* 内側の余白（スマホ向け） */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.owners_vision_title {
  text-align: center;
}

.owners_vision__read {
  text-align: left;
  margin-top: 16px;
  line-height: 1.8;
  font-size: 16px;
  color: #333333;
}

@media (min-width: 768px) {
  .owners_vision__inner {
    padding: 48px 40px;
    border-radius: 24px;
  }
}

/* 代表のご紹介ここまで
====================================================
====================================================
/* 店舗の紹介ここから */

#shop {
  background-color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#shop::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url(../images/deco_01.webp);
  background-repeat: repeat-x;
  background-size: 125px;
}

.shop__inner {
  width: 88%;
  max-width: 1180px;
  margin: 0 auto;
  box-sizing: border-box;
  align-items: center;
}


#shop .pc__title {
  width: 60%;
}

.shop_img_flex {
  margin-top: 68px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.shop_img_flex > div {
  text-align: center;
}

.shop_img_flex img {
  border-radius: 24px;
  width: 100%;
  max-width: 540px;
  height: auto;
}

.shop__name {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.shop__address {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #shop::before {
    background-image: url(../images/pc_img/deco_01_pc.webp);
    background-size: 239.84px;
    top: -0.5px;
  }

  #shop .pc__title {
    width: 250px;
  }

  .shop_img_flex {
    gap: 100px;
  }

  .shop__name {
    font-size: 1.7rem;
  }

  .shop__address {
    font-size: 1.6rem;
  }
}

/* 店舗のご紹介
====================================================
====================================================
/* 成功できる５つのポイント(s_point5 & point5 共通）ここまで */

#s_point5 {
  background-color: var(--color_bg-01);
  position: relative;
}

#point5 .point5__title {
  width: 100%;
  margin-bottom: 30px;
}

#s_point5::before {
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  width: 100%;
  height: 50px;
  background-image: url(../images/deko_nami_w.webp);
  background-repeat: repeat-x;
  background-size: 125px;
}

@media screen and (min-width: 768px) {
  .point5__inner {
    width: 1180px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-top: 76px;
    padding-bottom: 76px;
    text-align: center;
  }

  .point5__title img {
    width: 400px;
    height: auto;
    padding-bottom: 30px;
  }

  .point5__item img {
    padding-top: 30px;
    height: 40px;
  }

  #s_point5::before {
    background-image: url(../images/pc_img/deko_nami_w_pc.webp);
    background-size: 239.84px;
    top: -0.5px;
  }

  .w-point5__item__flex {
    padding-right: 154px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .w-point5__item {
    height: 40px;
  }
}

#point5 {
  background-color: var(--color_bg-03);
  position: relative;
}

/* 雫のようなデコレーション */
#point5::before {
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  width: 100%;
  height: 12px;
  background-image: url(../images/deco_01-s.webp);
  background-size: 375px;
}

@media screen and (min-width: 768px) {
  #point5::before {
    background-image: url(../images/pc_img/deco_01-s_pc.webp);
    height: 24px;
    background-size: 750px;
    background-repeat: no-repeat;
    background-position: center;
    top: -0.5px;
  }
}

.point5__title {
  width: 72%;
  margin: auto;
}

.point5__inner {
  width: 88%;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .point5__inner {
    width: 72%;
  }
}

.point5__item img {
  max-width: 100%;
  height: auto;
  margin-top: 9px;
}

@media screen and (min-width: 768px) {
  .point5__item img {
    max-width: 400px;
  }

  .w-point5__item img {
    max-width: 550px;
  }
}

.w-point5__item{
  margin-top: 24px;
}


@media screen and (min-width: 768px) {
  .point5-summary {
    width: 400px;
    margin: 0 auto;
  }

  .w-point5__item {
    margin-left: 250px;
    margin-top: 32px;
  }
}

.point5-summary {
  margin-top: 33px;
  }

@media screen and (min-width: 768px) {
  .point5-summary {
    margin-top: 50px;
  }
}

/* 小型タブレット用 */
@media (min-width: 520px) and (max-width: 767px) {
  #point5::before {
    height: 26px;
    background-image: url(../images/pc_img/deco_01_pc.webp);
    background-size: 250px;
    background-repeat: no-repeat;
    background-position: top center;
  }

  #s_point5::before {
    content: '';
    position: absolute;
    top: 0px;
    left: auto;
    width: 100%;
    height: 50px;
    background-image: url(../images/deko_nami_w.webp);
    background-repeat: repeat-x;
  }
}

/* 成功できる５つのポイント(s_point5 & point5 共通）
====================================================
====================================================
お悩み①②共通ここから*/

.anxiety {
  background-color: #F0E8E8;
  position: relative;
}

#anxiety::before {
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  width: 100%;
  height: 50px;
  background-image: url(../images/deco_01.webp);
  background-repeat: repeat-x;
  background-size: 125px;
}

@media screen and (min-width: 768px) {
  #anxiety::before {
    background-image: url(../images/pc_img/deco_01_pc.webp);
    background-size: 239.84px;
    top: -0.5px;
  }
}

#anxiety2::before {
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  width: 100%;
  height: 50px;
  background-image: url(../images/deco_03.webp);
  background-repeat: repeat-x;
  background-size: 125px;
}

@media screen and (min-width: 768px) {
  #anxiety2::before {
    background-image: url(../images/pc_img/deco_03_pc.webp);
    background-size: 239.84px;
  }
}

.anxiety__inner {
  width: 88%;
  margin: 0 auto;
}

.anxiety__title {
  padding-top: 48px;
  font-size: 1.3rem;
  margin-bottom: 41px;
}

@media screen and (min-width: 768px) {
  .anxiety__title {
    padding-top: 76px;
    font-size: 2.5rem;
  }
}

.anxiety__img img {
  display: block;
}

@media screen and (min-width: 768px) {
  .anxiety__img img {
    width: 500px;
    margin: 0 auto;
    padding-top: 59px;
  }
}

.anxiety__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .anxiety__text {
    font-size: 0;
  }
}

.anxiety__text img {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .anxiety__text__title {
    font-size: 1.5rem;
    padding-bottom: 50px;
  }
}

.anxiety__text__sub {
  margin-top: 24px;
  margin-bottom: 48px;
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  .anxiety__text__sub {
    font-size: 2rem;
    padding-bottom: 52px;
  }
}

@media screen and (min-width: 768px) {
  .anxiety__text__sub br {
    display: none;
  }
}

.anxiety__text span {
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .anxiety__text span {
    font-size: 1.7rem;
  }
}

/*お悩み①②共通ここまで
====================================================
====================================================
▼安心①②共通ここから */

.relieved {
  background-color: var(--color_bg-01);
  padding-bottom: 48px;
  position: relative;
}

/* 雫のようなデコレーション */
#relieved1::before,
#relieved2::before {
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  width: 100%;
  height: 12px;
  background-image: url(../images/deco_02.webp);
  background-size: 375px;
}

@media screen and (min-width: 768px) {
  #relieved1::before,
  #relieved2::before {
    background-image: url(../images/pc_img/deco_02_pc.webp);
    height: 24px;
    background-size: 750px;
    background-repeat: no-repeat;
    background-position: center;
    top: -0.5px;
  }
}

/* スマホの時 */
@media screen and (max-width: 768px) {

  .relieved .pc__title {
    width: 55%;
  }

  .relieved__item {
    color: #fff;
    font-size: 1rem;
    text-align: center;
    margin-top: 32px;
  }
  .relieved h2 {
    padding-top: 48px;
  }

  .deco__nami {
    margin-top: 18px;
  }

  .relieved__wrap {
    margin-top: 6px;
    width: 93.6%;
    background-color: #fff;
    display: flex;
    border-radius: 32px 0 0 32px;
    margin-right: 0;
    margin-left: auto;
    position: relative;
  }
  .relieved__wrap.is-left {
    margin-right: auto;
    margin-left: 0;
    border-radius: 0 32px 32px 0;
  }

  .relieved__item__text {
    font-size: 1rem;
    padding-top: 8px;
    padding-bottom: 16px;
    display: flex;
    gap: 8px;
  }
  .relieved__item__text span {
    font-size: 1.4rem;
  }
  .relieved__item__text.is-left {
    flex-direction: row-reverse;
  }

  .relieved-read {
    width: 75%;
    margin-top: 8px;
  }
  .relieved-read.is-left {
    margin-left: 24px;
    margin-bottom: 16px;
  }
  .relieved-read .notes {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding-left: 14px;
    padding-bottom: 4px;
  }
  .relieved-read small {
    font-size: 0.8rem;
  }

  .relieved-icon {
    width: 46px;
    margin-left: 10px;
  }
  .relieved-icon.is-left {
    margin-right: 10px;
  }
}

/* PCの時 */
@media screen and (min-width: 768px) {
  .deco__nami {
      max-width: 170px;
      margin-top: 32px;
      margin-bottom: 50px;
  }

  .relieved__item {
    font-size: 1.5rem;
  }

  .relieved-icon {
    width: 53px;
    margin: 0 auto;
  }

  .relieved-read {
    font-size: 1.4rem;
  }

  .relieved__wrap {
    margin-top: 16px;
    width: 400px;
    height: 200px;
    background-color: #fff;
    border-radius: 32px;
    margin-right: 0;
    position: relative;
    padding: 12px 34px ;
    margin-bottom: 76px;
  }
  .relieved .pc__title {
    margin-top: 115px;
    width: 250px;
  }

  .relieved__pc_flex {
    display: flex;
    gap: 13px;
    justify-content: center;
  }

  .relieved__item {
    color: #fff;
    text-align: center;
  }
}

/* タブレット用 */
@media (min-width: 769px) and (max-width: 1279px) {
  .relieved__pc_flex {
    flex-direction: column;
  }

  .relieved__wrap {
    margin-bottom: 0px;
    margin: 0 auto;
  }
}

/* 小型タブレット用 */
@media (min-width: 520px) and (max-width: 767px) {
  #relieved1::before,
  #relieved2::before {
    height: 24px;
    background-image: url(../images/pc_img/deco_02_pc.webp);
    background-size: 750px;
    background-position: bottom;
  }
}

/* 768px専用のレスポンシブ対応 */
@media only screen and (width: 768px) {
  .relieved__pc_flex {
    flex-wrap: wrap;
  }

  .relieved__wrap.is-left {
  border-radius: 32px
  }

  .relieved__wrap {
    margin-bottom: 20px;
  }
}

/* おまかせ2個め */
.omakase_section__main {
  display: block;
  margin: 0 auto 24px auto;
  width: 100%;
  max-width: 600px;
}

.omakase_section__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.omakase_section__features img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.omakase_area_pc img {
  width: 70%;
  margin: 0 auto;
  display: block;

}

@media screen and (min-width: 768px) {
  .omakase_section__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列均等割り */
    gap: 24px;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
  }

  .omakase_section__main {
        max-width: 450px;
  }
}



/*安心①②共通ここまで
====================================================
====================================================
▼オムライスの可能性ここから▼ */

#possibility {
  background-color: var(--color_bg-02);
  position: relative;
}

/* 雫のようなデコレーション */
#possibility::before {
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  width: 100%;
  height: 12px;
  background-image: url(../images/deco_01-s.webp);
  background-size: 375px;
}

@media screen and (min-width: 768px) {
  #possibility::before {
    background-image: url(../images/pc_img/deco_01_pc.webp);
    height: 24px;
    background-size: 240px;
    background-repeat: no-repeat;
    background-position: center;
    top: -0.5px;
  }
}

.possibility__inner {
  width: 87.2%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .possibility_title_pc {
    width: 500px;
    padding-top: 76px;
  }

  .possibility__item__pc__flex {
    display: flex;
    gap: 33px;
    justify-content: center;
  }
}

.possibility__item {
  background-color: #fff;
  border-radius: 32px;
  margin-top: 32px;
}

@media screen and (min-width: 768px) {
  .possibility__item {
    width: 400px;
    margin-top: 78px;
    margin-bottom: 76px;
  }
}

.possibility__item:first-of-type .possibility__img {
  padding-top: 17px;
}
.possibility__item__head {
  font-size: 1.5rem;
  text-align: center;
  color: #D91616;
  font-weight: 700;
  padding-top: 32px;
}

@media screen and (min-width: 768px) {
  .possibility__item__head {
    font-size: 1.6rem;
  }
}

.possibility__item__read {
  width: 85.3%;
  margin: 0 auto;
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .possibility__item__read {
    margin-top: 30px;
  }
}

.possibility__item {
  position: relative;
  padding-bottom: 220px;
}

@media screen and (min-width: 768px) {
  .possibility__item {
    padding-bottom: 174px;
  }
}

.possibility__item__read span {
  position: absolute;
}

.possibility__img {
  width: 70%;
  margin: 0 auto;
  padding-top: 0;

  position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    margin: 0;
}

.possibility__img img {
  display: block;
  margin: 0; /* マージンを削除 */
}

@media screen and (min-width: 768px) {
  .possibility__img img {
    margin-top: 39px;
  }
}
.possibility__img:nth-of-type(1) {
  margin-top: 17px;
}
.possibility__img:nth-of-type(3) {
  margin-top: 8px;
}

/* 小型タブレット用 */
@media (min-width: 520px) and (max-width: 767px) {
  #possibility::before {
    height: 24px;
    background-image: url(../images/deco_01-s.webp);
    background-size: 750px;
    background-position: bottom;
  }

  .possibility__item {
    height: 400px;
    padding-bottom: 220px;
  }
}


/*オムライスの可能性ここまで
====================================================
====================================================
/* ランキングここから */

#ranking {
  background-color: #FDFAD0;
  position: relative;
}

#ranking::before {
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  width: 100%;
  height: 50px;
  background-image: url(../images/deko_nami_y.webp);
  background-repeat: repeat-x;
  background-size: 125px;
}

@media screen and (min-width: 768px) {
  #ranking::before {
    content: '';
    position: absolute;
    top: 0px;
    left: auto;
    width: 100%;
    height: 50px;
    background-image: url(../images/deko_nami_y.webp);
    background-repeat: repeat-x;
    background-size: 240px;
  }
}

.ranking__inner {
  width: 88%;
  margin: 0 auto;
}

.ranking__deco {
  display: none;
}

@media screen and (min-width: 768px) {
.ranking__deco {
  display: block;
  width: 280px;
  margin: 74px 0 30px 53%;
  }
}

#ranking .pc__title {
  width: 90%;
}

@media screen and (min-width: 768px) {
  #ranking .pc__title {
    width: 350px;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .ranking__item__flex__pc {
    display: flex;
    gap: 80px;
    justify-content: center;
  }
}

.ranking__item {
  background-color: var(--color_bg-01);
  color: #fff;
  margin-top: 32px;
  border-radius: 32px;
  padding-bottom: 12px;
}

@media screen and (min-width: 768px) {
  .ranking__item {
    width: 400px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 78px;
  }
}

.ranking__item__title {
  padding-top: 32px;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.ranking__item__content {
  padding-top: 24px;
  width: 78%;
  margin: 0 auto;
  margin-bottom: 20px;

  span {
    font-size: 1.7rem;

    &.food {
      font-size: 1.5rem;
    }
  }

  p {
    font-size: 1.4rem;

    b {
      color: #FFF545;
    }
  }
}

@media screen and (min-width: 768px) {
  .ranking__item__content p {
    font-size: 1.5rem;
  }
}
.ranking__item__content__rank {
  margin-bottom: 16px;
}

.ranking__search {
  width: 88%;
  text-align: end;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .ranking__search {
    font-size: 1rem;
    width: 74%;
    text-align: right;
  }
}

/* ランキングデータここまで
====================================================
====================================================
/* WHYのコーナーこから*/

.why {
  background-color: #FDFAD0;
}

.ranking__why {
  width: 88%;
  margin: 0 auto;
  position: relative;
}

.ranking__why__img {
  width: 84%;
}

.ranking__omuimg-pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .ranking__omuimg-pc {
    display: block;
    width: 300px;
    margin-left: 10%;
  }
}
@media screen and (min-width: 768px) {
  .ranking__why__img {
    width: 450px;
    margin-bottom: 18px;
    margin-left: 25%;
    margin-right: 25%;
  }
}

.ranking__why__text {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .ranking__why__text {
    width: 64%;
    margin: 0 auto;
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .why .triangle {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .ranking__why__img {
    display: none;
  }

  .ranking__why__img img {
    max-width: 73%;
  }
}

.chance_01 {
  width: 88%;
  margin: 0 auto;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .chance_01 img {
    padding-top: 104px;
    width: 450px;
    display: block;
    margin: 0 auto;
    padding-bottom: 40px;
  }
}

.chance_02 {
  background-color: #FFF711;
  padding-bottom: 38px;
}

.chance_02_pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .chance_02 {
    display: none;
  }
  .chance_02_pc {
    display: block;
    background-color: #FDFAD0;
  }
}

/* WHYのコーナーここまで
====================================================
====================================================
/* 加盟店モニター募集ここから*/

#recruitment {
  background-color: #FDFAD0;
  position: relative;
}

#recruitment .pc__title {
  width: 80%;
}

@media screen and (min-width: 768px) {
  #recruitment .pc__title {
    width: 370px;
  }
}

.recruitment__inner {
  width: 90%;
  margin: 0 auto;
}

#recruitment::before {
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  width: 100%;
  height: 50px;
  background-image: url(../images/deko_nami_y.webp);
  background-repeat: repeat-x;
  background-size: 125px;
}

@media screen and (min-width: 768px) {
  #recruitment::before {
    content: '';
    position: absolute;
    top: -6px;
    left: auto;
    width: 100%;
    height: 50px;
    background-image: url(../images/deko_nami_y.webp);
    background-repeat: repeat-x;
    background-size: 240px;
  }
}

@media screen and (min-width: 768px) {
  .recruitment__pc__flex {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 40px;
  }

  .chance_01 {
    display: none;
  }
}


.recruitment_item_width {
  width: 70%;
  margin: 40px auto 0 auto;
}

@media screen and (min-width: 768px) {
  .recruitment__read {
    background:linear-gradient(transparent 70%, #ff6 60%);
    font-size: 2.2rem;

    span {
      font-size: 4rem;
    }
  }

  .recruitment_item_width {
    max-width: 60%;
  }
}

.recruitment__read-sub {
  font-size: 1.4rem;


  span {
    font-size: 2.5rem;
    color: #D91616;
    background:linear-gradient(transparent 70%, #ff6 60%);
  }
}

@media screen and (min-width: 768px) {
  .recruitment__read-sub {
    font-size: 2.7rem;
    background:linear-gradient(transparent 80%, #ff6 60%);


    span {
      font-size: 5rem;
      background:linear-gradient(transparent 80%, #ff6 60%);

    }
  }
}

.recruitment__img__food img {
  border-radius: 32px;
}

.recruitment__img__food {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.recruitment__img__food img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .recruitment__img__food img {
    width: 540px;
  }
}


.recruitment__refund {
  margin: 16px auto;
  text-align: left;
  font-weight: bold;
  line-height: 1.6;
  width: 80%;
}

@media screen and (min-width: 768px) {
  .recruitment__refund {
    width: 600px;
    text-align: center;
    font-size: 1.6rem;
    width: 88%;
  }
}

.recruitment__notice {
  padding-top: 36px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .recruitment__notice {
    width: 450px;
  }
}

.recruitment__note {
  padding-top: 16px;
  width: 88%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .recruitment__note {
    width: fit-content;
    margin: 0 auto;
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .recruitment_area {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .recruitment_area img:last-child {
    display: block;
    margin: 0 auto;
    width: auto; /* 必要に応じて幅指定も */
    max-width: 100%;
  }
}


/* 加盟店モニター募集ここまで
====================================================

====================================================
選べる5コースここから　*/

#course {
  background-color: var(--color_bg-01);
  position: relative;
}

#course::before {
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  width: 100%;
  height: 50px;
  background-image: url(../images/deco_03.webp);
  background-repeat: repeat-x;
  background-size: 125px;
}

@media screen and (min-width: 768px) {
  .course__inner {
    width: 100%;
    margin: 0 auto;
  }
}

.course__deco {
  display: none;
}

@media screen and (min-width: 768px) {
.course__deco {
  display: block;
  width: 280px;
  margin: 74px 0 30px 53%;
  }
}

#course .pc__title {
  width: 80%;
  padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
  #course .pc__title {
    width: 350px;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  #course::before {
    background-size: 240px;
    top: -0.5px;
  }
}

.course__list {
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .course__list {
    display: flex;
    gap: 60px;
    margin-top: 0px;
  }
}

.course__item {
  margin-top: 17px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .course__item {
    width: 300px;
    flex: auto;
  }
}

.course__note {
  width: 80%;
  margin: 0 auto;
  display: block;
  margin-top: 25px;
  color: #fff;
}

.corse__img__pc{
  display: none;
}

@media screen and (min-width: 768px) {
  .corse__img__pc {
    display: block;
    width: 300px;
    margin: 0 auto;
    padding-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .course__note {
    text-align: center;
    margin-top: 0;
  }
}


@media screen and (min-width: 768px) {
  .course__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    justify-items: center;
  }

  .course__item {
    width: 100%;
    max-width: 300px;
    position: relative;
  }

  .course__item img {
    width: 100%;
    height: auto;
  }
}

/* 選べる5コースここまで
====================================================
====================================================
オープンまでの流れここから*/

#flow {
  background-color: #fff;
  position: relative;

  h2 {
    margin-bottom: 30px;
  }
}

.flow__inner {
  width: 88%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .flow__inner {
    width: 100%;
  }
}

.flow_deco {
  display: none;
}

@media screen and (min-width: 768px) {
  .flow_deco {
  display: block;
  width: 250px;
  margin: 74px 0 30px 53%;
  }
}

#flow .pc__title {
  width: 90%;
}

@media screen and (min-width: 768px) {
  #flow .pc__title {
    width: 350px;
    margin-top: 0;
  }
}

#flow::before {
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  width: 100%;
  height: 50px;
  background-image: url(../images/deco_01.webp);
  background-repeat: repeat-x;
  background-size: 125px;
}

@media screen and (min-width: 768px) {
  #flow::before {
  background-size: 250px;
  background-image: url(../images/pc_img/deco_01_pc.webp);
  top: -0.5px;

  }
}

/* デフォルト（モバイル）のスタイル */
.flow__step {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center; /* 画像が中央に並ぶ */
}

.step__item img {
  width: 100%;
  max-width: 450px;
  height: auto;
}

.flow__note {
  width: 95%;
  margin: 0 auto;
}

/* PC*/

@media screen and (min-width: 768px) {
  .flow__step {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 100%;
  }

  .step__item {
    flex-basis: 48%;
    max-width: 240px;
    margin-bottom: 20px;
  }

  .step__item img {
    width: 100%;
  }

  .flow__note {
    text-align: center;
  }
}



/*
@media screen and (min-width: 768px) {
    .step__item__sp {
      display: none;
    }
  .step__item__pc {
    display: block;
    width: 100%;
  }

  .open img {
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .step__item__pc {
    width: 100%;
  }

  .flow__step__flex__pc {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
  }

  .flow__step__flex__pc img {
    margin-right:  25%;
  }

  .flow__note {
    font-size: 1.5rem;
    margin: 0 auto;
    width: 64%;
    margin-top: 20px;
    margin-bottom: 76px;
    text-align: center;
  }
} */

/* タブレット用
@media (min-width: 769px) and (max-width: 1279px) {
  .flow__step__flex__pc {
    width: 95%;
  }
} */

/*オープンまでの流れここまで
====================================================
====================================================
研修ここから*/

#training {
  background-color: #D91616;
  color: #fff;
  position: relative;
}

  .t_pic_text {
    font-size: 0.9rem;
  }

  .t_pic_text_sub {
    font-size: 1.5rem;
  }

  #training .pc__title {
    width: 90%;
  }

@media screen and (min-width: 768px) {
  #training .pc__title {
    width: 400px;
  }
}

@media screen and (min-width: 768px) {
  .training__read__title {
    width: max-content;
    margin: 0 auto;
    padding-top: 30px;
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .training__read__text {
    text-align: center;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 76px;
  }
}

#training::before {
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  width: 100%;
  height: 50px;
  background-image: url(../images/deco_04.webp);
  background-repeat: repeat-x;
  background-size: 375px;
}

@media screen and (min-width: 768px) {
  #training::before{
    background-image: url(../images/pc_img/deko_nami_w_pc.webp);
    background-size: 239.84px;
    top: -0.5px;
  }
}

@media screen and (min-width: 768px) {
  .training__item__flex__pc {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-left: 30px;
    padding-right: 30px;
}
  }

.training__img {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

@media screen and (min-width: 768px) {
  .training__img {
    flex-direction: none;
  }
}

@media screen and (min-width: 768px) {
  .training__img img {
    width: 440px;
    border-radius: 32px;
    align-items: center;
  }
}

.training__img__right {
  align-self: flex-end;
  border-radius: 32px 0 0 32px;
}

@media screen and (min-width: 768px) {
  .training__img__right img {
    align-self: none;
    border-radius: 32px;
  }
}

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

.training__img__left {
  align-self: flex-start;
  border-radius: 0 32px 32px 0 ;
}

.training__title {
  width: 90%;
  margin: 0 auto;
  position: absolute;
  left: 12%;
  bottom: 10px;
  line-height: 1.6;
}

.training__title.is-left {
width: 88%;
padding: 0;
padding-right: 26px;
}

.training__read {
  width: 95%;
  padding-top: 10px;
  margin: 0 auto;
  padding-left: 26px;
}

@media screen and (min-width: 768px) {
  .training__read {
    padding-bottom: 76px;
  }
}

.training__read.is-left {
  padding: 0;
  padding-right: 26px;
    }

.training__read__text {
  margin-top: 8px;
  }
}

@media screen and (min-width: 768px) {
  .training__title {
    width: 90%;
    margin: 0 auto;
    position: absolute;
    left: 7%;
    bottom: 10px;
    line-height: 1.6;
  }
}

/* タブレット用 */
@media (min-width: 769px) and (max-width: 900px) {
  .training__item__flex__pc {
    width: 95%;
    flex-direction: column;
    gap: 15px;
  }

  .training__inner {
    width: 90%;
    margin: 0 auto;
  }

  .training__img {
    margin: 0 auto;
  }

  .training__title {
    left: 35%;
  }

  .training__read__title {
    padding-bottom: 20px;
  }

  .training__read__text {
    width: 80%;
  }
}

/* PC */
@media screen and (min-width: 768px) {
  .training__read__text {
    width: 90%;
    margin: 0 auto;
  }
  .training_add_message_inner {
    text-align: center;
  }
}

.training_add_message {
  margin-top: 20px;
  background: #fff;
  color: #3B1E00;
  font-weight: 700;

}

.training_add_message_inner {
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
}

.message_right {
  display: inline-block;
  text-align: right;
  width: 100%;
}

.message_red {
  color: red;
}

/*研修ここまで
====================================================
====================================================
収支シュミレーションここから */
#simulation{
  background-color: #FFF545;
  position: relative;
}

@media screen and (min-width: 768px) {
  .simulation__inner {
    width: 88%;
    margin: 0 auto;
  }
  .pc_img_title {
    width: 500px;
    margin: 0 auto;
    display: block;
    padding-top: 76px;
  }
}

#simulation::before {
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  width: 100%;
  height: 50px;
  background-image: url(../images/deco_01.webp);
  background-repeat: repeat-x;
  background-size: 125px;
}

@media screen and (min-width: 768px) {
  #simulation::before {
    background-image: url(../images/pc_img/deco_01_pc.webp);
    background-size: 240px;
    top: -0.5px;
  }
}

.simulation_item_wrap {
  width: 86%;
  margin: 20px auto;
}
.simulation_img_pc {
  display: none;
}


@media screen and (min-width: 768px) {
  .simulation_img_sp {
    display: none;
  }

  .simulation_img_pc {
    display: block;
  }

  .simulation__img {
    max-width: 800px;
    margin: 0 auto;
  }
}

.simulation__text {
  width: 88%;
  margin: 0 auto;
  font-size: 0.7rem;
  margin-top: 8px;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .simulation__text {
    padding-top: 30px;
    font-size: 1rem;
    margin: 0 auto;
    width: 64%;
    padding-bottom: 76px;
  }
}

/* 収支シュミレーションここまで
====================================================
====================================================
よくある質問 */
#question {
  background-color: #FDFAD0;
  position: relative;
}

#question::before {
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  width: 100%;
  height: 50px;
  background-image: url(../images/deko_nami_y.webp);
  background-repeat: repeat-x;
  background-size: 125px;
}

@media screen and (min-width: 768px) {
  #question::before {
    background-size: 240px;
    top: -0.5px;
  }
}

#question .pc__title {
  width: 50%;
}

@media screen and (min-width: 768px) {
  #question .pc__title {
    width: 200px;
  }
}

.question__list {
  padding-top: 16px;
  width: 88%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .question__list {
    padding-bottom: 76px;
  }
}

.question__inner dt {
  padding-top: 16px;
  line-height: 1.5;
  padding: 10px;
  position: relative;
  padding-left: 42px;
}

.question__inner dt::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 14px;
  width: 22px;
  height: 22px;
  background: 0 0/cover no-repeat url(../images/question_q.svg);
}

@media screen and (min-width: 768px) {
  .question__inner dt::before  {
    top: 15px;
    left: 16px;
    width: 19px;
    height: 20px;
  }
}

.question__inner dd {
  padding-top: 16px;
  line-height: 1.5;
  padding: 10px;
  position: relative;
  padding-left: 42px;
}

@media screen and (min-width: 768px) {
  .question__inner dd {
    line-height: 1.8;
  }
}
.question__inner dd::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 14px;
  width: 22px;
  height: 22px;
  background: 0 0/cover no-repeat url(../images/question_a.svg);
}

@media screen and (min-width: 768px) {
  .question__inner dd::before  {
    top: 18px;
    left: 16px;
    width: 19px;
    height: 20px;
  }
}

.question__inner dt {
  color: #D91616;
  font-weight: 700;
  margin-top: 16px;
}

.question__item {
  background-color: #fff;
  border-radius: 7px;
}

@media screen and (min-width: 768px) {
  .question__item {
    max-width: 800px;
    margin: 0 auto;
  }
}

/* よくある質問
====================================================
====================================================
代表のご挨拶ここから */

#greeting {
  background-color: var(--color_bg-01);
  position: relative;
}

#greeting .pc__title {
  width: 60%;
}

@media screen and (min-width: 768px) {
  #greeting .pc__title {
    width: 250px;
  }
}

#greeting::before {
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  width: 100%;
  height: 50px;
  background-image: url(../images/deco_03.webp);
  background-repeat: repeat-x;
  background-size: 125px;
}

@media screen and (min-width: 768px) {
  #greeting::before {
    background-size: 240px;
    top: -0.5px;
  }
}

.greeting__img {
  margin-top: 14px;

  img {
    display: block;
    margin: 0 auto;

  }
}

.greeting__text {
  width: 88%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 32px;
  padding: 32px 29px 32px 29px;
  line-height: 1.7;

  span {
    color: #D91616;
  }
}

@media screen and (min-width: 768px) {
  .greeting__text {
    max-width: 800px;
    line-height: 2;
    margin-bottom: 76px;
  }
}


/* 代表のご挨拶ここまで
====================================================
====================================================
お問い合わせここから */

#contact {
  background-color: var(--color_bg-02);
  position: relative;

  .contact__inner table {
    margin: 0 auto;
  }
}

.contact__inner {
  width: 85%;
  margin: 0 auto;
}

#contact .pc__title {
  width: 60%;
}

@media screen and (min-width: 768px) {
  #contact .pc__title {
    width: 250px;
  }
}

#contact::before {
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  width: 100%;
  height: 50px;
  background-image: url(../images/deco_01.webp);
  background-repeat: repeat-x;
  background-size: 125px;
}

@media screen and (min-width: 768px) {
  #contact::before {
    background-size: 240px;
    top: -0.5px;
  }
}

.contact__mes {
  margin: 0 auto;
  padding-top: 27px;
  margin-bottom: 21px;
}

@media screen and (min-width: 768px) {
  .contact__mes {
    text-align: center;
  }
}

.form-required {
  margin-right: 8px;
  background-color: var(--color_bg-01);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 400;
  border-radius: 4px;
  padding: 2px 6px 2px 7px;
}

.form-any {
  margin-right: 8px;
  background-color: #CBC6C6;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 400;
  border-radius: 4px;
  padding: 2px 6px 2px 7px;
}

table th, table td {
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

table th {
  margin-top: 25px;
  font-weight: 400;
}

table td {
  padding-top: 8px;
}
@media screen and (min-width: 768px) {
  table td {
    padding-top: 3px;
  }
}

table td input {
  width: 100%;
  padding: 13px;
  border: 1px solid #3B1E00;
  border-radius: 4px;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .table td input {
    padding: 12px;
    border-radius: 3px;
  }
}

.form-small {
  font-size: 0.9rem;
}

table td input [type="checkbox"] {
  width: 20px;
}

table td textarea {
  width: 100%;
  min-height: 40px;
  height: 228px;
  overflow: auto;
  border-radius: 6px;
  padding: 13px;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .contact__textarea {
    flex-direction: column;
  }

  table td textarea {
    width: 500px;
  }
}

.form-chekbox {
  font-size: 1rem;
}

td input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0 10px 10px 0;
  vertical-align: sub;
}

td input[value=] {
  margin-top: -5px;
}

.form-chek {
  text-align: center;
}


@media screen and (min-width: 768px) {
  .form-chek {
    padding-top: 40px;
    font-size: 18px;
  }
}

.submit__btn {
  margin-top: 40px;
  text-align: center;
}

.submit__btn input {
  background-image: url(../images/contact_submit_btn.webp);
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: contain;
  width: 100%;
  height: 57px;
  padding-block: 0px;
  padding-inline: 0px;
  border-width: 0px;
  border-style: unset;
  border-color: unset;
  border-image: unset;
  background-color: unset;
  transition: all 0.3s ease;
}

/* @media screen and (min-width: 768px) {
  .submit__btn input {
    margin-bottom: 76px;
  }
} */


.submit__btn input:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
  cursor: pointer;
}


.form-radio {
  display: flex;
  gap: 20px;       /* ボタン間の余白 */
  align-items: center;
  font-size: 1rem;
}

.form-radio label {
  display: inline-flex;
  align-items: center;
  gap: 6px;        /* 丸と文字の間 */
  cursor: pointer;
  white-space: nowrap; /* 改行させない */
}

.form-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;       /* 不要な余白除去 */
  vertical-align: middle;
}


/* お問い合わせここまで
====================================================
====================================================
フッタここから*/

#footer {
  padding: 40px;
  background-color: var(--color_bg-03);
  color: var(--color_txt);
  position: relative;

  p {
    font-size: 0.8rem;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



@media screen and (min-width: 768px) {
  #footer p  {
    font-size: 1rem;
    margin-top: 20px;
  }
}

.footer::before {
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  width: 100%;
  height: 50px;
  background-image: url(../images/deko_nami_y.webp);
  background-repeat: repeat-x;
  background-size: 125px;
}

@media screen and (min-width: 768px) {
  .footer::before {
    background-size: 240px;
    top: -0.5px;
  }
}

/* フーターここまで
==========================*/