@charset "UTF-8";
/* CSS Document */
/*--------------------
01.共通
02.ヘッダー
03.フッター
04.下層共通
05.下層MVタイトル
--------------------*/

/*----------
01.共通
----------*/

* {
  box-sizing: border-box;
}

body {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

main {
  display: block;
  padding-top: 80px;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  transition: all 0.3s;
}

.contents_in {
  margin: 0 auto;
  max-width: 1000px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.hind {
  font-family: 'Hind', sans-serif;
}

.notoserif {
  font-family: 'Noto Serif JP', serif;
}


/*animate.css動作*/
.animated {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 0.2s;
}

/*範囲に入ってから動作開始までの遅延時間（秒）*/
.animate_delay {
  animation-delay: 0.2s;
}

.animate_duration {
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
}

/*inview.js要素の初期表示*/
.iv,
.ivo {
  visibility: hidden;
}

.object_fit {
  object-fit: cover;
  font-family: 'object-fit: cover;'
}

/*hoverアニメーション（拡大）*/
.hover_ptn01 {
  overflow: hidden;
}

.hover_ptn01 img {
  transition: .5s all;
}

.hover_ptn01:hover img,
a:hover .hover_ptn01 img {
  transform: scale(1.2, 1.2);
  opacity: 0.7;
}

/*タイトルパターン*/

.title_ptn01 {
  color: #000000;
  font-family: 'Noto Serif JP', serif;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.26em;
  text-align: center;
}

h3.title_ptn01 {
  font-size: 25px;
  letter-spacing: 0.14em;
}

.title_ptn02 {
  position: relative;
  display: block;
  max-width: 400px;
  width: 100%;
  font-family: 'Noto Serif JP', serif;
  font-size: 30px;
  line-height: 49px;
  letter-spacing: 0.26em;
  padding: 19px 5px 21px 45px;
  margin: 0;
  z-index: 1;
}

.title_ptn02::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 98%;
  transform: skewX(-9deg);
  z-index: -1;
}

.title_ptn02.bg_white {
  color: #3E3A39;
}

.title_ptn02.bg_red {
  max-width: 507px;
  color: #fff;
  font-size: 40px;
  line-height: 60px;
  letter-spacing: 0.12em;
  padding: 19px 5px 24px 45px;
  margin-left: 17px;
}

.title_ptn02.bg_white::before {
  background: #fff;
}

.title_ptn02.bg_red::before {
  background-color: #962C46;
}

/*ボタンデザイン*/

.more_btn {
  max-width: 142px;
  margin: 0 0 0 auto;
}

.more_btn a,
.more_btn>span {
  position: relative;
  color: #962C46;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.13em;
  padding-right: 104px;
}

.more_btn a::before,
.more_btn>span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 97px;
  height: 6px;
  background: url(../img/common/arrow_right01.svg) no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.more_btn a:hover::before,
.more_btn>span:hover::before {
  right: -10px;
}

.btn_ptn01 {
  max-width: 280px;
  width: 100%;
}

.btn_ptn01 a,
.btn_ptn01>span {
  position: relative;
  display: block;
  width: 100%;
  background: #962C46;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.07em;
  padding: 10px;
  text-align: center;
  transition: all 0.3s;
}

.btn_ptn01 a:hover,
.btn_ptn01>span:hover {
  background: #C3264D;
}

.btn_ptn01 a::before,
.btn_ptn01>span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  display: block;
  width: 27.5px;
  height: 5px;
  background: url(../img/common/arrow_right_white.svg) no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.btn_ptn01 a:hover::before,
.btn_ptn01>span:hover::before {
  right: 0;
}


.btn_ptn02 {
  max-width: 280px;
  width: 100%;
}

.btn_ptn02 a,
.btn_ptn02>span {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  border: 1px solid #727171;
  color: #727171;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.07em;
  padding: 9px 10px;
  text-align: center;
  transition: all 0.3s;
}

.btn_ptn02 a:hover,
.btn_ptn02>span:hover {
  border: 1px solid #962C46;
  color: #962C46;
}

.btn_ptn02 a::before,
.btn_ptn02>span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  display: block;
  width: 27.5px;
  height: 5px;
  background: url(../img/common/arrow_right_gray03.svg) no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.btn_ptn02 a:hover::before,
.btn_ptn02>span:hover::before {
  right: 0;
  background: url(../img/common/arrow_right_red.svg) no-repeat;
  background-size: contain;
}




/*コンテンツレイアウトパターン*/
.bg_skew_ptn01 {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  top: 0;
}

.bg_skew_ptn01::before {
  content: '';
  position: absolute;
  top: 42px;
  bottom: 0;
  left: 0;
  right: 0;
  height: 82%;
  background-color: #962C46;
  transform: skewY(4deg);
  z-index: -1;
}

/*ページ下部共通コンテンツ*/

/*カテゴリーカラー*/
.color_infomation {
  background-color: #962C46;
}

.color_conference {
  background-color: #317199;
}

.color_event {
  background-color: #CE7346;
}

.color_media {
  background-color: #458F31;
}

.news_category_list li .news_category.cate_all_info::before {
  background-color: #F5F2EE;
}

.news_category_list li .news_category.cate_infomation::before {
  background-color: #962C46;
}

.news_category_list li .news_category.cate_conference::before {
  background-color: #317199;
}

.news_category_list li .news_category.cate_event::before {
  background-color: #CE7346;
}

.news_category_list li .news_category.cate_media::before {
  background-color: #458F31;
}

.color_red {
  color: #962C46;
}

.color_blue {
  color: #2EA7D2;
}

.color_orange {
  color: #E69100;
}

.bg_beige {
  background: #F5F2EE;
}

.bg_beige02 {
  background: #F8F6F3;
}


/*「備前化成を知る」スライダー*/
/*slickの矢印*/
#profile_area button.slick-arrow {
  position: absolute;
  top: 50%;
  border: none;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0);
  text-indent: -9999px;
  width: 30.1px;
  height: 69.4px;
  padding: 0;
  /* transform: translateY(-50%); */
  transform: rotate(5deg);
  z-index: 2;
}

