@charset "UTF-8";
/* ====================================
	 reset
==================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: normal;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
  list-style-position: inside;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  transition: all 0.5s ease;
  line-height:normal;
}

a:hover {
  text-decoration: none;
  opacity: 0.75;
  cursor: pointer;
}
img {
  max-width: 100%;
  vertical-align: bottom;
  }  

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #FFFFFF;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

select {
  outline: none;
}

select::-ms-expand {
  display: none;
}

input,
textarea {
  border-radius: 0;
  border: 0;
  outline: none;
}

[type=submit],
[type=reset],
[type=button],
button {
  border: 0;
  cursor: pointer;
}

input[type=button],
input[type=text],
input[type=submit],
input[type=image],
input[type=search],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

:root {
  --cBase: #FFFFFF;
  --cBlack: #222222;
  --cBase-rgb: 128, 112, 104;
  --cBase_bg: #00A0E9;
  --cHeroTitle: #CFFF31;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
  width: 100%;
  font-family: "中ゴシックBBB", "Gothic Medium BBB", "Noto Sans JP", sans-serif;
  line-height:normal;
  position: relative;
  color: #333;
}

body p {
    line-height: 2;
}

li a {
  text-decoration: none !important;
}

.serif {
    font-family: "Noto Serif JP", serif;
  }
  
  .latin {
    font-family: "Roboto", sans-serif;
  }

@media screen and (min-width:768px) {
  .sp {
    display: none !important;
  }
  }
  @media screen and (max-width:767px) {
    .pc {
      display: none !important;
    }
  }

/* ====================================
	 ハンバーガーメニュー
==================================== */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  background-color: #3174B7;
  transition: right 0.5s ease; /* スライドインのアニメーション */
  padding: 100px 60px;
  box-sizing: border-box;
  border-radius: 0 0 0 140px;
  z-index: 10;
}
/* メニューが開いているとき */
.menu.open {
  right: 0;
}
/* ボタンのスタイル */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 20;
  background-color: #C4EBF5;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.hamburger_inner{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 19px;
}
.hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
}
.hamburger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.hamburger span:nth-of-type(1) {
  top: 0;
}
.hamburger span:nth-of-type(2) {
  top: 8px;
}
.hamburger span:nth-of-type(3) {
  bottom: 0;
}

/*=============================
バツ印に変化するスタイル
=============================*/
.hamburger.active {
  background-color: #C4EBF5;
}
.hamburger.active span{
  background-color: #3174B7;
}
.hamburger.active span:nth-child(1) {
  -webkit-animation: btn07-bar01 .75s forwards;
  animation: btn07-bar01 .75s forwards;
}
@-webkit-keyframes btn07-bar01 {
  0% {
    -webkit-transform: translateY(8px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar01 {
  0% {
    transform: translateY(8px) rotate(45deg);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.hamburger.active span:nth-child(2) {
  /* transition: all .25s .25s; */
  opacity: 1;
}
.hamburger.active span:nth-child(3) {
  -webkit-animation: btn07-bar03 .75s forwards;
  animation: btn07-bar03 .75s forwards;
}
@-webkit-keyframes btn07-bar03 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar03 {
  0% {
    transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.hamburger.active span:nth-of-type(1) {
  -webkit-animation: active-btn07-bar01 .75s forwards;
  animation: active-btn07-bar01 .75s forwards;
}
@-webkit-keyframes active-btn07-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(45deg);
  }
}
@keyframes active-btn07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(8px) rotate(45deg);
  }
}
.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
  -webkit-animation: active-btn07-bar03 .75s forwards;
  animation: active-btn07-bar03 .75s forwards;
}
@-webkit-keyframes active-btn07-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
  }
}
@keyframes active-btn07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.menu ul {
  list-style-type: none;
  padding: 0;
}
.menu li {
  padding-bottom: 30px;
}
.menu li:last-child {
  padding-bottom: 0px;
}
.menu li a {
  color: #fff;
  font-weight: 600;
  display: block;
  font-family: "見出ゴMB31", "Midashi Go MB31";
  letter-spacing: 0.05em;
}
.menu li a:hover{
  opacity: 0.7;
}

