@charset "UTF-8";
/* -------------レスポンシブ--------------- */
/* 961以上→ only_p */
/* 960以下→ un_ts */
/* 960~416→ only_t */
/* 416以上→ ov_s */
/* 415以下→ only_s */
@media screen and (min-width: 961px) {
  .only_t {
    display: none !important;
  }
  .only_s {
    display: none !important;
  }
  .un_ts {
    display: none !important;
  }
}

@media screen and (max-width: 960px) {
  .only_p {
    display: none !important;
  }
  .only_t {
    display: block !important;
  }
  .only_s {
    display: none !important;
  }
  .un_ts {
    display: block !important;
  }
}

@media screen and (min-width: 769px) {
  .ov_tab {
    display: block !important;
  }
  .un_tab {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .ov_tab {
    display: none !important;
  }
  .un_tab {
    display: block !important;
  }
}

@media screen and (min-width: 600px) {
  .ov_s {
    display: block !important;
  }
}

@media screen and (max-width: 599px) {
  .only_p {
    display: none !important;
  }
  .only_t {
    display: none !important;
  }
  .only_s {
    display: block !important;
  }
  .ov_s {
    display: none !important;
  }
}

@font-face {
  font-family: 'yu-Go-M';
  src: url("../font/YuGothic-Medium.woff") format("woff");
}

@font-face {
  font-family: 'futu-M';
  src: url("../font/futura medium bt.woff") format("woff");
}

@font-face {
  font-family: 'futu-B';
  src: url("../font/Futura Book font.woff") format("woff");
}

.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1.5s, visibility 1.5s;
  transition: opacity 1.5s, visibility 1.5s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
}

body {
  font-family: YuGothic,'Yu Gothic','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',sans-serif;
  color: #333;
}

.minInner {
  max-width: 768px;
  margin: 0 auto;
  padding: 100px 40px;
}

@media screen and (max-width: 768px) {
  .minInner {
    padding: 40px 15px 40px;
  }
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 40px;
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 40px 15px 40px;
  }
}

.outInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .outInner {
    padding: 0 15px;
  }
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  top: 18px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  left: 6px;
  background: #555;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #555;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #555;
  -webkit-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  color: #555;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity .6s ease, visibility .6s ease;
  transition: opacity .6s ease, visibility .6s ease;
  margin-top: 100px;
  font-size: 16px;
  background-color: #fff;
  overflow: auto;
  height: 80%;
}

@media screen and (max-width: 768px) {
  nav.globalMenuSp {
    margin-top: 80px;
  }
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  width: 100%;
  -webkit-transition: .4s all;
  transition: .4s all;
  border-bottom: 1px solid #e8e8e8;
}

nav.globalMenuSp ul li:last-of-type {
  border: none;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #555;
  text-decoration: none;
  padding: 20px 0;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  z-index: 2;
}

.ac_ttl {
  position: relative;
  cursor: pointer;
  padding: 20px 0;
}

.ac_ttl:hover {
  opacity: 0.7;
}

.ac_contents {
  display: none;
  font-size: 1.6rem;
  padding: 10px 0;
  line-height: 1.75;
  letter-spacing: 0.7px;
}

.ac_contents li:last-of-type {
  border: none;
}

.list_bar {
  background: #000;
  width: 15px;
  height: 2px;
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.list_bar::before {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  content: "";
  background: #000;
  width: 15px;
  height: 1.5px;
  position: absolute;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.list_bar.ac-plus:before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.ham_copy {
  text-align: center;
  padding: 20px 0;
}

.hd_contents .hd_blc {
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 3;
  width: 100%;
}

.hd_contents .hd_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
}

@media screen and (max-width: 768px) {
  .hd_contents .hd_flex {
    height: 80px;
  }
}

.hd_contents .hd_logo_link {
  width: 20%;
}

@media screen and (max-width: 960px) {
  .hd_contents .hd_logo_link {
    width: 40%;
  }
}

.hd_g_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 100px;
          column-gap: 100px;
  font-size: 16px;
  font-family: futu-B;
}