#profile_area button.slick-prev.slick-arrow {
  background: url(../img/common/slider_arrow_prev.svg) no-repeat left top;
  background-size: 100% auto;
  top: 37%;
  left: -55px;
}

#profile_area button.slick-next.slick-arrow {
  background: url(../img/common/slider_arrow_next.svg) no-repeat right top;
  background-size: 100% auto;
  top: 40%;
  right: -55px;
}

/*END　slickの矢印*/

/*slickのドット*/

#profile_area .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 950px;
  margin-top: -15px;
  transform: rotate(5deg);
}

#profile_area .slick-dots>li {
  width: 10px;
  height: 10px;
  background: #DCDDDD;
  border-radius: 50%;
  font-size: 0;
  margin: 0 10px;
  cursor: pointer;
}

#profile_area .slick-dots>li.slick-active {
  background: #962C46;
}

/*END slickのドット*/

#profile_area {
  background: url(../img/common/bg_profile.png) no-repeat top right;
  background-size: 92.19% auto;
  /*padding-bottom: 130px;*/
  padding-bottom: 32px;
}

#profile_area .contents_in {
  max-width: 1280px;
  width: 100%;
  overflow: hidden;
}

#profile_area .profile_slider {
  position: relative;
  max-width: 990px;
  width: 90%;
  /* margin: -20px auto 0; */
  margin: 0 auto;
  transform: rotate(-5deg);
  padding: 0 0 50px;
}

#profile_area .profile_slider li.slider_item {
  max-width: 280px;
  width: 28.28%;
  padding-bottom: 15px;
  /* margin: 0 25px; */
  margin: 40px 25px 30px;
  transform: rotate(5deg);
}

/* #profile_area .profile_slider li.slider_item.slick-slide.slick-current.slick-active {
  padding-top: 130px;
}

#profile_area .profile_slider li.slider_item.slick-slide.slick-current.slick-active+li.slick-active {
  padding-top: 50px;
} */

#profile_area .profile_slider li.slider_item a {
  display: block;
  width: 100%;
  background: #fff;
  box-shadow: 0px 3px 10px 3px rgb(51 51 51 / 20%);
}

#profile_area .profile_slider li.slider_item .cnt_text {
  color: #962C46;
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  line-height: 40px;
  letter-spacing: 0.14em;
  min-height: 215px;
  padding: 21.7px 26px;
}

#profile_area .title_ptn01 {
  line-height: 49px;
  padding: 57px 0 0 173px;
  text-align: left;
}


/*END「備前化成を知る」スライダー*/


/*サプリメント素材一覧*/

#raw_material_list {
  border-top: 1px solid #707070;
  padding: 60px 0 50px;
}

#raw_material_list .material_list_title {
  color: #140B0B;
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 26px;
}

#raw_material_list .material_g {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 29px;
}

#raw_material_list .material_g .cnt_box {
  max-width: 326px;
  width: 32.6%;
}

#raw_material_list a:hover {
  opacity: 0.8;
}

#raw_material_list .material_g .cnt_box a {
  position: relative;
  display: flex;
}

#raw_material_list .material_g .cnt_box .attention {
  position: absolute;
  top: -9px;
  left: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #fff;
  border: 2px solid #7A0E2A;
  border-radius: 50%;
  color: #7A0D29;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
}

#raw_material_list .material_g .cnt_box .cnt_img {
  width: 29.75%;
}

#raw_material_list .material_g .cnt_box .cnt_img img.object_fit {
  min-height: 130px;
}

#raw_material_list .material_g .cnt_box .cnt_text {
  width: 70.25%;
  color: #fff;
  background: #962C46;
  padding: 15px 3px 12px 13px;
}

#raw_material_list .material_g .cnt_box .cnt_text .sub_title {
  font-feature-settings: "palt";
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 2px;
}

#raw_material_list .material_g .cnt_box .cnt_text .function {
  color: #FFFF89;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
}

#raw_material_list .material_g .cnt_box .cnt_text .name {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}

#raw_material_list .functional_display {
  position: absolute;
  bottom: 5px;
  right: 5px;
  display: inline-block;
  background: #fff;
  color: #962C46;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  padding: 2.5px 4.5px;
}

#raw_material_list .material_g02 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#raw_material_list .material_g02 .cnt_box {
  max-width: 242px;
  width: 24.2%;
  margin-bottom: 9px;
}

#raw_material_list .material_g02 .cnt_box a {
  position: relative;
  display: flex;
  width: 100%;
}

#raw_material_list .material_g02 .cnt_box .cnt_img {
  width: 19.83%;
}

#raw_material_list .material_g02 .cnt_box .cnt_text {
  display: flex;
  align-items: center;
  width: 80.17%;
  color: #962C46;
  background: #F5F2EE;
  padding: 13px 5px 13.98px 7.9px;
}

#raw_material_list .material_g02 .cnt_box .name {
  font-size: 16px;
  line-height: 21px;
}

/*ENDサプリメント素材一覧*/

/*----------
02.ヘッダー
----------*/


header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  transition: .3s;
  z-index: 999;
}

header .contents_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* max-width: 1280px; */
  max-width: none;
  width: 100%;
  height: 100%;
}

header .logo {
  max-width: 273.6px;
  width: 21.33%;
  margin: 19px 0 17px 20px;
}

header .menu_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*max-width: 860px;*/
  max-width: 920px;
  width: calc(100% - 240px);
}

header .language {
  max-width: 70px;
  width: 8.24%;
  margin-left: 2%;
}

header .language a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #962C46;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 0 13px;
}

header .language a:hover {
  background: #C3264D;
}

header .menu_g {
  display: flex;
  align-items: center;
  max-width: 860px;
  margin: 0 0 0 auto;
}

