/*全体*/

html,
body {
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background-image: url("../img/back.png");
  background-size: 80px auto;
  background-repeat: repeat;
  color: #1a041f;
}

.map {
  background-color: #1a041f;
  color: white;
  padding: 2px 10px;
  text-decoration: none;
  border-radius: 3px;
  display: inline-block;
  font-size: 12px;
  transition: transform 0.3s ease;
  /* ホバー時の変化を滑らかにする */
}

.map:hover {
  transform: scale(1.05);
  /* ホバー時に1.05倍に拡大 */
}

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1500ms;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/*ページロゴ*/

.logo_top {
  width: 100%;
  margin: 0px auto;
  background-color: #651785;
}

.logo_top_in {
  max-width: 70px;
  margin: 0 auto;
  padding: 6px;
}

.logo_top_in img {
  width: 100%;
  margin: 0 auto;
}

/*ページトップ*/

.page_top {
  width: 100%;
  margin: 0px auto;
}

.page_top_in {
  max-width: 1800px;
  margin: 0 auto;
}

.page_top_in img {
  width: 100%;
  margin: 0 auto;
}

/*ページトップ_sp*/

.page_top_sp {
  display: none;
}

/*共通　文字の種類・太さ*/

body h1 {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
}

body h2 {
  font-family: futura-pt, sans-serif;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
}

body h3 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
}

body h4 {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
}

body h5 {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
}

body h6 {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
}

body p {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
}

body table {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
}

body a {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  letter-spacing: 0.1em;
}

/*共通　背景*/

.bg_green {
  position: relative;
  /* 擬似要素の基準となるように設定 */
  z-index: 0;
  /* スクリーンショットの色に合わせて変更 */
}

.bg_green::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, #d85200, #651785);
  transform: skewY(-4deg);
  /* この要素自体を斜めにする */
  transform-origin: top left;
}

.bg_glay {
  position: relative;
  /* 擬似要素の基準となるように設定 */
  z-index: 0;
  /* スクリーンショットの色に合わせて変更 */
}

.bg_glay ::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;

  /* ここで背景画像とtransformを適用 */
  background-color: #f6f6f6;
  background-image: url("../img/back.png");
  background-size: 100px auto;
  /* 画像サイズを調整 */
  background-repeat: repeat;
  transform: skewY(-4deg);
  /* この要素自体を斜めにする */
  transform-origin: top left;
}

.bg_green2 {
  position: relative;
  z-index: 0;
  background: linear-gradient(to bottom right, #d85200, #651785);
}


.bg_white {
  position: relative;
  z-index: 0;
}

.bg_white::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transform: skewY(-4deg);
  transform-origin: top left;
}

.bg_sns {
  position: relative;
  z-index: 0;
  background-color: #f6f6f6;
  max-width: 1800px;
  margin: 0 auto;
}

/*共有　基本の箱・文字サイズ*/

.base {
  width: 100%;
  padding: 160px 0 200px;
}

.mt-40 {
  margin-top: -40px;
}

.mb-40 {
  margin-bottom: -40px;
}

.base2 {
  width: 100%;
  padding: 80px 0;
  text-align: center;
}

.base h1 {
  font-size: 36px;
  line-height: 1.3;
}

.base h2 {
  font-size: 36px;
  line-height: 1.3;
}

.base2 h2 {
  font-size: 36px;
  line-height: 1.3;
}

.base h3 {
  font-size: 18px;
  line-height: 1.5;
}

.base2 h3 {
  font-size: 18px;
  line-height: 1.5;
}

.base h4 {
  font-size: 24px;
  line-height: 1.5;
}

.base h5 {
  font-size: 14px;
  line-height: 1.5;
}

.base h6 {
  font-size: 16px;
  line-height: 2;
}

.base h7 {
  font-size: 14px;
  line-height: 1.5;
}

.base p {
  font-size: 14px;
  line-height: 2;
}

.base2 p {
  font-size: 14px;
  line-height: 2;
}

.base a {
  font-size: 14px;
  line-height: 2;
}

.base2 a {
  font-size: 14px;
  line-height: 2;
}

.base th {
  font-size: 14px;
  line-height: 2;
}

.base td {
  font-size: 14px;
  line-height: 2;
}

/*共通　ボタン*/

