@charset "utf-8";
@import url(destyle.css);

/* 共通 */
:root {
    --base: #fefffe;
    --main01: #203000;
    --main02: #577A00;
    --main03:#F9FFEB;
    --sub01: #B8BC00;
    --swiper-theme-color: #b9bc008c;
}

html {
    overflow: overlay;
    scroll-behavior: smooth;
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    color: var(--main02);
}

::-webkit-scrollbar {
    width: 1px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
    background: var(--main01);
    border-radius: 4px;
}

body {
    background-color: var(--base);
    background-size: contain;
    background-attachment: fixed;
    background-position: left;
    letter-spacing: 0.05em;
    margin: 0 auto;
    width: 100%;
}

.PC-only {
    display: block;
}
.SP-only {
    display: none;
}


/*───────────────────index外 共有───────────────────*/

.page-header-h {
    padding-top: 138px;
}


/* スプラッシュ */
/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: var(--sub01);
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:360px;
}

/* fadeUpをするアイコンの動き */

.fadeUp{
animation-name: fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

html {
    scroll-behavior: smooth;
}

/* ─────────↓ヘッダー──────── */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: #ffffff99;
    height: 65px;
}

.header-box {
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.header-logo {
    position: absolute;
    left: 30px;
    top: 2px;
}

img.hed-logo {
    width: 62px;
}
/* ↓pcナビ */

.navSp-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}


.navSp-text {
    font-size: 26px;
    width: 60%;
}

.navSp-text-kana {
    margin-top: .8em;
    padding: 0 0 0 .2em;
    font-family: '小塚ゴシック Pro', 'Kozuka Gothic Pro', sans-serif;
    font-size: 12px;
    font-weight: normal;
}

#navPc ul {
    padding: 2px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
    padding-left: 164px;
}

#navPc ul a {
    margin: 0 17px 0 0;
    padding: 0px 35px;
    vertical-align: middle;
    color: var(--main02);
    text-decoration: none;
}

.navPcPage ul a {
    color: var(--main01);
}

#navPc ul a li {
    position: relative;
    list-style: none;
}

#navPc ul a li p {
    margin-top: 0;
}

#navPc ul a li .kana {
    font-size: .6em;

}

#navPc ul a li::before {
    content: url(../img/icon.svg);
    height: 28px;
    width: 25px;
    position: absolute;
    top: 55%;
    left: -31px;
    transform: translateY(-50%);
}

/* ↑pcナビ */

/* Onlinebtn */

.btnBox {
    border-radius: 0;
    width: 53px;
    height: 40px;
    position: absolute;
    top: 4px;
    right: 58px;
}

.btnBox:hover {
    opacity: 0.8;
}

/* SNSbtn */
.btnBox-sns {
    border-radius: 0;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 110px;
}

.btnBox-sns:hover {
    opacity: 0.8;
}

/* ─────────↓spナビ──────── */

.navbtn {
    display: block;
    position: absolute;
    right: 10px;
    position: fixed;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
}

.navbtn-wrapper {
    width: 38px;
    height: 40px;
    position: relative;
}

.open .navbtn {
    right: 330px;
  }

.navbtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--main01);
    border-radius: 4px;
    transition: all .5s;
}

.navbtn span:nth-child(1) {
  top: 4px;
}
.navbtn span:nth-child(2) {
  top: 14px;
}
.navbtn span:nth-child(3) {
  bottom: 13px;
}
 
 閉じるマーク 
 .open .navbtn span {
    background-color: #fff;
  }
  .open .navbtn {
    -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
  }
  .open .navbtn span:nth-child(1), .open .toggle_btn span:nth-child(3) {
    width: 20px;
  }
  .open .navbtn span:nth-child(1) {
    -webkit-transform: translate(31px,13px) rotate(45deg);
    transform: translate(3px,4px) rotate(45deg);
  }
  .open .navbtn span:nth-child(3) {
    -webkit-transform: translate(31px,-13px) rotate(-45deg);
    transform: translate(2px,-4px) rotate(-45deg);
    width: 20px;
  }

  /*============
  main
  =============*/
  main {
    width: 100%;
    padding: 50px 0;
    transition: all .5s;
  }
  .open main {
    margin-left: 300px;
  }
  main h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    text-align: center;
  }
  /*============
  body
  =============*/
  body {
    font-weight: 400;
    overflow: hidden;
  }