header .menu_g .menu_list {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .menu_g .menu_list>li {
  /*margin: 0 20px;*/
  margin: 0 15px;
}

header .menu_g .menu_list>li>a,
header .menu_g .menu_list>li>span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  color: #000000;
  /*font-size: 13px;*/
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.09em;
  transition: all 0.3s;
  cursor: pointer;
}

header .menu_g .menu_list>li>a::after,
header .menu_g .menu_list>li>span::after {
  position: absolute;
  content: "";
  display: block;
  height: 2px;
  background-color: #962C46;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

header .menu_g .menu_list li:hover a::after,
header .menu_g .menu_list li:hover span::after {
  visibility: visible;
  opacity: 1;
}

header .nav_item:hover .sub_item_block {
  opacity: 1;
  visibility: visible;
}

header .sub_item_block {
  position: absolute;
  top: 80px;
  left: 0;
  max-width: none;
  width: 100vw;
  /* height: 410px; */
  height: 450px;
  /* background: #F5F2EE; */
  background: #f9ebd9;
  padding: 60px 60px 80px;
  opacity: 0;
  transition: all 0.2s ease;
  visibility: hidden;
}

header .sub_item_block .inner {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

header .sub_item_block .sub_list {
  display: flex;
  max-width: 720px;
  width: calc(100% - 28%);
  flex-direction: column;
  flex-wrap: wrap;
  height: 300px;
}

header .sub_item_block .sub_list li {
  /* width: 100%; */
  margin-right: 7.5%;
}

/*サプリメントを<br>お考えのお客様へ*/
header .sub_item_block .sub_list.nav_menu01 {
  height: 200px;
  max-width: 530px;
}

header .sub_item_block .sub_list.nav_menu01 li {
  /*max-width: 200px;*/
  max-width: 185px;
  width: 35%;
}

/*サプリメント素材一覧*/
header .sub_item_block .sub_list.nav_menu02 li {
  max-width: 185px;
  width: 35%;
}

/*原薬EPAオメガ3系脂肪酸試薬*/
header .sub_item_block .sub_list.nav_menu03 li {
  max-width: 255px;
  width: 35.5%;
}

/*研究開発*/
header .sub_item_block .sub_list.nav_menu04 li {
  max-width: 180px;
}

/*会社案内*/
header .sub_item_block .sub_list.nav_menu05 li {
  max-width: 275px;
  width: 38.2%;
}

/*安心・安全（品質管理）内*/
header .sub_item_block .sub_list.nav_menu07 li {
  max-width: 185px;
  width: 35%;
}

header .sub_item_block .sub_list li a,
header .sub_item_block .btn_link li span {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(150, 44, 70, 0.3);
  color: #962C46;
  font-size: 15px;
  line-height: 33px;
  letter-spacing: 0.09em;
  padding: 7px 15px 0 0;
  transition: all 0.3s;
  cursor: pointer;
}

header .sub_item_block .btn_link li a span {
  line-height: 22px;
  padding: 10px 15px 4px 0;
}

header .sub_item_block .sub_list li a::after,
header .sub_item_block .btn_link li span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  display: block;
  width: 13px;
  height: 3px;
  background: url(../img/common/arrow_right_menu.svg) no-repeat;
  background-size: contain;
  transform: translateX(-50%);
  transition: all 0.3s;
}

header .sub_item_block .sub_list li a:hover,
header .sub_item_block .btn_link li a:hover {
  opacity: 0.8;
}

header .sub_item_block .sub_list li a:hover::after,
header .sub_item_block .btn_link li span:hover::after {
  right: -10px;
}

header .sub_item_block .btn_link {
  max-width: 240px;
  width: 24%;
}

header .sub_item_block .btn_link li:nth-child(n+2) {
  margin-top: 25px;
}

header .btn_fix_contact {
  position: fixed;
  top: 74%;
  right: 0;
  width: 56px;
  height: 265px;
  border-radius: 20px 0 0 20px;
  transform: translateY(-50%);
}

header .btn_fix_contact a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 20px 0 0 20px;
  background: #962C46;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  padding: 0 0 30px;
}

header .btn_fix_contact a:hover {
  background: #C3264D;
}

header .btn_fix_contact a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: block;
  background: url(../img/common/icon_mail.svg) no-repeat;
  background-size: contain;
  width: 21px;
  height: 16px;
  transform: translateX(-50%);
}

/*END header*/


/*スポンサー*/
#sponsor_area {
  border-top: 2px solid #C5C6C6;
  padding: 18px 0 47px;
}

#sponsor_area .title_ptn01 {
  text-align: left;
  max-width: 1120px;
  margin: 0 auto 17px;
}

#sponsor_area .sponsor_g {
  display: flex;
  justify-content: space-between;
  max-width: 920px;
}

#sponsor_area .sponsor_g .sponsor_img:nth-child(1) {
  max-width: 275px;
  width: 29.89%;
}

#sponsor_area .sponsor_g .sponsor_img:nth-child(2) {
  max-width: 275px;
  width: 29.89%;
}

#sponsor_area .sponsor_g .sponsor_img:nth-child(3) {
  max-width: 152px;
  width: 16.52%;
}

#sponsor_area .sponsor_g .sponsor_img:nth-child(4) {
  max-width: 113px;
  width: 12.28%;
}

@media only screen and (max-width:1280px) {
  #sponsor_area .title_ptn01 {
    width: 94%;
  }

}



/*----------
03.フッター
----------*/

footer {
  position: relative;
  background-color: #8F2B44;
  color: #fff;
  padding: 36px 0 19px;
  overflow: hidden;
}

footer .contents_in {
  max-width: 965px;
}

footer .footer_nav {
  margin: 0 auto 30px;
}

footer a {
  display: block;
  color: #fff;
}

footer .cnt_g {
  display: flex;
  justify-content: space-between;
}

footer .list_block {
  margin: 0 0 0 2.12%;
}

footer .list_block .list_box {
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  padding-left: 18px;
}

footer .list_block:last-child {
  margin-right: 0;
}

footer .list_block .list_box>a {
  font-size: 16.3px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 18px;
}

