@charset "UTF-8";

* {
  min-height: 0;
  min-width : 0;
}

body {
  background-color: #000;
  background-image: url(../images/common/back_img02.png);
  color: #FFF;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#000;  /* 背景カラー */
  z-index: 9999;  /* 一番手前に */
  pointer-events: none;  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;  /* 初期値 : 透過状態 */
  -webkit-transition: opacity .4s ease;  /* アニメーション時間は 0.4秒 */
  transition: opacity .4s ease;
}

body.fadeout::after {
  opacity: 1;
}

img {
  max-width: 100%;
}



/* 汎用スタイル
-----------------------------------------------------------------------*/
.mb30 {
  margin-bottom: 30px;
}



/* ローディング画面
-----------------------------------------------------------------------*/
#loading {
  width: 100vw;
  height: 100vh;
  background: #614C31/* url(../images/common/back_img07.png)*/;
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 500;
}

.load-box {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.load-box p:first-of-type {
  opacity: 0;
  animation: loadtext 1.0s ease-out 0.5s;
  animation-fill-mode: forwards;
}

.load-title {
  margin-bottom: 20px;
  font-family: "Yuji Syuku", serif;
  font-size: 30px;
  opacity: 0;
  animation: loadtext 1.0s ease-out 1.5s;
  animation-fill-mode: forwards;
}

.load-box img {
  width: 100px;
}

@keyframes loadtext {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1.0;
  }
}



/* ヘッダー右上の固定表示
-----------------------------------------------------------------------*/
.head-fix {
  display: flex;
  align-items: center;
  position: fixed;
  top: 28px;
  right: 30px;
  z-index: 320;
}

.head-fix p.insta {
  margin-right: 30px;
}

.menu-trigger {
  width: 50px;
  height: 54px;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
}

.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #FFF;
  transition: all 0.5s;
}

.menu-trigger.active span {
  background-color: #FFF;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(14px) rotate(-45deg);
}

.menu-trigger span:nth-of-type(2) {
  top: 13px;
}

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

.menu-trigger span:nth-of-type(3) {
  top: 26px;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

.menu-trigger p {
  position: absolute;
  bottom: 0;
  font-size: 68%;
  font-weight: bold;
}



/* ヘッダー
-----------------------------------------------------------------------*/
header {
  width: 100%;
  padding: 10px 0 10px 30px;
  position: fixed;
  z-index: 200;
  transition: all 0.5s;
}

header h1 img {
  width: 300px;
  transition: all 0.5s;
}

header.shrink,
header.sub {
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0));
}

header.shrink h1 img,
header.sub h1 img {
  width: 180px;
}



/* フル画面ボックス
-----------------------------------------------------------------------*/
.fullbox {
  width: 100%;
  height: 100vh;
  position: relative;
 /*background-color: #121212;*/
}



/* ファーストビュー
-----------------------------------------------------------------------*/
.opening {
  width: 85%;
  height: 100%;
  border-radius: 50vh 0 0 50vh;
  object-fit: cover;
  position: absolute;
  left: 15%;
  bottom: 0;
  filter: brightness(60%);
}

.main-catch {
  font-family: "Yuji Syuku", serif;
  font-size: 40px;
  line-height: 1.5;
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(10%);
  opacity: 0;
  animation: loadcatch 1.0s ease-out;
  animation-fill-mode: forwards;
}

@keyframes loadcatch {
  0% {
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%);
    opacity: 1.0;
  }
}

.main-catch span {
  display: block;
  padding-left: 2em;
  font-size: 0.7em;
}

.infobox {
  width: 60%;
  padding: 15px 10px;
  background: url(../images/common/back_img05.png);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
}

.infobox h3 {
  flex-basis: 12%;
  border-right: 1px solid #FFF;
  text-align: center;
}