/* ====================================
	 main
==================================== */
.position_wrap {
  position: relative;
}
.flex_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bg_y{
  background-image: url(../img/bk_line-b.png),url(../img/bk-y.png);
  background-repeat: repeat-x, repeat;
  background-position: bottom, top;
}
.bg_b{
  background-image: url(../img/bk_line-y.png),url(../img/bk-b.png);
  background-repeat: repeat-x, repeat;
  background-position: bottom, top;
}
.bg_b:last-child{
  background-image: url(../img/bk-b.png);
  background-repeat: repeat;
  background-position:top;
}
.mv_warp{
  background-image: url(../img/mv.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  max-width: 940px;
  margin: 0 auto;
  padding: 70px 0.8% 278px;
  animation: fadeIn 2s ease 1s 1 normal backwards;
}
.mv_warp .title{
  margin-top: 20px;
}
section{
  max-width: 940px;
  margin: 0 auto;
  padding: 120px 2% 180px;
}
h3,h4{
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: "見出ゴMB31", "Midashi Go MB31";
}
h2{
  color: #E6001B;
  background-image: url(../img/h2_line-01.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  font-family: 'Keep Calm', sans-serif;
  letter-spacing: 0.1em;
  font-size: 28px;
  height: 138px;
}
h2 span{
  display: block;
  font-size: 16px;
  letter-spacing: 0.08em;
  margin-top: 16px;
  font-family: "中ゴシックBBB", "Gothic Medium BBB", "Noto Sans JP", sans-serif;
}
#product h2{
  text-align: center;
  background-image: url(../img/h2_line-02.png);
  background-position: center bottom;
}
#package h2{
  background-image: url(../img/h2_line-03.png);
}
#yukigamineranch h2{
  color: #fff;
  font-family: kinuta-maruminold-stdn, serif;
  background-image:none;
  height: auto;
  margin-left: 15px;
  font-size:32px;
}
h3{
  font-size: 22px;
  position: relative;
}
h3::after{
  background-image : linear-gradient(to right, #A9DCEB 7px, transparent 2px);
 background-size: 17px 4px;
 background-repeat: repeat-x;
  position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 158px;
    height: 3px;
    content: '';
}
#feature h3{
  padding-bottom: 40px;
  margin-bottom: 40px;
}
#product h3{
  margin-bottom: 55px;
}
#product h3 span{
  font-size: 18px;
  display: block;
  letter-spacing: normal;
  padding: 12px 0 25px;
  font-weight: bold;
}
#product h3 span.price{
  font-size: 16px;
  padding: 0 0 40px;
  font-weight: normal;
  font-family: "中ゴシックBBB", "Gothic Medium BBB", "Noto Sans JP", sans-serif;
}
#product h3::after{
  background-image : linear-gradient(to right, #FCE984 7px, transparent 2px);
}
#package .package_design h3{
  font-size: 16px;
}
#package h3::after{
    width: 100%;
}
.vertical_p{
  writing-mode: vertical-rl;
  font-family: kinuta-maruminold-stdn, serif;
font-style: normal;
font-weight: 400;
line-height: 3rem;
letter-spacing: 0.1rem;
font-size: 21px;
}
.vertical_p span.beside {
  writing-mode: horizontal-tb;
  margin: -12px 0;
  letter-spacing: normal;
}
#about{
  animation: fadeIn 2s ease 2.5s 1 normal backwards;
}

#about .flex_wrap{
  margin-top: 100px;
}
#about .flex_wrap p.vertical_p{
  width: 26%;
}
#about .flex_wrap .img_box{
  width: 62%;
  margin-top: 100px;
}

#feature .position_wrap{
  height: 585px;
}
#feature .vertical_p{
  position: absolute;
  top: -44px;
  right: 160px;
}
#feature .cow{
  position: absolute;
  top: 130px;
  right: 442px;
  width: 196px;
}
#feature .milk{
  position: absolute;
  top: 150px;
  right: 2%;
  width: 90px;
}
#feature .flex_wrap{
  margin-top: 46px;
  align-items: center;
}
#feature .flex_wrap img{
  width: 50%;
}
#feature .flex_wrap .text_box{
  width: 42%;
  text-align: center;
}

#product .flex_wrap{
  margin: 100px 0;
  align-items: center;
}
#product .flex_wrap img{
  width: 52%;
}
#product .flex_wrap .text_box{
  width: 40%;
  text-align: center;
}
#product .flex_wrap .text_box p{
  font-size: 13px;
  line-height: 1.4rem;
  text-align: left;
}
#product .w_box{
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 8% 45px;
  text-align: left;
  max-width: 580px;
  margin: 0 auto;
  font-size: 14px;
 }
