@charset "utf-8";
/*-------------------
   clearfix
-------------------*/
.cf:before, .cf:after {
	content: " ";
	display: table;
}
.cf:after {
	clear: both;
}
.cf {
 *zoom: 1;
}
/*-------------------
   common
-------------------*/
.wrapper {
	font: 1em/1.2 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #333;
	font-feature-settings: "palt";
	letter-spacing: normal;
	padding: 0;
	position: relative;
    overflow: hidden;
}
.wrapper * {
	box-sizing: border-box;
}
.wrapper a {
	color: inherit;
	display: block;
}
.wrapper img {
	height: auto;
	max-width: 100%;
}

/*ブレイクポイントのルール*/
/* -スマホ基本設計 解像度に依存しない-
 *350pxまで：SP縦 i5 SE
 *350px〜480px：SP縦 i6-8　****一番重要****
 *480px〜960px：SP横からタブレット
 *960px〜小型PC　大型PC
 
 /*  全体指定 スマホ縦 i5 i5SE　350pxまで  */
 
 
 /* ボタンデザイン自由に変えてください  */
  .list-btn {
    border: 2px solid #6c8362;
    border-radius: 10vw;
    color: #6c8362;
    cursor: pointer;
    display: inline-block;
    font-size: 3.8vw;
    margin-top: 5%;
    position: relative;
    padding: 3vw 10vw 3vw 0;
    text-align: center;
    text-decoration: none;
    width: 100%;
}
.list-btn::after{
    border: none;
    border-right: 2px solid #6c8362;
    border-bottom: 1px solid #6c8362;
    content: "";
    display: block;
    top: calc(50% - 5px);
    right: 7vw;
    width: 6vw;
    height: 5px;
    position: absolute;
    transform: skew(45deg);
    transition: .3s;
}
.list-btn:hover {
    color: #fff; 
    background-color: #6c8362;
}
.list-btn:hover::after{
    color: #fff;
    border-right: 2px solid #fff;
    border-bottom: 1px solid #fff;
    right: 4vw;
    width: 9vw;

}
/*-- 画面外にいる状態 --*/
.fadein {
	opacity : 0;
	transform : translate(0, 30px);
	transition: ease-in 400ms;
}
/*-- 画面内に入った状態 --*/
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}
#container section {
	margin: 0 auto;
	padding: 0;
}
/*--------- スクロールでフェードイン CSS---------*/
.fade-in {
    opacity: 0;
    transition-duration: 1000ms;
    transition-property: opacity, transform;
  }
    .fade-in-up {
    transform: translate(0, 50px);
  }
    .fade-in-down {
    transform: translate(0, -50px);
  }
    .fade-in-left {
    transform: translate(-50px, 0);
  }
    .fade-in-right {
    transform: translate(50px, 0);
  }
    .scroll-in {
    opacity: 1;
    transform: translate(0, 0);
  }