.infobox .infobox-inner {
  flex-basis: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.infobox .infobox-inner p:nth-of-type(1) {
  flex-basis: 82%;
}

.infobox .infobox-inner p:nth-of-type(1) a {
  text-decoration: underline;
}

.infobox .infobox-inner p:nth-of-type(1) span {
  display: block;
  font-size: 76%;
}

.infobox .infobox-inner p:nth-of-type(2) {
  flex-basis: 16%;
}

.infobox .infobox-inner p:nth-of-type(2) a {
  display: block;
  padding: 5px 0;
  background-color: #FFF;
  border-radius: 50px;
  font-size: 85%;
  color: #121212;
  text-align: center;
  font-weight: 600; 
}



/* メイン部共通
-----------------------------------------------------------------------*/
main {
  overflow: hidden;
}

main a {
  text-decoration: underline;
  transition: all 0.4s;
}

main a:hover {
  color: #EAF947;
  font-weight: bold;
}

section {
  padding: 100px 0;
}

section h2 {
  font-family: "Yuji Syuku", serif;
  font-size: 36px;
}

section h3 {
  font-family: "Yuji Syuku", serif;
  font-size: 30px;
  line-height: 1.2;
}

.flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

p.more-button {
  text-align: center;
}

p.more-button a {
  display: inline-block;
  padding: 10px 40px;
  border: 1px solid #FFF;
  border-radius: 50px;
  box-shadow: 4px 4px #999;
  transition: all 0.3s;
  text-decoration: none;
}

p.more-button a::after {
  content: "▶";
  padding-left: 8px;
}

p.more-button a:hover {
  box-shadow: none;
  transform: translate(4px, 4px);
  background-color: #CCC;
  color: #121212;
}



/* 最新の特集・コラム一覧
-----------------------------------------------------------------------*/
section#column-list {
  padding: 100px 0 60px;
}

section#column-list h2 {
  margin-bottom: 20px;
  text-align: center;
}

section#column-list h2 span {
  display: block;
  font-size: 60%;
}

section#column-list h2 span::before,
section#column-list h2 span::after {
  content: "～";
}

section#column-list p,
section#column-list ul {
  width: 90%;
  max-width: 960px;
}

section#column-list p {
  margin: 0 auto 40px;
  text-align: center;
}

section#column-list ul {
  margin: 0 auto 20px;
}

section#column-list .newcolumn {
  display: flex;
  justify-content: flex-start;
}

section#column-list .newcolumn li {
  width: 22%;
  margin-right: 3%;
}

section#column-list .newcolumn li:nth-of-type(4n) {
  margin-right: 0;
}

section#column-list .newcolumn-img {
  padding: 0;
  margin-bottom: 10px;
}

section#column-list .newcolumn-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  border-radius: 180px;
}

section#column-list .newcolumn li h3 {
  padding: 0 10px;
  margin-bottom: 10px;
  font-size: 100%;
}

section#column-list .newcolumn li .newcolumn-date {
  margin-bottom: 10px;
  text-align: center;
  font-size: 85%;
}

.newcolumn-link {
  text-align: center;
} 

.newcolumn-link a {
  display: inline-block;
  padding: 8px 30px;
  border: 1px solid #FFF;
  text-decoration: none;
}

.newcolumn-link a:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #FFF;
}



/* 佃牧場について
-----------------------------------------------------------------------*/
section#about {
  background: url(../images/contents/kagoshima_back01.png) no-repeat center top;
  padding: 40px 0 80px;
}

section#about h2 {
  margin-bottom: 20px;
  text-align: center;
}

.about-img {
  margin-bottom: 30px;
  text-align: center;
}

.about-box {
  width: 54%;
  max-width: 960px;
  margin: 0 auto;
}




/* 主な事業
-----------------------------------------------------------------------*/
section#business h2 {
  text-align: center;
  margin-bottom: 40px;
}

.slideshow01 {
  max-width: 100%;
  margin: 0 auto 20px;
}

.slick-slide {
  margin: 0 10px;
}

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

.slick-prev, .slick-next {
  z-index: 1;
}
.slick-prev:before, .slick-next:before {
  color: #000;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .15;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}

section#business dl {
  color: #FFF;
  width: 54%;
  max-width: 960px;
  margin: 0 auto;
}

section#business dl dd {
  padding: 0 0 20px 1em;
}



/* 佃牧場のこだわり
-----------------------------------------------------------------------*/
section#commit h2 {
  text-align: center;
  margin-bottom: 40px;
}

.commit-L {
  flex-basis: 60%;
  order: 1;
}

.commit-R {
  flex-basis: 40%;
  order: 2;
  margin-bottom: 30px;
}

