@charset "UTF-8";
li {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  font-family: "Noto Serif JP", serif;
}

.mb_br {
  display: none;
}
@media (width < 431px) {
  .mb_br {
    display: block;
  }
}

@media (width < 769px) {
  .pc_br {
    display: none;
  }
}

/*----------フェード----------*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/*----------ヘッダー----------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
header a {
  color: #000;
  font-weight: bold;
  transition: all 0.3s ease;
}
header a:hover {
  opacity: 0.4;
}
.slide_nav{
	background-color: #fff;
}
.slide_nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 5px 15px;
}
@media (width < 1441px) {
  .slide_nav_wrapper {
    padding: 5px 5%;
  }
}
@media (width < 769px) {
  .slide_nav_wrapper {
    display: none;
  }
}

.header_logo {
  display: inline-block;
  width: 288px;
  height: 73px;
}
@media (width < 431px) {
  .header_logo {
    width: 206px;
    height: 52px;
  }
}
.header_logo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.header_pc_nav {
  width: 50%;
}
@media (width < 1101px) {
  .header_pc_nav {
    width: 60%;
  }
}
.header_pc_nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mb_header__container {
  display: none;
  align-items: center;
  justify-content: space-between;
}
@media (width < 769px) {
  .mb_header__container {
    display: flex;
    padding-left: 3%;
  }
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 550;
  transition: 0.5s all;
}

@media (width < 769px) {
  .hamburger {
    width: 120px;
    height: 80px;
  }
}
@media (width < 431px) {
  .hamburger {
    width: 80px;
    height: 70px;
  }
}
.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 3px;
  background-color: #404040;
  transition: all 0.5s;
}

@media (width < 1281px) {
  .hamburger span,
.hamburger span::after,
.hamburger span::before {
    width: 30px;
  }
}
.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  bottom: -10px;
}

.hamburger.open span {
  background-color: transparent;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #fff;
}

.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
  background-color: #fff;
}

/* ===============================================
メニューのスタイリング
=============================================== */
.mb_nav {
  position: fixed;
  width: 60%;
  height: 100vh;
  top: 0;
  right: -120%;
  background-color: #404040;
  opacity: 0.9;
  padding: 100px 0;
  transition: all 0.5s;
  z-index: 500;
}

@media (width < 431px) {
  .mb_nav {
    width: 100%;
    padding: 30% 0 100px 0;
  }
}
.mb_nav__list {
  display: block;
}

.mb_nav__list li {
  padding-left: 5%;
}

.mb_nav__item a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 20px 0 20px 50px;
  text-transform: uppercase;
}

.mb_nav__item a:hover {
  color: #0f5474;
  background-color: #fff;
  width: 60%;
}

@media (width < 1101px) {
  .mb_nav__item a:hover {
    width: 80%;
  }
}
@media (width < 769px) {
  .mb_nav__item a:hover {
    width: 100%;
  }
}
.mb_nav.open {
  right: 0;
}

.mb_header__container {
  display: none;
  align-items: center;
  justify-content: space-between;
}
@media (width < 769px) {
  .mb_header__container {
    display: flex;
  }
}

