@charset "UTF-8";

/* fonts
----------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@400;500;700&family=Libre+Baskerville:wght@400;700&family=Shippori+Mincho:wght@400;700&display=swap');

/* reset
----------------------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  /*vertical-align:baseline;*/
  background:transparent;
}

body {
  line-height:1;
}

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

nav ul {
  list-style:none;
}

ul,ol {
  list-style:none;
}

blockquote, q {
  quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}

a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

/* change colours to suit your needs */
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}

/* change colours to suit your needs */
mark {
  background-color:#ff9;
  color:#000; 
  font-style:italic;
  font-weight:bold;
}

del {
  text-decoration: line-through;
}

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

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

/* change border colour to suit your needs */
hr {
  display:block;
  height:1px;
  border:0;   
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

input, select {
  vertical-align:middle;
}

* {
  box-sizing:border-box;
}

/* layout
----------------------------------------------------*/
html,body{
	height: 100%;
}

html {
  scroll-behavior: smooth;
 	font-size: 62.5%; 
}

body{
  color: #333;
  line-height: 1.7;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  position: relative;
  -webkit-text-size-adjust: 100%;
/*  display: none;*/
}

#container{
  width:100%;
  min-height: 100vh;
  height: auto !important;
  height: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0 auto;
  -webkit-overflow-scrolling: touch;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
}

footer {
  width: 100%;
}

.inner {
  width: 90%;
  margin: 0 auto;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.sp { display:block; }
.pc { display:none; }


/* clearfix */
.cf {
	zoom: 1;
}
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear: both;
}

/* link */
a {
  color: #0C296A;
  transition: all .2s linear;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a:hover img {
  opacity: .8;
}

main a.external_link::after {
  display: inline-block;
  content: "\f08e";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  margin-left: 0.2em;
  margin-right: 0.2em;
  color: #0C296A;
}

@media only screen and (min-width: 768px) {
  #wrapper {
    padding-bottom: 130px;
  }
  
  footer {
    position: absolute;
    bottom: 0;
    overflow: hidden;
    min-height: 130px;
  }
  
  .inner {
    max-width: 1200px;
  }
  
  .sp {display:none;}
  .pc {display:block;}
}

/* header
----------------------------------------------------*/
header {
  z-index: 5;
  height: 60px;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  position: fixed;
}

/********** header.inner **********/
header .inner {
  margin: 0 auto;
  height: 60px;
  display: flex;
  justify-content: right;
  align-items: center;
}

/********** logo **********/
header .logo {
  font-family: 'Libre Baskerville', serif;
  color: #0C296A;
  font-size: 2.2rem;
  font-style: italic;
  font-weight: bold;
  position: absolute;
  top: 10px;
  left: 2%;
}

header .logo a {
  text-decoration: none;
  color: #0C296A;
  display: flex;
  align-items: center;
}

header .logo a:hover {
  opacity: .8;
}

header .logo img {
  width: 66px;
  height: 44px;
  float: left;
}

/********** menu_btn **********/
header .menu_btn { 
  z-index: 30;
  position: fixed;
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin: 0;
  top: 5px;
  right: 10px;
  text-align: center;
}

header .menu_btn .label {
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
}

header .menu_btn .label::before {
  content: "MENU";
  color: #0C296A;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
  font-size: 1.1rem;
}
  
header .menu_btn span {
  content: "";
  display: block;
  position: absolute;
  background: #0C296A;
  width: 40px;
  height: 2px;
  margin: 0;
  right: 0;
  transition: all .3s ease-in-out;
}
  
header .menu_btn span:nth-of-type(1) { 
  top: 25px;
}

header .menu_btn span:nth-of-type(2) {
  bottom: 0;
}

/***** menu_btn open ****/
header .menu_btn.open span {
  background: #fff;
}

header .menu_btn.open span:nth-of-type(1) {
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
  top: 30px;
}

header .menu_btn.open span:nth-of-type(2) {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  top: 30px;
}

header .menu_btn.open .label::before {
  content: "CLOSE";
  color: #fff;
}

/********** navi_open **********/
header .navi_open {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 100vh;
  background: #0C296A;
  z-index: 20;
}