section#commit h3 {
  margin-bottom: 30px;
}

.commit-inner {
  width: 88%;
  margin: 0 auto;
}

.commit-inner p:not(:last-of-type) {
  margin-bottom: 20px;
}

.slideshow02 {
  width: 86%;
  max-width: 660px;
  margin: 0 auto;
}



/* 生産者の想い
-----------------------------------------------------------------------*/
section#producer h2 {
  text-align: center;
  margin-bottom: 40px;
}

.producer-L {
  flex-basis: 40%;
  margin-bottom: 30px;
}

.producer-R {
  flex-basis: 60%;
}

section#producer h3 {
  margin-bottom: 30px;
}

.producer-L p {
  width: 86%;
  max-width: 660px;
  margin: 0 auto;
}

.producer-L p span {
  display: block;
  text-align: center;
  font-family: "Yuji Syuku", serif;
}

.producer-inner {
  width: 88%;
  margin: 0 auto;
}

.producer-inner p:not(:last-of-type) {
  margin-bottom: 20px;
}



/* 佃牧場の馬刺し
-----------------------------------------------------------------------*/
section#charm h2 {
  text-align: center;
  margin-bottom: 60px;
}

section#charm h2 span {
  display: block;
  font-size: 78%;
}

section#charm h2 span::before,
section#charm h2 span::after {
  content: "～";
}

.charm01,
.charm02,
.charm03 {
  width: 80%;
  margin: 0 auto;
}

.charm01,
.charm02 {
  margin-bottom: 40px;
}

.charm-img {
  flex-basis: 38%;
}

.charm-contents {
  flex-basis: 60%;
}

.charm-contents h3 {
  margin-bottom: 30px;
}

.charm-contents h3 br {
  display: none;
}

.charm-contents h3 span {
  padding-left: 1em;
  font-size: 70%;
}

.charm-contents h3 span::before {
  content: "－";
}

.charm-contents p:not(:last-of-type) {
  margin-bottom: 20px;
}

.charm-contents table {
  width: 80%;
  margin: 30px auto 0;
  border: 1px solid #FFF;
}

.charm-contents table caption {
  margin-bottom: 5px;
  text-align: center;
}

.charm-contents table caption span {
  display: block;
  font-size: 75%;
}

.charm-contents table caption span::before {
  content: "【";
}

.charm-contents table caption span::after {
  content: "】";
}

.charm-contents table th,
.charm-contents table td {
  padding: 8px 5px;
  border: 1px solid #FFF;
}

.charm-contents table th {
  background-color: rgba(255, 255, 255, 0.2);
  vertical-align: middle;
  text-align: center;
}

.charm-contents table tr th:first-of-type {
  width: 22%;
}

.charm-contents table tr th:not(:first-of-type) {
  width: 26%;
}

.charm-contents table th span {
  display: block;
  font-size: 80%;
}

.charm-contents table td {
  text-align: center;
}

.charm-img {
  align-self: flex-start;
}

.charm02 .charm-img {
  order: 2;
}

.charm02 .charm-contents {
  order: 1;
}