#navSp {
    display: block;
    position: fixed;
    top: 0;
    right: -300px;
    bottom: 0;
    width: 300px;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 444;
    opacity: 0;
}

#navSp.navSpactive {
    right: 0;
    opacity: 1;
    padding-top: 100px;
}

#navSp a {
    color: var(--main02);
    text-decoration: none;
    line-height: 3em;
}

#navSp ul li {
    margin: 0 0 1em;
    position: relative;
    list-style: none;
}

.navSp-text {
    font-size: 20px;
    width: 40%;
    position: relative;
    line-height: 43px;
}

.navSp-text::before {
    content: "|";
    width: 26px;
    position: absolute;
    top: 49%;
    left: -26px;
    transform: translateY(-50%);
}

.navSp-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navSp-text-kana {
    margin-top: -3em;
    padding: 0 0 0 .2em;
    font-family: '小塚ゴシック Pro', 'Kozuka Gothic Pro', sans-serif;
    font-size: 9px;
    font-weight: normal;
}

 
.close{
    margin: 50px 0 0;
    text-align: center;
    color: var(--accent);
}



/* ─────────↑spナビ──────── */


/* ─────────↑ヘッダー──────── */

/* ─────────↓MV──────── */
#MV {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
}

.MV-box {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.main-name {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

img.name {
    width: 9%;
    height: auto;
    position: absolute;
    z-index: 111;
    top: 250px;
}

.slid-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: slider 24s linear infinite;
}

.slid-img:nth-child(1) {
    background-image: url(../img/MV_img01.jpg);
    animation-delay: -2s;
}
.slid-img:nth-child(2) {
    background-image: url(../img/MV_img02.jpg);
    animation-delay: 6s;
}
.slid-img:nth-child(3) {
    background-image: url(../img/MV_img03.jpg);
    animation-delay: 14s;
}

@keyframes slider {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    4.16% {
        opacity: 1;
    }
    33.33% {
        opacity: 1;
    }
    41.66% {
        opacity: 0;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
    }
}

/* ─────────↑MV──────── */

/* ─────────↓CONCEPT──────── */

#CONCEPT {
    width: 100%;
    height: auto;
    position: relative;
}

.title-box {
    position: relative;
}

h3.title {
    font-size: 100px;
    color: var(--swiper-theme-color);
    padding-top: 0.8em;
    animation-name: Fuwa;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    display: inline-block;
    -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}

.concept-box {
    position: absolute;
    top: 100px;
    right: 0;
    align-items: centers;
}

img.conceptImg {
    width: 100%;
    min-width: 190px;
    height: auto;
    clip-path: polygon(4% 0, 95% 0, 100% 0%, 100% 95%, 100% 100%, 4% 100%, 0 95%, 0 5%);
}

p.conceptTitle {
    font-size: 40px;
    text-align: left;
    letter-spacing: 0.07em;
    color: var(--main01);
    padding-top: 0.6em;
    padding-left: 1em;
    animation: Up 2s forwards;
    opacity: 0;
}

p.conceptCopy {
    font-size: 20px;
    text-align: left;
    letter-spacing: 0.07em;
    color: var(--main01);
    padding-top: 0.6em;
    padding-left: 2.6em;
    line-height: 1.7em;
}

.fadeUpTrigger {
    opacity: 0;
}

@keyframes Up {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ─────────↑CONCEPT──────── */

/* ─────────↓HISTORY──────── */

#HISTORY {
    width: 100%;
    height: auto;
    position: relative;
}

.history-box {
    margin-left: 90px;
    margin-top: 300px;
    margin-bottom: 200px;
}