header .navi_open.close {
  display: none;
}

/********** gnavi **********/
header .gnavi {
  margin-top: 70px;
  font-weight: bold;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
}

header .gnavi ul.menu li a {
  display: block;
  text-decoration: none;
  position: relative;
  box-sizing: border-box;
  transition: all .3s linear;
  padding: 10px 20px;
  color: #fff;
}

/* sub-menu */
header .gnavi ul.menu ul.sub-menu {
  padding-left: 1em;
  font-size: 1.4rem;
}
   
/***** search_area *****/
header #searchform {
  display: flex;
  position: relative;
  justify-content: center;
  flex-wrap: wrap;
  line-height: 1;
  height: 40px;
  margin: 0 20px 20px;
  border-bottom: 1px solid #fff;
}

header .search_field {
  background: transparent;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 1.6rem;
  width: 100%;
  color: #fff;
}

header .search_field::placeholder {
  color: #999;
}

header .search_field:focus {
  cursor: text;
  outline: none;
  background: none;
}

header .search_submit {
  background-color: transparent;
  border: none;
  font-size: 1.6rem;
  color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

header form#searchform input[type="search"]::-webkit-search-cancel-button {    
  -webkit-appearance: none;
}

header form#searchform input[type="search"]::-webkit-search-decoration {
  display:none;
}

/********** overlay **********/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background:rgba(0,0,0,0.5);
  display: block;
  z-index: 10;
}

.overlay.invisible {
  display: none;
}

@media only screen and (min-width: 900px) {   
  header .inner {
    width: 96%;
    max-width: 96%;
  }
  
  header .logo {
    font-size: 2.6rem;
  }
  
  /********** menu_btn **********/
  header .menu_btn { 
    display: none;
  }
  
  /********** navi_open **********/
  header .navi_open {
    position: relative;
    height: auto;
    background: none;
    width: calc(100% - 300px);
  }

  header .navi_open.close {
    display: block;
  }
  
  /********** gnavi **********/
  header .gnavi {
    margin-top: 0;
    display: flex;
    flex-direction: row-reverse;
  }
    
  header .gnavi ul.menu li {
    display: inline-block;
    position: relative;
    margin: 0 10px;
    height: 60px;
    line-height: 60px;
  }
  
  header .gnavi ul.menu li a {
    color: #000;
    padding: 0;
  }
  
  header .gnavi ul.menu li::after {
    position: absolute;
    transition: .3s;
    content: '';
    width: 0;
    left: 50%;
    bottom: 0;
    height: 3px;
    background: #0C296A;
  }
  
  header .gnavi ul.menu li:hover::after {
    width: 100%;
    left: 0;
  }
  
  /* sub-menu */
  header .gnavi ul.menu ul.sub-menu {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    font-weight: normal;
    min-width: 230px;
    font-weight: bold;
    padding-left: 0;
  }
  
  header .gnavi ul.menu li:hover ul.sub-menu {
    visibility: visible;
    opacity: 1;
  }

  header .gnavi ul.menu ul.sub-menu li {
    display: block;
    height: auto;
    line-height: auto;
  }

  header .gnavi ul.menu ul.sub-menu li::after {
    content: none;
  }

  header .gnavi ul.menu ul.sub-menu li a {
    padding: 10px 10px 10px 5px;
    height: auto;
    line-height: 1.5;
  }

  header .gnavi ul.menu ul.sub-menu li a:hover {
    opacity: .7;
  }

  header .gnavi ul.menu ul.sub-menu li a::after {
    content: none;
  }
    
  header .gnavi ul.menu ul.sub-menu li a::before {
    content: "";
    display: block;
    border: 3px solid transparent;
    border-left: 3px solid #0C296A;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
  
  /***** search_area *****/
  header #searchform {
    width: auto;
    height: auto;
    margin: 0;
    border-bottom: none;
    top: 10px;
  }
  
  header .search_submit {
    transition: all 0.5s ease-in-out;
    position: absolute;
    z-index: 2;
    right: 0;
    height: 100%;
    color: #0C296A;
  }
  
  header .search_field {
    position: absolute;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    width: 0;
    z-index: 3;
    color: #333;
  }
  
  header .search_field:focus {
    opacity: 1;
    width: 100%;
    z-index: 1;
    background: #FFF;
    line-height: 1.2;
    border-bottom: 1px solid #000;
  }
  
  header form#searchform input[type="search"] {
    width: 40px;
    position: relative;
    transition: all 0.5s ease-in-out;
    margin: 0;
    height: 40px;
  }

  header form#searchform input[type="search"]:focus {
    width: 200px;
    line-height: 1.4;
  }
}