/* フッター
-----------------------------------------------------------------------*/
footer {
  padding: 120px 0 30px;
  background: url(../images/common/back_img05.png);
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.footerL {
  margin-right: 25px;
}

.footerL img {
  opacity: 0.6;
}

.footerR h2 {
  font-family: "Yuji Syuku", serif;
  font-size: 36px;
}

.footer-inq {
  margin-bottom: 50px;
  text-align: center;
}

.footer-inq a {
  display: inline-block;
  padding: 10px 15px 10px 50px;
  border: 1px solid #FFF;
  background: url(../images/footer/footer_mail.svg) no-repeat 15px 15px;
  border-radius: 15px;
  transition: all 0.4s;
}

.footer-inq a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.map {
  width: 70%;
  height: 420px;
  margin: 0 auto 50px;
  filter: grayscale(100%);
}

.map iframe {
  width: 100%;
  height: 100%;
}

.copyright {
  width: 70%;
  padding: 30px 0 0;
  margin: 0 auto;
  border-top: 1px solid #FFF;
}

.copyright p {
  font-size: 80%;
  text-align: center;
}



/* グローバルナビスクリーン
-----------------------------------------------------------------------*/
.nav-screen {
  width: 100vw;
  height: 100vh;
  background: url(../images/common/back_img03.png);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 300;
  display: none;
}

.horse-back {
  width: 100%;
  height: 100%;
  background: url(../images/common/horse_back.svg) no-repeat center / contain;
}

.nav-screen h2 {
  padding: 50px 0;
  font-family: "Yuji Syuku", serif;
  font-size: 36px;
  text-align: center;
}

.nav-screen nav {
  text-align: center;
}

.nav-screen nav ul {
  display: inline-block;
  writing-mode: vertical-rl;
  margin-bottom: 50px;
}

.nav-screen nav ul li {
  text-align: left;
  font-family: "Yuji Syuku", serif;
  font-size: 24px;
}

.nav-screen nav ul li:not(:last-of-type) {
  margin-left: 20px;
}

.nav-screen nav ul li span {
  display: block;
  padding-top: 2em;
  font-size: 80%;
}

.nav-screen p {
  text-align: center;
}

.nav-screen p a {
  display: inline-block;
  padding: 10px 15px 10px 50px;
  border: 1px solid #FFF;
  background: url(../images/footer/footer_mail.svg) no-repeat 15px 15px;
  border-radius: 15px;
  transition: all 0.4s;
}

.nav-screen p a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}



/* ページタイトル【サブページ】
-----------------------------------------------------------------------*/
.pagetitle {
  width: 100%;
  height: 550px;
  background: url(../images/common/back_img07.png);
  margin-bottom: 100px;
  position: relative;
}

.pagetitle video,
.pagetitle img {
  width: 70%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
  position: absolute;
  top: 0;
  right: 0;
}

.pagetitle h2 {
  width: 100%;
  padding-left: 50px;
  color: #FFF;
  font-family: "Yuji Syuku", serif;
  font-size: 38px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.pagetitle h2 span {
  display: block;
  font-size: 22px;
}

.pagetitle h2 span::before {
  content: "～";
}


/* コラムページ用 */
.pagetitle01 {
  width: 100%;
  padding: 150px 0 80px;
  background: url(../images/common/back_img07.png);
  margin-bottom: 100px;
  position: relative;
}

.pagetitle01 h2 {
  width: 100%;
  color: #FFF;
  font-family: "Yuji Syuku", serif;
  font-size: 38px;
  text-align: center;
  line-height: 1.2;
}

.pagetitle01 h2 span {
  display: block;
  margin-top: 10px;
  font-size: 22px;
}

.pagetitle01 h2 span::before,
.pagetitle01 h2 span::after {
  content: "～";
}



/* ページコンテンツ共通【サブページ】
-----------------------------------------------------------------------*/
.sub-inner {
  width: 80%;
  margin: 0 auto;
}

.sub-inner h3 {
  padding: 0 0 30px;
  font-family: "Yuji Syuku", serif;
  font-size: 32px;
}

.sub-contena {
  max-width: 1000px;
  margin: 0 auto 120px;
}

.sub-inner .sub-contena h3 {
  text-align: center;
}

.sub-inner .sub-contena video {
  width: 100%;
}



/* 佃牧場のこだわり詳細【サブページ】
-----------------------------------------------------------------------*/
/* モーダル表示部 */
.modal {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
}

.photoarea {
  width: 70%;
  max-width: 800px;
  position: absolute;
  left: 50%;
  /*top: 50%;*/
  transform: translate(-50%, -50%);
  z-index: 1010;
  display: none;
}

.photoarea.vertical {
  width: 400px;
}

.photoarea .photo-text {
  margin-top: 15px;
  text-align: center;
}

/* こだわりの表示部（コンテンツ） */
.commdetail-img {
  flex-basis: 49%;
}

.commdetail-conte {
  flex-basis: 49%;
  align-self: flex-start;
}

.commdetail-conte.right {
  padding-right: 60px;
}

.commdetail-img.right {
  order: 2;
}

.commdetail-conte.left {
  padding-left: 60px;
  order: 1;
}

.commdetail-thumb {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.commdetail-thumb li {
  flex-basis: 31%;
  max-width: 600px;
  cursor: pointer;
}

.commdetail-thumb li img {
  border-radius: 6px;
}

#purchase {
  margin-bottom: 50px;
  position: relative;
}

#purchase::before {
  content: "仕入れ";
  writing-mode: vertical-rl;
  font-size: 80px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  right: 0;
  top: 0;
}