img.Title {
    display: none;
}

.ImgBox {
    margin: 0 auto;
    margin-top: 2em;
    display: flex;
    justify-content: center;
    margin-right: 30px;
}

.historyImg1 {
    width: 90%;
    max-width: 700px;
    min-width: 100px;
    display: inline-block;
    box-shadow: 0 5px 5px #7d7d7d80;
    animation: In 1.3s forwards;
    opacity: 0;
    animation-delay: 0.5s;
}
.historyImg2 {
    width: 90%;
    max-width: 700px;
    min-width: 100px;
    display: inline-block;
    margin-top: 1em;
    box-shadow: 0 5px 5px #7d7d7d80;
    animation: In 1.3s forwards;
    opacity: 0;
    animation-delay: 1.5s;
}

.img02 {
    margin-top: 34px;
}

@keyframes In {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fadeInTrigger {
    opacity: 0;
}

p.historyTitle {
    font-size: 40px;
    text-align: left;
    letter-spacing: 0.07em;
    color: var(--main01);
    padding-top: 0.6em;
    padding-left: 1em;
    animation: Up 2s forwards;
    opacity: 0;
}

p.historyCopy {
    font-size: 20px;
    text-align: left;
    letter-spacing: 0.07em;
    color: var(--main01);
    padding-top: 0.6em;
    padding-left: 2.6em;
    line-height: 1.7em;
}



/* ─────────↑HISTORY──────── */

/* ─────────↓PICKUP──────── */
#PICKUP {
    width: 100%;
    height: auto;
    position: relative;
    margin: 0 auto;
    padding-top: 135px;
}