@media screen and (max-width: 960px) {
  .hd_g_menu {
    -webkit-column-gap: 40px;
            column-gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .hd_g_menu {
    margin-right: 60px;
  }
}

.g_menu_account_icon {
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 768px) {
  .g_menu_account_icon {
    width: 25px;
    height: 25px;
  }
}

.h2_blc {
  text-align: center;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .h2_blc {
    margin-bottom: 40px;
  }
}

.h2_blc .top_h2 {
  font-family: futu-B;
  font-style: normal;
  font-weight: 300;
  font-size: 44px;
  margin-bottom: 30px;
  letter-spacing: 4px;
}

@media screen and (max-width: 768px) {
  .h2_blc .top_h2 {
    font-size: 30px;
    margin-bottom: 12px;
  }
}

.h2_blc .top_h2_sub {
  font-size: 16px;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  .h2_blc .top_h2_sub {
    font-size: 14px;
  }
}

.h2_blc_pt {
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  .h2_blc_pt {
    padding-top: 80px;
  }
}

.fv_wrapper {
  padding-bottom: 40px;
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .fv_wrapper {
    padding-bottom: initial;
    margin-top: 80px;
  }
}

.slick01 .slick01_img_01 {
  background: url(../images/top_fv_01.png) no-repeat center;
  height: 700px;
}

@media screen and (min-width: 1961px) {
  .slick01 .slick01_img_01 {
    background-size: cover;
    height: 0;
    padding-top: 34%;
  }
}

@media screen and (max-width: 1200px) {
  .slick01 .slick01_img_01 {
    height: 0;
    padding-top: 55%;
    background-size: 150%;
  }
}

@media screen and (max-width: 768px) {
  .slick01 .slick01_img_01 {
    background: url(../images/top_fv_01_sp.png) no-repeat center;
    height: 0;
    padding-top: 150%;
    background-size: 100%;
  }
}

.slick01 .slick01_img_01:hover {
  opacity: 1;
}

.slick01 .slick01_img_02 {
  background: url(../images/top_fv_02.png) no-repeat center;
  height: 700px;
}

@media screen and (min-width: 1961px) {
  .slick01 .slick01_img_02 {
    background-size: cover;
    height: 0;
    padding-top: 34%;
  }
}

@media screen and (max-width: 1200px) {
  .slick01 .slick01_img_02 {
    height: 0;
    padding-top: 55%;
    background-size: 150%;
  }
}

@media screen and (max-width: 768px) {
  .slick01 .slick01_img_02 {
    background: url(../images/top_fv_02_sp.png) no-repeat center;
    height: 0;
    padding-top: 150%;
    background-size: 100%;
  }
}

.slick01 .slick01_img_02:hover {
  opacity: 1;
}

.slick01 .slick01_img_03 {
  background: url(../images/top_fv_03.png) no-repeat center;
  height: 700px;
}

@media screen and (min-width: 1961px) {
  .slick01 .slick01_img_03 {
    background-size: cover;
    height: 0;
    padding-top: 34%;
  }
}

@media screen and (max-width: 1200px) {
  .slick01 .slick01_img_03 {
    height: 0;
    padding-top: 55%;
    background-size: 150%;
  }
}

@media screen and (max-width: 768px) {
  .slick01 .slick01_img_03 {
    background: url(../images/top_fv_03_sp.png) no-repeat center;
    height: 0;
    padding-top: 150%;
    background-size: 100%;
  }
}

.slick01 .slick01_img_03:hover {
  opacity: 1;
}

.concept .text_blc {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体', sans-serif;
  text-align: center;
  line-height: 1.75;
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .concept .text_blc {
    margin-bottom: 70px;
  }
}

.concept .text_blc h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  .concept .text_blc h3 {
    font-size: 21px;
    margin-bottom: 34px;
  }
}