footer .small_list {
  margin-bottom: 20px;
}

footer .small_list a {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.756;
  margin-bottom: 3px;
}

/* footer-sns */
.footer_sns {
  background-color: #BEA481;
  margin: 0 calc(50% - 50vw) 2em;
  width: 100vw;
  padding: 0.7em 0;
  color: #8F2B44;
}

.footer_sns-cts {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 10px 50px;
  font-size: 16.3px;
  line-height: 1.6;
}

.footer_sns-cts p {
  border-right: 1px solid rgba(143, 43, 68, 1);
  padding-right: 1.5em;
  font-weight: 700;
}

.footer_sns-cts a.sns_icon {
  display: flex;
  align-items: center;
  margin-left: 1.4em;
  color: #8F2B44;
  font-weight: 500;
}

.footer_sns-cts a.sns_icon:hover {
  filter: brightness(1.5);
}

.footer_sns-cts a.sns_icon img {
  margin-right: 10px;
  width: 30px;
}

footer .footer_bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-left: 2.12%;
}

footer .footer_bottom .footer_logo {
  max-width: 273.06px;
  width: 28.3%;
}

footer small.copyright {
  display: block;
  width: calc(100% - 28.3%);
  background: #912c44;
  font-size: 12px;
  line-height: 1;
  text-align: right;
  padding: 0 15px;
}


footer .page_top {
  position: absolute;
  right: 0;
  bottom: 0;
  /* display: none; */
  width: 90px;
  height: 90px;
}

footer .page_top.sp {
  display: none !important;
}

footer .page_top a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/assets/img/common/page_top.svg) no-repeat center center;
  background-size: 90px auto;
}





/*----------
04.下層共通
----------*/

/*下層ページタイトル上画像*/
.under_page .page_header {
  position: relative;
  margin-bottom: 23px;
}

/*ぱんくずリスト*/

.breadcrumb_area {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 94%;
  margin: 0 auto;
}

.breadcrumb {
  /* max-width: 1192px;*/
  margin: 0 auto 0 0;
}

.breadcrumb ul {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-feature-settings: "palt";
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.05em;
}

.breadcrumb ul li {
  color: #000;
}

.breadcrumb ul li a {
  color: #962C46;
  position: relative;
  transition: all 0.3s;
}

.breadcrumb ul li a:hover {
  opacity: 0.7;
}

.breadcrumb li a::after {
  content: "＞";
  display: inline-block;
  color: #000;
  margin: 0 1.5em;
}


/*お問い合わせはコチラ！ボタン*/
.under_page .btn_ptn01.btn_contact {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}

.under_page .btn_ptn01.btn_contact a {
  font-size: 30px;
  font-weight: 700;
  line-height: 44px;
  padding: 28px 30px;
}

.under_page .btn_ptn01.btn_contact a::before {
  right: 30px;
  width: 125.5px;
  height: 10px;
  background: url(../img/common/arrow_right_white_big.svg) no-repeat;
  background-size: contain;
}

.under_page .btn_ptn01.btn_contact a:hover::before {
  right: 10px;
}

/*下層ページパンくず下テキスト*/
.under_page .attention_text {
  max-width: 460px;
  color: #231815;
  font-size: 13px;
  line-height: 17px;
  text-align: right;
  margin: 0 0 0 auto;
}


/*下層ページタイトル*/

/*タイトル画像なし*/
.page_title01 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 0.16em;
  padding: 110px 0 103px;
}

/*-----------------
manufacturing/profile
下層ページメニュースライダー
--------------------*/

.underlayer_slider_area {
  padding: 40px 0 160px;
}

.underlayer_slider_area .slider_title {
  font-size: 30px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
  margin-bottom: 46px;
}

.underlayer_slider_area .underlayer_slider {
  max-width: 972px;
  width: 100%;
  margin: auto;
}

.underlayer_slider_area .underlayer_slider .slider_item {
  max-width: 295px;
  width: 45.52%;
  margin: 0 14.5px;
}

.underlayer_slider_area .underlayer_slider .slider_item .cnt_text {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  padding-top: 10px;
}

/*slickの矢印*/
.underlayer_slider button.slick-arrow {
  position: absolute;
  top: 37%;
  border: none;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0);
  text-indent: -9999px;
  width: 30.1px;
  height: 69.4px;
  padding: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.underlayer_slider button.slick-prev.slick-arrow {
  background: url(../img/common/slider_arrow_prev.svg) no-repeat left top;
  background-size: 100% auto;
  left: -65px;
}

.underlayer_slider button.slick-next.slick-arrow {
  background: url(../img/common/slider_arrow_next.svg) no-repeat right top;
  background-size: 100% auto;
  right: -65px;
}