#fattening {
  margin-bottom: 50px;
  position: relative;
}

#fattening::before {
  content: "肥育";
  writing-mode: vertical-rl;
  font-size: 80px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  top: 0;
}

#meat {
  margin-bottom: 50px;
  position: relative;
}

#meat::before {
  content: "精肉";
  writing-mode: vertical-rl;
  font-size: 80px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  right: 0;
  top: 0;
}

.meat-video {
  flex-basis: 49%;
  filter: brightness(70%);
}

#shipping {
  position: relative;
}

#shipping::before {
  content: "出荷";
  writing-mode: vertical-rl;
  font-size: 80px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  top: 0;
}



/* コラム一覧ページ【サブページ】
-----------------------------------------------------------------------*/
.column-category {
  margin-bottom: 60px;
}

.column-category label {
  position: relative;
}

.column-category label::before {
  content: "▼";
  position: absolute;
  right: 15px;
  top: 2px;
}

.column-category select {
  padding: 5px 45px 5px 5px;
  border: 1px solid #FFF;
}

.column-category select option {
  color: #121212;
}

.column-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.column-list li {
  flex-basis: 31%;
  margin-bottom: 60px;
}

.column-list li:not(:nth-of-type(3n)) {
  margin-right: 3.5%;
}

.column-img {
  margin-bottom: 10px;
}

.column-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}

.sub-inner .column-list li h3 {
  padding: 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.sub-inner .column-list li .column-date {
  margin-bottom: 15px;
  text-align: right;
}

.column-link {
  text-align: center;
} 

.column-link a {
  display: inline-block;
  padding: 8px 35px;
  border: 1px solid #FFF;
  text-decoration: none;
}

.column-link a:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #FFF;
}



/* コラムページ詳細【サブページ】
-----------------------------------------------------------------------*/
main .sub-inner .column-conte {
  margin-bottom: 20px;
}

main .sub-inner .column-conte h3 {
  text-align: center;
  line-height: 1.2;
}

main .sub-inner .column-conte h4 {
  margin-bottom: 30px;
  font-family: "Yuji Syuku", serif;
  font-size: 26px;
  line-height: 1.2;
}

main .sub-inner .column-conte figure div {
  width: 70%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}

main .sub-inner .column-conte figure div iframe {
  width: 100%;
  height: 100%;
}

main .sub-inner .column-date {
  margin-bottom: 60px;
  text-align: right;
}



/* おしらせ一覧・詳細
-----------------------------------------------------------------------*/
.noticelist,
.noticedetail {
  padding-bottom: 80px;
}

.noticelist h3 {
  text-align: center;
}

.noticelist ul li {
  margin-bottom: 15px;
}

.noticelist ul li span {
  margin-right: 15px;
}

.noticelist ul li span::before {
  content: "【";
}

.noticelist ul li span::after {
  content: "】";
}

.noticedetail h3.notice-title {
  padding: 0 0 5px;
  margin: 0 0 15px;
  border-bottom: 1px solid #FFF;
}

.noticedetail p.notice-date {
  margin: 0 0 50px;
  text-align: right;
}

.noticedetail p {
  margin-bottom: 5px;
}

.noticedetail ul {
  margin: 15px 5px 15px 30px;
}

.noticedetail ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}

.noticedetail ol {
  margin: 15px 5px 15px 30px;
}

.noticedetail ol li {
  list-style-type: decimal;
  margin-bottom: 10px;
}

.noticedetail figure video {
  width: 80%;
  height: auto;
}



/* お問い合わせフォーム
-----------------------------------------------------------------------*/
.mailform h3 {
  padding-bottom: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #FFF;
}

.mailform p {
  margin-bottom: 30px;
}

.mailform dl {
  width: 60%;
  margin: 0 auto 30px;
}

.mailform dl dd {
  margin-bottom: 20px;
}

.mailform dl dd input,
.mailform dl dd textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #FFF;
}

.mailform dl dd textarea {
  height: 250px;
}