/* ===============================================
ファーストビュー
=============================================== */
.top_fv, .our_mission {
  background-image: url(img/bg.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.top_fv_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 769px) {
  .top_fv_wrapper {
    display: block;
    padding-top: 20%;
  }
}
@media (width < 431px) {
  .top_fv_wrapper {
    padding-top: 25%;
  }
}

.top_fv_inner {
  position: relative;
  width: 70%;
  background-color: #fff;
}
@media (width < 769px) {
  .top_fv_inner {
    display: none;
  }
}

/*----------キャッチコピー----------*/
.top_fv_title {
  writing-mode: vertical-rl; /* 縦書き */
  text-orientation: upright;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 30%;
  height: 100%;
}
@media (width < 769px) {
  .top_fv_title {
    writing-mode: initial;
    width: 100%;
    display: block;
    padding: 0 0 20% 5%;
  }
}
@media (width < 431px) {
  .top_fv_title {
    padding: 0 0 30% 5%;
  }
}
.top_fv_title h1, .top_fv_title h2 {
  font-size: 50px;
}
@media (width < 1441px) {
  .top_fv_title h1, .top_fv_title h2 {
    font-size: 40px;
  }
}
@media (width < 1101px) {
  .top_fv_title h1, .top_fv_title h2 {
    font-size: 35px;
  }
}
@media (width < 769px) {
  .top_fv_title h1, .top_fv_title h2 {
    font-size: 30px;
  }
}
@media (width < 431px) {
  .top_fv_title h1, .top_fv_title h2 {
    font-size: 25px;
  }
}

.fv_text {
  position: absolute;
  opacity: 0;
  transition: opacity 1.5s ease-in-out; /* クロスフェード用 */
}

.fv_text.active {
  opacity: 1;
}

/* ===============================================
ファーストビューのスライドショー
=============================================== */
.top_fvimg {
  width: 100%;
  height: 100vh;
}

.slider-area {
  position: relative;
  width: 100%;
  height: 100%;
}

@media (width < 769px) {
  .slider-area {
    width: 100%;
    height: 60vh;
  }
}
.slider-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  -webkit-animation: slideShow 30s linear infinite 0s;
  animation: slideShow 30s linear infinite 0s;
}

.slider-item:nth-child(2) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}

.slider-item:nth-child(3) {
  -webkit-animation-delay: 20s;
  animation-delay: 20s;
}

.slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@-webkit-keyframes slideShow {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  20% {
    opacity: 1;
  }
  40%, 100% {
    opacity: 0;
  }
}
@keyframes slideShow {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  20% {
    opacity: 1;
  }
  40%, 100% {
    opacity: 0;
  }
}
/*---------モバイル---------*/
.mb_top_fvimg {
  display: none;
  width: 90%;
  height: 60vh;
  background-color: #fff;
}

@media (width < 769px) {
  .top_fvimg {
    display: none;
  }
  .mb_top_fvimg {
    display: block;
  }
}
/*---------CTA---------*/
main {
  position: relative;
}

.shop_btn {
  position: fixed;
  bottom: 20px; /* 下からの余白 */
  right: 20px; /* 右からの余白 */
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #000030; /* ボタンの色（好みで変更） */
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 100px; /* テキストを縦中央に */
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 100; /* 他要素より上に表示 */
}

.shop_btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
@media (width < 431px) {
.shop_btn {
  position: fixed;
  bottom: 20px; /* 下からの余白 */
  right: 20px; /* 右からの余白 */
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 12px;
  line-height: 50px; /* テキストを縦中央に */
}
}

/*---------セクションタイトル--------*/
.section_title p {
  font-size: 25px;
}
@media (width < 1281px) {
  .section_title p {
    font-size: 20px;
  }
}
@media (width < 1101px) {
  .section_title p {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .section_title p {
    font-size: 12px;
  }
}
.section_title h2 {
  font-size: 40px;
}
@media (width < 1281px) {
  .section_title h2 {
    font-size: 35px;
  }
}
@media (width < 1101px) {
  .section_title h2 {
    font-size: 25px;
  }
}
@media (width < 769px) {
  .section_title h2 {
    font-size: 20px;
  }
}

/* ===============================================
ミッションについて
=============================================== */
.our_mission {
  padding: 10% 5%;
}
@media (width < 769px) {
  .our_mission {
    padding: 10% 3%;
  }
}

.our_mission_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4列 */
  gap: 20px; /* ボックスの余白 */
}