#product .w_box h4{
  color: #E6001B;
  font-size: 16px;
  margin: 60px 0 10px;
  text-align: center;
}
#product .w_box .place h4{
  margin: 0px 0 15px;
  font-size: 18px;
  font-weight: bold;
  font-family: "見出ゴMB31", "Midashi Go MB31";
}
#product .w_box .place .p_line{
  margin-bottom: 35px;
  line-height: 1.8;
}
#product .w_box .p_line::after{
  background-image : linear-gradient(to right, #FCE984 7px, transparent 2px);
 background-size: 17px 4px;
 background-repeat: repeat-x;
  position: absolute;
  bottom: 28%;
  left: 50%;
    transform: translateX(-50%);
    width: 82%;
    height: 3px;
    content: '';
}
#product .w_box a{
  color: #333;
  text-decoration: underline;
  display: inline-block;
}
span.fs_s {
  font-size: 12px;
  margin-bottom: 10px;
  display: inline-block;
margin-left: 14px;
}
#product .w_box a:first-child{
  margin-bottom: 15px;
}
#product .w_box p.day{
  font-size: 14px;
}
#product .w_box p strong{
  font-weight: 600;
    letter-spacing: 0.05rem;
    font-family: "見出ゴMB31", "Midashi Go MB31";
}

.package_design{
  max-width: 860px;
  margin: 40px auto;
  align-items: center;
}
.package_design img{
  width: 53.5%;
}
.package_design .text_box{
  width: 39%;
}
.package_design .text_box h3{
  padding-bottom: 25px;
  margin-bottom: 25px;
  letter-spacing: normal;
}
.package_design .text_box h4{
  margin-bottom: 18px;
  font-size: 14px;
  letter-spacing: normal;
}
.package_design .text_box h4 span{
  letter-spacing: normal;
  font-weight: normal;
  font-size: 13px;
  font-family: "中ゴシックBBB", "Gothic Medium BBB", "Noto Sans JP", sans-serif;
}
.package_design .text_box p{
  font-size: 13px;
  letter-spacing: normal;
}

#yukigamineranch{
  color: #fff;
  background-image: url(../img/bk-yukigamine-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  max-width: 100%;
  padding: 190px 0 60%;
}
#yukigamineranch .vertical_p{
  width: 480px;
  height: 400px;
  margin: 0 auto;
  letter-spacing: normal;
}
#yukigamineranch .vertical_p span.beside{
  margin: -7px 0;
}

section#ranch{
margin-top: 50px;
padding-bottom: 280px;
height:1000px;
}
#ranch p.vertical_p{
  position: absolute;
  right: 29%;
}
#ranch .ranch_img-01,#ranch .ranch_img-02,#ranch .ranch_img-03{
  position: absolute;
}
#ranch .ranch_img-01{
  top: 220px;
  left: 3%;
  width: 41.4%;
}
#ranch .ranch_img-02{
  top: 390px;
  right: 0;
  width: 22%;
}
#ranch .ranch_img-03{
  bottom: 80px;
  right: 21%;
  width: 53%;
}

#sns {
  max-width: 100%;
  background-image: url(../img/bk_line-sns.png),url(../img/bk_line-footer.png);
  background-repeat: repeat-x, repeat-x;
  background-position: top, bottom;
  padding-top: 150px;
  padding-bottom: 200px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

footer{
  background-color: #3174B7;
  color: #fff;
  padding: 46px 0 48px;
  margin-top: -1.4px;
}
footer .footer_inner{
  max-width: 1020px;
  margin: 0 auto;
}
.footer_inner .flex_wrap{
  margin-bottom: 20px;
}
.footer_inner .flex_wrap .footer_logo{
  width: 180px;
}
.footer_inner .flex_wrap .footer_info{
  flex-wrap: nowrap;
  width: 75%;
  margin-top: 75px;
}
.footer_inner .flex_wrap .footer_info ul.footer_info-list li{
  margin-bottom: 25px;
}
.footer_inner .flex_wrap .footer_info ul.footer_info-list li a{
  color: #fff;
  font-size: 14px;
}
.footer_inner .flex_wrap .footer_info ul.footer_info-list li a.none{
  pointer-events: none
}
.footer_inner p{
text-align: center;
}