/*END　slickの矢印*/


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

  /*----------
01.共通
----------*/
  .contents_in {
    width: 94%;
  }

}


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


  /*----------
01.共通 1280
----------*/

  .title_ptn02.bg_red {
    width: 41.016vw;
    font-size: 3.125vw;
    line-height: 4.688vw;
    padding: 1.484vw 0.391vw 1.875vw 4.297vw;
    margin-left: 1.328vw;
  }

  .title_ptn02 {
    width: 32.031vw;
    font-size: 2.344vw;
    line-height: 3.828vw;
    padding: 1.484vw 0.391vw 1.641vw 3.516vw;
  }

  /*「備前化成を知る」スライダー*/

  #profile_area button.slick-prev.slick-arrow {
    left: -30px;
  }

  #profile_area button.slick-next.slick-arrow {
    right: -30px;
  }

  #profile_area .profile_slider {
    width: 88%;
  }

  #profile_area .profile_slider li.slider_item .cnt_text {
    font-size: 24px;
  }

  /*END「備前化成を知る」スライダー*/

  /*サプリメント素材一覧*/
  #raw_material_list .material_g .cnt_box .cnt_text .name {
    font-size: 18px;
    line-height: 26px;
  }

  #raw_material_list .material_g .cnt_box .cnt_text .sub_title {
    font-size: 12px;
    line-height: 16px;
  }

  #raw_material_list .material_g .cnt_box .cnt_text .function {
    font-size: 12px;
    line-height: 16px;
  }

  #raw_material_list .material_g .cnt_box .cnt_img img.object_fit {
    min-height: 120px;
  }

  /*ENDサプリメント素材一覧*/


  /*----------
  02.ヘッダー 1280
  ----------*/

  header .menu_g .menu_list>li {
    margin: 0 8px;
  }

  header .btn_fix_contact {
    width: 4.375vw;
    height: 27.344vw;
  }

  header .btn_fix_contact a {
    border-radius: 1.563vw 0 0 1.563vw;
    font-size: 1.563vw;
    padding: 0 0 2.344vw;
  }

  header .btn_fix_contact a::after {
    bottom: 3.9vw;
    width: 2.047vw;
    height: 1.453vw;
  }

  header .sub_item_block .sub_list li a,
  header .sub_item_block .btn_link li span {
    font-size: 14px;
  }

  /*----------
03.フッター 1280
----------*/


  /*----------
04.下層共通 1280
----------*/


  /*ぱんくずリスト*/
  .breadcrumb_area {
    display: block;
  }

  .breadcrumb ul {
    margin-bottom: 10px;
  }



  /*-----------------------
manufacturing/profile
下層ページメニュースライダー 1280
---------------------------*/
  .underlayer_slider_area .contents_in {
    width: 86%;
  }

  .underlayer_slider button.slick-prev.slick-arrow {
    left: -35px;
  }

  .underlayer_slider button.slick-next.slick-arrow {
    right: -35px;
  }




}

@media only screen and (max-width:1024px) {
  /*----------
01.共通 1024
----------*/


  .page_title01 {
    font-size: 32px;
    line-height: 46px;
  }




  /*「備前化成を知る」スライダー*/

  #profile_area button.slick-prev.slick-arrow {
    left: -30px;
  }

  #profile_area button.slick-next.slick-arrow {
    right: -30px;
  }

  #profile_area .profile_slider li.slider_item {
    /* width: 31.5%; */
    width: 28.5%;
    margin: 1% 20px;
  }

  #profile_area .title_ptn01 {
    padding: 4.453vw 0 0 13.516vw;
  }

  #profile_area .profile_slider li.slider_item .cnt_text {
    font-size: 17px;
    line-height: 32px;
    min-height: 160px;
    padding: 15px;
  }

  /*END「備前化成を知る」スライダー*/

  /*サプリメント素材一覧*/
  #raw_material_list .material_list_title {
    font-size: 28px;
  }

  #raw_material_list .material_g .cnt_box .attention {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  #raw_material_list .material_g .cnt_box .cnt_text {
    padding: 5% 1% 1% 4%;
  }

  #raw_material_list .material_g .cnt_box .cnt_text .sub_title {
    font-size: 10px;
    line-height: 13px;
  }

  #raw_material_list .material_g .cnt_box .cnt_text .function {
    font-size: 10px;
    line-height: 13px;
  }

  #raw_material_list .material_g .cnt_box .cnt_text .name {
    font-size: 15px;
    line-height: 24px;
  }

  #raw_material_list .functional_display {
    font-size: 10px;
  }

  #raw_material_list .material_g02 .cnt_box .cnt_text {
    padding: 7px 4px 7px 7px;
  }

  #raw_material_list .material_g02 .cnt_box .name {
    font-size: 13px;
    line-height: 16px;
  }

  #raw_material_list .material_g .cnt_box .cnt_img img.object_fit {
    min-height: 100px;
  }

  /*ENDサプリメント素材一覧*/

  /*----------
02.ヘッダー 1024
----------*/

  header .menu_block {
    width: calc(100% - 185px);
  }

  header .menu_g .menu_list>li {
    margin: 0 6px;
  }

  header .menu_g .menu_list>li>a,
  header .menu_g .menu_list>li>span {
    font-size: 11.5px;
    letter-spacing: 0;
  }

  header .sub_item_block {
    padding: 30px 30px 60px;
  }

  header .sub_item_block .sub_list li a,
  header .sub_item_block .btn_link li span {
    font-size: 12px;
  }

  header .sub_item_block .sub_list.nav_menu02 li {
    width: 29%;
  }

  header .sub_item_block .sub_list.nav_menu03 li {
    width: 38.5%;
  }

  header .sub_item_block .sub_list.nav_menu05 li {
    width: 42.2%;
  }

  /*----------
03.フッター 1024
----------*/
  footer .contents_in {
    max-width: 840px;
  }

  footer .cnt_g {
    justify-content: space-between;
  }

  footer .list_block {
    margin: 0 1% 0 0;
  }

  footer .list_block .list_box {
    padding-left: 10px;
  }

  footer .list_block .list_box>a {
    font-size: 14px;
  }

  footer .list_block:first-of-type .list_box>a {
    font-size: 13px;
  }

  footer .footer_bottom {
    padding-left: 0;
  }

  footer .small_list a {
    font-size: 11.5px;
  }

  footer small.copyright {
    padding: 0 80px 0 0;
  }

  /*----------
04.下層共通 1024
----------*/

  /*お問い合わせはコチラ！ボタン*/
  .under_page .btn_ptn01.btn_contact {
    max-width: 660px;
  }

  .under_page .btn_ptn01.btn_contact a {
    font-size: 26px;
    padding: 24px 30px;
  }

}