/* footer
----------------------------------------------------*/
footer {
  background: #0C296A;
  color: #fff;
}

/********** logo **********/
footer .logo {
  text-align: center;
  margin: 10px 0 0;
}

footer .logo img {
  width: 150px;
  height: auto;
  display: inline-block;
}

/********** pagetop **********/
footer .pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  background: #9479BA;
  text-indent: -9999px;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1;
}
    
footer .pagetop a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%; 
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
}


/********** footer_navi **********/
footer .footer_navi {
  padding: 20px 0;
  text-align: center;
  font-size: 1.4rem;
}

footer .footer_navi a {
  color: #fff;
  text-decoration: none;
}

footer .footer_navi ul li {
  display: inline-block;
}

footer .footer_navi ul li a {
  position: relative;
  padding: 0 10px;
}

footer .footer_navi ul li a:hover {
  opacity: .8;
}

footer .footer_navi ul li:not(:last-child) a::after {
  content: "";
  width: 1px;
  height: 12px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

footer .footer_navi .copyright {
  font-size: 1.2rem;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
}

/* main
----------------------------------------------------*/
main {
  background: #fff;
}

main .anchor {
  margin-top: -60px;
  padding-top: 60px;
}

main .post_area .txt_red {
  color: #F02856;
}

main .post_area .note {
  font-size: 1.4rem;
}

main .post_area .point {
  background: #F02856;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 5px;
  margin-left: 0.5em;
}

main * + .btn,
main * + .btn_back {
  margin-top: 30px;
}

/* btn */
main .btn a,
main .btn button[type="submit"], 
main .btn button[type="button"]{
  display: block;
  background: #0C296A;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: 60px;
  line-height: 60px;
  max-width: 320px;
  position: relative;
  border: none;
  font-size: 1.6rem;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
}

main .btn a::before,
main .btn button[type="submit"]::before, 
main .btn button[type="button"]::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

main .btn a:hover,
main .btn button[type="submit"]:hover, 
main .btn button[type="button"]:hover {
  opacity: .8;
  cursor: pointer;
}

/* btn_back */
main .btn_back a,
main .btn_back button[type="submit"], 
main .btn_back button[type="button"] {
  display: block;
  background: #0C296A;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: 60px;
  line-height: 60px;
  max-width: 320px;
  position: relative;
  border: none;
  font-size: 1.6rem;
  font-family: 'Shippori Mincho', serif;
}

main .btn_back button[type="submit"], 
main .btn_back button[type="button"] {
  background: #999;
}

main .btn_back a::before,
main .btn_back button[type="submit"]::before, 
main .btn_back button[type="button"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
}

main .btn_back a:hover,
main .btn_back button[type="submit"]:hover, 
main .btn_back button[type="button"]:hover {
  opacity: .8;
  cursor: pointer;
}

/* page_title_area
----------------------------------------------------*/
.page_title_area {
  position: relative;
  margin-top: 60px;
}

.page_title_area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.5);
}

.page_title_area figure img {
  object-fit: cover;
  width: 100%;
  height: 180px;
}

.page_title_area .page_title {
  font-size: 2.6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  z-index: 1;
  line-height: 1.5;
  width: 100%;
  text-align: center;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
  font-weight: bold;
}

@media only screen and (min-width: 768px) {  
  .page_title_area .page_title {
    font-size: 2.8rem;
  }
}

/***** heading *****/
body:not(.home):not(.single-aroma_profile):not(.single-post) main h1 {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  background: #F1EFF8;
  color: #0C296A;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
}

body:not(.home):not(.archive) main h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  color: #0C296A;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
}