/*---------------------------
   -----------
---------------------------*/
.wrapper .inner-wrap {
    padding: 12% 0 ;
}
.wrapper .chushaku {
    font-size: 2.8vw;
    text-align: left;
    line-height: 1.4;
}
.wrapper h2 {
	color: #513119;
	line-height: 1.2;
	font-size: 6.5vw;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
}
.wrapper h3 {
	color: #513119;
	line-height: 1.2;
	font-size: 5vw;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
}
.wrapper h4 {
	color: #fff;
	line-height: 1.2;
	font-size: 5vw;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
}
.wrapper .caption {
    font-size: 3.5vw;
    line-height: 1.7;
    text-align: justify;
}
/*---------------------------
   mainvisual
---------------------------*/
.mainvisual .inner-wrap {
	color: #fff;
    text-align: center;
	position: relative;
    padding: 0;
}
.mainvisual {
    background-image: url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/fv_bg_sp.jpg);
    background-size: contain;
    background-repeat: no-repeat;
	height: 100vw;
}
.mainvisual .fv-pc {
	display: none;
}
.mainvisual .catch {
	margin-bottom: 1%;
}
.mainvisual .title {
	font: 1.0em/1.1 'Noto Serif JP', serif;
	padding: 5% 0 0;
}
.mainvisual h1 {
	font-size: 6.4vw;
}
.mainvisual h1 small {
	font-family: 'Roboto', sans-serif;
	display: block;
}
.mainvisual ul {
	display: flex;
    gap: 3vw;
    padding: 2% 20% 0;
}
.mainvisual .logo {
    padding: 36% 60% 0 5%;
}
.mainvisual .main-img {
    position: absolute;
    top: 55%;
    left: 20%;
    width: 61%;
}
.mainvisual .icon {
    position: absolute;
    top: 0;
    right: -14%;
    width: 25%;
}
.mainvisual .chushaku {
    font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 2.3vw;
	padding: 1% 5% 0;
}
/*------------mainvisual fadeIn------------*/
.title-txt {
    animation: fadeIn 1s ease 0s 1 normal backwards;
}
@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/*------------mainvisual fadeUp------------*/
.fadeUp {
    animation-name:fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
        transform: translateY(50px);
      }
    
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    /* 遅延時間 */
    .point_1 {
        animation-delay: 0.2s;
        }
    .point_2 {
    animation-delay: 0.4s;
    }
    
    .point_3{
    animation-delay: 0.6s;
    }

/*--------------------------
   nav
--------------------------*/
#navi.fixed {
    position: fixed;/*fixedを設定して固定*/
    z-index: 9999;/*最前面へ*/
    top:0;/*位置指定*/
    left:0;/*位置指定*/
}
#navi {
	background-color: #6c8362;
	overflow-x: auto;
}
#navi ul {
    display: flex;
    width: max-content;
    margin: 0 auto;
}
#navi li a {
    display: inline-block;
    height: 74px;
    width: 25vw;
    display: flex;
    align-items: center;
    margin: -16px 0 0;
    justify-content: center;
    font: 3.3vw/1.5 'Noto Serif JP', serif;
    color: #fff;
    text-decoration: none;
    font-feature-settings: "palt";
    position: relative;
    letter-spacing: .05em;
}
#navi li:hover {
 	background-color: #8a9e81;
}
#navi li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 64%;
    right: 38%;
    width: 9px;
    height: 9px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateX(-50%) rotate(135deg);
}
#navi li+li{
    position: relative;
}
#navi li+li::before{
    content: "";
    display: block;
    height: 44px;
    border-left: 1px solid #a6b3a1;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
/*---------------------------
   about
---------------------------*/
.about .inner-wrap {
    padding: 0 0 12%;
}
.wrapper .about {
    width: 100%;
    background-image: url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/about_bg_right.png);
    background-repeat: no-repeat;
    background-position: top 74vw right -30vw;
    background-size: 62vw;
    height: 237vw;
    position: relative;
}
.sp-bg-top {
	position: absolute;
}
.e-oil-box {
    background-image: url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/about_e-oil_bg.png);
    background-size: 86vw;
    height: 86vw;
    background-position: top right 35%;
    background-repeat: no-repeat;
    margin: 0 auto;
    position: relative;
}
.fragrance-box {
    width: 50%;
    background-color: #f5eee6;
    border-radius: 50%;
    height: 57vw;
    width: 57vw;
    position: relative;
    margin: 0 0 0 7%;
}
.e-oil-box h2 {
    font-size: 5.5vw;
	padding: 9% 0 3%;
}
.e-oil-box dl {
	margin: 0 auto;
	position: relative;
}
.e-oil-box .img-oil {
    position: absolute;
    top: 3vw;
    left: -6vw;
    width: 45vw;
}
.e-oil-box .sp-bg-top {
    position: absolute;
    top: 0;
    left: -14vw;
    width: 44vw;
}
.e-oil-box .caption {
    padding: 0 11% 0 41%;
}
.fragrance-box img {
    position: absolute;
    top: 44vw;
    left: 26vw;
    width: 36vw;
}
.fragrance-box h2 {
    font-size: 5.5vw;
    padding: 13% 0 4%;
}
.fragrance-box .caption {
    padding: 0 12%;
}
.nintei-box {
	padding: 15% 6% 0;
}
.nintei-box .caption {
    margin: 3% 0 0;
}
.nintei-box h3 {
    font-size: 5.5vw;
    margin: 0 0 3%;
}
.nintei-box .chushaku {
    text-align: right;
}