/*--------------
 ヘッダー 1000からハンバーガー
 ----------------*/

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

  header {
    position: absolute;
    background: #fff;
  }

  header .pc {
    display: none;
  }

  header .sp {
    display: block;
  }

  .logo {
    max-width: 242.72px;
    width: 45.333vw;
    margin: 2.933vw 0 2.533vw 3.16vw;
  }

  /*ハンバーガーボタン*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    width: 67.5px;
    height: 67.5px;
    background: #962C46;
    padding: 8px 15.5px 14px;
    cursor: pointer;
  }

  .openbtn p {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
  }

  .openbtn span {
    display: inline-block;
    background-color: #fff;
    border-radius: 2px;
    transition: all .4s;
    position: absolute;
    top: 36px;
    left: 17px;
    width: 33px;
    height: 1px;
  }

  .openbtn span:nth-of-type(1) {
    top: 36px;
  }

  .openbtn span:nth-of-type(2) {
    top: 48px;
  }

  .openbtn span:nth-of-type(3) {
    top: 59px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 48px;
    width: 38px;
    transform: rotate(-45deg);
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 48px;
    width: 38px;
    transform: rotate(45deg);
  }

  /*END　ハンバーガーボタン*/


  nav {
    width: auto;
    height: auto;
    padding-top: 0;
    background: transparent;
    position: initial;
    top: 0;
    left: 0;
    z-index: 10;
    transform: initial;
    transition: initial;
  }

  nav li {
    color: inherit;
    text-align: inherit;
    font-family: inherit;
    padding: 0;
  }

  header {
    height: 45px;
  }

  header .logo {
    /*max-width: 136.5px;*/
    max-width: 150.15px;
    width: 100%;
    margin: 11px 0 12px 12.5px;
  }

  header .menu_g {
    position: fixed;
    top: 0;
    left: -100%;
    display: none;
    display: block;
    height: 100vh;
    max-width: none;
    width: 100%;
    background-color: #fff;
    padding: 0;
    z-index: 999;
    transition: all 0.5s;
  }

  header .menu_g.active {
    left: 0;
  }

  header .menu_g .sub_item_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DCDDDD;
  }

  header .menu_g .sub_item_header .logo {
    max-width: 145px;
    margin: 11px 0 11px 12.5px;
  }

  header .menu_g .menu_list {
    position: relative;
    display: block;
  }

  header .menu_g .menu_list>li {
    margin: 0;
  }

  .menu_list>li.nav_item.menu_en {
    margin-top: 5px;
  }

  header .menu_g .menu_list>li>a,
  header .menu_g .menu_list>li>span,
  header .sub_item_block .sub_list li a {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #DCDDDD;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0;
    padding: 2px 0 2px 20px;
  }

  /* header .menu_g .menu_list>li:first-of-type>span {
    line-height: 30px;
  } */

  header .menu_g .menu_list>li.nav_item.menu_privacypolicy>a {
    font-weight: 400;
    border-bottom: none;
  }

  .menu_list>li.nav_item.menu_en>a {
    width: 110px;
    border: 1px solid #231815;
    line-height: 30px;
    padding: 0 0 0 23px;
    margin-left: 20px;
  }

  header .menu_g .menu_list li a::after,
  header .menu_g .menu_list li span::after {
    display: none;
  }

  header .menu_g .menu_list li a::before,
  header .menu_g .menu_list li span::before,
  header .sub_item_block .sub_list li a::before {
    content: '';
    width: 9px;
    height: 9px;
    border-top: solid 1px #962C46;
    border-right: solid 1px #962C46;
    position: absolute;
    right: 14px;
    top: 17px;
    transform: rotate(45deg);
  }

  header .menu_g .menu_list li.nav_item.menu_privacypolicy>a::before {
    display: none;
  }

  header .menu_g .menu_list li.nav_item.menu_en>a::before {
    right: 11px;
    top: 10px;
  }

  header .menu_g .menu_list li.nav_item .sub_item_menu a::before {
    display: none;
  }

  header .menu_g .menu_list li.nav_item .btn_back {
    position: relative;
    width: 100px;
    color: #962C46;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
  }

  header .menu_g .menu_list li.nav_item .btn_back::before {
    content: '';
    width: 9px;
    height: 9px;
    border-top: solid 1px #962C46;
    border-right: solid 1px #962C46;
    position: absolute;
    left: -13px;
    top: 2px;
    transform: rotate(-135deg);
  }

  header .menu_g .menu_list li.nav_item .logo a::before {
    display: none;
  }

  header .menu_g .menu_list .sub_item_block {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 0;
    z-index: 1;
    transition: all 0.5s;
    transform: initial;
    opacity: 1;
    visibility: visible;
  }

  header .menu_g .menu_list .sub_item_block.active {
    left: 0;
  }

  header .sub_item_block .inner {
    height: calc(100vh - 126px);
    overflow-y: scroll;
  }

  header .sub_item_block .sub_item_list {
    padding: 0;
  }

  header .menu_g .menu_list li {
    margin: 0;
  }

  header .sub_item_block .sub_list {
    display: block;
    max-width: none;
    width: 100%;
    height: auto;
  }

  header .sub_item_block .sub_list.nav_menu01 {
    max-width: none;
  }

  header .sub_item_block .sub_list.nav_menu01 li,
  header .sub_item_block .sub_list.nav_menu02 li,
  header .sub_item_block .sub_list.nav_menu03 li,
  header .sub_item_block .sub_list.nav_menu04 li,
  header .sub_item_block .sub_list.nav_menu05 li,
  header .sub_item_block .sub_list.nav_menu07 li {
    max-width: none;
    width: 100%;
  }

  header .sub_item_block .sub_list li:nth-child(n+2) a {
    font-weight: 400;
    padding-left: 34px;
  }

}



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

  /*----------
01.共通 767
----------*/
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .contents_in {
    width: calc(100% - 13.333vw);
  }

  main {
    padding-top: 45px;
  }

  /*ページ共通コンテンツ*/

  .title_ptn01 {
    font-size: 20px;
    line-height: 28.5px;
  }

  .more_btn {
    max-width: 88.5px;
  }

  .more_btn a,
  .more_btn>span {
    padding-right: 52px;
  }

  .more_btn a::before,
  .more_btn>span::before {
    width: 49px;
    height: 3px;
    background: url(../img/common/arrow_right01_sp.svg) no-repeat;
    background-size: contain;
  }

  .btn_ptn01 a,
  .btn_ptn01>span {
    font-size: 12px;
    padding: 10px 20px 10px 5px;
  }

  .btn_ptn02 a,
  .btn_ptn02>span {
    font-size: 12px;
    padding: 9px 20px 9px 5px;
  }

  .bg_skew_ptn01::before {
    top: 14px;
    height: 90%;
  }

  .title_ptn02 {
    max-width: none;
    width: 66.667vw;
    font-size: 5.333vw;
    line-height: 8.267vw;
    letter-spacing: 0.22em;
    padding: 3.36vw 3.733vw 4vw 3.733vw;
  }

  h3.title_ptn01 {
    font-size: 17.5px;
    line-height: 25px;
  }


  /*「備前化成を知る」スライダー*/

  #profile_area {
    background: url(../img/common/bg_profile_sp.png) no-repeat top right;
    background-size: 100% auto;
    padding-bottom: 60px;
  }

  #profile_area .title_ptn01 {
    font-size: 20px;
    line-height: 28.5px;
    padding: 50px 0 34.5px;
    text-align: center;
  }

  #profile_area .profile_slider {
    width: 80%;
    padding: 0;
    margin: 0 auto;
    transform: rotate(0deg);
  }

  #profile_area .profile_slider li.slider_item {
    width: 45%;
    margin: 0 0.25%;
    transform: rotate(0deg);
  }

  #profile_area button.slick-arrow {
    width: 15px;
    height: 34.7px;
    padding-bottom: 73px;
    transform: translateY(-50%);
  }

  #profile_area button.slick-next.slick-arrow {
    top: 50%;
    right: -18px;
  }

  #profile_area button.slick-prev.slick-arrow {
    top: 50%;
    left: -18px;
  }

  #profile_area .slick-dots {
    margin-top: 19px;
    transform: rotate(0deg);
  }

  #profile_area .slick-dots>li {
    margin: 0 17px;
  }

  #profile_area .profile_slider li.slider_item.slick-slide.slick-current.slick-active,
  #profile_area .profile_slider li.slider_item.slick-slide.slick-current.slick-active+li.slick-active {
    padding-top: 0;
  }

  #profile_area .profile_slider li.slider_item a {
    box-shadow: 0px 2px 6px 1px rgb(51 51 51 / 20%);
  }

  #profile_area .profile_slider li.slider_item .cnt_text {
    font-size: 14px;
    line-height: 20px;
    min-height: 80px;
    padding: 10px 13px;
  }

  /*END「備前化成を知る」スライダー*/




  /*サプリメント素材一覧*/

  #raw_material_list .material_list_title {
    font-size: 20px;
    line-height: 28.5px;
    margin-bottom: 20px;
  }

  #raw_material_list .material_g {
    display: block;
    margin: 0 auto 20px;
  }

  #raw_material_list .material_g .cnt_box {
    width: 100%;
    margin: 0 auto 15px;
  }

  #raw_material_list .material_g .cnt_box .cnt_text {
    padding: 5% 3px 2% 15px;
  }

  #raw_material_list .material_g .cnt_box .cnt_text .sub_title {
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 4px;
  }

  #raw_material_list .material_g .cnt_box .cnt_text .function {
    font-size: 12px;
    line-height: 17.5px;
    margin-bottom: 0;
  }

  #raw_material_list .material_g .cnt_box .cnt_text .name {
    font-size: 17px;
    line-height: 24.5px;
  }

  #raw_material_list .material_g .cnt_box .attention {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  #raw_material_list .material_g02 .cnt_box {
    width: 49%;
    margin-bottom: 9px;
  }

  #raw_material_list .material_g02 .cnt_box .name {
    font-size: 12px;
  }

  #raw_material_list .material_g .cnt_box .cnt_img img.object_fit {
    min-height: 120px;
  }

  /*ENDサプリメント素材一覧*/


  /*----------
02.ヘッダー 767
----------*/


  /*----------
03.フッター 767
----------*/

  footer {
    padding: 28px 0 24px;
  }

  footer .footer_nav {
    max-width: 315px;
    margin: 0 auto 25px;
  }

  footer .footer_nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  footer .footer_nav ul li a {
    position: relative;
    font-size: 11px;
    padding-left: 11px;
    margin: 5px 0;
  }

  footer .footer_nav ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 5px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: rotate(45deg);
  }

  footer .footer_bottom {
    display: block;
  }

  footer .footer_bottom .footer_logo {
    max-width: 220px;
    width: 67.67%;
    margin: 0 auto 16px;
  }

  footer small.copyright {
    display: block;
    width: 100%;
    font-size: 10px;
    transform: scale(0.8);
    transform-origin: center bottom;
    text-align: center;
    padding: 0;
  }

  footer .page_top {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 55px;
    z-index: 99;
  }

  footer .page_top.pc {
    display: none !important;
  }

  footer .page_top.sp {
    display: block !important;
  }

  footer .page_top a {
    position: relative;
    display: block;
    width: 100%;
    background: #F5F2EE;
    color: #962C46;
    font-size: 10px;
    line-height: 12.3px;
    text-align: center;
    padding-top: 25px;
  }

  footer .page_top a::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    display: block;
    width: 4px;
    height: 12.7px;
    background: url(../img/common/pagetop_arrow_sp.svg) no-repeat;
    background-size: contain;
    transform: translateX(-50%);
  }

  .footer_sns {
    padding: 0.5em 0;
  }

  .footer_sns-cts {
    font-size: 13px;
    padding: inherit;
  }





  /*----------
04.下層共通 767
----------*/

  /*下層ページタイトル上画像*/
  .under_page .page_header {
    margin-bottom: 10px;
  }

  /*ぱんくずリスト*/

  .breadcrumb_area {
    width: calc(100% - 13.333vw);
  }

  .breadcrumb {
    margin: 0 auto 24px 0;
  }

  .breadcrumb.contents_in {
    width: 100%;
  }

  .breadcrumb ul {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    width: 126%;
    font-size: 10px;
    line-height: 13px;
    letter-spacing: 0;
    transform: scale(0.8);
    transform-origin: center left;
  }

  .breadcrumb li a::after {
    margin: 0 1em;
  }

  .under_page .attention_text {
    width: 100%;
    font-size: 12px;
    text-align: center;
    margin: 0 auto;
  }

  /*下層ページタイトル*/

  /*タイトル画像なし*/
  .page_title01 {
    font-size: 22px;
    line-height: 36px;
    padding: 10px 0 15px;
  }

  /*お問い合わせはコチラ！ボタン*/

  .under_page .btn_ptn01.btn_contact {
    max-width: 280px;
  }

  .under_page .btn_ptn01.btn_contact a {
    font-size: 15px;
    line-height: 22px;
    padding: 14px 35px;
  }

  .under_page .btn_ptn01.btn_contact a::before {
    right: 15px;
    width: 27.5px;
    height: 5px;
    background: url(../img/common/arrow_right_white.svg) no-repeat;
    background-size: contain;
  }


  /*-----------------------
manufacturing/profile
下層ページメニュースライダー 767
---------------------------*/
  .underlayer_slider_area {
    padding: 60px 0;
  }

  .underlayer_slider_area .underlayer_slider {
    max-width: 280px;
    width: 86.15%;
  }

  .underlayer_slider_area .slider_title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 25px;
  }

  .underlayer_slider_area .underlayer_slider .slider_item .cnt_text {
    font-size: 16px;
    line-height: 22px;
  }

  .underlayer_slider_area button.slick-next.slick-arrow {
    right: -25px;
  }

  .underlayer_slider_area button.slick-prev.slick-arrow {
    left: -25px;
  }

  .underlayer_slider_area button.slick-arrow {
    width: 15px;
    height: 34.7px;
  }




}

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

  /*----------
    01.共通 360
    ----------*/

  /*「備前化成を知る」スライダー*/
  #profile_area .profile_slider li.slider_item .cnt_text {
    font-size: 12px;
    padding: 10px 6px;
  }

  /*END「備前化成を知る」スライダー*/

  /*サプリメント素材一覧*/

  #raw_material_list .material_g .cnt_box .cnt_text {
    padding: 2% 3px 2% 15px;
  }

  #raw_material_list .material_g02 .cnt_box .name {
    font-size: 10px;
  }

  #raw_material_list .material_g02 .cnt_box .cnt_text {
    padding: 6px 4px 6px 7px;
  }

  /*----------
  03.フッター 360
  ----------*/
  footer .footer_nav ul li a {
    font-size: 10px;
  }

}