body:not(.home):not(.archive) h2 span {
  background: #fff;
  position: relative;
  padding: 0 0.5em;
}

body:not(.home):not(.archive) main h2::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #A0B2DD;
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  position: absolute;
}

body:not(.home):not(.archive) main h3 {
  font-size: 1.8rem;
  color: #0C296A;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

body:not(.home):not(.archive) main h3::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #0C296A;
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
}

body:not(.home):not(.archive) main h4 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #0C296A;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
}

body:not(.home):not(.archive) main h5 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* list
----------------------------------------------------*/
main section .post_area ul {
  padding-left: 1em;
}

main section .post_area ol {
  padding-left: 1.7em;
}

main section .post_area ul li {
  list-style: disc;
}

main section .post_area ol li {
  list-style: decimal;
}

main section .post_area ul li + li{
  margin-top: 0.5em;
}

main section .post_area ul.ast {
  padding-left: 0;
}

main section .post_area ul.ast li {
  padding-left: 1em;
  text-indent: -1em;
}

main section .post_area ul.ast li::before {
  content: "※";
}


/* breadcrumb
----------------------------------------------------*/
.breadcrumb {
  font-size: 1.2rem;
  padding: 5px;
  overflow: hidden;
}

.breadcrumb .inner {
  display: flex;
}

.breadcrumb a {
  color: #A0B2DD;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  display: block;
  margin: 0 2px;
  white-space: nowrap;
}

.breadcrumb span:last-of-type {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* table
----------------------------------------------------*/
main table {
  border-collapse: collapse;	
  width: 100%;
}

main table th {
  background: #E1F4EE;
  padding: 10px;
  border: 1px solid #ccc;
  line-height: 1.3;
}

main table td {
  padding: 10px;
  border: 1px solid #ccc;
  vertical-align: top;
}


/* form
----------------------------------------------------*/
/* input */
main input[type="text"], 
main input[type="email"], 
main input[type="password"], 
main input[type="tel"] {
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px;
  box-sizing: border-box;
  font-size: 1.6rem;
  width: 100%;
  -webkit-appearance: none;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
}

/* textarea */
main textarea {
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px;
  font-size: 1.6rem;
  width: 100%;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  height: 8em;
  -webkit-appearance: none;
}

/* radio / checkbox */
main input[type="radio"],
main input[type="checkbox"]{
 position: absolute;
 white-space: nowrap;
 border: 0;
 clip: rect(0 0 0 0);
 clip-path: inset(50%);
 overflow: hidden;
 height: 1px;
 width: 1px;
 margin: -1px;
 padding: 0;
}

main label {
  position: relative;
  cursor: pointer;
  padding-left: 25px;
}

/* radio */
main input + label::before,
main input + label::after {
  content: "";
  display: block; 
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

main input[type="radio"] + label::before,
main input[type="radio"] + label::after {
  border-radius: 50%;
}

main input[type="radio"] + label::before {
  background-color: #fff;
  border: 1px solid #ddd;
  width: 20px;
  height: 20px;
  left: 0;
  box-sizing: border-box;
}

main input[type="radio"] + label::after {
  background-color: #999;
  opacity: 0;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  left: 3px
}

main input[type="radio"] + label::after {
  border-radius: 50%;
}

/* checkbox */
main input[type="checkbox"] + label::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #ddd;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  box-sizing: border-box;
}

main input[type="checkbox"] + label::after {
  border-bottom: 2px solid #999;
  border-left: 2px solid #999;
  opacity: 0;
  height: 5px;
  width: 10px;
  transform: rotate(-45deg);
  top: 5px;
  left: 5px;
}

main input:checked + label::after {
  opacity: 1;
}

/* selectbox */
main select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  margin: 0;
  background: none;
  font-size: 1.6rem;
  border: 1px solid #ddd;
  border-radius: 3px;
  position: relative;
  display: block;
  color: #333;
}

main .selectbox {
  position: relative;
}

main .selectbox::after {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  position: absolute;
  top: 14px;
  right: 10px;
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 1;
}

/* page / single
----------------------------------------------------*/
.page main section,
.single main section {
  padding: 60px 0;
}