.content01 {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.content02 {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap-reverse;
}

img.pickup01 {
    width: 100%;
    max-width: 650px;
    min-width: 200px;
    height: auto;
    margin-top: -45px;
    padding: 0 25px;
    
}

img.pickup02 {
    width: 80%;
    max-width: 650px;
    min-width: 300px;
    height: auto;
    padding: 13px 0px 0 32px;

}

img.pickup03 {
    width: 80%;
    max-width: 650px;
    min-width: 300px;
    height: auto;
    padding: 13px 23px 0 0px;
}

img.pickup04 {
    width: 100%;
    max-width: 650px;
    min-width: 300px;
    height: auto;
    margin-top: 45px;
    padding: 0 25px;
}

.IMG01 {
    animation: In 1.5s forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

.IMG02 {
    animation: In 1.5s forwards;
    opacity: 0;
    animation-delay: 1.5s;
}

.IMG03 {
    animation: In 1.5s forwards;
    opacity: 0;
    animation-delay: 1.6s;
}

.IMG04 {
    animation: In 1.5s forwards;
    opacity: 0;
    animation-delay: 2s;
}

.fadeTrigger {
    opacity: 0;
}

.pickupBox {
    margin-left: 150px;
    margin-top: 80px;
}

p.pickupTitle {
    font-size: 40px;
    position: relative;
    background-color: #fff;
    display: inline-block;
    text-align: left;
    letter-spacing: 0.07em;
    color: var(--main01);
    padding-top: 0.6em;
    padding-left: 1em;
}

p.pickupCopy {
    font-size: 20px;
    text-align: left;
    letter-spacing: 0.07em;
    color: var(--main01);
    padding-top: 0.6em;
    padding-left: 2.6em;
    line-height: 1.7em;
}
p.pickupTitle::after {
    content: "";
    background-color: var(--main02);
    width: 540px;
    height: 1px;
    position: absolute;
    left: 37px;
    top: 47px;
    z-index: -1;
}

.point02 {
    font-size: 28px;
    position: relative;
}
.point03 {
    font-size: 28px;
    position: relative;
}

/* ─────────↑PICKUP──────── */

/* ─────────↓ABOUT──────── */
#ABOUT {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 190px;
    margin-bottom: 70px;
}

.aboutBox {
    background-image: url(../img/about_img.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 100%;
    height: 70vh;
    margin-top: 50px;
    position: relative;
    margin: 0 auto;
    margin-top: 190px;

}


.circle01 {
    background-color: #59914693;
    width: 100%;
    max-width: 320px;
    height: 320px;
    border-radius: 250px;
    position: absolute;
    left: 20%;
    top: -20%;
    animation: fuwa 3s infinite;
    box-shadow: 6px 5px 5px #bbbbbba7;
}

@keyframes fuwa {
    0% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

.circle01::after {
    content: "殺菌力";
    position: absolute;
    left: 30%;
    top: 30%;
    font-size: 40px;
    z-index: 111;
    color: #fff;
    text-align: center;
}
.circle01::before {
    content: "防腐効果";
    position: absolute;
    left: 25%;
    top: 50%;
    font-size: 40px;
    z-index: 111;
    color: #fff;
    text-align: center;
}

.circle02 {
    background-color: #00809196;
    width: 100%;
    max-width: 320px;
    height: 320px;
    border-radius: 250px;
    position: absolute;
    right: 25%;
    top: -30%;
    animation: fuwa1 3s infinite;
    box-shadow: 3px 5px 5px #bbbbbba7;
}

@keyframes fuwa1 {
    0% {
        transform: translateY(5px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(5px);
    }
}

.circle02::after {
    content: "精神安定";
    position: absolute;
    left: 25%;
    top: 30%;
    font-size: 40px;
    z-index: 111;
    color: #fff;
    text-align: center;
}
.circle02::before {
    content: "貧血予防";
    position: absolute;
    left: 25%;
    top: 50%;
    font-size: 40px;
    z-index: 111;
    color: #fff;
    text-align: center;
}

.circle03 {
    background-color: #68000093;
    width: 100%;
    max-width: 320px;
    height: 320px;
    border-radius: 250px;
    position: absolute;
    left: 40%;
    top: 80%;
    animation: fuwa2 3s infinite;
    box-shadow: 2px 6px 6px #bbbbbba7;
}

@keyframes fuwa2 {
    0% {
        transform: translateY(8px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(8px);
    }
}

.circle03::after {
    content: "アレルギー";
    position: absolute;
    left: 20%;
    top: 30%;
    font-size: 40px;
    z-index: 111;
    color: #fff;
    text-align: center;
}
.circle03::before {
    content: "症状軽減";
    position: absolute;
    left: 25%;
    top: 50%;
    font-size: 40px;
    z-index: 111;
    color: #fff;
    text-align: center;
}

p.aboutCopy {
    font-size: 20px;
    text-align: left;
    letter-spacing: 0.07em;
    color: var(--main01);
    padding-top: 0.6em;
    padding-left: 3.6em;
    line-height: 1.7em;
}

p.aboutTitle {
    font-size: 50px;
    text-align: left;
    letter-spacing: 0.07em;
    color: var(--main01);
    padding-top: 0.6em;
    padding-left: 1em;
}

.point05 {
    font-size: 75px;
    display: inline-block;
    transform: rotate(-5deg);
    animation: anime 1s infinite;
}

@keyframes anime {
    0% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(-5deg);
    }
}




/* ─────────↑ABOUT──────── */


/* ─────────↓CAPTION──────── */

#CAPTION {
    width: 100%;
    height: auto;
    position: relative;
}

.caption-box {
    background-image: url(../img/captionBG.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 610px;
    background-attachment: fixed;
    margin: 0 auto;
    text-align: center;
    margin-top: 300px;
}

p.captionCopy {
    font-size: 18px;
    color: var(--main01);
    letter-spacing: 0.5em;
    line-height: 1.6em;
    padding-top: 200px;
}

.contact-btn {
    color: var(--base);
    background-color: var(--main02);
    width: 280px;
    height: 60px;
    border: var(--sub01) 1px solid;
    margin: 0 auto;
    margin-top: 50px;
}

a.contact {
    font-size: 18px;
    letter-spacing: 0.3em;
    line-height: 60px;
    position: relative;
    font-weight: normal;
}

.contact-btn:hover {
    background-color: var(--base);
    color: var(--main02);
}

/* ─────────↑CAPTION──────── */

/* ─────────↓MENU──────── */

h4 {
    font-size: 60px;
    color: var(--swiper-theme-color);
    text-align: center;
    letter-spacing: 0.07em;
    padding-bottom: 1em;
    position: relative;
    z-index: 111;

}

h4::before {
    content: "";
    background-color: #fff;
    width: 562px;
    height: 140px;
    position: absolute;
    z-index: -11;
    top: -21px;
    border-radius: 10px;
    margin: 0 auto;
}

.menu-list {
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
}

li.swiper-slide {
    list-style: none;
    margin: 0 10px;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    max-width: 550px;
    min-width: 100px;
    
}

p.menuCopy {
    font-size: 20px;
    text-align: center;
    color: var(--main01);
    padding-top: 1em;
    letter-spacing: 0.3em;
    line-height: 30px;
}

.linkBox {
    margin: 0 auto;
    background-color: var(--main02);
    color: var(--base);
    width: 180px;
    height: 60px;
    margin-top: 50px;
    border-radius: 10px;
}

p.btntext {
    font-size: 25px;
    text-align: center;
    line-height: 60px;
}

.linkBox:hover {
    background-color: var(--main01);
    color: var(--base);
}

/* ─────────↑MENU──────── */

#liner {
    margin-top: 50px;
}

.swiper-container{
    overflow: hidden;
    margin-bottom: 50px;
}

.swiper-wrapper{
    transition-timing-function: linear;
}

.swiper-wrapper img{
    width: 100%;
    height: auto;
}

.point04 {
    position: relative;
    font-size: 25px;
}


/* ─────────↑liner──────── */

/* footer */
#footer {
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    background-color: var(--main01);
    width: 100%;
    height: 210px;
    position: relative;
    margin-top: 50px;
}




.footer-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    bottom: 0;
    padding-top: 3.5em;
}

ul.footer-link {
    list-style: none;
    margin: 10px 30px;
    line-height: 2em;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
ul.footer-link a {
    text-decoration: none;
    color: var(--base);
    font-size: 14px;
    padding-right: 2em;
}
ul.footer-link li a {
    position: relative;
}
ul.footer-link li a::before {
    content: "|";
    width: 23px;
    height: auto;
    position: absolute;
    left: -8px;
    top: -8px;
}

.small-list ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-top: 3em;
    z-index: 3;
    position: relative;
    margin-bottom: 10px;
}

.small-list ul a {
    text-decoration: none;
    color: var(--base);
    font-size: 12px;
    font-weight: bold;
}

.small-list ul a li {
    position: relative;
    padding-left: 1em;
    padding-right: 0.8em;
}

.small-list ul a li::after {
    position: absolute;
    content: '|';
    left: 0;
    top: 0;
    color: var(--base);
}

.copyright {
    margin: 0 auto;
    padding-top: 0.8em;
    padding-bottom: 8px;
    color: var(--base);
}
p.footer-copy {
    font-size: 10px;
    color: var(--base);
    text-align: center;
    margin: 0 auto;
    position: relative;
}

/* MAXデバイス用 */
@Media screen and (min-width:1650px) {
    img.conceptImg {
        width: 1600px;
    }

    #HISTORY {
        top: 440px;
    }

    p.historyTitle {
        font-size: 55px;
    }

    p.conceptCopy {
        font-size: 27px;
    }

    p.historyCopy {
        font-size: 27px;
    }

    p.pickupTitle {
        font-size: 50px;
    }

    p.pickupTitle::after {
        width: 760px;
        top: 59px;
    }

    p.pickupCopy {
        font-size: 27px;
    }

    .Copy-Box {
        padding-left: 236px;
    }

    .historyImg1 {
        max-width: 800px;
    }

    .historyImg2 {
        max-width: 800px;
    }

    #PICKUP {
        padding-top: 495px;
    }

    img.pickup01 {
        max-width: 800px;
    }

    img.pickup02 {
        max-width: 800px;
    }

    img.pickup03 {
        max-width: 800px;
    }

    img.pickup04 {
        max-width: 800px;
    }

    #ABOUT {
        padding-top: 300px;
    }

    p.aboutTitle {
        font-size: 50px;
    }

    .point05 {
        font-size: 75px;
    }

    p.aboutCopy {
        font-size: 30px;
        padding-top: 1em;
    }

    .circle01 {
        max-width: 400px;
        height: 400px;
        left: 23%;
        top: -20%;
    }

    .circle01::after {
        font-size: 60px;
        left: 25%;
    }
    .circle01::before {
        font-size: 60px;
    }

    .circle02 {
        max-width: 400px;
        height: 400px;
        right: 25%;
        top: -30%;
    }

    .circle02::after {
        font-size: 60px;
        left: 17%;
    }
    .circle02::before {
        font-size: 60px;
    }

    .circle03 {
        max-width: 400px;
        height: 400px;
        left: 38%;
        top: 80%;
    }

    .circle03::after {
        font-size: 60px;
        left: 11%;
    }
    .circle03::before {
        font-size: 60px;
        left: 18%;
    }

    p.captionCopy {
        font-size: 25px;
        padding-top: 168px;
    }

    h4 {
        font-size: 89px;
    }

    h4::before {
        width: 840px;
    }

    .swiper-slide img {
        max-width: 900px;
    }

    p.menuCopy {
        font-size: 25px;
    }
}