@media screen and (min-width:1280px) {
  #yukigamineranch {
    background-size: contain;
    padding: 190px 0 618px;
}
}
@media screen and (max-width:900px){
  #about .flex_wrap p.vertical_p {
    width: 35%;
}
}
@media screen and (max-width:767px) {
  .menu {
    width: 100%;
  }
  .hamburger {
    position: fixed;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
}
.hamburger_inner {
  width: 18px;
  height: 16px;
}
.hamburger span {
  height: 2px;
}
.hamburger span:nth-of-type(2) {
  top: 7px;
}
@-webkit-keyframes btn07-bar01 {
  0% {
    -webkit-transform: translateY(7px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar01 {
  0% {
    transform: translateY(7px) rotate(45deg);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.hamburger.active span:nth-child(2) {
  /* transition: all .25s .25s; */
  opacity: 1;
}
.hamburger.active span:nth-child(3) {
  -webkit-animation: btn07-bar03 .75s forwards;
  animation: btn07-bar03 .75s forwards;
}
@-webkit-keyframes btn07-bar03 {
  0% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar03 {
  0% {
    transform: translateY(-7px) rotate(-45deg);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.hamburger.active span:nth-of-type(1) {
  -webkit-animation: active-btn07-bar01 .75s forwards;
  animation: active-btn07-bar01 .75s forwards;
}
@-webkit-keyframes active-btn07-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(7px) rotate(45deg);
  }
}
@keyframes active-btn07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(7px) rotate(45deg);
  }
}
.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
  -webkit-animation: active-btn07-bar03 .75s forwards;
  animation: active-btn07-bar03 .75s forwards;
}
@-webkit-keyframes active-btn07-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
  }
}
@keyframes active-btn07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(-7px) rotate(-45deg);
  }
}
main p {
  font-size: 14px;
}
  .bg_y {
    background-image: url(../img/bk_line-b_sp.png), url(../img/bk-y.png);
  }
  .bg_b {
    background-image: url(../img/bk_line-y_sp.png), url(../img/bk-b.png);
  }
  #sns {
    background-image: url(../img/bk_line-sns_sp.png),url(../img/bk_line-footer_sp.png);
    margin-top: -1px;
    padding: 100px 0;
  }
  .vertical_p {
    line-height: 1.8rem;
    letter-spacing: normal;
    font-size: 16px;
    line-height: 2rem;
}
  #about p.vertical_p, #yukigamineranch .vertical_p,#ranch p.vertical_p{
    writing-mode: unset;
    text-align: center;
  }
  .vertical_p span.beside {
    margin: 0;
  }
  .mv_warp {
    background-image: url(../img/mv_sp.png);
    background-size: 100%;
    background-position: bottom;
    padding: 25px 0 200px;
    margin: 0 4%;
}
.mv_warp .logo {
  width: 64px;
}
.mv_warp .title {
  width: 184px;
  margin-top: 95px;
  margin-right: 10%;
}
section {
  padding: 55px 7% 140px;
}

#about .flex_wrap {
  margin-top: 0px;
}
#about .flex_wrap p.vertical_p,#about .flex_wrap .img_box{
  width: 100%;
  margin-top: 40px;
}
#about .flex_wrap p.vertical_p{
  width: 100%;
}
h2 {
  background-image: url(../img/h2_line-01_sp.png);
  font-size: 18px;
  height: 98px;
}
h2 span {
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-top: 14px;
}
h3{
  text-align: center;
  font-size: 16px;
}
h3::after {
  width: 110px;
}

#feature .position_wrap {
  height: 452px;
}
#feature .vertical_p {
  top: 46px;
  right: 3%;
}
#feature .cow{
  width: 126px;
  top: 112px;
  left: 2%;
}
#feature .milk{
  width: 80px;
  top: 345px;
  right: 10%;
}
#feature .flex_wrap {
  margin-top: 70px;
  padding: 0 6%;
  align-items: center;
}
#feature .flex_wrap img{
  width: 100%;
}
#feature .flex_wrap .text_box{
  width: 100%;
  text-align: left;
}
#feature .flex_wrap .text_box p{
  margin-top: 15px;
}
#feature h3 {
  padding-bottom: 30px;
  margin: 38px 0 30px;
}
#product h2 {
  background-image: url(../img/h2_line-02_sp.png);
}
#product .flex_wrap {
  margin: 37px 0 47px;
}
#product .flex_wrap img{
  width: 100%;
  order: 1;
}
#product .flex_wrap .text_box{
  width: 100%;
  order: 2;
}
#product h3{
  margin: 30px 0;
  font-size: 18px;
}
#product h3 span{
  font-size: 16px;
  padding: 3px 0 15px;
}
#product h3 span.price{
  font-size: 14px;
  padding: 0 0 25px;
}
#product .flex_wrap .text_box p {
  font-size: 12px;
  line-height: 1.2rem;
}
#product .w_box{
  padding: 30px 6% 35px;
 }
 #product .w_box p{
  font-size: 12px;
 }
 #product .w_box .place .p_line {
  margin-bottom: 25px;
}
 #product .w_box .p_line::after{
        width: 85%;
}
#product .w_box h4{
  font-size: 16px;
}
#product .w_box .place h4{
  font-size: 18px;
  margin: 0px 0 15px;
}
#product .w_box p strong{
  letter-spacing: 0.08rem;
}
#product .w_box p.day{
  font-size: 12px;
  margin-top: 10px;
}
#package{
  padding-bottom: 80px;
}
#package h2 {
  background-image: url(../img/h2_line-03_sp.png);
}
.package_design{
  margin: 25px auto 0;
}
.package_design img{
  width: 100%;
}
.package_design .text_box{
  width: 100%;
}
#package .package_design h3 {
  text-align: left;
  font-size: 14px;
  margin-top: 25px;
}
.package_design .text_box h4 span,.package_design .text_box p {
  font-size: 12px;
}
#yukigamineranch{
  background-image: url(../img/bk-yukigamine-sp.png);
  background-size: cover;
  padding: 70px 0 100%;
}
#yukigamineranch h2 {
  margin-left:0px;
  margin-bottom: 20px;
  font-size: 24px;
}
#yukigamineranch .vertical_p{
  width: 100%;
  height: auto;
}
#yukigamineranch .vertical_p p span.space{
  height: 15px;
  display: block;
}