/* single
----------------------------------------------------*/
/********** post_area **********/
.page main .post_area {
  margin-bottom: 60px;
}

.page main .post_area .thumbnail {
  margin-bottom: 30px;
}

.page main .post_area p + * {
  margin-top: 1em;
}

.page main .post_area * + h1 {
  margin-top: 60px;
}

.page main .post_area ul + h2 {
  margin-top: 40px;
}

.page main .post_area img {
  width: auto;
  max-width: auto;
}

.page main .post_area .img_right {
  float: right;
  margin: 0 0 30px 30px;
}

.page main .post_area .img_left {
  float: left;
  margin: 0 30px 30px 0;
}

.page main .post_area .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.page main .wp-caption {
  max-width: 100%;
  margin-bottom: 1em;
}

.page main .wp-caption-text {
  font-size: 1.4rem;
  color: #666;
  margin-top: 0;
}

.page main .aligncenter .wp-caption-text {
  text-align: center;
}

.page main .alignright .wp-caption-text {
  text-align: right;
}

@media only screen and (min-width: 768px) {
  body:not(.home).page main section .inner {
    max-width: 900px;
  }
}

/* taxonomy
----------------------------------------------------*/
.archive main section ul.aroma_taxonomy + ul.aroma_taxonomy {
  margin-top: 0.2em;
}

.archive main section ul.aroma_taxonomy:last-of-type {
  margin-bottom: 0.5em;
}

main section ul.aroma_taxonomy {
  padding-left: 0;
  font-size: 1.4rem;
}

main section ul.aroma_taxonomy li {
  display: inline-block;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
  margin-bottom: 5px;
}

main section ul.aroma_taxonomy li.aroma_family a {
  text-decoration: none;
  padding: 4px 10px;
  background: #0C296A;
  color: #fff;
}

main section ul.aroma_taxonomy li.aroma_scent_test a {
  text-decoration: none;
  padding: 4px 10px;
  background: #F1EFF8;
  color: #0C296A;
}

main section ul.aroma_taxonomy li.grade01 a {
  text-decoration: none;
  padding: 4px 10px;
  background: #9479BA;
  color: #fff;
}

main section ul.aroma_taxonomy li.grade02 a {
  text-decoration: none;
  padding: 4px 10px;
  background: #5DB3D9;
  color: #fff;
}

main section ul.aroma_taxonomy li.grade01 + li.grade02 {
  margin-left: 0.2em;
}

/* archive
----------------------------------------------------*/
.archive main section {
  padding: 60px 0;
}

