@charset "utf-8";

/*
Theme Name: KobeRokkoBeeFarm
Theme URI: https://tawaraya3882.com/
Description: KobeRokkoBeeFarm
Version: 1.0
Author: Webtry_Hachisuga
Author URI: https://webtry.net
*/

/*全体*/
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
             "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    padding-top: 50px;
}
.wrapper {
    padding: 0 5%;
}
/*ヘッダー*/
.header_container {
    display: flex;
    justify-content: space-between;
    height: 50px;
    position: fixed;
    top: 0;
    z-index: 4000;
    background-color: #4d260b;
    width: 100vw;
}
.company-name {
    padding-right: 10px;
}
.company-name img {
    width: auto;
    height: 50px;
}
#main-title {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    line-height: 1.2rem;
    text-align: center;
    white-space: nowrap;
    color: #ffe14d;
    font-weight: bolder;
}
#main-title p span {
    font-size: 0.9rem;
}
/*ハンバーガーメニュー*/
.btn-menu {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border: none;
}
.btn-menu span {
    display: block;
    width: 40px;
    height: 2px;
    background-color: #ffe14d;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.menu_container {
    display: flex;
    width: 60px;
}
/* ×（バツ）に変形 */
.btn-menu.active span:nth-child(1) {
    transform: rotate(30deg) translate(5px, 5px);
  }
  .btn-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .btn-menu.active span:nth-child(3) {
    transform: rotate(-30deg) translate(7.2px, -7.2px);
}
/*モバイルメニュー*/
#menu-panel {
    background-color: rgba(255, 220, 100, 0.9);
    background-size: cover;
    position: fixed;
    top: 50px;
    right: 0;
    z-index: 3000;
    padding: 2rem 2rem 7rem 2rem;
    width: max(34vw, 20.7rem);
    height: 92vh;
    translate: 100vw;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.menu-list {
    list-style: none;
}
.menu-list li {
    margin: 0 0.5rem;
}
.menu-list li a {
    color: black;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bolder;
    line-height: 3rem;
}
.menu-list li a:hover {
    font-size: 1.7rem;
}
.menu-list a img {
    width: 100%;
    padding: 5px 0;
}
.shop_container {
    padding-top: 1rem;
}
.icon_container {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0 14px;
}
.icon_container img {
    width: 100%;
}
/*ムービー*/
#top-movie video {
    width: 100vw;
    height: 60vh;
    object-fit: cover;
}
#top-movie {
    width: 100%;
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}
.movie-overtext {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 10;
}
.movie-overtext h1 {
    white-space: nowrap;
    text-align: center;
    line-height: 1.5rem;
}
.movie-overtext h1 span {
    font-size: 1rem;
}
.movie-overtext p {
    white-space: nowrap;
    text-align: center;
    padding: 1.5rem 0 2rem 0;
}
.movie-overtext a img {
    width: 40px;
    display: block;
    margin: 0 auto;
}
/*ミツバチと健康*/
.honeybee-health {
    margin: 1rem 0 2.5rem 0;
}
.honeybee-health h2 {
    padding: 1rem 0;
    text-align: center;
    white-space: nowrap;
}
.honeybee-health_image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.honeybee-health p {
    line-height: 1.8rem;
}
/*ミツバチと健康詳細*/
.honeybee-health-box {
    display: flex;
    width: 70vw;
    height: 60vw;
    margin: 0 auto;
    background-color: #faf0e6;
}
.honeybee-health-description {
    width: 45%;
    display: block;
}
.honeybee-health-box_container {
    margin-bottom: 40px;
}
.honeybee-health-description_number {
    font-size: 5rem;
    color: #deb887;
    padding: 0 1rem;
}
.honeybee-health-description_title h3 {
    font-size: 1.4rem;
    padding-left: 0.5rem;
    font-weight: normal;
}
.honeybee-health-box_image {
    width: 55%;
    z-index: 1;
    position: relative;
}
.honeybee-health-box_image img {
    width: 100%;
    height: 60vw;
    object-fit: cover;
}
.honeybee-health-box_text {
    width: 60vw;
    display: block;
    margin: -20px auto 0 auto;
    padding: 1.2rem 1rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 100;
    position: relative;
}
/*YouTube*/
#youtube h3 {
    text-align: center;
}
.youtube {
    display: block;
    width: 70vw;
    height: auto;
    margin: 0 auto;
    padding: 20px 0;
}
.youtube img {
    width: 100%;
}
/*SDGs*/
#SDGs {
    margin: 2rem 0 4rem 0;
}
#SDGs h2 {
    text-align: center;
    padding: 1rem 0;
}
.SDGs_image {
    width: 100%;
    display: block;
    margin: 0 auto;
}
.SDGs_image img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}
#SDGs h3 {
    text-align: center;
    padding: 1rem 0;
}
.SDGs_description {
    display: flex;
    width: 90%;
    margin: 0 auto;
}
.SDGs_description_image img {
    width: 100%;
}
.SDGs_text {
    margin: 2rem 0;
    line-height: 1.6rem;
}
/*まとめ*/
#summary {
    margin-bottom: 100px;
}
.summary_text p {
    line-height: 1.6rem;
}
.button {
    display: block;
    background-color: rgba(255, 220, 100, 0.9);
    width: 80%;
    margin: 2rem auto;
    text-align: center;
    padding: 0.5rem;
    white-space: nowrap;
}
.button a {
    text-decoration: none;
    color: black;
}
/*養蜂*/
#beekeeping {
    margin-top: 50px;
    background-image: url(images/beekeeping.jpeg);
    background-size: cover;
    background-position: center;
    position: relative;
}
#beekeeping::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
#beekeeping h2 {
    padding: 2rem 0;
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}
.beekeeping_text {
    line-height: 1.6rem;
    color: white;
    padding-bottom: 2rem;
    z-index: 2;
    position: relative;
}
/*養蜂の初め方*/
#beekeeping-description {
    padding: 50px 0;
}
#beekeeping-description h3 {
    text-align: center;
    padding-bottom: 1rem;
}
.beekeeping-box {
    display: flex;
    width: 70vw;
    height: 60vw;
    margin: 0 auto;
    background-color: #fff0f5;
}
.beekeeping_number {
    font-size: 5rem;
    color: #ffb6c1;
    padding: 0 1rem;
}
/*養蜂に必要な資材*/
#beekeeping-supplies {
    padding-bottom: 50px;
}
#beekeeping-supplies h3 {
    text-align: center;
    padding-bottom: 2rem;
}
.beekeeping-supplies {
    padding: 40px 0;
}
.beekeeping-supplies_image {
    width: 80%;
    display: block;
    margin: 0 auto;
    position: relative;
    transition: transform 0.3s ease;
}
.beekeeping-supplies_image:hover {
    transform: scale(1.2);
}
/*.beekeeping-supplies_image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}
.beekeeping-supplies_image:hover::after {
    background-color: rgba(0, 0, 0, 0.4);
}*/
.beekeeping-supplies_image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    display: block;
}
.beekeeping-supplies_title {
    position: absolute;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    text-align: center;
    padding: 1rem 0;
}
.beekeeping-supplies_text {
    position: absolute;
    line-height: 1.2rem;
    font-size: 0.9rem;
    width: 80%;
    display: block;
    margin: 0 auto;
    color: white;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.beekeeping-supplies_image:hover .beekeeping-supplies_title,
.beekeeping-supplies_image:hover .beekeeping-supplies_text {
    opacity: 1;
}
.button-beekeeping {
    display: block;
    background-color: rgba(255, 220, 100, 0.9);
    width: 50%;
    margin: 2rem auto;
    text-align: center;
    padding: 0.5rem;
    white-space: nowrap;
}
.button-beekeeping a {
    text-decoration: none;
    color: black;
}
/*自家製ハチミツ*/
#honey {
    background-image: url(images/honey-top.jpeg);
    background-size: cover;
    background-position: center;
    position: relative;
}
#honey::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
#honey h2 {
    padding: 2rem 0;
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}
.honey_text {
    line-height: 1.6rem;
    color: white;
    padding-bottom: 2rem;
    z-index: 2;
    position: relative;
}
/*ハチミツアイテム*/
#honey-item {
    padding: 50px 0;
}
.honey-item {
    padding-bottom: 30px;
}
.honey-item_image {
    display: block;
    width: 70%;
    margin: 0 auto;
}
.honey-item_image img {
    width: 100%;
    height: auto;
}
.honey-item_title {
    text-align: center;
    padding: 1rem 0;
    white-space: nowrap;
}
.button-honey {
    display: block;
    background-color: rgba(255, 220, 100, 0.9);
    width: 70%;
    margin: 2rem auto;
    text-align: center;
    padding: 0.5rem;
    white-space: nowrap;
}
.button-honey a {
    text-decoration: none;
    color: black;
}
/*読みもの*/
#column h2 {
    text-align: center;
    padding: 2rem 0;
}
.column_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5%;
    padding: 2rem 0;
}
.column_top-text {
    line-height: 1.6rem;
}
.column_image img {
    width: 100%;
}
.button-column {
    display: block;
    background-color: rgba(255, 220, 100, 0.9);
    width: 60%;
    margin: 4rem auto;
    text-align: center;
    padding: 0.5rem;
    white-space: nowrap;
}
.button-column a {
    text-decoration: none;
    color: black;
}
/*オンラインショップ*/
#shop-banner h2 {
    text-align: center;
    padding: 2rem 0;
}
.shop-banner_text {
    line-height: 1.6rem;
    padding: 1rem 0;
}
.shop-banner {
    width: 60%;
    display: block;
    margin: 30px auto;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.8);
}
.shop-banner img {
    width: 100%;
}
/*フッター*/
footer {
    margin-top: 70px;
    padding: 60px 0;
    background-color: #faf0e6;
}
.footer-logo {
    width: 30%;
    display: block;
    margin: 0 auto;
}
.footer-logo img {
    width: 100%;
}
.company p {
    text-align: center;
    line-height: 1.8rem;
    padding: 1rem 0;
}
.company p span {
    font-size: 1.2rem;
}
.footer-tel {
    text-align: center;
    font-size: 1.6rem;
}
.footer-contact {
    display: block;
    margin: 30px auto;
    width: 12rem;
    border: solid 1px;
    padding: 0.5rem 1rem;
    border-radius: 30px;
}
.footer-contact p {
    font-size: 1.6rem;
    text-align: center;
}
.footer-icon_container {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.footer-icon {
    width: 40px;
}
.footer-icon img {
    width: 100%;
}
#footer-menu {
    padding-bottom: 2rem;
}
#footer-menu ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0 5px;
}
#footer-menu ul li {
    font-size: 0.7rem;
    list-style: none;
    white-space: nowrap;
}
#footer-menu ul li a {
    text-decoration: none;
    color: black;
}
#footer-menu ul li a:hover {
    color: #21C8D3;
}
#footer-menu ul li+ li {
    border-left: solid 1px;
    padding-left: 0.5rem;
}
#copyright {
    text-align: center;
    padding: 2rem 0;
    font-size: small;
}
/**/
/*養蜂*/
.pagetitle {
    background-size: cover;
    position: relative;
}
.pagetitle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
#beekeeping-pagetop {
    background-image: url(images/beekeeping.jpeg);
    background-position: 50% 30%;
}
.pagetitle h1 {
    padding: 2rem 0;
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    font-size: 1.7rem;
}
.page-title_box {
    position: relative;
    display: block;
    width: 90%;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    padding: 1rem;
    margin-bottom: 40px;
}
.page-title_box h2 {
    padding-left: 50px;
    line-height: 2rem;
}
.page-title_box h2 span {
    font-size: 0.8rem;
}
.yajirusi-title {
    display: block;
    position: absolute;
    top: 13px;
    left: 15px;
}
.yajirusi-title img {
    width: 30px;
    padding-top: 3px;
}
/**/
/*ビーラボ*/
#bee-lab-pagetop {
    background-image:url(images/honybee.jpeg) ;
    background-position-y: 40%;
}
.bee-lab_description_container {
    margin-bottom: 50px;
}
.bee-lab_description_image {
    width: 80%;
    display: block;
    margin: 0 auto;
}
.bee-lab_description_image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.bee-lab_description_text {
    padding: 1.4rem 0;
    line-height: 1.8rem;
}
.bee-lab_description_container h3 {
    padding: 1rem 0 1rem 1rem;
}
.bee-lab_description_container ul {
    line-height: 1.5rem;
    padding-left: 1rem;
}
.bee-lab_description_container ul li {
    padding-bottom: 0.7rem;
}
.questionnaire-precautions {
    line-height: 1.8rem;
}
.questionnaire-flow h3 {
    padding-bottom: 1rem;
}
.questionnaire-flow ul {
    padding-left: 1rem;
    display: inline-block;
    text-align: left;
    line-height: 1.5rem;
}
.questionnaire-flow ul li {
    padding-bottom: 1rem;
}