/*About フェードイン*/
.fadeIn {
    transition: 1.5s;
    opacity: 0;
  }
  
  .fadeIn.animated {
    opacity: 1;
  }
/*---------------------------
   commitment
---------------------------*/
.commitment {
    background-color: #f2eae2;
}
.commitment h2 {
    margin: 0 0 6%;
}
.commitment h2 small {
    font-family: 'Roboto', sans-serif;
    font-size: 4vw;
    margin-right: 1%;
}
.commitment h2 em {
    font-size: 4vw;
}
.commit-box {
    padding: 0 6% 15%;
    position: relative;
}
.commitment .num-left {
    position: absolute;
    top: -2vw;
    left: 5vw;
    width: 20vw;
}
.commitment .num-right {
    position: absolute;
    top: -2vw;
    right: 5vw;
    width: 20vw;
}
.commitment .type .num-right {
    position: absolute;
    top: -11vw;
    right: 5vw;
    width: 20vw;
}
.commitment .num-mid {
    position: absolute;
    top: -16vw;
    width: 20vw;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.commitment .howtouse {
    margin-top: 26vw;
    text-align: center;
    padding: 0 6% 0;
    margin-bottom: -6%;
}
.commitment .arrow {
    margin-top: 5vw;
    padding: 0 4vw;
}
.commitment h3 {
    margin: 5% 0 2%;
}
.commitment h3 span {
    display: inline-block;

}
/*---------------------------
  use
---------------------------*/
.wrapper .use {
    background-image: url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/use_bg.jpg);
    background-size: cover;
    position: relative;
}
.use .inner-wrap {
    padding: 6% 6% 8%;
    text-align: center;
}
.use h2 {
    color: #fff;
    margin-bottom: 5%;
}
.use ul {
    display: flex;
    gap: 4vw;
    flex-wrap: wrap;
    justify-content: center;
}
.use li {
    width: 47%;
}
.use .element_pc {
    display: none;
}
/*---------------------------
  brend
---------------------------*/
.wrapper .brend {
    background-color: #f2eae2;
}
.brend .inner-wrap {
    padding: 6%;
}
.brend .brend-mid {
    background-image: url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/binder_mid.png);
    background-repeat: repeat-y;
    background-size: contain;

}
.brend .brend-bottom {
    background-image: url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/binder_bottom.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 13vw;
}
.brend h2 {
    font-size: 6vw;
    margin-bottom: 3%;
}
.brend .meyasu {
    padding: 3% 6% 0;
    margin-top: -1%;
    text-align: center;
}
.meyasu .right img {
    margin: 5% 0 3%;
}
.brend .recommend {
    padding: 8% 6% 0;
    position: relative;
}
.recommend h3 {
    color: #fff;
    background-color: #513119;
    padding: 1.6% 0 2%;
    margin-bottom: 3%;
    vertical-align: middle;
}
.brend-img {
    position: absolute;
    top: 23vw;
    left: -21vw;
    width: 48vw;
    filter: drop-shadow(2px 8px 3px rgba(66, 66, 66, 0.15));
}
.recommend .caption {
    padding-left: 24.5vw;
    margin-bottom: 5%;
}
.trouble-body {
    background-color: #dbe5d0;
    padding: 6%;
    position: relative;
}
.trouble-body h4 {
    background-color: #6c8362;
    color: #fff;
    border-radius: 4.5vw;
    padding: .5% 0 1%;
    width: 75%;
    margin: 0 auto 5%;
}
.trouble-body .woman-img {
    display: none;
}
.trouble-woman {
    background-color: #f3dcce;
    padding: 6%;
    margin-top: 5%;
    position: relative;
}
.trouble-woman h4 {
    background-color: #ca845a;
    color: #fff;
    border-radius: 4.5vw;
    padding: .5% 0 1%;
    width: 75%;
    margin: 0 auto 5%;
}
.card-box {
    display: flex;
    gap: 3vw;
    flex-wrap: wrap;
}
.card-box .card {
    background-color: #fff;
    padding: 6%;
    width: 100%;
}
.card .midashi {
    color: #6c8362;
    font: bold 5vw/1.2 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Osaka, arial, helvetica, sans-serif;;
    text-align: center;
}
.card .caption {
    padding: 0;
    text-align: center;
    font-size: 4vw;
    line-height: 1.4;
    margin-bottom: 5%;
}
.brend-list {
    display: flex;
    flex-wrap: wrap;
    font-size: 3.5vw;
}
.brend-list dt {
    border-bottom: dotted 1px #ccc;
    padding: 6px 0;
    width: 80%;
}
.brend-list dd {
    border-bottom: dotted 1px #ccc;
    padding: 6px 0;
    text-align: right;
    width: 20%;
}
.trouble-woman .card .midashi {
    color: #ca845a;
}
.trouble-woman .woman-img {
    width: 100%;
    padding: 5% 0 0;
}
/*---------------------------
  list
---------------------------*/
.list .element_pc {
    display: none;
}
.list .inner-wrap {
    padding: 12% 6%;
}
.list h2 {
    color: #fff;
    background-color: #6c8362;
    font-size: 5.5vw;
    margin-bottom: 0;
    padding: 2% 0;
}
/*-------table-------*/
.list .area {
    border: solid 2px #6c8362;
    position: relative;
    overflow: auto;
    height: 130vw;
    width: 100%;
    margin-bottom: 8%;
}
.list .oil-table {
    border-collapse: collapse;
    display: table;
    table-layout: fixed;
    border-spacing: 0;
}
.oil-table th,
.oil-table td {
    white-space: normal;
    border-right: 1px solid #ddd;
    padding: 10px 5px;
    position: sticky;
    top: 0;
    left: 0;
    text-align: center;
}
.oil-table th {
	background: #fff;
    position: sticky;
    top: 0;
    left: 0;
	z-index: 2;
}
.oil-table th:first-of-type {
    position: -webkit-sticky;
    position: sticky;
      width: 90px;
      top: 0;
      left: 0;
      z-index: 3;
}
.oil-table thead th {
    font-weight: 400;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    width: 25vw;
}
.oil-table thead th:nth-child(1) {
    color: #333;
    font-weight: 400;
}
.oil-table thead th:nth-child(2) {
    color: #6c8362;
    font-weight: 400;
    width: 32vw;
    vertical-align: middle;
	position: -webkit-sticky;
    position: sticky;
	left: 23vw;
	z-index: 6;
}
.oil-table thead th:first-of-type {
    z-index: 4;
    vertical-align: middle;
}
  .oil-table tr:nth-child(odd) td {
    background: #eee;
}
.oil-table td:first-of-type {
    text-align: left;
	position: -webkit-sticky;
    position: sticky;
	top: 0;
	left: 23vw;
	z-index: 5;
}
.oil-table td:first-of-type a{
	position: relative;
	padding-right: 10px;
}
.oil-table td:first-of-type a::before,
.oil-table td.organic a::before{
	border-top: solid 1px #333;
	border-right: solid 1px #333;
	content: '';	
	position: absolute;
	top: 40%;
	right: 3px;
	width: 5px;
	height: 5px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.oil-table td.organic a::before{
	border-top: solid 1px #89a571;
	border-right: solid 1px #89a571;
}
.oil-table .color01 {
    background: #eba2b5;
    color: #fff;
}
.oil-table .color02 {
    background: #beaad3;
    color: #fff;
}
.oil-table .color03 {
    background: #94acda;
    color: #fff;
}
.oil-table .color04 {
    background: #d8bea7;
    color: #fff;
}
.oil-table .color05 {
    background: #b19d91;
    color: #fff;
}
.oil-table .color06 {
    background: #9fb884;
    color: #fff;
}
.oil-table .color07 {
    background: #edba50;
    color: #fff;
}
.oil-table .color08 {
    background: #e89a43;
    color: #fff;
}
.oil-table .organic {
    color: #89a571;
}



 @media screen and (min-width:480px) and ( max-width:960px) {
/*　スマホ横～タブレット 480pxから960pxまではここを読み込む　*/
/*---------------------------
 iPad -------
---------------------------*/
.wrapper .inner-wrap {
    padding: 8% 8%;
}
.wrapper .caption {
    font-size: 1.2em;
}
.wrapper .chushaku {
    font-size: .9em;
}
.wrapper h2 {
    font-size: 5.5vw;
}
.wrapper h3 {
    font-size: 3.5vw;
}
.wrapper h4 {
    font-size: 3.2vw;
}
/*---------------------------
 iPad mainvisual
---------------------------*/
.mainvisual .inner-wrap {
    padding: 0;
}
.mainvisual .catch {
    font-size: 3.6vw;
}
.mainvisual .point {
    padding: 2% 0 0;
}
/*--------------------------
  iPad nav
--------------------------*/
#navi li a {
    font-size: 2.3vw;
}
#navi li a::before {
    right: 44%;
}
/*--------------------------
  iPad about
--------------------------*/
.about .inner-wrap {
    padding: 0;
}
.wrapper .about {
    background-image: url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/about_bg_right.png);
    background-repeat: no-repeat;
    background-position: top 60vw right -17vw;
    background-size: 54vw;
    height: 180vw;
    position: relative;
}
.e-oil-box {
    background-size: 66vw;
    height: 66vw;
    background-position: top right 50%;
}
.e-oil-box .sp-bg-top {
    position: absolute;
    top: 0;
    left: -4vw;
    width: 34vw;
}
.e-oil-box .img-oil {
    position: absolute;
    top: 0vw;
    left: 11vw;
    width: 35vw;
}
.e-oil-box .caption {
    padding: 0 23% 0 48%;
}
.e-oil-box h2 {
    font-size: 4.5vw;
}
.fragrance-box {
    height: 43vw;
    width: 43vw;
    margin: 0 0 0 10%;
}
.fragrance-box h2 {
    font-size: 4.5vw;
}
.fragrance-box img {
    position: absolute;
    top: 30vw;
    left: 19vw;
    width: 30vw;
}
.nintei-box {
    padding: 15% 10% 0;
}
.nintei-box h3 {
    font-size: 4.5vw;
}
.nintei-box img {
    padding: 0 10%;
}
/*---------------------------
  iPad commitment
---------------------------*/
.commitment .inner-wrap {
    padding: 8% 0;
}
.commitment h2 small {
    font-size: 3vw;
}
.commitment h2 em {
    font-size: 3vw;
}
.commitment h3 {
    margin: 0 0 5%;
    text-align: left;
}
.commit-box {
    padding: 0 8% 11%;
}
.commit-box dd {
    flex-basis: 50%;
    margin-top: 5%;
}
.commit-box .caption {
    font-size: 2.3vw;
}
.commitment .fade-in-right dl {
    display: flex;
    gap: 5%;
}
.commitment .fade-in-left dl {
    display: flex;
    gap: 5%;
    flex-direction: row-reverse;
    justify-content: left;
}
.commitment .fade-in-right dt {
    flex-basis: 60%;
    margin-left: -13%;
}
.commitment .fade-in-left dt {
    flex-basis: 60%;
    margin-right: -13%;
}
.commitment .num-left {
    position: absolute;
    top: -3vw;
    left: 32vw;
    width: 13vw;
}
.commitment .num-right {
    position: absolute;
    top: -10vw;
    right: 6vw;
    width: 13vw;
}
.commitment .type {
    margin-top: -5vw; */
}
.commitment .type .num-right {
    position: absolute;
    top: -4vw;
    right: 6vw;
    width: 13vw;
}
.commitment .type dt {
    flex-basis: 60%;
    margin-right: 0;
    margin-top: 8%;
}
.commitment .howtouse {
    margin-top: -6%;
    padding: 0 8% 0;
}
.commitment .howtouse dt {
    flex-basis: 30%;
    margin-left: 0;
}
.commitment .howtouse dd {
    flex-basis: 110%;
}
.commitment .num-mid {
    top: 10vw;
    width: 13vw;
    left: 10vw;
    transform: none;
}
.commitment .howtouse h3 {
    margin: 0 0 2.5%;
}
.commitment .arrow {
    margin-top: 3vw;
    margin-bottom: 1vw;
    padding: 1vw;
}