.archive ul.list_archive {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.archive ul.list_archive > li {
  width: 49%;
  margin-bottom: 30px;
}

.archive ul.list_archive li a {
  text-decoration: none;
}

.archive ul.list_archive li a:hover {
  opacity: .8;
  text-decoration: none;
}

.archive ul.list_archive li dl dt figure {
  position: relative;
  overflow: hidden;
  padding-top: 68.42%;
  margin-bottom: 10px;
}

.archive ul.list_archive li dl dt figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive ul.list_archive li dl dt h4 {
  font-size: 1.8rem;
  line-height: 1.3;
  color: #0C296A;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
  margin-bottom: 10px;
}

.archive ul.list_archive li dl dt h4 span {
  font-size: 1.6rem;
  color: #A0B2DD;
  display: block;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
}

.archive ul.list_archive li dl dd .date {
  color: #666;
  font-size: 1.4rem;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
}

.archive main ul.list_category {
  margin-bottom: 10px;
}

.archive main ul.list_category li {
  display: inline-block;
}

.archive main ul.list_category li a {
  background: #000;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 2px 5px;
  border-radius: 2px;
}

.archive main ul.list_category li a:hover {
  opacity: .8;
}

.archive main ul.list_archive li ul.list_category li {
  width: auto;
  display: inline-block; 
}

.archive main ul.list_archive li ul.list_category li + li {
  margin-left: 0.5em;
}

.archive main ul.list_archive li ul.list_category li a {
  background: #0C296A;
  color: #fff;
  text-decoration: none;
  padding: 4px 10px;
  font-size: 1.2rem;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
}


@media only screen and (min-width: 768px) {
  .archive ul.list_archive {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .archive ul.list_archive::after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
  }
  
  .archive ul.list_archive > li {
    width: 32%;
  }
}

/********** wp-pagenavi **********/
.wp-pagenavi {
  margin: 30px auto;
  text-align: center;
}

.wp-pagenavi span {
  display: inline-block;
  margin: 0 3px;
  padding: 0;
  text-decoration: none;
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 1.4rem;
}

.wp-pagenavi span.pages {
  width: auto;
  border: none;
  padding: 0 10px;
  color: #0C296A;
}

.wp-pagenavi a {
  display: inline-block;
  margin: 0 3px;
  padding: 0;
  text-decoration: none;
  width: 44px;
  height: 44px;
  line-height: 44px;
  color: #0C296A;
  background: #fff;
  border: 1px solid #0C296A;
  font-size: 1.4rem;
}

.wp-pagenavi a:hover{
  color: #fff;
  background: #0C296A;
  border-color: #0C296A;
}

.wp-pagenavi span.current{
  color: #fff;
  background: #0C296A;
  border-color: #0C296A;
}

.wp-pagenavi a.last,
.wp-pagenavi a.first {
  border: none;
  width: 30px;
}

.wp-pagenavi a.last:hover,
.wp-pagenavi a.first:hover{
  color: #0C296A;
  background: none;
  opacity: .8;
}

/* single
----------------------------------------------------*/
.single main section {
  padding: 60px 0;
}

/********** post_area **********/
.single main .post_area {
  margin-bottom: 60px;
}


.single main .post_area .thumbnail {
  margin-bottom: 30px;
}

.single main .post_area .date {
  color: #666;
  text-align: right;
  font-size: 1.4rem;
  font-family: 'Libre Baskerville', serif;
}

.single main .post_area ul.list_category {
  padding-left: 0;
}

.single main .post_area ul.list_category li {
  display: inline-block;
}

.single main .post_area ul.list_category li a {
  background: #0C296A;
  color: #fff;
  text-decoration: none;
  padding: 4px 10px;
  font-size: 1.2rem;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
}

.single main .post_area ul.list_category li a:hover {
  opacity: .8;
}

.single main .post_area p + * {
  margin-top: 1em;
}

.single main .post_area img {
  width: auto;
  max-width: auto;
}

.single main .post_area .img_right {
  float: right;
  margin: 0 0 30px 30px;
}

.single main .post_area .img_left {
  float: left;
  margin: 0 30px 30px 0;
}

.single main .post_area .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.single main .wp-caption {
  max-width: 100%;
  margin-bottom: 1em;
}

.single main .wp-caption-text {
  font-size: 1.4rem;
  color: #666;
  margin-top: 0;
}

.single main .aligncenter .wp-caption-text {
  text-align: center;
}

.single main .alignright .wp-caption-text {
  text-align: right;
}

/***** aroma_profile *****/
.single main .post_area .aroma_label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.single main .post_area dl.plant_data,
.single main .post_area dl.oil_data {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
}

.single main .post_area dl.plant_data dt,
.single main .post_area dl.oil_data dt {
  width: 35%;
  color: #0C296A;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
}

.single main .post_area dl.plant_data dd,
.single main .post_area dl.oil_data dd {
  width: 65%;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.single main .post_area dl.scent_feature {
  background: #F1EFF8;
  margin-bottom: 60px;
}

.single main .post_area dl.scent_feature dt {
  color: #0C296A;
  font-weight: bold;
  font-size: 2rem;
  padding: 20px 20px 0;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
}

.single main .post_area dl.scent_feature dd {
  padding: 10px 20px 20px;
}

/********** related_post **********/
.single .related_post {
  margin: 60px auto;
}
.single .related_post ul.list_related_post {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.single .related_post ul.list_related_post li {
  width: 49%;
  margin-bottom: 30px;
}

.single .related_post ul.list_related_post li a:hover {
  opacity: .8;
  text-decoration: none;
}

.single .related_post ul.list_related_post li dl dt figure {
  position: relative;
  overflow: hidden;
  padding-top: 68.42%;
  margin-bottom: 10px;
}

.single .related_post ul.list_related_post li dl dt figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single .related_post ul.list_related_post li dl dt h4 {
  font-size: 1.6rem;
  color: #000;
  margin-bottom: 0;
}

.single .related_post ul.list_related_post li a {
  text-decoration: none;
  color: #0C296A;
}

.single .related_post ul.aroma_taxonomy li {
  display: inline-block;
  font-size: 1.2rem;
}

.single .related_post ul.aroma_taxonomy li.aroma_family a{
  text-decoration: none;
  padding: 2px 10px;
  background: #0C296A;
  color: #fff;
}

.single .related_post ul.aroma_taxonomy li.aroma_scent_test a {
  text-decoration: none;
  padding: 2px 10px;
  background: #E9E6F3;
  color: #0C296A;
  font-family: 'Shippori Mincho', serif;
}

.single .related_post ul.aroma_taxonomy li + li {
  margin-left: 0.2em;
}

.single .related_post ul.aroma_taxonomy li {
  width: auto !important;
}

.single .related_post ul.aroma_taxonomy li.grade01 a{
  text-decoration: none;
  padding: 2px 10px;
  background: #9479BA;
  color: #fff;
  font-family: 'Shippori Mincho', serif;
}

.single .related_post ul.aroma_taxonomy li.grade02 a {
  text-decoration: none;
  padding: 2px 10px;
  background: #5DB3D9;
  color: #fff;
  font-family: 'Shippori Mincho', serif;
}

@media only screen and (min-width: 768px) {
  .single main section .inner {
    max-width: 900px;
  }
  
  .single main .post_area dl.plant_data dt,
  .single main .post_area dl.oil_data dt {
    width: 25%;
  }

  .single main .post_area dl.plant_data dd,
  .single main .post_area dl.oil_data dd {
    width: 75%;
  }
  
  /********** related_post **********/
  .single .related_post ul.list_related_post {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .single .related_post ul.list_related_post li {
    width: 24%;
  }
  
  .single .related_post ul.list_related_post::before {
    content: "";
    display: block;
    width: 24%;  /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
    order: 1;  /* 疑似要素beforeの順番を必ず指定する*/
}
  
  .single .related_post ul.list_related_post::after {
    content: "";
    display: block;
    width: 24%;
    height: 0;
  }
  

}

/* search-results
----------------------------------------------------*/
.search main section {
  padding: 60px 0;
}

.search-results main section .search_result_num {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
}

.search-results ul.list_archive {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.search-results ul.list_archive li {
  width: 49%;
  margin-bottom: 30px;
}

.search-results ul.list_archive li a {
  text-decoration: none;
}

.search-results ul.list_archive li a:hover {
  opacity: .8;
}

.search-results ul.list_archive li dl dt figure {
  position: relative;
  overflow: hidden;
  padding-top: 68.42%;
  margin-bottom: 10px;
}

.search-results ul.list_archive li dl dt figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-results ul.list_archive li dl dd h4 {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.search-results ul.list_archive li dl dd .date {
  color: #666;
  font-size: 1.4rem;
}

.search-results ul.list_archive li ul.list_category li {
  width: auto;
  display: inline-block; 
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
}

.search-results ul.list_archive li ul.list_category li + li {
  margin-left: 0.5em;
}

.search-results ul.list_archive li ul.list_category li a {
  background: #0C296A;;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 4px 10px;
}

@media only screen and (min-width: 768px) {
  .search-results ul.list_archive {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .search-results ul.list_archive::after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
  }
  
  .search-results ul.list_archive li {
    width: 32%;
  }
}

/* search-no-results
----------------------------------------------------*/
.search-no-results main section {
  text-align: center;
  padding: 60px 0;
}

.search-no-results main section .search_area {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
}

.search-no-results main section #searchform {
  display: flex;
  position: relative;
  justify-content: center;
  line-height: 1;
  height: 40px;
  margin: 0;
}

.search-no-results main section #searchform .search_field {
  width: calc(100% - 40px);
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 0 10px;
}

.search-no-results main section #searchform .search_field::placeholder {
  color: #999;
}

.search-no-results main section #searchform .search_submit {
  width: 40px;
  height: 40px;
  background-color: #0C296A;
  border: none;
  font-size: 1.6rem;
  color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.search-no-results main section #searchform .search_field:focus {
  cursor: text;
  outline: none;
  background: none;
}

.search-no-results main section #searchform input[type="search"]::-webkit-search-cancel-button {    
  -webkit-appearance: none;
}

.search-no-results main section #searchform input[type="search"]::-webkit-search-decoration {
  display:none;
}