/* ボタン共通スタイル */
.questionnaire-web button,
.questionnaire-pdf button {
  display: inline-block;
  width: 240px;
  padding: 14px 20px;
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #3b9ecf, #63c3d1);
  border: none;
  border-radius: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.questionnaire-web button a,
.questionnaire-pdf button a {
    text-decoration: none;
    color: white;
}
/* WEB問診ボタン（青系） */
.questionnaire-web button {
  background: linear-gradient(135deg, #007baf, #00a5c9);
}

/* PDFダウンロードボタン（オレンジ系） */
.questionnaire-pdf button {
  background: linear-gradient(135deg, #e27a3f, #f5b15b);
}

/* ホバー時アニメーション */
.questionnaire-web button:hover,
.questionnaire-pdf button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  opacity: 0.9;
}

/* セクション内のレイアウト調整 */
.questionnaire-web,
.questionnaire-pdf,
.questionnaire-flow {
  text-align: center;
  margin: 40px auto;
}

.questionnaire-web h3,
.questionnaire-pdf h3,
.questionnaire-flow h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  margin-top: 80px;
  color: #333;
}

.questionnaire-web p,
.questionnaire-pdf p {
  color: #555;
  font-size: 0.9rem;
  display: inline-block;
  text-align: left;
  line-height: 1.3rem;
  width: 16rem;
}
.page-title_box-2 {
    position: relative;
    display: block;
    width: 90%;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    padding: 1rem;
    margin-bottom: 40px;
    background-color: #faf0e6;
}
.page-title_box-2 h2 {
    padding-left: 50px;
    line-height: 2rem;
}
.page-title_box-2 h2 span {
    font-size: 0.8rem;
}
.points-to-note h3 {
    padding: 1rem 0 1rem 1rem;
    color: #333;
    font-size: 1.1rem;
}
.points-to-note p {
    text-align: right;
    padding: 1rem;
}
.points-to-note ol {
    padding-left: 1rem;
    display: inline-block;
    text-align: left;
    line-height: 1.3rem;
    font-size: 0.9rem;
    color: #555;
}
.points-to-note ol li {
    padding-bottom: 0.8rem;
}
/**/
/*自家製ハチミツ*/
#honey-pagetop {
    background-image: url(images/honey-top.jpeg);
    background-position-y: 50%;
}
.construction {
    font-size: 1.3rem;
    padding: 2rem;
}
/**/
/*読みもの*/
#column-pagetop {
    background-image: url(images/column.jpeg);
    background-position-y: 10%;
}
/**/
/*WEB問診フォーム*/
#bee-medical-form-pagetop {
    background-image: url(images/hachinosu.jpeg);
    background-position-y: 70%;
}
.contact-page_text p {
    padding: 1rem;
    line-height: 1.7rem;
}
.contact-page_text ul {
    font-size: 0.9rem;
    padding: 1rem 1rem 1rem 2rem;
    line-height: 1.3rem;
}
.contact-page_text ul li {
    padding-bottom: 0.8rem;
}
#contact-form p {
    padding: 1rem;
}
/*コンタクトフォーム*/
/* 全体 */
.wpcf7 form {
    max-width: 800px;
    margin: 0 auto;
    background: #fdfdfd;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  /* ラベル・テキスト配置 */
  .wpcf7 form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
  }
  
  /* 必須マーク */
  .wpcf7 .required {
    color: #d33;
    font-weight: bold;
  }
  
  /* 入力欄 */
  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 input[type="tel"],
  .wpcf7 textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 1rem;
  }
  
  /* ラジオ・チェックボックス */
  .wpcf7 input[type="radio"],
  .wpcf7 input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
  }
  
  /* ボタン */
  .wpcf7 input[type="submit"] {
    width: 100%;
    background-color: #4d260b;
    color: #fff;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .wpcf7 input[type="submit"]:hover {
    background-color: #3b1c08;
  }
  
  /* 注意書き */
  .form-note {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
  }