/*---------------
05.下層MVタイトル
---------------*/

/*下層ページMVタイトル追加*/

.under_page .page_title_header .contents_in {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 1280px;
  width: 100%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.under_page .page_title_header .title_g {
  position: relative;
  left: 49px;
  width: fit-content;
  max-width: 80%;
}

.under_page .page_title_header .title_g.right_title {
  left: auto;
  right: 49px;
  margin: 0 0 0 auto;
}

.under_page .page_title_header .title_g .title_inner {
  position: relative;
  width: 100%;
  padding: 40px 45px;
  margin: 0;
  z-index: 1;
}

.under_page .page_title_header .title_g .title_inner::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  transform: skewX(-9deg);
  z-index: -1;
}

.under_page .page_title_header .title_g .title_inner .title {
  font-size: 47px;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: 0;
  margin-bottom: 0.5em;
}

.under_page .page_title_header .title_g .title_inner .title.single_row {
  margin-bottom: 0;
}

.under_page .page_title_header .title_g .title_inner .title .material_title_small {
  display: inline-block;
  font-size: 0.38297872em;
  margin-left: 1em;
}

.under_page .page_title_header .title_g .title_inner .title .sub_title {
  display: inline-block;
  font-size: 0.4688511em;
  margin-left: 1em;
}