@Media screen and (max-width:1280px) {

    h8.Copy {
        font-size: 56px;
    }

    .mainCopy-Box {
        padding-top: 223px;
        padding-left: 179px;
    }

    .concept-box {
        top: 174px;
        left: 130px;
    }

    .history-box {
        margin-left: 118px;
    }

    img.name {
        width: 25%;
        height: auto;
    }

    .pickupBox {
        margin-left: 125px;
    }

    .circle01 {
        top: -10%;
        left: 16%;
    }

    .circle02 {
        top: -3%;
        right: 14%;
    }

    .circle03 {
        top: 73%;
    }

}



@media screen and (max-width: 975px) {

    .pc {
        display: none;
    }

    
    .sp {
        display: block;
        
    }

    /*  
    .btnBox {
        position: fixed;
        width: 100%;
        height: 40px;
        border-radius: 0;
        border: 1px solid var(--main02);
        left: 0;
        bottom: 0;
        text-align: center;
    }
*/
    .navbtn {
        width: 40px;
        height: 40px;
        position: fixed;
        right: 14px;
        top: 16px;
        z-index: 9999999999;
        display: block;
    }

    .open .navbtn {
        right: 249px;
    }

    .btnBox {
        position: fixed;
        right: 70px;
        top: 7px;
        display: block;
    }

    img.btn {
        width: 50px;
    }

    img.header-logo {
        width: 100px;
    }

    .slider {
        height: 467px;
        margin-right: 151px;
    }


    h8.Copy {
        font-size: 42px;
        padding-right: 3.5em;
    }

    img.hed-logo {
        width: 55px;
    }

    .header-logo {
        left: 7px;
        bottom: 29px;
    }

    p.service-Title {
        font-size: 25px;
        margin-top: -26px;
    }

    p.serviceCopy {
        font-size: 9px;

    }

    .history-box {
        margin-top: 320px;
        margin-left: -8px;
        margin-bottom: 29px;
    }

    img.Title {
        width: 15%;
        height: auto;
        position: absolute;
        right: 0;
        overflow-x: hidden;
        z-index: -1;
        top: -74px;
        display: block;
    }

    .pickupBox {
        margin-left: 0px;
    }

    .circle02 {
        top: -17%;
        right: 8%;
    }

    .circle01 {
        top: -10%;
        left: 10%;
    }
    

    
    
}