@media (max-width: 767px) {
    .pc {
        display: none !important;
    }
}
@media (min-width: 768px) {
    body {
        padding-top: 0;
        position: relative;
    }
    .mb {
        display: none !important;
    }
    /*メインメニュー*/
    header {
        height: 80px;
    }
    .header_container {
        height: 80px;
    }
    .company-name img {
        height: 80px;
    }
    #main-menu {
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 8000;
        transform: translate(-50%);
        
    }
    #main-menu nav ul {
        display: flex;
        justify-content: center;
        line-height: 60px;
    }
    #main-menu nav ul li {
        list-style: none;
        font-size: 1.3rem;
        white-space: nowrap;
        font-weight: bolder;
        padding: 0 1.5rem;
        border-right: 1px dashed #ffe14d;
        height: 60px;
        margin-top: 10px;
    }
    #main-menu nav ul li:first-child {
        border-left: 1px dashed #ffe14d;
    }
    #main-menu nav ul li a {
        text-decoration: none;
        color: #ffe14d;
    }
    #main-menu nav ul li a:hover {
        color: #ffc44d;
    }
    /*ムービー*/
    #top-movie video {
        height: 70vh;
    }
    #top-movie {
        height: 70vh;
    }
    /*ミツバチと健康*/
    .honeybee-health {
        text-align: center;
        margin: 6rem 0 8rem 0;
    }
    .honeybee-health h2 {
        font-size: 2rem;
        padding: 4rem 0;
    }
    .honeybee-health p {
        font-size: 1.2rem;
        line-height: 2.7rem;
    }
    .honeybee-health_image {
        width: 40%;
        display: block;
        margin: 0 auto;
    }
    .honeybee-health_image img {
        height: 300px;
    }
    /*ミツバチと健康詳細*/
    #honeybee-health-description {
        display: flex;
        justify-content: center;
        width: 80%;
        margin: 0 auto 200px auto;
        align-items: flex-start;
        position: relative;
    }
    .honeybee-health-box_container {
        flex: 1;
        position: relative;
        transition: all 0.3s ease;
    }
    .honeybee-health-description_title h3 {
        font-size: 1.6rem;
        padding-top: 1.5rem;
    }
    .honeybee-health-box_container:nth-child(2) {
        top: 40px;
    }
    .honeybee-health-box_container:nth-child(3) {
        top: 80px;
    }
    .honeybee-health-box {
        width: 100%;
        height: 100%;
    }
    .honeybee-health-box_image img {
        height: 100%;
        aspect-ratio: 3/4;
    }
    .honeybee-health-box_text {
        width: 100%;
        font-size: 1.1rem;
    }
    /*Youtube*/
    #youtube h3 {
        font-size: 1.4rem;
        padding-bottom: 2rem;
    }
    .youtube_container {
        display: flex;
        gap: 50px;
        width: 70%;
        margin: 0 auto;
    }
    /*SDGs*/
    #SDGs {
        margin: 200px 0;
    }
    #SDGs h2 {
        font-size: 2rem;
        padding: 2rem 0;
    }
    .SDGs_image {
        width: 40%;
    }
    .SDGs_text {
        font-size: 1.2rem;
        line-height: 2rem;
        text-align: center;
    }
    #SDGs h3 {
        font-size: 1.4rem;
        margin-top: 80px;
    }
    .SDGs_description {
        width: 30%;
        padding-top: 1rem;
    }
    /*まとめ*/
    #summary {
        display: block;
        width: 50%;
        margin: 0 auto;
    }
    .summary_text p {
        font-size: 1.2rem;
        line-height: 2rem;
    }
    .button {
        width: 26rem;
        margin: 5rem auto;
    }
    .button a {
        font-size: 1.4rem;
    }
    /*養蜂*/
    #beekeeping {
        margin-top: 180px;
        padding: 70px 0;
    }
    #beekeeping h2 {
        font-size: 2rem;
    }
    .beekeeping_text {
        font-size: 1.2rem;
        display: block;
        width: 60%;
        margin: 0 auto;
        line-height: 2.3rem;
    }
    /*養蜂の始め方*/
    #beekeeping-description {
        margin-top: 160px;
    }
    #beekeeping-description h3 {
        font-size: 1.4rem;
        padding-bottom: 4rem;
    }
    .honeybee-health-box_container_outer {
        display: flex;
        justify-content: center;
        width: 80%;
        margin: 0 auto 200px auto;
        align-items: flex-start;
        position: relative;
    }
    .beekeeping-box {
        width: 100%;
        height: 100%;
    }
    /*養蜂に必要な資材や飼料*/
    #beekeeping-supplies h3 {
        font-size: 1.4rem;
        padding-bottom: 5rem;
    }
    .beekeeping-supplies_container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        width: 90%;
        margin: 0 auto;
    }
    .button-beekeeping {
        width: 17rem;
        margin: 5rem auto;
    }
    .button-beekeeping a {
        font-size: 1.4rem;
    }
    /*自家製ハチミツ*/
    #honey {
        margin-top: 140px;
        padding: 70px 0;
    }
    #honey h2 {
        font-size: 2rem;
    }
    .honey_text {
        font-size: 1.2rem;
        display: block;
        width: 60%;
        margin: 0 auto;
        line-height: 2.3rem;
    }
    #honey-item {
        margin: 100px 0;
    }
    .honey-item_container_outer {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 70%;
        margin: 0 auto 80px auto;
        gap: 80px 0;
    }
    .button-honey {
        width: 23rem;
        margin: 5rem auto;
    }
    .button-honey a {
        font-size: 1.4rem;
    }
    /*読みもの*/
    #column h2 {
        font-size: 2rem;
    }
    .column_top-text {
        font-size: 1.2rem;
        text-align: center;
        line-height: 2.3rem;
    }
    .column_container {
        padding: 80px 0 40px 0;
        grid-template-columns: repeat(3, 1fr);
        width: 70%;
        margin: 0 auto;
        gap: 100px;
    }
    .button-column {
        width: 18rem;
    }
    .button-column a {
        font-size: 1.4rem;
    }
    /*オンラインショップ*/
    #shop-banner {
        margin: 150px 0;
    }
    #shop-banner h2 {
        font-size: 2rem;
    }
    .shop-banner_text {
        font-size: 1.2rem;
        text-align: center;
        line-height: 2.3rem;
    }
    .shop-banner_container {
        display: flex;
        justify-content: center;
        gap: 50px;
        width: 60%;
        margin: 0 auto;
        padding-top: 40px;
    }
    /*フッター*/
    .footer-logo {
        width: 200px;
    }
    .company p {
        padding: 3rem 0;
    }
    .company p span {
        font-size: 1.7rem;
        line-height: 3rem;
    }
    #footer-menu {
        padding-bottom: 3rem;
    }
    #footer-menu ul li {
        font-size: 0.9rem;
    }
    .footer-icon_container {
        padding: 1rem 0;
    }
    /**/
    /*養蜂*/
    .pagetitle {
        padding: 70px 0;
    }
    .pagetitle h1 {
        font-size: 2rem;
    }
    .page-title_box {
        width: 45vw;
        padding: 2rem;
    }
    .page-title_box h2 {
        padding-left: 20%;
        font-size: 1.8rem;
        line-height: 2.4rem;
    }
    .page-title_box h2 span {
        font-size: 0.9rem;
    }
    .yajirusi-title img {
        width: 40px;
        padding-top: 5px;
    }
    .yajirusi-title {
        top: 25px;
        left: 13%;
    }
    /**/
    /*ビーラボクリニック*/
    .pc_outer {
        display: flex;
        margin: 0 3%;
    }
    .bee-lab_aside {
        border-left: dotted 1px #c0c0c0c0;
        padding-left: 2%;
    }
    .bee-lab_main {
        width: 65%;
    }
    .bee-lab_aside {
        width: 35%;
    }
    .page-title_box-2 {
        padding: 2rem;
    }
    .page-title_box-2 h2 {
        padding-left: 20%;
        font-size: 1.8rem;
        line-height: 2.4rem;
    }
    .page-title_box-2 h2 span {
        font-size: 0.9rem;
    }
    .bee-lab_description_image {
        width: 60%;
    }
    .bee-lab_description_image img {
        height: 200px;
    }
    .bee-lab_description_text {
        font-size: 1.1rem;
        line-height: 2.2rem;
        padding: 2.4rem 0 3rem 0;
    }
    .bee-lab_description_container h3 {
        font-size: 1.3rem;
    }
    .bee-lab_description_container ul {
        font-size: 1.1rem;
        line-height: 2.2rem;
        padding-bottom: 3rem;
    }
    .questionnaire-precautions {
        line-height: 2.2rem;
        font-size: 1.1rem;
    }
    .questionnaire-web h3,
    .questionnaire-pdf h3,
    .questionnaire-flow h3 {
      font-size: 1.6rem;
      margin-bottom: 15px;
      margin-top: 150px;
    }
    .questionnaire-web button,
    .questionnaire-pdf button {
        width: 60%;
        margin-top: 20px;
        font-size: 1.2rem;
    }
    .questionnaire-flow ul {
        line-height: 1.9rem;
        font-size: 1.1rem;
    }
    .questionnaire-flow ul li {
        padding-bottom: 2rem;
    }
    .points-to-note ol {
        line-height: 1.5rem;
    }
    .points-to-note ol li {
        padding: 0.9rem 0;
    }
    .points-to-note p {
        padding-top: 2rem;
    }
    /**/
    /*自家製ハチミツ*/
    .construction {
        font-size: 1.4rem;
        text-align: center;
        padding-top: 4rem;
    }
    /**/
    /*WEB問診フォーム*/
    #contact-page_description {
        display: block;
        width: 60%;
        margin: 0 auto;
    }
    .contact-page_text p {
        font-size: 1.2rem;
        line-height: 2.5rem;
        padding-top: 4rem;
    }
    .contact-page_text ul {
        font-size: 1.1rem;
        padding: 2rem;
    }
    #contact-form p {
        font-size: 1.2rem;
        display: block;
        width: 60%;
        margin: 0 auto;
    }
    .contact-form {
        margin-top: 100px;
    }
}