/* no_post
----------------------------------------------------*/
main section .no_post {
  margin: 40px auto;
  text-align: center;
}

/* addtoany
----------------------------------------------------*/
.share_btns {
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share_btns h6 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  position: relative;
  padding-right: 30px;
  color: #0C296A;
}

.share_btns h6::after {
  content: "";
  width: 1px;
  height: 24px;
  background: #0C296A;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: 10px;
}

body.contact .share_btns,
body.confirm .share_btns,
body.thanks .share_btns,
body.privacy-policy .share_btns,
body.about .share_btns{
  display: none;
}

/* contact
----------------------------------------------------*/
main section dl.contact_form {
  margin-bottom: 40px;
}

main section dl.contact_form dt {
  font-weight: bold;
  margin-bottom: 10px;
}

main section dl.contact_form dd {
  margin-bottom: 20px;
}

main section dl.contact_form .required {
  background: #B70000;
  color: #fff;
  font-size: 1.2rem;
  padding: 3px;
  border-radius: 2px;
  margin-left: 0.5em;
  font-weight: normal;
}

main section ul.form_btn li {
  list-style: none;
  margin: 0 5px;
}

main section ul.form_btn li input[type="submit"]{
  display: block;
  background: #0C296A;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: 60px;
  line-height: 60px;
  max-width: 320px;
  position: relative;
  border: none;
  font-size: 1.6rem;
  font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
}