.mailform p.submit-button {
  text-align: center;
}

.mailform p.submit-button input {
  padding: 20px 50px;
  border: 1px solid #FFF;
}

div.wpcf7 .wpcf7-spinner {
    display: none;
}





/*レスポンシブ対応
---------------------------------------------------------------------------*/
@media only screen and (max-width:1000px) {
  
  /* トップページ */
  .opening {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .main-catch {
    font-size: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
  }

  .main-catch span {
    padding: 0 15px;
    text-align: left;
  }

  header h1 img {
    width: 180px;
  }

  .infobox {
    width: 100%;
    padding: 15px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  section {
    padding: 50px 0;
  }

  .flex-box {
    display: block;
  }

  section#column-list p {
    text-align: left;
  }
  
  section#column-list .newcolumn li {
  width: 47%;
  margin-right: 6%;
  }

  section#column-list .newcolumn li:nth-of-type(2n) {
    margin-right: 0;
  }

  section#column-list .newcolumn-img img {
    height: 160px;
  }

  section#about {
    padding: 40px 20px 80px;
  }

  .about-box {
    width: 100%;
  }

  section#business dl {
    width: 100%;
    padding: 0 20px;
  }

  section#charm {
    padding: 40px 20px;
  }

  section#charm h2 span::before,
  section#charm h2 span::after {
    content: "";
}

  .charm01,
  .charm02,
  .charm03 {
    width: 100%;
  }

  .charm-contents h3 {
    text-align: center;
  }

  .charm-contents h3 br {
    display: inline;
  }

  .charm-contents h3 span {
    display: block;
    padding-left: 0;
  }

  .charm-contents h3 span::before {
    content: "";
}

  .charm-contents table {
    width: 100%;
  }

  .charm-contents table caption {
    text-align: left;
  }

  footer {
    padding: 30px 20px 15px;
  }

  .map {
    width: 100%;
    height: 420px;
  }

  .copyright {
    width: 100%;
    padding: 15px 0 0;
  }

  /* 最新の特集・コラム一覧 */
  section#column-list .newcolumn {
    display: block;
  }

  section#column-list .newcolumn li {
    width: 80%;
    margin: 0;
  }

  /* ページタイトル【サブページ】 */
  .pagetitle video,
  .pagetitle img {
    width: 100%;
  }

  .pagetitle h2 {
    padding: 0 15px;
    line-height: 1.3;
  }

  .pagetitle h2 span::before {
    content: "";
  }

  /* ページコンテンツ共通【サブページ】 */
  .sub-inner {
    width: 100%;
    padding: 0 20px;
  }

  /* こだわりの表示部（コンテンツ） */
  .commdetail-img {
    margin-bottom: 30px;
  }

  .commdetail-conte.right {
    padding-right: 0;
  }

  .commdetail-conte.left {
    padding-left: 0;
  }

  #purchase::before {
    color: rgba(255, 255, 255, 0.5);
    z-index: 300;
  }

  #fattening::before {
    color: rgba(255, 255, 255, 0.5);
    z-index: 300;
  }

  #meat::before {
    color: rgba(255, 255, 255, 0.5);
    z-index: 300;
  }

  .meat-video {
    width: 100%;
    height: auto;
  }

  #shipping::before {
    color: rgba(255, 255, 255, 0.5);
    z-index: 300;
  }

  
  /* コラム一覧ページ【サブページ】 */
  .column-list {
    justify-content: space-between;
  }

  .column-list li {
    flex-basis: 47%;
  }

  .column-list li:not(:nth-of-type(3n)) {
    margin-right: 0;
  }

  main .sub-inner .column-conte figure div {
    width: 100%;
  }

  
  .noticelist ul li {
    padding-left: 2em;
  }

  .noticelist ul li span {
    margin-right: 0;
    display: block;
    text-indent: -2em;
  }

  .noticedetail figure video {
    width: 100%;
  }

  /* コラムページ用 */
  .pagetitle01{
    padding: 150px 15px 80px;
  }

  .pagetitle01 h2 {
    text-align: left;
  }

  .pagetitle01 h2 span::before,
  .pagetitle01 h2 span::after {
    content: "";
  }

  .mailform dl {
    width: 90%;
  }

}