.under_page .page_title_header .title_g .title_inner .lead {
  color: #962C46;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.72;
}

.under_page .page_title_header .title_g .title_inner .lead_text_notes {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: left;
  text-justify: none;
  margin-top: 0.5em;
}


@media only screen and (max-width:1280px) {
  .under_page .page_title_header .title_g .title_inner {
    padding: 3.125vw 3.516vw;
  }

  .under_page .page_title_header .title_g .title_inner .title {
    font-size: 3.672vw;
  }

  .under_page .page_title_header .title_g .title_inner .lead {
    font-size: 1.719vw;
  }

  .under_page .page_title_header .title_g .title_inner .lead_text_notes {
    font-size: 1.094vw;
  }
}

@media only screen and (max-width:767px) {
  .under_page .page_title_header .contents_in {
    top: 55%;
    max-width: 330px;
  }

  .under_page .page_title_header .title_g {
    left: auto;
    max-width: 330px;
    margin: 0 auto;
  }

  .under_page .page_title_header .title_g.right_title {
    left: auto;
    right: auto;
    margin: 0 auto;
  }

  .under_page .page_title_header .title_g .title_inner {
    padding: 16px 16px 16px 18px;
  }

  .under_page .page_title_header .title_g .title_inner .title {
    font-size: 21.5px;
  }

  .under_page .page_title_header .title_g .title_inner .lead {
    font-size: 13px;
    line-height: 1.5;
  }

  .under_page .page_title_header .title_g .title_inner .lead_text_notes {
    font-size: 10px;
    line-height: 1.25;
  }
}

@media only screen and (max-width:374px) {
  .under_page .page_title_header .contents_in {
    top: 52%;
  }

  .under_page .page_title_header .title_g {
    max-width: 88%;
  }

  .under_page .page_title_header .title_g .title_inner {
    padding: 14px 14px 14px 16px;
  }

  .under_page .page_title_header .title_g .title_inner .title {
    font-size: 18px;
  }

  .under_page .page_title_header .title_g .title_inner .lead {
    font-size: 12px;
  }
}

/*END　下層ページMVタイトル追加*/