.btn1 {
  width: 240px;
  text-align: center;
  margin: 0px auto;
  display: inline-block;
  padding: 10px 0;
  text-decoration: none;
  color: #1a041f;
  background: #FFD700;
  border-radius: 50px;
  transition: 0.4s;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.btn1 span {
  width: 100%;
  position: relative;
}

.btn1 span::after {
  width: 100%;
  content: "";
  position: absolute;
  top: 35%;
  right: -20%;
  width: 5px;
  height: 5px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}

.btn1:hover {
  background: #F2BE2C;
}

/*---ページ内コンテンツ
/*-------------------------------------*/
/*フォント色*/

.t_pink {
  color: #FFD700;
}

.t_mt10 {
  margin-top: 10px;
}

.t_black {
  color: #1a041f;
}

.t_white {
  color: #fff;
}

.t_green {
  color: #651785;
}

/*---スケジュール
/*-------------------------------------*/

.con01 {
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
  position: relative;
}

.con01 h2 {
  text-align: center;
}

.con01 h3 {
  text-align: center;
}

.text01 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.text01 p {
  margin-top: 40px;
}

.con02 {
  width: 1000px;
  background: #d85200;
  border-radius: 20px;
  margin: 40px auto 0;
  position: relative;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.text02 {
  padding: 60px 10%;
}

.text02 p {
  font-size: 16px;
  z-index: 4;
}

.kirin {
  width: 120px;
  margin-top: 10px;
}

.kirin img {
  width: 100%;
}

.btn_box {
  width: 100%;
  margin: 100px auto 0;
  text-align: center;
}

.embellish01 {
  width: 380px;
  position: absolute;
  z-index: 3;
  bottom: -120px;
  right: -40px;
}

.embellish01 img {
  width: 100%;
  border: 4px solid transparent;
  background: #d85200;
  background-clip: border-box;
  border-radius: 16px;
}

/*---フード
/*-------------------------------------*/

.embellish04 {
  width: 300px;
  position: absolute;
  z-index: 3;
  top: -50px;
  left: 4%;
}

.embellish04 img {
  width: 100%;
}

.embellish05 {
  max-width: 300px;
  margin: 0 auto;
  position: absolute;
  z-index: 2;
  bottom: 20px;
  right: 4%;
}

.embellish05 img {
  width: 100%;
}

.image01 {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
}

.image01 img {
  width: calc(100% - 10px);
  border: 5px solid transparent;
  background: #d85200;
  background-clip: border-box;
  border-radius: 16px;
}

.embellish02 {
  width: 90px;
  position: absolute;
  z-index: 3;
  top: -240px;
  left: 0px;
}

.embellish02 img {
  width: 100%;
}

.embellish03 {
  width: 220px;
  position: absolute;
  z-index: 3;
  bottom: -240px;
  right: 0px;
}

.embellish03 img {
  width: 100%;
}

.collabo {
  max-width: 1000px;
  margin: 100px auto 0;
  position: relative;
}

.collabo01_img {
  max-width: 440px;
  margin: 0 auto;
  position: absolute;
  z-index: 0;
  top: 0px;
  left: 0px;
}

.collabo01_img img {
  width: calc(100% - 10px);
  border: 5px solid transparent;
  background: #d85200;
  background-clip: border-box;
  border-radius: 16px;
}

.collabo_txt_out {
  margin-bottom: 100px;
}

.collabo01_txt {
  max-width: 500px;
  margin: 0 0 0 auto;
  padding-top: 40px;
}

.collabo01_txt h2 {
  text-align: left;
}

.collabo01_txt h3 {
  text-align: left;
}

.collabo02_txt {
  width: 600px;
  margin: 30px 0 0px auto;
  background: #d85200;
  border-radius: 20px;
  position: relative;
  z-index: 5;
}

.text04 {
  padding: 60px 10%;
}

.text04 h2 {
  font-size: 30px;
  margin-bottom: 20px;
  text-align: left;
}

.text04 p {
  font-size: 14px;
  text-align: left;
}

.embellish06 {
  width: 280px;
  position: absolute;
  z-index: 3;
  bottom: -40px;
  left: -240px;
}

.embellish06 img {
  width: 100%;
}

/*---新メニュー
/*-------------------------------------*/

.newmenu {
  margin-bottom: 60px;
}

.newmenu_con {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 40px;
  gap: 40px 4%;
}

.newmenu_con_in {
  width: 48%;
}

.newmenu_img {
  width: 100%;
}

.newmenu_img img {
  width: calc(100% - 10px);
  border: 5px solid transparent;
  background: #d85200;
  background-clip: border-box;
  border-radius: 16px;
}

.newmenu_txt h2 {
  font-size: 22px;
  margin: 10px 0;
}

.newmenu_txt p {
  font-size: 13px;
  color: #fff;
}

.embellish07 {
  width: 220px;
  position: absolute;
  z-index: 3;
  bottom: -240px;
  right: 0px;
}

.embellish07 img {
  width: 100%;
}

.qa {
  margin-top: 60px;
  text-align: center;
  padding: 60px;
  background-color: #f6f6f6;
  border-radius: 10px;
}

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

/*---料理人
/*-------------------------------------*/

.cook01 {
  width: 100%;
  margin: 40px auto 0;
  position: relative;
}

.cook_txt {
  max-width: 62%;
  min-width: 540px;
  margin: 0 auto;
  background: #d85200;
  border-radius: 20px;
  position: absolute;
  top: 100px;
  right: 0;
  z-index: 5;
}

.cook_txt_in {
  padding: 60px 10%;
}

.cook_txt_in h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.cook_txt_in p {
  font-size: 14px;
}

.cook_img {
  max-width: 40%;
  min-width: 360px;
}

.cook_img img {
  width: 100%;
}

.cook02 {
  width: 100%;
  margin-top: 100px;
}

/*---スライド
/*-------------------------------------*/

.swiper_con {
  width: 100%;
  max-width: ;
  height: auto;
  position: relative;
  margin: 40px auto 0;
}

.swiper_con_in {
  padding-bottom: 30px;
}

.swiper1 .swiper-slide {
  width: 100%;
  height: auto;
}

.swiper1 .swiper-slide img {
  width: 100%;
  height: auto;
}

/*---人気コンテンツ
/*-------------------------------------*/

.embellish08 {
  width: 110px;
  position: absolute;
  z-index: 3;
  top: -240px;
  left: 0px;
}

.embellish08 img {
  width: 100%;
}

.boder_white {
  width: 800px;
  margin: 60px auto 0;
  border-top: #fff solid 1px;
  padding-bottom: 80px;
}

.boder_white2 {
  width: 800px;
  margin: 60px auto 0;
  border-top: #fff solid 1px;
  padding-bottom: 0px;
}

.uranai_img {
  width: 100%;
  margin: 40px auto 0;
}

.uranai_img img {
  width: 100%;
}

.buppan_img {
  width: 100%;
  margin: 40px auto 0;
}

.buppan_img img {
  width: 100%;
  border-radius: 10px;
}

/*---台湾祭ってなに？
/*-------------------------------------*/

.image02 {
  max-width: 440px;
  margin: 0 auto;
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
}

.image02 img {
  width: calc(100% - 10px);
  border: 5px solid transparent;
  background: #d85200;
  background-clip: border-box;
  border-radius: 16px;
}

.image03 {
  max-width: 340px;
  margin: 0 auto;
  position: absolute;
  z-index: 2;
  top: 0px;
  right: 125px;
}

.image03 img {
  width: 100%;
}

.con03_out {
  max-width: 1000px;
  width: 94%;
  margin: 280px auto 0;
}

.con03 {
  width: 600px;
  margin: 0 0 0 auto;
  background: #d85200;
  border-radius: 20px;
  position: relative;
  z-index: 5;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.text03 {
  padding: 60px 10%;
}

.text03 h2 {
  margin-bottom: 20px;
}

.text03 p {
  font-size: 14px;
}

iframe.youtube-16-9 {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.movie {
  margin: 80px auto 0;
  width: 1000px;
  max-width: 94%;
}

.mt100 {
  margin-top: 100px;
}


/*お問合せ*/

.text_info {
  text-align: center;
}

.text_info p {
  padding: 20px 0px;
}

/*スライダー*/
.slide {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0 0;
}

.slide img {
  width: 98%;
  margin: 0 auto;
}

/*baito*/
.baito {
  width: 800px;
  max-width: 90%;
  margin: 30px auto 0;
  background-color: #f6f6f6;
}

.baito img {
  width: 100%;
  transition: transform 0.5s ease;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.baito img:hover {
  transform: scale(1.03);
  transition: 1s all;
}

/*SNS*/
.sns {
  width: 100%;
  margin: 30px auto 0;
}

.sns img {
  width: 70px;
  margin: 0 8px;
  transition: transform 0.5s ease;
}

.sns img:hover {
  transform: scale(1.1);
  transition: 1s all;
}

/*共通　フッター*/

.footer {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background: ;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#footer01 {
  padding: 0px;
  position: relative;
}

.nav a {
  font-size: 14px;
  display: block;
  padding: 0px 20px;
  color: #1a041f;
}

.end {
  width: 100%;
  margin: 0 auto;
  background: #1a041f;
  text-align: center;
}

.end p {
  padding: 10px 0px;
  font-size: 12px;
  color: #fff;
  line-height: 1.8;
}

@media only screen and (min-width: 768px) {
  #footer01 .nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 0;
  }

  #footer01 .nav li a {
    margin: 0;
    padding: 0 10px;
    color: #1a041f;
    line-height: 1.8;
    font-weight: 600;
    position: relative;
  }

  #footer01 .nav li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    background-color: #1a041f;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  #footer01 .nav li a:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@media only screen and (max-width: 768px) {
  #footer01 {
    text-align: center;
  }

  #footer01 .nav li {
    border-top: 1px solid #1a041f;
  }

  #footer01 .nav li:last-child {
    border-bottom: 1px solid #1a041f;
  }

  #footer01 .nav li a {
    padding: 12px 10px;
    text-align: left;
    font-weight: 600;
  }
}