/* btn_back */
main section ul.form_btn li input[type="submit"].btn_back {
  background: #999;
  color: #fff;
}

main section ul.form_btn li input[type="submit"]:hover {
  opacity: .8;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  main section dl.contact_form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  main section dl.contact_form dt {
    width: 25%;
    max-width: 225px;
  }
  
  main section dl.contact_form dd {
    width: 75%;
  }
  
  main section ul.form_btn {
    padding-left: 0;
    display: flex;
    justify-content: center;
  }
  
  main section ul.form_btn li input[type="submit"]{
    display: block;
    background: #0C296A;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    margin: 0 auto;
    text-align: center;
    width: 320px;
    height: 60px;
    line-height: 60px;
    position: relative;
    border: none;
    font-size: 1.6rem;
    font-family: 'Libre Baskerville', 'Shippori Mincho', serif;
  }
  
  main section .post_area ul.form_btn li + li {
    margin-top: 0 !important;
  }
}

/* thanks
----------------------------------------------------*/
@media only screen and (min-width: 768px) {
  .thanks .post_area {
    text-align: center;
  }
}

/* ads_area
----------------------------------------------------*/
main section .post_area .ads_area {
  margin: 40px 0;
  border: 4px solid #eee;
  padding: 20px;
}

main section .post_area .ads_area .pr_label {
  font-weight: bold;
}

main section .post_area .ads_area img {
  margin: 0 auto;
}

main section .post_area .ads_area ul li {
  list-style: none;
}

main section .post_area .ads_area ul li + li {
  margin-top: 0;
}

main section .pr_txt_note {
  background: #eee;
  font-size: 1.4rem;
  padding: 10px;
}

main section .post_area .ads_area_moshimo {
  margin: 40px 0;
}

main section .post_area .ads_area_moshimo .pr_label {
  font-weight: bold;
}


@media only screen and (min-width: 768px) {
  main section .post_area .ads_area ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  main section .post_area .ads_area ul li {
    width: 32%;
  }
  
  main section .post_area .ads_area ul::before {
    content: "";
    display: block;
    width: 32%;  /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
    order: 1;  /* 疑似要素beforeの順番を必ず指定する*/
  }
  
  main section .post_area .ads_area ul::after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
  }
}