/*---------------------------
  iPad use
---------------------------*/
.use h2 {
    font-size: 4.5vw;
}
.use h2 br {
    display: none;
}
 /*---------------------------
  iPad brend
---------------------------*/
.brend h2 {
    font-size: 4.5vw;
}
.brend-img {
    position: absolute;
    top: 5vw;
    left: -13vw;
    width: 34vw;
}
.trouble-body h4,
.trouble-body h4 {
    width: 65%;
}
.recommend .caption {
    padding-left: 16.5vw;
    margin-bottom: 5%;
}
.card .caption {
    padding-left: 0;
    font-size: 2vw;
}
.card-box .card {
    width: 47.5%;
    padding: 4%;
}
.card .midashi {
    font-size: 3.3vw;
}
.brend-list {
    font-size: 1.8vw;
}
.trouble-body .woman-img {
    display: initial;
    position: absolute;
    bottom: 5.5vw;
    right: 4.5vw;
    width: 30vw;
}
.trouble-woman .woman-img {
    display: none;
}
.brend .brend-bottom {
    height: auto;
}
/*---------------------------
  iPad list
---------------------------*/
.list .inner-wrap {
    text-align: center;
}
.list .area {
    margin-bottom: 6%;
}
.list h2 {
    font-size: 4.5vw;
}
.oil-table thead th {
    width: 16vw;
}
.list-btn {
    font-size: 1.2em;
    width: 76%;
    padding: 2vw 6vw 1.5vw 0;
}
.oil-table thead th:nth-child(2),
.oil-table td:first-of-type {
	left: 90px;
}	
}


 @media screen and (min-width:960px) {
/*　小・大画面デスクトップ　960pxからはここを読み込む　*/
/*---------------------------
 PC ------------
---------------------------*/
.wrapper .inner-wrap {
    padding: 85px 0;
    max-width: 960px;
    margin: 0 auto;
}
.wrapper .caption {
    font-size: 1.2em;
}
.wrapper .chushaku {
    font-size: .9em;
}
.wrapper h2 {
    font-size: 2.6em
}
.wrapper h3 {
    font-size: 2em;
    margin: 0 0 12px;
}
.wrapper h4 {
    font-size: 1.8em;
}
/*---------------------------
 PC mainvisual
---------------------------*/
.mainvisual .inner-wrap {
    padding: 0 20%;
    display: flex;
    max-width: none;
    position: relative;
}
.mainvisual {
    background-image: url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/fv_bg_pc.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 29.7vw;
}
.mainvisual .title {
    padding: 4% 0 0 0;
    width: 50vw;
}
.mainvisual .fv-sp {
    display: none;
}
.mainvisual .fv-pc {
    display: inline;
    position: absolute;
    top: 1vw;
    right: 15vw;
    width: 28vw;
}
.mainvisual .main-img {
    position: relative;
}
.mainvisual .icon {
    position: absolute;
    top: 1.8vw;
    right: 18.3vw;
    width: 6.5vw;
}
.mainvisual .catch {
    font-size: 1.6vw;
    margin-bottom: 2%;
}
.mainvisual h1 {
    font-size: 2.7vw;
}
.mainvisual ul {
    display: flex;
    gap: 1vw;
    padding: 1.2vw 5vw 0;
}
.mainvisual .logo {
    padding: 4% 27% 0;
}
.mainvisual .chushaku {
    text-align: center;
    font-size: .8vw;
    margin-top: .2vw;
}
/*--------------------------
  PC nav
--------------------------*/
#navi ul {
    max-width: 960px;
}
#navi li a {
    width: 250px;
    font-size: 1.3em;
    height: 85px;
}
#navi li a::before {
    top: 66%;
    right: 46%;
}
/*--------------------------
  PC about
--------------------------*/
.wrapper .about {
    width: 100%;
    height: 1080px;
    background-image: url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/about_bg_top.png), url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/about_bg_left.png), url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/about_bg_right.png);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 297px, 367px, 480px;
    background-position: top 0px right 15vw, top 280px left -93px , top 570px right -210px;
}
.e-oil-box .sp-bg-top {
    display: none;
}
.about .inner-wrap {
    padding: 0 0 12%;
}
.e-oil-box {
    background-size: 540px;
    height: 540px;
    background-position: top left 0;
}
.e-oil-box {
    background-size: 540px;
    height: 540px;
    background-position: top left 50px;
}
.e-oil-box h2 {
    padding: 75px 0 23px 140px;
    width: 510px;
}
.e-oil-box .img-oil {
    top: -30px;
    left: -6px;
    width: 305px;
}
.e-oil-box .caption {
    padding: 0 0 0 315px;
    width: 540px;
}
.fragrance-box {
    height: 350px;
    width: 350px;
    margin: -280px 0 0 640px;
}
.fragrance-box img {
    top: 260px;
    left: 205px;
    width: 204px;
}
.fragrance-box h2 {
    padding: 60px 0 18px;
}
.fragrance-box .caption {
    padding: 0 72px;
}
.nintei-box {
    padding: 60px 50px 0;
}
.nintei-box img {
    padding: 0 240px;
}
.nintei-box h3 {
    font-size: 2.6em;
    margin: 0 0 18px;
}
.nintei-box .caption {
    text-align: center;
    margin: 18px 0 0;
}
.nintei-box span {
    display: inline-block;
}
.nintei-box .chushaku {
    text-align: center;
    margin-top: 8px;
}
/*---------------------------
  PC commitment
---------------------------*/
.wrapper .commitment {
    background-image: url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/point_element_1.png), url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/point_element_2.png), url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/point_element_3.png),url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/point_element_4.png);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: 236px, 176px, 276px, 221px;
    background-position: top 180px left, top 660px right , top 1320px left , top 1850px right;
}
.commitment h2 small {
    font-size: .7em;
}
.commitment h2 em {
    font-size: .75em;
}
.fade-in-right dl {
    display: flex;
}
.fade-in-right dt {
    flex: 1;
}
.fade-in-right dd {
    flex: 1;
    margin: 130px 0 0 40px;
}
.commit-box {
    padding: 0;
}
.fade-in-left dl {
    display: flex;
    flex-direction: row-reverse;
}
.fade-in-left dt {
    flex: 1;
}
.fade-in-left dd {
    flex: 1;
    margin: 120px 40px 0 0;
}
.commitment h3 {
    text-align: left;
}
.commitment .howtouse {
    margin-top: 0;
    padding: 0;
    margin-bottom: -6%;
}
.howtouse dd {
    flex: auto; 
    margin: 130px 0 0 230px;
}
.commitment .num-left {
    top: 0;
    left: 390px;
    width: 123px;
}
.commitment .num-right {
    top: 0;
    right: -50px;
    width: 123px;
}
.commitment .type .num-right {
    top: -25px;
    right: -62px;
    width: 123px;
}
.commitment .num-mid {
    top: 206px;
    width: 123px;
    left: 100px;
}
.commitment .arrow {
    margin-top: 25px;
    padding: 0;
}
/*---------------------------
  PC use
---------------------------*/
.use .inner-wrap {
    padding: 60px 0 75px;
}
.use h2 {
    margin-bottom: 25px;
}
.use h2 br {
    display: none;
}
.use ul {
    gap: 30px;
}
.use li {
    width: 217px;
}
.use .element_pc {
    display: inline;
    position: absolute;
    top: -63px;
    left: 0;
}
/*---------------------------
  PC brend
---------------------------*/
.wrapper .brend {
    background-image: url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/use_element_2.png), url(/contents/shop/sevenbeauty/img/freepage/essentialoil-2024/use_element_3.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 209px, 227px;
    background-position: top 270px right , top 820px left;
}
.brend .meyasu {
    padding: 10px 90px 0;
    margin-top: 0;
    display: flex;
    gap: 30px;
}
.brend h2 {
    font-size: 1.8em;
    text-align: left;
}
.brend h2 br {
    display: none;
}
.meyasu .left {
    width: 1100px;
}
.meyasu .right img {
    margin: 0 0 10px;
}
.brend .recommend {
    padding: 70px 90px 20px;
}
.recommend h3 {
    padding: 10px 0 12px;
}
.recommend .caption {
    padding-left: 200px;
    margin-bottom: 35px;
}
.brend-img {
    top: 27px;
    left: -14px;
    width: 290px;
    filter: drop-shadow(8px 10px 6px rgba(66, 66, 66, 0.2));
}
.trouble-body h4 {
    padding: 2px 0 6px;
    width: 300px;
    margin: 0 auto 20px;
}
.trouble-woman h4 {
    padding: 2px 0 6px;
    width: 300px;
    margin: 0 auto 20px;
}
.trouble-body {
    padding: 28px;
}
.card-box {
    gap: 25px;
}
.card-box .card {
    padding: 15px;
    width: 224px;
}
.card .caption {
    padding-left: 0;
    font-size: 1.1em;
    margin-bottom: 10px;
}
.card .midashi {
    font-size: 1.6em;
    font-weight: 400;
    margin-bottom: 8px;
}
.brend-list {
    font-size: 1.1em;
}
.brend-list dt {
    width: 76%;
}
.brend-list dd {
    width: 24%;
}
.trouble-woman {
    padding: 28px;
    margin-top: 30px;
}
.trouble-woman .woman-img {
    position: absolute;
    width: 228px;
    top: 71px;
    right: 26px;
}
.brend .brend-bottom {
    height: 70px;
}
/*---------------------------
  PC list
---------------------------*/
.wrapper .list {
    position: relative;
    text-align: center;
}
.list .element_pc {
    display: inline;
    position: absolute;
    top: -350px;
    right: 0;
    width: 224px;
}
.list .area {
    height: 100%;
    margin-bottom: 35px;
}
.oil-table th:first-of-type {
    width: 120px;
}
.oil-table thead th:nth-child(2) {
	left: 120px;
    width: 210px;
}
.oil-table thead th {
    width: 75px;
}
.oil-table td:first-of-type{
	left: 120px;
}
.list-btn {
    border-radius: 40px;
    font-size: 1.4em;
    padding: 12px 20px 10px 0;
    width: 570px;
}
.list-btn::after{
    right: 50px;
    width: 40px;
}
.list-btn:hover::after{
    right: 30px;
    width: 60px;
}
}