/* 1100px未満で2列に切り替え */
@media (max-width: 1100px) {
  .our_mission_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* スマホ（600px以下）は1列に */
@media (max-width: 600px) {
  .our_mission_wrapper {
    grid-template-columns: 1fr;
  }
}
.our_mission_box {
  background-color: #fff;
  padding: 5% 7%;
  margin-top: 20%;
}
@media (width < 769px) {
  .our_mission_box {
    margin-top: 10%;
  }
}
.our_mission_box h3 {
  font-size: 20px;
}
@media (width < 769px) {
  .our_mission_box h3 {
    font-size: 18px;
  }
}
.our_mission_box img {
  width: 100%;
  display: block;
  padding: 10% 0;
}
.our_mission_box p {
  font-size: 16px;
  line-height: 2rem;
}

/* ===============================================
アバウトアス
=============================================== */
.aboutus_inner {
  display: flex;
  justify-content: center; /* 横方向の中央 */
  align-items: center; /* 縦方向の中央 */
  height: 100%; /* 親の高さを指定しておく */
  background-image: url(img/aboutus.webp);
  background-size: cover;
}

.aboutus_title {
  writing-mode: vertical-rl; /* 縦書き */
  letter-spacing: 0.2rem;
  padding: 10% 0;
}

.aboutus_contents {
  padding: 5% 0;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
@media (width < 1101px) {
  .aboutus_contents {
    padding: 5%;
  }
}
@media (width < 431px) {
  .aboutus_contents {
    padding: 10% 3%;
  }
}
.aboutus_contents h3 {
  font-size: 30px;
  padding-bottom: 3%;
}
@media (width < 1281px) {
  .aboutus_contents h3 {
    font-size: 25px;
  }
}
@media (width < 1101px) {
  .aboutus_contents h3 {
    font-size: 20px;
  }
}
@media (width < 769px) {
  .aboutus_contents h3 {
    font-size: 18px;
  }
}
@media (width < 431px) {
  .aboutus_contents h3 {
    font-size: 16px;
  }
}
.aboutus_contents p {
  font-size: 18px;
  line-height: 3rem;
}
@media (width < 1101px) {
  .aboutus_contents p {
    font-size: 16px;
  }
}
@media (width < 769px) {
  .aboutus_contents p {
    font-size: 14px;
  }
}

/* ===============================================
美唄市について
=============================================== */
.about_bibai {
  background-color: #F9F9F9;
}

.bibai_title {
  text-align: center;
  padding-top: 5%;
}
@media (width < 769px) {
  .bibai_title {
    padding-top: 15%;
  }
}

.bibai_inner {
  padding-top: 5%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1101px) {
  .bibai_inner {
    padding: 10% 5% 0 5%;
  }
}
@media (width < 431px) {
  .bibai_inner {
    padding: 10% 3% 0 3%;
  }
}

.bibai_contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 769px) {
  .bibai_contents {
    display: block;
  }
}

.bibai_map {
  width: 45%;
}
@media (width < 769px) {
  .bibai_map {
    width: 100%;
  }
}
.bibai_map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bibai_text {
  width: 45%;
}
@media (width < 769px) {
  .bibai_text {
    width: 100%;
  }
}
.bibai_text h3 {
  padding-bottom: 3%;
  font-size: 25px;
  line-height: 2.5rem;
}
@media (width < 1281px) {
  .bibai_text h3 {
    font-size: 20px;
  }
}
@media (width < 1101px) {
  .bibai_text h3 {
    font-size: 18px;
  }
}
@media (width < 769px) {
  .bibai_text h3 {
    padding-top: 10%;
  }
}
.bibai_text p {
  font-size: 16px;
  line-height: 3rem;
}
@media (width < 1101px) {
  .bibai_text p {
    font-size: 14px;
  }
}
@media (width < 769px) {
  .bibai_text p {
    font-size: 14px;
  }
}

.bibai_img {
  position: relative;
  background-image: url(img/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 15%;
  height: 90vh;
}

@media (width < 769px) {
  .bibai_img {
    height: 50vh;
  }
}
@media (width < 431px) {
  .bibai_img {
    height: 35vh;
  }
}
.bibai_img_child1 {
  width: 40%;
  height: auto;
  position: absolute;
  top: -10%;
  left: 10%;
}

@media (width < 769px) {
  .bibai_img_child1 {
    width: 50%;
    left: 5%;
  }
}
@media (width < 431px) {
  .bibai_img_child1 {
    width: 55%;
    left: 3%;
  }
}
.bibai_img_child1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.bibai_img_child2 {
  width: 25%;
  height: auto;
  position: absolute;
  top: 33%;
  left: 35%;
}

@media (width < 769px) {
  .bibai_img_child2 {
    width: 30%;
    top: 30%;
    left: 30%;
  }
}
@media (width < 431px) {
  .bibai_img_child2 {
    width: 35%;
    left: 25%;
    top: 25%;
  }
}
.bibai_img_child2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.bibai_img_child3 {
  width: 25%;
  height: auto;
  position: absolute;
  top: -5%;
  right: 10%;
}

@media (width < 769px) {
  .bibai_img_child3 {
    width: 30%;
    right: 5%;
  }
}
@media (width < 431px) {
  .bibai_img_child3 {
    width: 35%;
    right: 3%;
  }
}
.bibai_img_child3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ===============================================
4代目・挑戦
=============================================== */
.sec_challenge {
  padding: 7% 0;
}
@media (width < 769px) {
  .sec_challenge {
    padding: 15% 0;
  }
}

.challenge_wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.challenge_title {
  text-align: left;
  padding-left: 3%;
}

.challenge_img {
  width: 100%;
}
.challenge_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.challenge_text p {
  font-size: 20px;
  padding-left: 3%;
  line-height: 2.5rem;
}
@media (width < 769px) {
  .challenge_text p {
    font-size: 14px;
  }
}

/* ===============================================
フッター
=============================================== */
footer {
  background-image: url(img/bg.webp);
  background-position: center top;
  background-size: cover;
  padding: 5% 0 0 0;
}

.footer_inner {
  display: flex;
  justify-content: space-between; /* ロゴとナビの間を広げる */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* 画面が狭い時は折り返す */
  gap: 20px;
}
@media (width < 1281px) {
  .footer_inner {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .footer_inner {
    display: block;
  }
}

.footer_logo {
  width: 25%;
}
.footer_logo a {
  display: block;
  width: 15%;
}
@media (width < 1101px) {
  .footer_logo a {
    margin: 0 auto;
  }
}
.footer_logo a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (width < 1101px) {
  .footer_logo {
    margin: 0 auto;
  }
}
@media (width < 769px) {
  .footer_logo {
    width: 50%;
  }
}
.footer_logo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.footer_logo .footer_logo_img {
  display: block;
  width: 288px;
  height: 73px;
}
@media (width < 769px) {
.footer_logo .footer_logo_img {
    width: 206px;
    height: 52px;
  }
}
/* ナビの横並び2行 */
.footer_nav ul {
  display: flex;
  flex-wrap: wrap; /* 2行に折り返す */
  gap: 20px 40px; /* 行・列の間隔 */
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (width < 1101px) {
  .footer_nav ul {
    display: none;
  }
}

.footer_nav li {
  flex: 1 1 45%; /* 2列分割の目安 */
}

.footer_nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.copyright {
  font-size: 14px;
  padding: 5% 0 1rem 0;
  text-align: center;
}
@media (width < 1101px) {
  .copyright {
    font-size: 12px;
  }
}

/* ===============================================
個別ページ
=============================================== */
.about_nouyaku_inner {
  display: flex;
  justify-content: center; /* 横方向の中央 */
  align-items: center; /* 縦方向の中央 */
  height: 100%; /* 親の高さを指定しておく */
  background-image: url(img/nouyaku.webp);
  background-size: cover;
}

.about_nouyaku_title {
  letter-spacing: 0.2rem;
  padding: 10% 0;
  text-align: center;
}
@media (width < 769px) {
  .about_nouyaku_title {
    padding: 20% 0;
  }
}

.about_nouyaku_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5% 0;
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1101px) {
  .about_nouyaku_box {
    padding: 5%;
  }
}
@media (width < 769px) {
  .about_nouyaku_box {
    display: block;
  }
}
@media (width < 431px) {
  .about_nouyaku_box {
    padding: 10% 3%;
  }
}
.about_nouyaku_box .about_nouyaku_img {
  width: 50%;
}
@media (width < 769px) {
  .about_nouyaku_box .about_nouyaku_img {
    width: 100%;
  }
}
.about_nouyaku_box .about_nouyaku_img p {
  text-align: center;
  font-weight: bold;
}
.about_nouyaku_box .about_nouyaku_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=style.css.map */