@charset "utf-8";
/* CSS Document */
body {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  font-weight: bold;
  font-size: 16px;
  color: #2b3228;
  width: 100vw;
  background-color: #fce4d6;
  overflow-x: hidden;
}
img {
  vertical-align: middle;
}
main {
  width: 100vw;
  overflow-x: hidden;
}
p {
  text-align: justify;
}
* {
  box-sizing: border-box;
  outline: none;
}
a {
  color: #2b3228;
  border: none;
  text-decoration: none;
}


/* フレックス */
.flex_row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.flex_reverse {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  align-items: center;
}
.flex_column {
  flex-direction: column;
}

/*//////////////////headerここから////////////////////////*/
header {
  height: 75px;
  width: 100%;
  background: linear-gradient(to top, #db002a, #da536e);
}
.head_pc {
  display: none;
}
.head_logo img {
  width: 250px;
  margin-top: 10px;
}
.head_logo a {
  display: block;
  width: 60%;
  margin-left: 10px;
  z-index: 9999;
}
.head_mo {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 75px;
  z-index: 999;
}
.head_mobox {
  position: relative;
  width: inherit;
  height: inherit;
}
.head_toggle {
  position: absolute;
  right: -93%;
  top: 50%;
  outline: none;
  background: none;
  border: none;
  font-size: 6.5vw;
  color: #ffffff;
  cursor: pointer;
  display: block;
  z-index: 9999;
  transform: translateX(-50%) translateY(-50%);
}
/* ハンバーガーメニュー */
.btn-trigger {
  position: relative;
  width: 40px;
  height: 33px;
  cursor: pointer;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fce4d6;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(218, 83, 110, 0.7);
  -webkit-box-shadow: 0 0 3px rgba(218, 83, 110, 0.7);
}
.btn-trigger,
.btn-trigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

#btn01.active span:nth-of-type(1) {
  -webkit-transform: translateY(13px) rotate(-45deg);
  transform: translateY(13px) rotate(-45deg);
  background-color: #da536e;
}
#btn01.active span:nth-of-type(2) {
  opacity: 0;
}
#btn01.active span:nth-of-type(3) {
  -webkit-transform: translateY(-15px) rotate(45deg);
  transform: translateY(-15px) rotate(45deg);
  background-color: #da536e;
}
/* ハンバーガーメニューここまで */
/*sp トグルメニュー*/
.head_monavi {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  padding-top: 3rem;
}
.head_momenu {
  font-size: 20px;
  text-align: center;
}
.head_momenu li {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.head_momenu li a {
  color: #da536e;
}

.head_tel {
  display: none;
}
/*////////////ページ内設定/////////////////*/
/*ページのメインビジュアル*/

.page_mainvisual {
  width: 100vw;
  min-height: 250px;
  height: 30vh;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*ヒーローイメージ内【h2タグ】*/
.go_top h2,
.fi_top h2,
.ca_step h2,
.mo_moon h2,
.ac_top h2 {
  width: 100%;
  color: #fff;
}
/*【h3タグ】*/
.h3_subtitle {
  color: #a38256;
  border-bottom: medium solid #a38256;
  text-align: center;
  margin-bottom: 2em;
  font-size: 20px;
}

/*【h4タグ】*/
.h4_texttitle {
  font-size: 20px;
  text-align: center;
}


/*//////////お買い求め////////////*/
.btn-1 {
  display: block;
  font-size: 2rem;
  color: #da536e;
  width: 22rem;
  height: 6rem;
  line-height: 6rem;
  text-align: center;
  margin: 2rem auto 5rem;
  background: #fff;
  border: 2px solid #da536e;
  cursor: pointer;
}
/*///////////flex/////////////*/
.wrap1,
.wrap2 {
  text-align: center;
  line-height: 2;
  padding-top: 1rem;
}

/*//////////////////footerここから////////////////////////*/

.sns {
  text-align: center;
  margin-top: 2rem;
}
.sns_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80vw;
  margin: 0 auto;
  list-style-type: none;
}
.sns_menu li,
.sns_menu a {
  flex: 1;
  width: 30px;
  height: auto;
}
.sns_menu img {
  width: inherit;
  height: inherit;
}

.mo_copyright {
  display: block;
  font-size: 7px;
  white-space: nowrap;
  margin: 0.5rem 0;
}
.foot_iconmenu {
  height: 8vh;
  width: 100vw;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: linear-gradient(to top, #db002a, #da536e);
  list-style-type: none;
  position: fixed;
  bottom: 0;
  left: 0;
  padding-top: 0.5rem;
  z-index: 999;
}
.foot_iconmenu li {
  flex: 1;
  width: 100%;
  height: auto;
  text-align: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.foot_iconmenu a {
  width: inherit;
  height: inherit;
  position: relative;
}
.foot_icon {
  height: 1.6rem;
  width: 1.6rem;
}
.foot_iconmenu span {
  display: block;
  color: white;
}
.foot_pc {
  display: none;
}

/*//////////////////ページタイトルここから////////////////////////*/
h2 {
}
.page_title {
  color: #da536e;
  text-align: center;
  font-family: "HG明朝E";
  font-size: 22px;
  text-shadow: 1px 2px 3px rgb(75, 75, 75);
}
.page_title::before {
  content: url("../image/title_top.png");
  display: block;
  margin-bottom: 0.8rem;
  margin-top: 1rem;
  filter: hue-rotate(70deg);
}
.page_title::after {
  content: url("../image/title_bottom.png");
  display: block;
  margin-top: 0.8rem;
  margin-bottom: 1rem;
  filter: hue-rotate(70deg);
}

/*=========モバイル600px以上===========*/
@media (min-width: 600px) {
	
	  /* ナビゲーション */
  .nav {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
  }

  .nav-items {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }

  .nav-item {
    flex: 1;
  }

  .nav-link,
  .nav-link:link,
  .nav-link:visited,
  .nav-link:active,
  .submenu-link,
  .submenu-link:link,
  .submenu-link:visited,
  .submenu-link:active {
    display: block;
    position: relative;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    outline: none;
  }

  .nav-link,
  .nav-link:link,
  .nav-link:visited,
  .nav-link:active {
    color: #fff;
    font-weight: bold;
  }

  .nav-link::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 1);
    opacity: 0;
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-link:hover::before,
  .nav-link:hover::before {
    opacity: 1;
    -webkit-transform: translate(0, 5px);
    transform: translate(0, 5px);
  }

  .dropdown {
    position: relative;
  }

  .dropdown .nav-link {
    padding-right: 15px;
    height: 17px;
    line-height: 17px;
  }

  .dropdown .nav-link::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 0;
    border: 5px solid transparent;
    border-top-color: #fff;
  }

  .submenu {
    z-index: 999999;
    position: absolute;
    top: 100%;
    left: 50%;
    display: none;
    width: 200px;
    margin-left: -100px;
    background: linear-gradient(to top, #db002a, #da536e);
    border-radius: 3px;
    line-height: 2;
    margin-top: 2rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  }
  .submenu::after {
    border-bottom-color: #fff;
  }
  .submenu::before {
    margin-left: -13px;
    border: 13px solid transparent;
    border-bottom-color: rgba(255, 255, 255, 1);
    -webkit-filter: blur(1px);
    filter: blur(1px);
  }
  .submenu-items {
    list-style: none;
    padding: 10px 0;
    z-index: 999999;
  }
  .submenu-item {
    z-index: 999999;
    display: block;
    text-align: center;
  }
  .submenu-link,
  .submenu-link:link,
  .submenu-link:visited,
  .submenu-link:active {
    color: #ffffff;
    padding: 10px 20px;
  }
  .submenu-link:hover {
    text-decoration: underline;
  }
  .submenu-seperator {
    height: 0;
    margin: 12px 10px;
    border-top: 1px solid #eee;
  }
  .show-submenu .submenu {
    opacity: 1;
    -webkit-transform: translate(0, 25px) scale(1);
    transform: translate(0, 25px) scale(1);
    pointer-events: auto;
  }

  header {
    height: 125px;
    width: 100%;
  }
  .head_logo a {
    width: auto;
  }
  .header_nav {
    max-width: 1000px;
    min-width: 600px;
    display: flex;
    justify-content: space-between;
    width: 80vw;
    margin: 0 auto;
    padding-top: 10px;
  }
  .head_mo {
    display: none;
  }
  .head_logo {
    margin-left: 2rem;
  }
  .head_logo img {
    margin-top: 0.5rem;
  }
  .head_pc {
    max-width: 1000px;
    margin: 0.5rem auto;
    display: flex;
    justify-content: space-evenly;
  }

  .head_tel {
    width: auto;
    display: block;
    margin-right: 1rem;
  }
  .head_tel img {
    height: auto;
    width: 180px;
  }
  .head_toggle {
    display: none;
  }
  .head_pcnavi {
    text-align: center;
    width: auto;
  }
  .head_pcmenu {
    display: flex;

    justify-content: space-evenly;
    padding-bottom: 5px;
    width: 80vw;
    min-width: 600px;
    max-width: 1200px;
    margin-left: -1rem;
  }
  .head_list {
    background-color: transparent;
    border: none;
    position: relative;
    font-size: 0.7rem;
    width: 100%;
    line-height: 2.5rem;
  }
  .head_list:nth-child(6) {
    padding-right: 0;
  }
  .head_list,
  .head_list * {
    color: #fff;
  }
  .head_list .fa-shopping-cart {
    margin: 0 0 0.5rem 0.1rem;
  }
  .menu_topics {
    position: relative;
    cursor: pointer;
    text-align: center;
  }
  .topics_menu {
    position: absolute;
    width: 100%;
    top: 105%;
    left: 3%;
    display: none;
    z-index: 999;
  }
  .topics_list {
    height: 3rem;
    line-height: 3rem;
    background-color: rgba(233, 84, 100, 0.8);
	}
	  
	/*///flexのブロック(左：写真、右：テキスト)goods,care,moon///*/
	.wrap1{
		display: flex;
		align-items: center;
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	/*flexのブロック（左：テキスト、右：写真）*/
	.wrap2{
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		padding-bottom: 2rem;
		padding-top: 2rem;
	}

	/*フッター*/
	.sns_menu {
    width: 50vw;
  }
  footer {
    font-size: 14px;
  }

  .foot_mobile {
    display: none;
  }
  .foot_pc {
    display: block;
    background: linear-gradient(to top, #db002a, #da536e);
    padding: 0.5rem 0;
    color: white;
  }
  .foot_pcwrap {
    max-width: 1000px;
    width: 90vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
  }
  .foot_left {
    flex: 0 0 40%;
  }
  .foot_logo img {
    width: 100px;
    height: auto;
  }
  .foot_navi {
    flex: 0 0 60%;
    display: flex;
    justify-content: center;
  }
  .foot_pcmenu {
    flex: 1;
  }
  .foot_pcmenu li {
    line-height: 1.7rem;
    text-align: left;
  }
  .foot_pcmenu a {
    color: #fff;
  }
  p.pc_copy {
    margin-top: 20px;
    font-size: 14px;
    flex: auto;
    text-align: center;
  }
}

/*============モバイル769px以上==============*/
@media (min-width: 769px) {
	
	/*ページタイトル*/
  .page_title {
    font-size: 35px;
  }
  .page_title::before {
    margin-top: 1rem;
  }
  .page_title::after {
    margin-bottom: 1rem;
  }
	/*お買い求めボタン*/
	.btn-1 {
    margin: 2rem auto 2rem;
	}
}
/*
.btn-1 .fa-shopping-cart {
  padding: 0 0 0.5rem 0.5rem;
}
.btn-1:before {
  left: 48%;
}
.btn-1 > span {
  display: inline-block;
  transition: all 0.5s;
}
.icon-forward:before {
  content: "BASEへ⇨";
  vertical-align: middle;
  position: absolute;
  font-size: 2rem;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn-1:before {
  left: -100%;
  transition: all 0.5s;
}
.btn-1:hover:before {
  left: 48%;
}
.btn-1:hover > span {
  transform: translateX(300%);
}*/



/*===========モバイル900px以上============*/

@media (min-width: 900px) {
  .head_list {
    font-size: 1rem;
  }
}

/*==========pc版1025px以上============*/
@media(min-width:1025px){
	/*flex*/
	.wrap1{
		width: 90%;
		margin: auto;
	}
	.wrap2{
		width: 90%;
		margin: auto;
	}
	.go_text {
    	padding-right: 1rem;
	}
}
/* ==========================
IE10以降対策
============================= */
@media all and (-ms-high-contrast: none) {
  .copyright {
    left: 40%;
  }
	/* about */
  .in_abbox {
    display: block;
    top: 20%;
  }
	/*美知子セレクト*/
  .sample {
    max-width: 930px;
    margin: 0 auto;
  }
	/*月と女性の体の関係について*/
  .pr_text {
    margin-left: 3rem;
    margin-right: 3rem;
  }
	 /*ゴッドハンドについて*/
  .pr_textbox_ha1 {
    justify-content: space-between;
    padding: 0 5rem;
  }
  .pr_textbox_ha2 {
    justify-content: space-between;
    padding: 0 5rem;
  }
	/*アクセス*/
	.ac_l_block {
    	justify-content: flex-start;
  	}

}

/* ==========================
Edge対策
============================= */
@supports (-ms-ime-align: auto) {
	.copyright {
    	left: 40%;
  	}
	.footer_left,
 	.footer_right {
    	margin: 50px 0;
  	}
	
	/*ホームページ*/
	.in_abbox {
    	display: block;
    	top: 20%;
  	}
	/*手入れ方法*/
	.ca_wrap1 img,
	.ca_wrap2 img {
    	width: 30vw;
    	height: auto;
    	flex: none;
  	}
	.ca_cycle .ca_textbox {
   		width: 45vw;
    	flex: none;
  	}
	.center_text {
    	padding-top: 0;
  	}
	.ca_wrap1,
	.ca_wrap2 {
    	width: 85%;
    	justify-content: center;
	}
	/*アクセス*/
	.ac_l_block {
    	justify-content: flex-start;
	}
	/*お問い合わせ*/
	.co_buttom{
		margin: 1rem 0;
	}
}