@Media screen and (max-width:710px) {

    .maincopy h2 {
        font-size: 2.0em;
    }

    .page-header-h {
        padding-top: 98px;
    }

    .page-header h2 {
        font-size: 25px;
    }


    .naminami {
        top: 226px;
    }

    .subCopy {
        margin-top: 147px;
        padding: 0;
    }

    .subCopy::after {
        top: -6px;
    }

    .subCopy-wrpper::after {
        width: 100px;
        top: -30px;
        z-index: 1;
        right: 20px;
    }

    p.copyText {
        padding: 35px 0;
    }

    #access {
        padding: 50px 0 0 0;
    }
    
    #access::after {
        top: -6px;
    }
    
    .g-map::after {
        width: 100px;
        top: -30px;
        z-index: 1;
        left: 20px;
    }

    .footer-wrapper {
        padding: 0;
    }

    .address {
        font-size: 13px;
        line-height: 1.8em;
    }

    ul.footer-link a {
        font-size: 9px;
    }

    ul.footer-link li a::before {
        top: -11px;
    }

    .copyright {
        padding-top: 0;
    }

    .caption-box {
        background-attachment: local;
    }
}

@Media screen and (max-width:768px) {
    h8.Copy {
        font-size: 36px;
    }
}

@Media screen and (max-width:430px) {

    .PC-only {
        display: none;
    }
    .SP-only {
        display: block;
    }

    .maincopy {
        padding-top: 142px;
    }

    .maincopy h2::after {
        content: url(../img/copyBG.svg);
        width: 50%;
        position: absolute;
        left: 10px;
        bottom: -40px;
    }

    h8.Copy {
        font-size: 19px;
    }

    .MV-box::before {
        line-height: 65px;
        font-size: 12px;
        height: 66px;
    }

    .mainCopy-Box {
        padding-top: 304px;
        padding-left: 19px;
    }
    
    .mainCopy-Box {
        pdding-top: 258px;
        padding-left: 30px;
    }

    h3.title {
        font-size: 50px;
        padding-top: 0px;
        margin-top: -52px;
    }

    #CONCEPT {
        margin-top: 85px;
    }

    #CONCEPT p.copy::after {
        bottom: -182px;
        width: 34%;
    }

    .concept-box {
        top: -5px;
        left: 70px;
    }

    p.copy {
        font-size: 10px;
    }

    .copyBox {
        padding-top: 13px;
        text-align: left;
        padding: 0 14px;
        margin: 0;
        margin-top: 5px;
    }

    .concept-copyBox::after {
        top: -200px;
        left: 3px;
        width: 35%;
    }

    p.pickupTitle::after {
        width: 300px;
    }

    #SERVICE {
        padding-top: 385px;
    }

    .use-list ul li.swiper-slide {
        min-width: 200px;
        margin: 6px;
    }

    .service-wrpper {
        padding-top: 18px;
    }

    .subCopy {
        margin-top: 79px;
    }

    p.service-Title {
        font-size: 17px;
        margin-top: -21px;
    }

    p.serviceCopy {
        font-size: 10px;
        letter-spacing: -1px;
    }


    .circle01 {
        background-color: #59914693;
        width: 150px;
        height: 150px;
        border-radius: 150px;
        position: absolute;
        left: 10%;
        top: -20%;
    }
    
    .circle01::after {
        content: "殺菌力";
        position: absolute;
        left: 30%;
        top: 30%;
        font-size: 20px;
        z-index: 111;
        color: #fff;
        text-align: center;
    }
    .circle01::before {
        content: "防腐効果";
        position: absolute;
        left: 25%;
        top: 50%;
        font-size: 20px;
        z-index: 111;
        color: #fff;
        text-align: center;
    }
    
    .circle02 {
        background-color: #00809196;
        width: 150px;
        height: 150px;
        border-radius: 150px;
        position: absolute;
        right: 15%;
        top: -30%;
    }
    
    .circle02::after {
        content: "精神安定";
        position: absolute;
        left: 25%;
        top: 30%;
        font-size: 20px;
        z-index: 111;
        color: #fff;
        text-align: center;
    }
    .circle02::before {
        content: "貧血予防";
        position: absolute;
        left: 25%;
        top: 50%;
        font-size: 20px;
        z-index: 111;
        color: #fff;
        text-align: center;
    }
    
    .circle03 {
        background-color: #68000093;
        width: 150px;
        height: 150px;
        border-radius: 150px;
        position: absolute;
        left: 40%;
        top: 0;
    }
    
    .circle03::after {
        content: "アレルギー";
        position: absolute;
        left: 20%;
        top: 30%;
        font-size: 20px;
        z-index: 111;
        color: #fff;
        text-align: center;
    }
    .circle03::before {
        content: "症状軽減";
        position: absolute;
        left: 25%;
        top: 50%;
        font-size: 20px;
        z-index: 111;
        color: #fff;
        text-align: center;
    }

    p.aboutCopy {
        padding-top: 0.6em;
        font-size: 12px;
    }

    .more-btn {
        width: 134px;
        height: 35px;
        margin: 0 auto;
        margin-top: 35px;
    }

    a.more {
        font-size: 13px;
        line-height: 35px;
    }
    

    img.header-logo {
        width: 100px;
    }

    .footer-logo {
        padding-top: 1.5em;
    }

    p.captionCopy {
        font-size: 15px;
    }

    .contact-btn {
        width: 127px;
        height: 40px;
    }

    a.contact {
        font-size: 12px; 
        line-height: 40px;
    }

    a.contact::before {
        width: 30px;
        height: 1px;
        top: 7px;
        left: 92px;
    }

    h2.title {
        font-size: 23px;
    }

    p.subtitle {
        font-size: 10px;
    }

    .footer-wrapper {
        padding: 53px;
    }

    p.workTitle {
        font-size: 20px;
    }
    
    p.work-subTitle {
        font-size: 9px;
    }

    .use-list ul {
        margin: 28px;
    }

    h4 {
        font-size: 30px;
    }

    h4::before {
        width: 284px;
        height: 70px;
        position: absolute;
        z-index: -11;
        top: -8px;
    }

    p.menuCopy {
        font-size: 13px;
        letter-spacing: 0.1em;
    }

    p.captionCopy {
        padding-top: 111px;
        line-height: 20px;
    }

    .linkBox {
        margin: 0 auto;
        background-color: var(--main02);
        color: var(--base);
        width: 126px;
        height: 43px;
        margin-top: 20px;
        border-radius: 10px;
    }

    p.btntext {
        font-size: 19px;
        text-align: center;
        line-height: 43px;
    }

    .caption-box {
        margin-top: 50px;
    }

    .point02 {
        font-size: 20px;
    }

    .point03 {
        font-size: 20px;
    }

    .point04 {
        font-size: 13px;
    }

    .point04::after {
        width: 277px;
        height: 6px;
        top: 7px;
    }

    p.conceptTitle {
        font-size: 25px;
    }

    p.conceptCopy {
        font-size: 15px;
    }

    p.historyTitle {
        font-size: 25px;
    }

    p.historyCopy {
        font-size: 15px;
    }

    p.pickupTitle {
        font-size: 25px;
    }

    p.pickupCopy {
        font-size: 15px;
    }

    p.pickupTitle::after {
        top: 29px;
    }

    p.aboutTitle {
        font-size: 25px;
    }

    .btnBox {
        width: 40px;
        height: 40px;
        right: 57px;
        top: 11px;
    }

    .btnBox-sns {
        width: 35px;
        height: 35px;
        right: 97px;
        top: 15px;
    }

    .ImgBox {
        display: block;
    }

    .ImgBox .img02 {
        position: relative;
        right: -82px;
    }

    .historyImg1 {
        min-width: 240px;
    }
    .historyImg2 {
        min-width: 240px;
    }

    .point05 {
        font-size: 42px;
    }
 
    #ABOUT {
        padding-top: 97px;
    }
}