section#ranch{
margin-top: 0px;
padding: 50px 0 0;
height:auto;
overflow: hidden;
}
#ranch p.vertical_p,#ranch .ranch_img-01,#ranch .ranch_img-02,#ranch .ranch_img-03{
  position: static;
}
#ranch .ranch_img-01{
  width: 72%;
  margin: 40px 0 0 4%;
}
#ranch .ranch_img-02{
  width: 100%;
  margin: 12px 0 0 0;
  text-align: right;
}
#ranch .ranch_img-02 img{
  width: 42%;
  margin-right: 6%;
}
#ranch .ranch_img-03{
  width: 120%;
  margin: 30px 0 70px -10%;
}

footer{
  padding: 120px 0 40px;
}
.footer_inner .flex_wrap{
  justify-content: right;
}
.footer_inner .flex_wrap .footer_logo{
  width: 180px;
  margin-right: 10%;
}
.footer_inner .flex_wrap .footer_info{
  flex-wrap: wrap;
  width: 100%;
  margin: 70px 10% 0;
}
.footer_inner .flex_wrap .footer_info ul.footer_info-list{
  width: 100%;
  margin-bottom: 40px;
}
.footer_inner .flex_wrap .footer_info ul.footer_info-list li{
  margin-bottom: 25px;
}
.footer_inner .flex_wrap .footer_info ul.footer_info-list li a{
  font-size: 14px;
}
footer .footer_inner p small{
  font-size: 12px;
}
}


/* ====================================
	 pagetopボタン
==================================== */
#page-top {
  position: absolute;
  bottom: 420px;
  right: 10%;
  width: 76px;
}
@media screen and (max-width:767px) {
  #page-top {
    width: 60px;
    bottom: 960px;;
  }
}

/* ====================================
	 アニメーション
==================================== */
/* スクロールフェードイン */
.fadein {
  opacity: 0;
  transform: translate(0,0);
  transition: all 1.5s;
}
.fadein.fadein-bottom{
    transform: translate(0,30px);
}
.fadein.scrollin{
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ゆらゆら（牛の頭） */
.yurayura {
  animation: yurayura 3s infinite;
}
@keyframes yurayura {
  0% { transform:translateY(0px); }
  50% { transform:translateY(50px); }
  100% { transform:translateY(0px); }
}

/* ゆらゆら2（牛の腕） */
.yurayura2 {
  animation: yurayura2 linear 4s infinite;
  transform-origin: center -50px 0;
}
@keyframes yurayura2 {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}

/* ふわふわ（牛、ミルク） */
.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}

/* バウンド（ページトップ）*/
.bound {
  animation: bound 3s infinite;
}
@keyframes bound {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  10% { transform:translateY(0) }
  20% { transform:translateY(-25px) }
  25% { transform:translateY(0) }
  30% { transform:translateY(-15px) }
  50% { transform:translateY(0) }
  100% { transform:translateY(0) }
}


/* フォントサイズ小 */

@media screen and (max-width:767px) {
  span.fs_s {
    font-size: 8px;
  }
  #product .w_box .p_line::after {
    bottom: 32%;
  }
}