.concept .text_blc p {
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .concept .text_blc p {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

.concept .text_blc p:last-of-type {
  margin-bottom: initial;
}

.concept .img_blc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
          column-gap: 5px;
}

.products .products_blc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 40px;
          column-gap: 40px;
  row-gap: 80px;
}

@media screen and (max-width: 960px) {
  .products .products_blc {
    -webkit-column-gap: 20px;
            column-gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .products .products_blc {
    display: block;
  }
}

.products .products_blc li {
  width: 30%;
  font-weight: 600;
  letter-spacing: 1px;
}

@media screen and (max-width: 960px) {
  .products .products_blc li {
    width: 48%;
  }
  .products .products_blc li img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .products .products_blc li {
    width: 100%;
    margin-bottom: 40px;
  }
}

.products .products_blc li .product_name {
  font-size: 20px;
  border-bottom: 1px solid #b0b0b0;
  padding: 25px 0 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .products .products_blc li .product_name {
    font-size: 18px;
  }
}

.products .products_blc li .person_title {
  font-family: yu-Go-M;
  font-weight: 400;
  font-size: 14px;
  color: #9a9a9a;
  margin-bottom: 10px;
  height: 35px;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .products .products_blc li .person_title {
    font-size: 14px;
    height: auto;
  }
}

.products .products_blc li .person {
  font-family: yu-Go-M;
  font-weight: 400;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .products .products_blc li .person {
    font-size: 14px;
  }
}

.inf_slider {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .inf_slider {
    margin-bottom: 80px;
  }
}

.inf_slider .slick02 img {
  width: 98%;
}

.naturich {
  background-color: #f7f7f7;
}

.naturich .h2_blc {
  text-align: center;
  margin-bottom: 70px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .naturich .h2_blc {
    margin-bottom: 25px;
  }
}

.naturich .h2_blc .top_h2_sub {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .naturich .h2_blc .top_h2_sub {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

.naturich .h2_blc .top_h2 {
  font-size: 30px;
  letter-spacing: 4px;
  font-family: YuGothic,'Yu Gothic',sans-serif;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .naturich .h2_blc .top_h2 {
    font-size: 18px;
  }
}

.naturich .naturich_text {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .naturich .naturich_text {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.naturich .naturich_img img {
  margin: 0 auto;
}

.news .text_blc {
  width: 100%;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  background-color: #f7f7f7;
  padding: 55px 65px;
  overflow-y: scroll;
}

@media screen and (max-width: 768px) {
  .news .text_blc {
    padding: 30px 15px;
  }
}

.news .text_blc dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .news .text_blc dl {
    display: block;
  }
}

.news .text_blc dl dt {
  /* font-family: 'Futura',sans-serif; */
  font-size: 20px;
  color: #9a9a9a;
  width: 25%;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .news .text_blc dl dt {
    width: 100%;
    margin-bottom: 15px;
    font-size: 14px;
  }
}

.news .text_blc dl dd {
  font-size: 18px;
  width: 75%;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .news .text_blc dl dd {
    width: 100%;
    font-size: 16px;
  }
}

.ft_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 100px 40px 140px;
}

@media screen and (max-width: 960px) {
  .ft_contents {
    display: block;
    padding: 40px 15px;
  }
}

@media screen and (max-width: 960px) {
  .ft_contents .ft_contents_l img {
    margin: 0 auto 60px;
  }
}

.ft_contents .ft_contents_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 160px;
          column-gap: 160px;
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .ft_contents .ft_contents_r {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .ft_contents .ft_contents_r {
    display: block;
  }
}

.ft_contents .ft_contents_r .blc_ttl {
  font-family: futu-M;
  font-style: normal;
  font-size: 16px;
}

.ft_contents .ft_contents_r .products_blc {
  margin-bottom: 30px;
}

.ft_contents .ft_contents_r .products_blc_list,
.ft_contents .ft_contents_r .category_blc_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.ft_contents .ft_contents_r .products_blc_ttl {
  margin-bottom: 30px;
}

.copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  padding: 30px 40px;
}

@media screen and (max-width: 768px) {
  .copy {
    display: block;
    font-size: 12px;
    padding: 15px;
  }
}

.copy .copy_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 70px;
          column-gap: 70px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media screen and (max-width: 768px) {
  .copy .copy_r {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 5px;
            column-gap: 5px;
    margin-bottom: 40px;
  }
}

.copy .copy_l {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (max-width: 768px) {
  .copy .copy_l {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
  }
}

.privacy_contents .privacy_contents_note {
  font-size: 16px;
  margin-bottom: 20px;
}

.privacy_contents .privacy_text_blc {
  margin-bottom: 30px;
}

.privacy_contents .privacy_text_blc h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

.privacy_contents .privacy_text_blc ul {
  list-style: decimal;
}

.privacy_contents .privacy_text_blc P, .privacy_contents .privacy_text_blc li {
  font-size: 14px;
  line-height: 1.75;
}

.privacy_contents .privacy_text_blc li {
  margin-left: 16px;
}

@media screen and (max-width: 768px) {
  .privacy_contents .privacy_text_blc li {
    margin-left: 22px;
  }
}

.privacy_contents .contact_area {
  font-size: 14px;
}

.privacy_contents .contact_area p {
  margin-bottom: 10px;
}

.privacy_contents .contact_area p:last-of-type {
  margin-bottom: initial;
}

.tokusho .top_h2 {
  font-size: 38px;
}

@media screen and (max-width: 768px) {
  .tokusho .top_h2 {
    font-size: 24px;
  }
}

.basic_tbl .basic_tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-bottom: 1px solid #e8e8e8;
}

@media screen and (max-width: 768px) {
  .basic_tbl .basic_tr {
    display: block;
  }
}

.basic_tbl .basic_tr .basic_th, .basic_tbl .basic_tr .basic_td {
  font-size: 14px;
  padding: 20px 10px;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .basic_tbl .basic_tr .basic_th, .basic_tbl .basic_tr .basic_td {
    padding: 10px 10px;
  }
}

.basic_tbl .basic_tr .basic_th {
  width: 32%;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .basic_tbl .basic_tr .basic_th {
    width: 100%;
  }
}

.basic_tbl .basic_tr .basic_td {
  width: 68%;
}

@media screen and (max-width: 768px) {
  .basic_tbl .basic_tr .basic_td {
    width: 100%;
  }
}

.basic_tbl .basic_tr .basic_td p {
  margin-bottom: 20px;
}

.basic_tbl .basic_tr .basic_td p:last-of-type {
  margin-bottom: initial;
}

.basic_tbl .basic_tr .basic_td p a {
  display: inline-block;
  color: #00a5d4;
}

.basic_tbl .pay_blc {
  margin-bottom: 30px;
}

.basic_tbl .pay_blc:last-of-type {
  margin-bottom: initial;
}

.basic_tbl .pay_blc h4 {
  margin-bottom: 20px;
  font-weight: bold;
}

.basic_tbl .pay_blc .pay_mb_20 {
  margin-bottom: 20px;
}

.basic_tbl .pay_blc .pay_text_box p {
  margin-bottom: 20px;
  line-height: 1.75;
}

.basic_tbl .pay_blc .pay_text_box p:last-of-type {
  margin-bottom: initial;
}

.basic_tbl .pay_blc .pay_text_box p a {
  display: inline-block;
  color: #00a5d4;
}

.basic_tbl .tokusho_list li {
  margin-left: 16px;
}

.basic_tbl .tokusho_list li:before {
  position: relative;
  top: -2px;
  left: -9px;
  display: inline-block;
  width: 4px;
  height: 4px;
  content: '';
  border-radius: 100%;
  background: #737373;
}

.iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 20px;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=style.css.map */