/*-------------ここからスマホ--------------*/

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

  html,
  body {
    background-image: url("../img/back.png");
    background-size: 50px auto;
    background-repeat: repeat;
  }

  /*ページロゴ*/

  .logo_top_in {
    max-width: 55px;
    margin: 0 auto;
    padding: 4px;
  }

  .logo_top_in img {
    width: 100%;
    margin: 0 auto;
  }

  .mt100 {
    margin-top: 60px;
  }

  /*ページトップ*/

  .page_top {
    display: none;
  }

  /*ページトップ_sp*/

  .page_top_sp {
    width: 100%;
    margin: 0px auto;
    display: inline-block;
  }

  .page_top_sp img {
    width: 100%;
  }

  /*基本の箱・文字サイズ*/

  .base {
    width: 100%;
    padding: 100px 0;
  }

  .mb-40 {
    margin-bottom: 0px;
  }

  .base2 {
    padding: 60px 0;
    text-align: center;
  }

  .base h2 {
    font-size: 22px;
    padding: 0 0 10px;
    line-height: 1.3;
  }

  .base2 h2 {
    font-size: 22px;
    padding: 0 0 10px;
    line-height: 1.3;
  }

  .base h3 {
    font-size: 14px;
  }

  .base2 h3 {
    font-size: 14px;
  }

  .base h4 {
    font-size: 18px;
    line-height: 1.5;
  }

  .base h6 {
    font-size: 14px;
  }

  .base p {
    font-size: 13px;
    line-height: 1.8;
  }

  .base2 p {
    font-size: 13px;
    line-height: 1.8;
  }

  .base a {
    font-size: 13px;
    line-height: 1.5;
  }

  .base2 a {
    font-size: 13px;
    line-height: 1.5;
  }

  /*ボタン*/
  .btn1 span::after {
    width: 100%;
    content: "";
    position: absolute;
    top: 30%;
    right: -20%;
    width: 5px;
    height: 5px;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
  }

  .text01 p {
    margin-top: 10px;
    padding: 0px;
  }

  .con02 {
    width: 94%;
    margin: 0 auto;
    border-radius: 20px;
    margin: 30px auto;
    position: relative;
  }

  .text02 {
    padding: 30px 8% 80px;
  }

  .text02 p {
    font-size: 14px;
    z-index: 4;
  }

  .embellish01 {
    max-width: 200px;
    position: absolute;
    bottom: -70px;
    right: 0%;
  }

  /*---フード
    /*-------------------------------------*/

  .embellish04 {
    width: 160px;
    position: absolute;
    z-index: 3;
    top: -40px;
    left: 0%;
  }

  .embellish05 {
    max-width: 160px;
    margin: 0 auto;
    position: absolute;
    z-index: 2;
    bottom: -20px;
    right: 0%;
  }

  .image01 {
    margin: 20px auto 0;
  }

  .embellish02 {
    width: 50px;
    position: absolute;
    z-index: 3;
    top: -140px;
    left: 0px;
  }

  .embellish03 {
    width: 120px;
    position: absolute;
    z-index: 3;
    bottom: -120px;
    right: 0px;
  }

  /*---コラボ
/*-------------------------------------*/

  .collabo {
    max-width: 100%;
    margin: 60px auto 0;
    position: relative;
  }

  .collabo01_img {
    max-width: 220px;
    margin: 0 auto;
    position: inherit;
    z-index: 2;
    margin: 0px auto;
  }

  .collabo_txt_out {
    margin-bottom: 80px;
  }

  .collabo01_txt {
    margin: 0px auto 30px;
    position: inherit;
    z-index: 2;
    top: 0px;
    right: 0px;
  }

  .collabo01_txt h2 {
    text-align: center;
  }

  .collabo01_txt h3 {
    text-align: center;
  }

  .collabo02_txt {
    width: 100%;
    margin: 0 auto;
    background-color: #FFD700;
    border-radius: 20px;
    position: relative;
    z-index: 1;
  }

  .text04 {
    padding: 30px 8%;
  }

  .text04 h2 {
    margin-bottom: 10px;
  }

  .text04 p {
    font-size: 13px;
  }

  .embellish06 {
    width: 120px;
    position: absolute;
    z-index: 3;
    bottom: -70px;
    left: calc(100% - 120px);
  }

  .embellish06 img {
    width: 100%;
  }

  /*---新メニュー
/*-------------------------------------*/

  .newmenu_con {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 40px 0;
  }

  .newmenu_con_in {
    width: 100%;
  }

  .newmenu_img {
    width: calc(100% - 10px);
  }

  .newmenu_img img {
    width: 100%;
  }

  .newmenu_txt h2 {
    font-size: 20px;
    margin: 10px 0 0;
  }

  .newmenu_txt p {
    font-size: 13px;
  }

  .qa {
    margin-top: 20px;
    padding: 30px;
  }

  .qa p {
    margin-top: 20px;
    text-align: left;
  }

  .embellish07 {
    width: 120px;
    position: absolute;
    z-index: 3;
    bottom: -120px;
    right: 0px;
  }

  /*---料理人
/*-------------------------------------*/

  .cook01 {
    width: 100%;
    margin: 30px auto 0;
    position: relative;
  }

  .cook_txt {
    max-width: 100%;
    min-width: auto;
    margin: 30px auto 0;
    position: inherit;
    top: 0;
  }

  .cook_txt_in {
    padding: 30px 8%;
  }

  .cook_txt_in h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .cook_txt_in p {
    font-size: 13px;
  }

  .cook_img {
    max-width: 220px;
    min-width: auto;
    margin: 0 auto;
    position: inherit;
  }

  .cook_img img {
    width: 100%;
  }

  .cook02 {
    width: 100%;
    margin-top: 80px;
  }

  /*--コンテンツ
/*-------------------------------------*/

  .embellish08 {
    width: 65px;
    position: absolute;
    z-index: 3;
    top: -140px;
    left: 0px;
  }

  .boder_white {
    width: 100%;
    margin: 60px auto 0;
    padding-bottom: 60px;
  }

  .boder_white2 {
    width: 100%;
    margin: 60px auto 0;
    padding-bottom: 0px;
  }

  /*---台湾祭ってなに？
/*-------------------------------------*/

  .image02 {
    max-width: 220px;
    margin: 0 auto;
    position: inherit;
    z-index: 2;
    margin: 0px auto;
    top: 0px;
    left: 0px;
  }

  .image03 {
    max-width: 260px;
    margin: 30px auto 0;
    position: inherit;
    z-index: 2;
    top: 0px;
    right: 0px;
  }

  .con03_out {
    max-width: 1000px;
    width: 94%;
    margin: 30px auto 0;
  }

  .con03 {
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
    z-index: 1;
  }

  .text03 {
    padding: 30px 8%;
  }

  .text03 h2 {
    margin-bottom: 10px;
  }

  .text03 p {
    font-size: 13px;
  }

  /*SNS*/
  .sns {
    width: 100%;
    margin-top: 10px;
  }

  .sns img {
    width: 50px;
    margin: 0 8px;
    transition: transform 0.5s ease;
  }

  .sns img:hover {
    transform: scale(1.1);
    transition: 1s all;
  }

  .footer {
    padding: 60px 0;
  }
}

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