@charset "UTF-8";
/*
 * header
 * -------------------------------------------------------------------
 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
}
.header .header-content {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0px auto;
}
.header .header-content .header-logo {
  height: 80px;
  display: flex;
  align-items: center;
}
.header .header-content .header-logo img {
  display: block;
  margin: 0px 15px;
  height: 30px;
}
.header .header-content .header-menu {
  flex-grow: 1;
  display: none;
  height: 80px;
}
@media (min-width: 992px) {
  .header .header-content .header-menu {
    display: flex;
    justify-content: flex-end;
    /*padding-right:20px;*/
  }
}
.header .header-content .header-menu .header-menu-item {
  /*padding:15px;*/
  display: flex;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
}
.header .header-content .header-menu .header-menu-item .link-main {
  cursor: pointer;
  padding: 2px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
}
@media (min-width: 992px) {
  .header .header-content .header-menu .header-menu-item .link-main {
    font-size: 12px;
    font-weight: normal;
  }
}
@media (min-width: 1100px) {
  .header .header-content .header-menu .header-menu-item .link-main {
    font-size: 14px;
    font-weight: bold;
  }
}
@media (min-width: 1200px) {
  .header .header-content .header-menu .header-menu-item .link-main br {
    display: none;
  }
}
.header .header-content .header-menu .header-menu-item .link-main:hover {
  background: #cbcae1;
}
.header .header-content .header-menu .header-menu-item .link-main:hover .sub-content {
  height: auto;
  opacity: 1;
}
.header .header-content .header-menu .header-menu-item:nth-child(6) {
  display: none;
}
@media (min-width: 992px) {
  .header .header-content .header-menu .header-menu-item:nth-child(6) {
    display: flex;
  }
}
.header .header-content .header-menu .header-menu-item:hover {
  background: #cbcae1;
}
.header .header-content .header-menu .header-menu-item:hover .sub-content {
  height: auto;
  opacity: 1;
}
.header .header-content .header-menu .header-menu-item .sub-content {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  top: 80px;
  left: 0;
  right: 0;
  padding: 0px;
  height: 0px;
  opacity: 0;
  overflow: hidden;
  background-color: #aba9cf;
  transition: all 0.2s;
}
.header .header-content .header-menu .header-menu-item .sub-content li {
  display: block;
}
.header .header-content .header-menu .header-menu-item .sub-content li .link-sub {
  display: block;
  padding: 20px 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  opacity: 1;
  transition: all 0.2s;
}
.header .header-content .header-menu .header-menu-item .sub-content li .link-sub:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header .header-content .header-menu .header-menu-contact {
  margin: 10px 0px;
  margin-left: 10px;
  padding: 10px;
  background: #aba9cf;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
 * main-visual
 * -------------------------------------------------------------------
 */
.main-visual {
  display: block;
  margin: 0px;
  padding: 0px;
  padding-top: 80px;
  background-image: url("../img/top/main-visual-background.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
}
.main-visual .main-visual-container {
  max-width: 1400px;
  margin: 0px auto;
  position: relative;
}
.main-visual .main-visual-container .swiper-container {
  width: 100%;
  height: 100%;
  margin: 0px 0px 0px 0px;
}
.main-visual .main-visual-container .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #ffffff;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-visual .main-visual-container .swiper-slide .image {
  margin: 0px 0px 0px auto;
  width: 100%;
  max-width: 666px;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 992px) {
  .main-visual .main-visual-container .swiper-slide .image {
    margin: 0px 0px 15px auto;
    max-width: 1000px;
    height: 600px;
  }
}
.main-visual .main-visual-container .swiper-slide .image.image-1 {
  background-image: url("../img/toppage/mainvisual-1.jpg");
  background-position: 80% center;
}
@media (min-width: 992px) {
  .main-visual .main-visual-container .swiper-slide .image.image-1 {
    background-position: center center;
  }
}
.main-visual .main-visual-container .swiper-slide .image.image-2 {
  background-image: url("../img/toppage/mainvisual-2.jpg");
  background-position: 80% center;
}
@media (min-width: 992px) {
  .main-visual .main-visual-container .swiper-slide .image.image-2 {
    background-position: center center;
  }
}
.main-visual .main-visual-container .swiper-slide .image.image-3 {
  background-image: url("../img/toppage/mainvisual-3.jpg");
  background-position: 80% center;
}
@media (min-width: 992px) {
  .main-visual .main-visual-container .swiper-slide .image.image-3 {
    background-position: center center;
  }
}
.main-visual .main-visual-container .swiper-slide .message {
  display: block;
  width: 250px;
  position: absolute;
  top: 60%;
  left: 0;
  z-index: 3;
}
@media (min-width: 992px) {
  .main-visual .main-visual-container .swiper-slide .message {
    width: 530px;
    top: 40%;
  }
}
.main-visual .main-visual-container .swiper-slide .message .message-content {
  z-index: 3;
  margin: 0px 0px 10px 0px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background-color: #59493f;
}
@media (min-width: 992px) {
  .main-visual .main-visual-container .swiper-slide .message .message-content {
    padding: 8px 40px;
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .main-visual .main-visual-container .swiper-slide {
    height: 600px;
  }
}
.main-visual .main-visual-container .main-visual-paginator {
  height: 10px;
  margin: 0px 0px 20px 0px;
  position: relative;
  display: none;
}
.main-visual .main-visual-container .main-visual-paginator .swiper-pagination {
  position: absolute;
  top: 0;
  right: 0;
}
.main-visual .main-visual-container .main-visual-paginator .swiper-pagination .swiper-pagination-bullet {
  margin-left: 5px;
  width: 60px;
  height: 10px;
  display: inline-block;
  border-radius: 0px;
  background: #c8cce3;
  opacity: 1;
}
.main-visual .main-visual-container .main-visual-paginator .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: #88abda;
}
@media (min-width: 992px) {
  .main-visual .main-visual-container .main-visual-paginator {
    display: block;
  }
}
.main-visual .main-visual-container .main-visual-contact {
  display: block;
  background: #88abda;
  padding: 20px 15px;
  text-align: center;
  color: #ffffff;
}
.main-visual .main-visual-container .main-visual-contact:hover {
  background: #759dd4;
}
@media (min-width: 992px) {
  .main-visual .main-visual-container .main-visual-contact {
    display: none;
  }
}

/*
 * subpage-header
 * -------------------------------------------------------------------
 */
.subpage-header {
  position: relative;
  display: block;
  margin: 0px 0px 0px 0px;
  padding: 60px 0px;
  padding-top: 160px;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 992px) {
  .subpage-header {
    height: 400px;
    padding: 120px 0px;
    padding-top: 220px;
  }
}
.subpage-header .container {
  position: relative;
  z-index: 1;
}
.subpage-header .container .title-main {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  text-align: left;
  text-shadow: 0px 0px 5px #ffffff;
  font-size: 22px;
  font-weight: bold;
  color: #503529;
}
@media (min-width: 992px) {
  .subpage-header .container .title-main {
    font-size: 32px;
  }
}
.subpage-header:after {
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/*
 * subpage-bread
 * -------------------------------------------------------------------
 */
.subpage-bread {
  padding: 15px 0px;
  color: #503529;
  font-size: 16px;
  font-weight: normal;
  background-color: #dcd5d1;
}
.subpage-bread a {
  color: #503529;
}
.subpage-bread a:hover {
  color: #3f2a20;
}

/*
 * subpage-heading
 * -------------------------------------------------------------------
 */
.subpage-heading {
  display: block;
  background-color: #fafafa;
  margin: 0px 0px 20px 0px;
  padding: 12.5px 15px 12.5px 15px;
  line-height: 1em;
  font-size: 20px;
  font-weight: bold;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .subpage-heading {
    margin: 0px 0px 30px 0px;
  }
}

/*
 * TOPPAGE
 * -------------------------------------------------------------------
 */
.toppage-message {
  margin: 0px 0px;
  background: rgba(171, 169, 207, 0.85);
  position: relative;
  width: 100%;
  height: 550px;
}
.toppage-message .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 100px 0px;
  z-index: 1;
}
.toppage-message .content .content-header {
  margin: 0px 0px 60px 0px;
}
.toppage-message .content .content-header img {
  display: block;
  margin: 0px auto;
  max-width: 90%;
}
.toppage-message .content .content-message {
  color: #503529;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.toppage-message .bottle {
  position: absolute;
  top: -200px;
  left: -20px;
  padding: 100px 0px;
  z-index: 2;
}
.toppage-message .bottle img {
  display: block;
  width: 150px;
}
@media (min-width: 992px) {
  .toppage-message .bottle img {
    /*width:100%;*/
    width: 400px;
  }
}
@media (min-width: 992px) {
  .toppage-message .bottle {
    top: -350px;
    left: 0%;
  }
}
.toppage-message:before, .toppage-message:after {
  opacity: 0;
  transition: all 0.2s;
}
.toppage-message.active:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background-image: url("../img/toppage/toppage-information-left.png");
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  opacity: 1;
}
.toppage-message.active:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background-image: url("../img/toppage/toppage-information-right.png");
  background-size: 200px auto;
  background-position: right;
  background-repeat: no-repeat;
  opacity: 1;
}

.toppage-advantage {
  padding: 100px 0px;
  position: relative;
  background-image: url("../img/toppage/toppage-advantage-bg.jpg");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}
.toppage-advantage .container {
  position: relative;
  z-index: 1;
}
.toppage-advantage .container .top-advantage-header {
  margin: 0px 0px 60px 0px;
}
.toppage-advantage .container .top-advantage-header img {
  display: block;
  margin: 0px auto;
  max-width: 100%;
}
.toppage-advantage .container .top-advantage-item {
  display: block;
  transform: scale(1);
  transition: all 0.2s;
}
.toppage-advantage .container .top-advantage-item img {
  display: block;
  margin: 0px auto;
  max-width: 100%;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .toppage-advantage .container .top-advantage-item img {
    max-width: 200px;
  }
}
.toppage-advantage .container .top-advantage-item .text {
  padding: 5px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}
.toppage-advantage .container .top-advantage-item .text br {
  display: none;
}
@media (min-width: 992px) {
  .toppage-advantage .container .top-advantage-item .text {
    padding: 10px;
    font-size: 16px;
  }
  .toppage-advantage .container .top-advantage-item .text br {
    display: inline;
  }
}
.toppage-advantage .container .top-advantage-item:hover {
  transform: scale(1.05);
}
.toppage-advantage .container .top-advantage-button {
  padding: 20px 0px;
  text-align: center;
}
.toppage-advantage .container .top-advantage-button .button {
  display: inline-block;
  padding: 15px 30px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50px;
  background-color: transparent;
}
.toppage-advantage .container .top-advantage-button .button img {
  display: inline-block;
  margin: 0px 0px 0px 20px;
  transition: all 0.2s;
}
.toppage-advantage .container .top-advantage-button .button:hover {
  background-color: #99a9d1;
}
.toppage-advantage .container .top-advantage-button .button:hover img {
  transform: translateX(10px);
}
.toppage-advantage:after {
  content: "";
  background-color: rgba(117, 112, 129, 0.78);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.toppage-service {
  padding: 100px 0px;
  position: relative;
  background: linear-gradient(to bottom, transparent 60%, #aba9cf 60%);
}
.toppage-service .toppage-service-header {
  margin: 0px 0px 60px 0px;
}
.toppage-service .toppage-service-header img {
  display: block;
  margin: 0px auto;
  max-width: 100%;
}
.toppage-service .toppage-service-message {
  margin: 0px 0px 60px 0px;
  text-align: center;
  font-size: 18px;
  color: #3b2a21;
}
.toppage-service .toppage-service-item {
  display: block;
}
.toppage-service .toppage-service-item .image {
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}
.toppage-service .toppage-service-item .image img {
  display: block;
  margin: 0px auto;
}
.toppage-service .toppage-service-item .text {
  padding: 10px;
  color: #ffffff;
  text-align: left;
  background-color: #59493f;
  line-height: 1;
  font-size: 12px;
}
@media (min-width: 992px) {
  .toppage-service .toppage-service-item .text {
    font-size: 14px;
    text-align: center;
  }
}
.toppage-service .toppage-service-item .text img {
  display: block;
  margin-left: auto;
  height: 8px;
  vertical-align: middle;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .toppage-service .toppage-service-item .text img {
    display: inline-block;
    margin-left: 5px;
  }
}
@media (min-width: 992px) {
  .toppage-service .toppage-service-item {
    max-width: 300px;
    margin: 0px auto;
  }
}
.toppage-service .toppage-service-item:hover {
  background-color: #99a9d1;
}
.toppage-service .toppage-service-item:hover .text img {
  transform: translateX(5px);
}

.toppage-blog {
  padding: 100px 0px 30px;
  position: relative;
  background-image: url("../img/toppage/toppage-blog-bg.jpg");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  overflow: hidden;
}
.toppage-blog h2 {
  font-size: 34px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  width: 320px;
  margin: 0 auto 70px;
}
.toppage-blog h2 span {
  font-size: 25px;
  padding-top: 15px;
  display: block;
  font-weight: 700;
}
.toppage-blog .container {
  position: relative;
  z-index: 1;
}
.toppage-blog .container .top-blog-header img {
  display: block;
  margin: 0px auto;
  max-width: 100%;
}
.toppage-blog .container .top-blog-slider {
  margin: 0px 0px 20px 0px;
  position: relative;
}
.toppage-blog .container .top-blog-slider .swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.toppage-blog .container .top-blog-slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
.toppage-blog .container .top-blog-slider .swiper-button-next {
  background-color: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 30px;
  right: 0px;
}
@media (min-width: 992px) {
  .toppage-blog .container .top-blog-slider .swiper-button-next {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    right: -150px;
  }
}
.toppage-blog .container .top-blog-slider .swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 30px;
  left: 0px;
}
@media (min-width: 992px) {
  .toppage-blog .container .top-blog-slider .swiper-button-prev {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    left: -150px;
  }
}
.toppage-blog .container .top-blog-button {
  padding: 20px 0px;
  text-align: center;
}
.toppage-blog .container .top-blog-button .button {
  display: inline-block;
  padding: 15px 30px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50px;
  background-color: transparent;
}
.toppage-blog .container .top-blog-button .button img {
  display: inline-block;
  margin: 0px 0px 0px 20px;
  transition: all 0.2s;
}
.toppage-blog .container .top-blog-button .button:hover {
  background-color: #9b99c6;
}
.toppage-blog .container .top-blog-button .button:hover img {
  transform: translateX(10px);
}
.toppage-blog:after {
  content: "";
  background-color: rgba(117, 112, 129, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.toppage-information {
  padding: 30px 0px;
  position: relative;
  background-color: #aba9cf;
}
@media (min-width: 992px) {
  .toppage-information {
    padding: 60px 0px;
  }
}
.toppage-information h2 {
  font-size: 36px;
  color: #59493f;
  text-align: center;
  padding-bottom: 10px;
  width: 90px;
  margin: 0 auto;
}
.toppage-information .bottle {
  position: absolute;
  top: -36%;
  left: -20px;
  z-index: 2;
}
@media (min-width: 992px) {
  .toppage-information .bottle {
    top: -250px;
    left: 0;
  }
}
.toppage-information .bottle img {
  display: block;
  width: 170px;
}
@media (min-width: 992px) {
  .toppage-information .bottle img {
    /*width:100%;*/
    width: 400px;
  }
}
.toppage-information .layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, #aba9cf 50%, #transparent 50%);
}
.toppage-information .layer-left {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background-image: url("../img/toppage/toppage-information-left.png");
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}
.toppage-information .layer-right {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background-image: url("../img/toppage/toppage-information-right.png");
  background-size: 200px auto;
  background-position: right center;
  background-repeat: no-repeat;
}
.toppage-information .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .toppage-information .container {
    align-items: center;
    gap: 55px;
    flex-direction: row;
  }
}
@media (min-width: 1100px) {
  .toppage-information .container {
    gap: 110px;
  }
}
.toppage-information .container .top-information-title-box {
  min-width: 225px;
}
.toppage-information .container .top-information-list {
  position: relative;
  width: 100%;
  max-height: 230px;
  margin: 0 auto;
  overflow: auto;
  margin-bottom: 35px;
}
@media (min-width: 992px) {
  .toppage-information .container .top-information-list {
    max-width: 660px;
    max-height: 175px;
    margin-bottom: 0;
  }
}
.toppage-information .container .top-information-list .top-information-list-heading {
  margin: 0px 0px 30px 0px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.toppage-information .container .top-information-list .top-information-list-heading img {
  display: block;
  max-width: 100%;
  max-width: 100%;
}
.toppage-information .container .top-information-list .top-information-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0px 0px 2px 0px;
  margin-right: 15px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #e3e2ef;
}
.toppage-information .container .top-information-list .top-information-list-item:not(:last-of-type) {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .toppage-information .container .top-information-list .top-information-list-item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .toppage-information .container .top-information-list .top-information-list-item {
    flex-direction: row;
  }
}
.toppage-information .container .top-information-list .top-information-list-item .item-date {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #59493f;
  width: 100%;
  font-size: 16px;
}
@media (min-width: 992px) {
  .toppage-information .container .top-information-list .top-information-list-item .item-date {
    font-size: 18px;
    padding: 10px 0;
    width: 180px;
  }
}
.toppage-information .container .top-information-list .top-information-list-item .item-title {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  padding: 0 0 10px;
}
@media (min-width: 992px) {
  .toppage-information .container .top-information-list .top-information-list-item .item-title {
    font-size: 18px;
    padding: 10px 0;
  }
}
.toppage-information .container .top-information-list .top-information-list-item .item-title .category {
  display: inline-block;
  margin: 0px 5px 0px 0px;
  padding: 2px 12px;
  font-size: 12px;
  color: #503529;
  background-color: #ffffff;
  border-radius: 30px;
}
.toppage-information .container .top-information-list .top-information-list-item img {
  width: 18px;
  transition: all 0.2s;
  display: none;
}
@media (min-width: 992px) {
  .toppage-information .container .top-information-list .top-information-list-item img {
    display: block;
  }
}
.toppage-information .container .top-information-list .top-information-list-item:hover img {
  transform: translateX(10px);
}
.toppage-information .container .top-information-button {
  text-align: center;
}
.toppage-information .container .top-information-button .button {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  color: #59493f;
  border: 1px solid #59493f;
  border-radius: 50px;
  background-color: transparent;
}
.toppage-information .container .top-information-button .button img {
  display: inline-block;
  margin: 0px 0px 0px 20px;
  transition: all 0.2s;
}
.toppage-information .container .top-information-button .button:hover img {
  transform: translateX(10px);
}
.toppage-information .container .top-information-button.pc {
  display: none;
}
@media (min-width: 992px) {
  .toppage-information .container .top-information-button.pc {
    display: block;
  }
}
.toppage-information .container .top-information-button.sp {
  display: block;
}
@media (min-width: 992px) {
  .toppage-information .container .top-information-button.sp {
    display: none;
  }
}

.toppage-fragrance {
  padding: 50px 0;
}
.toppage-fragrance h2 {
  color: #59493f;
  line-height: 2;
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  padding-bottom: 2rem;
}
@media (min-width: 992px) {
  .toppage-fragrance h2 {
    font-size: 25px;
    padding-bottom: unset;
  }
}
.toppage-fragrance-bg {
  max-width: 1100px;
  margin: 0 auto;
}
.toppage-fragrance-bg-inner {
  margin: 0 auto;
  position: relative;
  padding-top: 50px;
  max-width: 255px;
}
@media (min-width: 360px) {
  .toppage-fragrance-bg-inner {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .toppage-fragrance-bg-inner {
    padding-top: 115px;
    max-width: 650px;
  }
}
.toppage-fragrance-bg-inner img {
  width: 100%;
}
.toppage-fragrance-bg-inner-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  width: clamp(100px, 35vw, 150px);
  height: clamp(100px, 35vw, 150px);
}
@media (min-width: 992px) {
  .toppage-fragrance-bg-inner-item {
    width: 290px;
    height: 290px;
  }
}
.toppage-fragrance-bg-inner-item:hover {
  background: linear-gradient(145.18deg, rgba(232, 185, 191, 0.5) 14.51%, rgba(171, 203, 238, 0.5) 86.07%);
}
.toppage-fragrance-bg-inner-item-step {
  margin: 0 auto;
  width: clamp(25px, 12vw, 50px);
}
@media (min-width: 992px) {
  .toppage-fragrance-bg-inner-item-step {
    width: 100px;
  }
}
.toppage-fragrance-bg-inner-item span {
  color: #bc3b77;
  line-height: 1.5;
  font-weight: 700;
  display: block;
  font-size: clamp(10px, 4vw, 14px);
}
@media (min-width: 992px) {
  .toppage-fragrance-bg-inner-item span {
    padding: 5px 0;
    font-size: 18px;
  }
}
.toppage-fragrance-bg-inner-item p {
  color: #59493f;
  line-height: 1.5;
  font-weight: 700;
  font-size: clamp(8px, 3vw, 12px);
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .toppage-fragrance-bg-inner-item p {
    font-size: 16px;
  }
}
.toppage-fragrance-bg-inner-item-icon {
  margin: 0 auto;
  width: clamp(30px, 12vw, 50px);
}
@media (min-width: 992px) {
  .toppage-fragrance-bg-inner-item-icon {
    width: 80px;
  }
}
.toppage-fragrance-bg-inner-item.suggestion {
  top: 2%;
  left: -13%;
}
@media (min-width: 400px) {
  .toppage-fragrance-bg-inner-item.suggestion {
    top: 0%;
    left: -18%;
  }
}
@media (min-width: 992px) {
  .toppage-fragrance-bg-inner-item.suggestion {
    top: 4%;
    left: -15%;
  }
}
.toppage-fragrance-bg-inner-item.training {
  top: 1%;
  right: -12%;
}
@media (min-width: 400px) {
  .toppage-fragrance-bg-inner-item.training {
    top: -1%;
    right: -19%;
  }
}
@media (min-width: 992px) {
  .toppage-fragrance-bg-inner-item.training {
    top: 3%;
    right: -16%;
  }
}
.toppage-fragrance-bg-inner-item.training .toppage-fragrance-bg-inner-item-icon {
  width: clamp(55px, 17vw, 75px);
}
@media (min-width: 992px) {
  .toppage-fragrance-bg-inner-item.training .toppage-fragrance-bg-inner-item-icon {
    width: 120px;
  }
}
.toppage-fragrance-bg-inner-item.manufacture {
  bottom: -14%;
  right: -12%;
}
@media (min-width: 400px) {
  .toppage-fragrance-bg-inner-item.manufacture {
    bottom: -17%;
    right: -16%;
  }
}
@media (min-width: 992px) {
  .toppage-fragrance-bg-inner-item.manufacture {
    bottom: -13%;
    right: -15%;
  }
}
.toppage-fragrance-bg-inner-item.delivery {
  bottom: -14%;
  left: -13%;
}
@media (min-width: 400px) {
  .toppage-fragrance-bg-inner-item.delivery {
    bottom: -17%;
    left: -18%;
  }
}
@media (min-width: 992px) {
  .toppage-fragrance-bg-inner-item.delivery {
    bottom: -13%;
    left: -15%;
  }
}
.toppage-fragrance-bg-inner-item.delivery .toppage-fragrance-bg-inner-item-icon {
  width: clamp(60px, 18vw, 80px);
}
@media (min-width: 992px) {
  .toppage-fragrance-bg-inner-item.delivery .toppage-fragrance-bg-inner-item-icon {
    width: 100px;
  }
}
.toppage-fragrance-link {
  min-width: 300px;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 230px;
  padding-top: 70px;
}
@media (min-width: 400px) {
  .toppage-fragrance-link {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .toppage-fragrance-link {
    min-width: 300px;
  }
}
.toppage-fragrance-link .button {
  color: #ffffff;
  border-radius: 50px;
  background-color: #aba9cf;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 14px;
  width: 100%;
  padding: 15px;
}
@media (min-width: 992px) {
  .toppage-fragrance-link .button {
    gap: 25px;
    max-width: 100%;
    padding: 15px 30px;
    font-size: 20px;
    margin: initial;
  }
}
.toppage-fragrance-link .button img {
  transition: all 0.2s;
  display: inline-block;
  margin-right: -30px;
  margin-bottom: 10px;
}
.toppage-fragrance-link .button:hover {
  background-color: #9b99c6;
}
.toppage-fragrance-link .button:hover img {
  transform: translateX(10px);
}

.toppage-problem {
  background-color: #f8f8fb;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0;
}
@media (min-width: 450px) {
  .toppage-problem {
    background-size: contain;
    padding: 130px 0;
  }
}
.toppage-problem_inner {
  padding: 0 25px;
}
@media (min-width: 992px) {
  .toppage-problem_inner {
    padding: 0;
  }
}
.toppage-problem h2 {
  color: #59493f;
  font-size: 17px;
  padding-bottom: 35px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 992px) {
  .toppage-problem h2 {
    padding-bottom: 50px;
    font-size: 25px;
  }
}
.toppage-problem_list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 0 auto;
  padding: 0;
  max-width: 400px;
  place-items: center;
}
@media (min-width: 992px) {
  .toppage-problem_list {
    padding: 0 20px;
    max-width: 1140px;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
}
.toppage-problem_list li {
  background-size: cover;
  height: 190px;
  width: 100%;
}
.toppage-problem_list li:hover {
  opacity: 0.5;
}
@media (min-width: 992px) {
  .toppage-problem_list li {
    height: 238px;
  }
}
.toppage-problem_list li:first-of-type {
  background-image: url("../img/toppage/toppage-problem-grass.jpg");
}
.toppage-problem_list li:nth-of-type(2) {
  background-image: url("../img/toppage/toppage-problem-bottle.jpg");
}
.toppage-problem_list li:nth-of-type(3) {
  background-image: url("../img/toppage/toppage-problem-man.jpg");
}
.toppage-problem_list li:last-of-type {
  background-image: url("../img/toppage/toppage-problem-company.jpg");
}
.toppage-problem_list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 10px;
  text-align: center;
}
@media (min-width: 992px) {
  .toppage-problem_list li a {
    font-size: 20px;
    padding: 0;
  }
}
.toppage-problem_list li a br {
  display: block;
}

/*
 * BLOG
 * -------------------------------------------------------------------
 */
.blog {
  padding: 100px 0px;
}
.blog .blog-heading {
  margin: 0px 0px 50px 0px;
  font-size: 26px;
  font-weight: bold;
  color: #3e2121;
  text-align: center;
}

.information {
  padding: 100px 0px;
}
.information .information-list {
  padding: 30px 15px;
  background-color: #f4ede1;
}
@media (min-width: 992px) {
  .information .information-list {
    padding: 50px;
  }
}
.information .information-list .information-list-heading {
  margin: 0px 0px 30px 0px;
  font-size: 24px;
  font-weight: bold;
  color: #3e2121;
  text-align: center;
}
.information .information-list .information-list-item {
  display: flex;
  flex-wrap: wrap;
  margin: 0px 0px 2px 0px;
}
.information .information-list .information-list-item .item-date {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background-color: #88abda;
  width: 100%;
}
@media (min-width: 992px) {
  .information .information-list .information-list-item .item-date {
    width: 180px;
  }
}
.information .information-list .information-list-item .item-title {
  padding: 10px;
  background-color: #bdc8d8;
  color: #503529;
  line-height: 2;
  width: 100%;
}
.information .information-list .information-list-item .item-title .category {
  display: inline-block;
  margin: 0px 5px 0px 0px;
  padding: 2px 12px;
  font-size: 12px;
  color: #503529;
  background-color: #ffffff;
  border-radius: 30px;
}
@media (min-width: 992px) {
  .information .information-list .information-list-item .item-title {
    width: calc(100% - 180px);
  }
}
.information .information-list .information-list-item:hover {
  opacity: 0.9;
}

.blog-detail {
  padding: 20px 0px;
  background-color: #dcd5d1;
}
.blog-detail .blog-detail-content {
  margin: 0px 0px 50px 0px;
  padding: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .blog-detail .blog-detail-content {
    padding: 50px;
  }
}
.blog-detail .blog-detail-content img {
  max-width: 100%;
  height: auto;
}
.blog-detail .blog-detail-content .heading {
  margin: 0px 0px 50px 0px;
  padding: 20px;
  border-top: 1px dashed #3e2121;
  border-bottom: 1px dashed #3e2121;
}
.blog-detail .blog-detail-content .heading .heading-date {
  display: inline-block;
  margin: 0px 5px 0px 0px;
  padding: 5px 10px;
  font-size: 14px;
  color: #ffffff;
  background-color: #88abda;
}
.blog-detail .blog-detail-content .heading .heading-category {
  display: inline-block;
  color: #3e2121;
}
.blog-detail .blog-detail-content .heading .heading-title {
  margin: 0px;
  padding: 10px;
  font-size: 26px;
  font-weight: bold;
  color: #3e2121;
}
.blog-detail .blog-detail-content .content {
  margin: 0px 0px 30px 0px;
  padding: 0px 0px;
  font-size: 16px;
  font-weight: normal;
  color: #391616;
}
.blog-detail .blog-detail-content span.hissu {
  color: #f00;
}
.blog-detail .blog-detail-content .item-title {
  margin-top: 10px;
}
.blog-detail .blog-detail-content .send_title_text {
  margin: 20px 0px 20px 0px;
  font-size: 24px;
  font-weight: bold;
  color: #59493f;
}
.blog-detail .blog-detail-pager {
  display: flex;
  justify-content: center;
  margin: 0px 0px 30px 0px;
}
.blog-detail .blog-detail-pager .button {
  display: flex;
  align-items: center;
  margin: 0px 10px;
  padding: 10px 25px;
  font-size: 12px;
  font-weight: normal;
  color: #391616;
  border: 1px solid transparent;
  border-radius: 50px;
  background-color: #ffffff;
}
.blog-detail .blog-detail-pager .button img {
  display: inline-block;
  width: 20px;
  transition: all 0.2s;
}
.blog-detail .blog-detail-pager .button.button-prev img {
  margin: 0px 20px 0px 0px;
}
.blog-detail .blog-detail-pager .button.button-prev:hover {
  background-color: #abb8d9;
}
.blog-detail .blog-detail-pager .button.button-prev:hover img {
  transform: translateX(-10px);
}
.blog-detail .blog-detail-pager .button.button-next img {
  margin: 0px 0px 0px 20px;
}
.blog-detail .blog-detail-pager .button.button-next:hover {
  background-color: #abb8d9;
}
.blog-detail .blog-detail-pager .button.button-next:hover img {
  transform: translateX(10px);
}

.blog-item {
  margin: 0px auto;
  padding: 15px;
  background: #efefef;
  border-radius: 10px;
  max-width: 450px;
}
.blog-item .blog-item-image {
  display: block;
  margin: 0px auto;
  margin-bottom: 10px;
  max-width: 100%;
}
.blog-item .blog-item-meta {
  display: flex;
  margin-bottom: 10px;
  padding: 0px 10px;
}
.blog-item .blog-item-meta .meta-category {
  margin-right: 10px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  background: #aba9cf;
  color: #ffffff;
}
.blog-item .blog-item-meta .meta-date {
  padding: 5px;
  font-size: 16px;
}
.blog-item .blog-item-text {
  margin-bottom: 10px;
  padding: 0px 10px;
  font-size: 16px;
  font-weight: bold;
}
.blog-item .blog-item-button {
  text-align: right;
}
.blog-item .blog-item-button .button {
  display: inline-block;
  padding: 15px 30px;
  color: #222222;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #ffffff;
  border-radius: 50px;
  background-color: #ffffff;
}
.blog-item .blog-item-button .button img {
  display: inline-block;
  margin: 5px 0px 0px 20px;
  transition: all 0.2s;
}
.blog-item .blog-item-button .button:hover {
  background-color: #9b99c6;
}
.blog-item .blog-item-button .button:hover img {
  transform: translateX(10px);
}

.blog-pager {
  margin: 0px 0px 50px 0px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-pager .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 10px 10px 10px;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  color: #391616;
  background-color: #fafafa;
  cursor: pointer;
}
.blog-pager .page-numbers:hover {
  color: #ffffff;
  background-color: #88abda;
}
.blog-pager .page-numbers:active, .blog-pager .page-numbers.current {
  color: #ffffff;
  background-color: #88abda;
}
.blog-pager .page-numbers.prev,
.blog-pager .page-numbers.next {
  display: flex;
  align-items: center;
  margin: 0px 10px 10px 10px;
  padding: 10px 25px;
  width: auto;
  height: auto;
  font-size: 12px;
  font-weight: normal;
  color: #391616;
  border-radius: 50px;
  background-color: #fafafa;
}
.blog-pager .page-numbers.prev img,
.blog-pager .page-numbers.next img {
  display: inline-block;
  width: 20px;
  transition: all 0.2s;
}
.blog-pager .page-numbers.prev.prev img,
.blog-pager .page-numbers.next.prev img {
  margin: 0px 20px 0px 0px;
}
.blog-pager .page-numbers.prev.prev:hover,
.blog-pager .page-numbers.next.prev:hover {
  color: #ffffff;
  background-color: #88abda;
}
.blog-pager .page-numbers.prev.prev:hover img,
.blog-pager .page-numbers.next.prev:hover img {
  transform: translateX(-10px);
}
.blog-pager .page-numbers.prev.next img,
.blog-pager .page-numbers.next.next img {
  margin: 0px 0px 0px 20px;
}
.blog-pager .page-numbers.prev.next:hover,
.blog-pager .page-numbers.next.next:hover {
  color: #ffffff;
  background-color: #88abda;
}
.blog-pager .page-numbers.prev.next:hover img,
.blog-pager .page-numbers.next.next:hover img {
  transform: translateX(10px);
}

/*
 * BUSINESS
 * -------------------------------------------------------------------
 */
.business {
  padding: 60px 0px;
}
.business .business-heading {
  display: flex;
  align-items: center;
  margin: 0px 0px 40px 0px;
}
.business .business-heading .heading-icon {
  display: block;
  height: 60px;
  width: 60px;
  margin: 0px 0px 0px 0px;
  padding: 0px;
  color: #ffffff;
  font-size: 28px;
  font-weight: normal;
  text-align: center;
  line-height: 60px;
  background: #88abda;
  border-radius: 100px;
}
.business .business-heading .heading-text {
  display: block;
  padding-left: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #503529;
  width: calc(100% - 60px);
}
.business .business-image {
  margin: 0px 40px 80px 0px;
  background: #f4ede1;
}
.business .business-image img {
  display: block;
  width: 100%;
  transform: translateX(20px) translateY(20px);
}
.business .business-content {
  line-height: 2;
  color: #281c16;
  font-size: 18px;
  font-weight: normal;
}
@media (min-width: 992px) {
  .business .business-content {
    width: 480px;
  }
}
.business .business-content u {
  background: none;
  border-bottom: 1px dashed #281c16;
  text-decoration: none;
}
.business.business-brown {
  background-color: #503529;
}
.business.business-brown .heading-text {
  color: #ffffff;
}
.business.business-brown .business-content {
  color: #ffffff;
}

/*
 * DEVELOPMENT
 * -------------------------------------------------------------------
 */
.development {
  margin: 0px;
  padding: 60px 0px;
}
.development .development-heading {
  margin: 0px 0px 20px 0px;
  padding: 15px 25px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  background: #59493f;
  border-radius: 6px;
}
.development .development-s-cube {
  margin: 0px 0px 60px 0px;
  font-size: 16px;
  font-weight: bold;
  color: #59493f;
}
.development .development-s-cube .content-image {
  margin: 0px 0px 20px 0px;
}
.development .development-s-cube .content-image img {
  display: block;
  max-width: 100%;
  margin: 0px auto;
}
.development .development-s-cube .content-text {
  margin: 0px 0px 60px 0px;
}
.development .development-s-cube .content-image-list {
  display: flex;
}
.development .development-s-cube .content-image-list .content-image-list-item {
  margin-right: 5px;
  width: calc(25% - 5px);
}
.development .development-s-cube .content-image-list .content-image-list-item img {
  display: block;
  width: 100%;
}
.development .development-result {
  margin: 0px 0px 0px 0px;
}
.development .development-result .content-text {
  margin: 0px 0px 30px 0px;
  font-size: 16px;
  font-weight: bold;
  color: #59493f;
}
.development .development-result .content-button .button {
  display: block;
  margin: 0px auto 30px;
  padding: 10px 15px;
  max-width: 350px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #503529;
  border: 1px solid #503529;
  border-radius: 30px;
  background-color: #f4ede1;
}
.development .development-result .content-button .button:hover {
  color: #ffffff;
  border: 1px solid #f4ede1;
  background-color: #503529;
}
.development .development-result .development-resutl-heading {
  margin: 0px 0px 20px 0px;
  border-bottom: 6px solid #abb8d9;
  display: flex;
}
.development .development-result .development-resutl-heading span {
  margin: 0px;
  padding: 10px 15px;
  font-size: 20px;
  font-weight: bold;
  color: #59493f;
  display: block;
  border-bottom: 6px solid #59493f;
  margin-bottom: -6px;
}
.development .development-result .development-resutl-list .content {
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #f4ede1;
}
@media (min-width: 992px) {
  .development .development-result .development-resutl-list .content {
    padding: 15px;
  }
}
.development .development-result .development-resutl-list .content .content-item {
  padding: 10px;
  margin: 5px;
  width: calc(50% - 10px);
  border-radius: 6px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .development .development-result .development-resutl-list .content .content-item {
    margin: 15px;
    width: calc(33.3333333333% - 30px);
  }
}
.development .development-result .development-resutl-list .content .content-item .content-item-image {
  display: block;
  margin: 0px auto;
  margin-bottom: 5px;
  max-width: 100%;
}
.development .development-result .development-resutl-list .content .content-item .content-item-header {
  margin: 0px 0px 5px 0px;
  padding: 0px;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 2px solid #59493f;
}
@media (min-width: 992px) {
  .development .development-result .development-resutl-list .content .content-item .content-item-header {
    margin: 0px 0px 10px 0px;
    padding: 10px;
    font-size: 16px;
  }
}
.development .development-result .development-resutl-list .content .content-item .content-item-text {
  padding: 0px;
  font-size: 12px;
}
@media (min-width: 992px) {
  .development .development-result .development-resutl-list .content .content-item .content-item-text {
    padding: 10px;
    font-size: 14px;
  }
}
.development .development-tests {
  margin: 0px 0px 60px 0px;
}
.development .development-tests .content-text {
  margin: 0px 0px 30px 0px;
  color: #59493f;
}
.development .development-tests .content-list {
  margin: 0px 0px 30px 0px;
  padding: 15px;
  background-color: #f4ede1;
}
@media (min-width: 992px) {
  .development .development-tests .content-list {
    padding: 30px;
  }
}
.development .development-tests .content-list .content-list-item {
  margin: 0px 0px 15px 0px;
}
@media (min-width: 992px) {
  .development .development-tests .content-list .content-list-item {
    display: flex;
  }
}
.development .development-tests .content-list .content-list-item .item-category {
  width: 100%;
  margin: 0px 0px 10px 0px;
  padding: 10px 15px;
  border-radius: 6px;
  text-align: center;
  color: #ffffff;
}
.development .development-tests .content-list .content-list-item .item-category.item-category-blue {
  background-color: #2a6ea1;
}
.development .development-tests .content-list .content-list-item .item-category.item-category-green {
  background-color: #288a53;
}
.development .development-tests .content-list .content-list-item .item-category.item-category-orange {
  background-color: #c7823f;
}
.development .development-tests .content-list .content-list-item .item-category.item-category-pink {
  background-color: #9d174d;
}
@media (min-width: 992px) {
  .development .development-tests .content-list .content-list-item .item-category {
    width: 150px;
    margin: 0px;
    margin-right: 10px;
  }
}
.development .development-tests .content-list .content-list-item .item-number {
  width: 100%;
  padding: 5px 10px;
  font-size: 16px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .development .development-tests .content-list .content-list-item .item-number {
    padding: 10px 15px;
    width: 150px;
    margin-right: 10px;
  }
}
.development .development-tests .content-list .content-list-item .item-title {
  width: 100%;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: bold;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .development .development-tests .content-list .content-list-item .item-title {
    padding: 10px 15px;
    width: calc(100% - 320px);
  }
}
@media (min-width: 992px) {
  .development .development-tests .content-list .content-list-item:nth-child(odd) .item-number,
  .development .development-tests .content-list .content-list-item:nth-child(odd) .item-title {
    background-color: #ffffff;
  }
}
@media (min-width: 992px) {
  .development .development-tests .content-list .content-list-item:nth-child(even) .item-number,
  .development .development-tests .content-list .content-list-item:nth-child(even) .item-title {
    background-color: rgba(255, 255, 255, 0.25);
  }
}
.development .development-tests .content-list .content-list-item:last-child {
  margin: 0px;
}

.development-flow {
  margin: 0px;
  padding: 60px 0px;
  background-color: #aba9cf;
}
.development-flow .content {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .development-flow .content {
    padding: 50px;
  }
}
.development-flow .content .content-header {
  margin: 0px 0px 20px 0px;
  color: #503529;
  font-size: 26px;
  font-weight: bold;
}
@media (min-width: 992px) {
  .development-flow .content .content-header {
    margin: 0px 0px 40px 0px;
  }
}
.development-flow .flow-item {
  padding: 15px;
}
@media (min-width: 992px) {
  .development-flow .flow-item {
    padding: 20px;
  }
}
.development-flow .flow-item .image {
  display: block;
  margin: 0px auto;
  margin-bottom: 20px;
  width: 150px;
  max-width: 100%;
}
.development-flow .flow-item .text {
  font-size: 14px;
  color: #503529;
}
.development-flow .button {
  margin: 0px auto;
  display: block;
  width: 75%;
  height: 60px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  line-height: 60px;
  text-align: center;
  background-color: #7e6b5a;
  border-radius: 30px;
  transform: translateY(-30px);
}
.development-flow .button:hover {
  background-color: #605245;
}
@media (min-width: 992px) {
  .development-flow .button {
    width: 75%;
    font-size: 20px;
  }
}

/*
 * PLANT
 * -------------------------------------------------------------------
 */
.plant {
  margin: 0px;
  padding: 0 0 40px;
}
@media (min-width: 992px) {
  .plant {
    padding: 60px 0px;
  }
}
.plant .plant-heading {
  margin: 0px 0px 30px 0px;
  padding: 15px 25px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  background: #59493f;
  border-radius: 6px;
}
.plant .content-text {
  margin: 0px 0px 30px 0;
  font-size: 16px;
  color: #59493f;
}
@media (min-width: 992px) {
  .plant .content-text {
    margin: 0px 0px 50px 0;
  }
}
@media (min-width: 992px) {
  .plant-box {
    padding: 0 25px;
  }
}
.plant .red {
  color: red;
}
@media (min-width: 992px) {
  .plant .container {
    max-width: 1050px;
  }
}
.plant .container .c-pt-80 {
  padding: 40px 0 0;
}
@media (min-width: 992px) {
  .plant .container .c-pt-80 {
    padding: 40px 0;
  }
}
.plant .col-md-6 {
  position: relative;
}
@media (min-width: 992px) {
  .plant .col-md-6 {
    margin-bottom: 20px;
  }
}
.plant .col-md-6 .content-text {
  margin: 0;
  font-size: 16px;
  color: #59493f;
}
@media (min-width: 992px) {
  .plant .col-md-6 .content-text {
    margin: 0px 0px 50px 0;
  }
}
.plant .col-md-6 .content-text p {
  line-height: 1.8;
  margin-bottom: 30px;
}
.plant .col-md-6 .content-text-img {
  padding: 0 0 0 20px;
}
@media (min-width: 992px) {
  .plant .col-md-6 .content-text-img {
    padding: 0 0 0 30px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.plant .col-md-6 .content-text-img p {
  margin: 0 0 1rem -16px;
}
.plant .col-md-6 .content-text-img .col-md-6 {
  width: 50%;
  padding: 0 20px 0 0;
}
@media (min-width: 992px) {
  .plant .col-md-6 .content-text-img .col-md-6 {
    width: unset;
  }
}
.plant .col-md-6 .content-text-img .plant-souko img {
  max-width: 150px;
}
.plant .content-header {
  margin: 0px 0 40px 0;
  border-bottom: 6px solid #abb8d9;
  display: flex;
}
.plant .content-header span {
  margin: 0px;
  padding: 0 15px 10px 0;
  font-size: 20px;
  font-weight: bold;
  color: #59493f;
  display: block;
  border-bottom: 6px solid #59493f;
  margin-bottom: -6px;
}
.plant .content-item {
  margin: 0px 0px 20px 0px;
}
.plant .content-item .content-item-image {
  display: block;
  max-width: 100%;
  margin: 0px auto;
}
.plant .content-item .content-item-text {
  padding: 20px;
  background-color: #59493f;
}
.plant .content-item .content-item-text .labels {
  margin: 0px 0px 15px 0px;
}
.plant .content-item .content-item-text .labels .label {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
  padding: 6px 14px;
  font-size: 10px;
  color: #59493f;
  border-radius: 30px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .plant .content-item .content-item-text .labels .label {
    font-size: 12px;
  }
}
.plant .content-item .content-item-text .text {
  color: #ffffff;
}
.plant .content-setsubi {
  margin: 0px 0px 20px 0px;
  padding: 10px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .plant .content-setsubi {
    padding: 30px;
  }
}
.plant .content-setsubi .nav {
  border-bottom: 4px solid #7e6b5a;
}
.plant .content-setsubi .nav-pills .nav-link {
  margin: 0px 3px 0px 3px;
  padding: 10px 15px;
  font-size: 16px;
  color: #7e6b5a;
  background-color: #ffffff;
  border: 2px solid #7e6b5a;
  border-bottom: none;
  border-radius: 0;
}
.plant .content-setsubi .nav-pills .nav-link.active,
.plant .content-setsubi .nav-pills .show > .nav-link {
  color: #ffffff;
  background-color: #7e6b5a;
}
.plant .content-setsubi .setsubi-list {
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 992px) {
  .plant .content-setsubi .setsubi-list {
    padding: 15px;
  }
}
.plant .content-setsubi .setsubi-list .setsubi-list-item {
  padding: 10px;
  margin: 5px;
  width: calc(50% - 10px);
  border: 1px solid #dddddd;
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
  transition: 0.3s all;
  cursor: pointer;
}
.plant .content-setsubi .setsubi-list .setsubi-list-item:hover {
  transform: scale(1.1, 1.1);
}
@media (min-width: 992px) {
  .plant .content-setsubi .setsubi-list .setsubi-list-item {
    margin: 15px;
    width: calc(33.3333333333% - 30px);
  }
}
.plant .content-setsubi .setsubi-list .setsubi-list-item .setsubi-list-item-image {
  display: block;
  margin: 0px auto;
  margin-bottom: 5px;
  max-width: 100%;
}
.plant .content-setsubi .setsubi-list .setsubi-list-item .setsubi-list-item-header {
  margin: 0px 0px 5px 0px;
  font-size: 14px;
  font-weight: bold;
  color: #59493f;
  border-bottom: 2px dotted #59493f;
}
@media (min-width: 992px) {
  .plant .content-setsubi .setsubi-list .setsubi-list-item .setsubi-list-item-header {
    margin: 0px 0px 10px 0px;
    padding: 10px;
    font-size: 16px;
  }
}
.plant .content-setsubi .setsubi-list .setsubi-list-item .setsubi-list-item-text {
  padding: 0px;
  font-size: 12px;
}
@media (min-width: 992px) {
  .plant .content-setsubi .setsubi-list .setsubi-list-item .setsubi-list-item-text {
    padding: 10px;
    font-size: 14px;
  }
}
.plant .plant-table-about {
  color: #59493f;
  font-size: 12px;
}
@media (min-width: 992px) {
  .plant .plant-table-about {
    font-size: 14px;
  }
}
.plant .plant-table-about th {
  border-color: #59493f;
  border-width: 2px;
  background-color: #735c53;
  color: #ffffff;
  width: 11.1111111111%;
  text-align: center;
}
.plant .plant-table-about td {
  border-color: #59493f;
  border-width: 2px;
  width: 11.1111111111%;
}
.plant .plant-table-about td.td-text {
  text-align: center;
  vertical-align: middle;
}
.plant .plant-table-about td.td-check {
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 992px) {
  .plant .plant-table-about td.td-check {
    font-size: 18px;
  }
}
.plant .plant-table-about td a {
  color: #1558d6;
  text-decoration: underline;
}
.plant .plant-table-about td a:hover {
  text-decoration: none;
}
.plant .plant-table-about .blank {
  height: 15px;
}
.plant .plant-table-about .bg-brown {
  background-color: #ddd5d0;
}
.plant.plant-setsubi {
  background-color: #b0b4c6;
}

/*
 * FAQ
 * -------------------------------------------------------------------
 */
.faq {
  padding: 80px 0px;
}
.faq .faq-content {
  margin: 0px 0px 60px 0px;
  padding: 20px;
  background-color: #f4ede1;
}
.faq .faq-content .content-title {
  margin: 0px 0px 20px 0px;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #503529;
}
@media (min-width: 992px) {
  .faq .faq-content .content-title {
    font-size: 24px;
  }
}
.faq .faq-content .item-list .item {
  margin: 0px 0px 5px 0px;
  transition: all 0.2s;
}
.faq .faq-content .item-list .item .item-header {
  display: flex;
  align-items: center;
  background-color: #bdc8d8;
  padding: 10px;
}
.faq .faq-content .item-list .item .item-header .title {
  display: flex;
  align-items: center;
  width: calc(100% - 60px);
  color: #503529;
}
.faq .faq-content .item-list .item .item-header .title .title-circle {
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  background-color: #ffffff;
}
.faq .faq-content .item-list .item .item-header .title .title-text {
  display: block;
  width: calc(100% - 50px);
  font-size: 14px;
  font-weight: bold;
}
@media (min-width: 992px) {
  .faq .faq-content .item-list .item .item-header .title .title-text {
    font-size: 16px;
  }
}
.faq .faq-content .item-list .item .item-header .button {
  position: relative;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  background-color: #88abda;
  cursor: pointer;
}
.faq .faq-content .item-list .item .item-header .button .button-bar-1,
.faq .faq-content .item-list .item .item-header .button .button-bar-2 {
  display: block;
  position: absolute;
  width: 70%;
  height: 2px;
  margin-right: 15%;
  margin-left: 15%;
  border-radius: 1px;
  border-bottom: 1px solid transparent;
  border-color: #ffffff;
  background: #ffffff;
  transition: all 0.2s;
}
.faq .faq-content .item-list .item .item-header .button .button-bar-1 {
  transform: rotate(-90deg);
  top: 50%;
}
.faq .faq-content .item-list .item .item-header .button .button-bar-2 {
  top: 50%;
}
.faq .faq-content .item-list .item .item-content {
  padding: 15px;
  background-color: #ffffff;
  display: none;
  opacity: 0;
  overflow-y: hidden;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .faq .faq-content .item-list .item .item-content {
    padding: 30px;
  }
}
.faq .faq-content .item-list .item.item-open .item-content {
  display: block;
  opacity: 1;
}
.faq .faq-content .item-list .item.item-open .button-bar-1 {
  top: 50%;
  transform: rotate(0deg) !important;
}
.faq .faq-content .item-list .item.item-open .button-bar-2 {
  top: 50%;
}

/*
 * REQRUIT
 * -------------------------------------------------------------------
 */
.recruit {
  padding: 60px 0px;
}
.recruit .recruit-message {
  margin: 0px 0px 60px 0px;
  padding: 0px;
  text-align: center;
}
.recruit .recruit-message br {
  display: none;
}
@media (min-width: 992px) {
  .recruit .recruit-message {
    padding: 0px 50px;
  }
  .recruit .recruit-message br {
    display: inline;
  }
}
.recruit .recruit-message .heading {
  margin: 0px 0px 20px 0px;
  font-size: 28px;
  font-weight: bold;
  color: #59493f;
}
.recruit .recruit-message .message {
  font-size: 16px;
  color: #59493f;
}
.recruit .recruit-list .recruit-list-item:not(:last-child) {
  margin-bottom: 50px;
}
.recruit .recruit-list .recruit-list-item .heading {
  margin: 0px 0px 20px 0px;
  padding: 15px 25px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  background: #59493f;
  border-radius: 6px;
}
.recruit .recruit-list .recruit-list-item .content {
  padding: 0px;
}
@media (min-width: 992px) {
  .recruit .recruit-list .recruit-list-item .content {
    padding: 50px;
  }
}
.recruit .recruit-list .recruit-list-item .content .content-main {
  margin: 0px 0px 50px 0px;
  padding: 30px;
  background-color: #f4ede1;
}
@media (min-width: 992px) {
  .recruit .recruit-list .recruit-list-item .content .content-main {
    padding: 50px;
  }
}
.recruit .recruit-list .recruit-list-item .content .content-main .labels {
  margin: 0px 0px 20px 0px;
  padding: 0px;
}
.recruit .recruit-list .recruit-list-item .content .content-main .labels .label {
  display: inline-block;
  margin: 0px 3px 3px 0px;
  padding: 4px 15px;
  font-size: 12px;
  font-weight: normal;
  color: #ffffff;
  border: 1px solid #7e6b5a;
  border-radius: 3px;
  background-color: #7e6b5a;
}
.recruit .recruit-list .recruit-list-item .content .content-main .catchcopy {
  margin: 0px 0px 20px 0px;
  font-size: 20px;
  font-weight: bold;
  color: #503529;
}
.recruit .recruit-list .recruit-list-item .content .content-main .sub-heading {
  margin: 0px 0px 15px 0px;
  font-size: 18px;
  font-weight: bold;
  color: #503529;
}
.recruit .recruit-list .recruit-list-item .content .content-main .sub-content {
  margin: 0px 0px 30px 0px;
  font-size: 16px;
  font-weight: normal;
  color: #503529;
}
.recruit .recruit-list .recruit-list-item .content .content-button .button {
  display: block;
  margin: 0px auto;
  padding: 10px 15px;
  max-width: 300px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #503529;
  border: 1px solid #503529;
  border-radius: 30px;
  background-color: #f4ede1;
}
.recruit .recruit-list .recruit-list-item .content .content-button .button:hover {
  color: #ffffff;
  border: 1px solid #f4ede1;
  background-color: #503529;
}

/*
 * COMPANY
 * -------------------------------------------------------------------
 */
.company {
  padding: 60px 0px;
}
.company .company-message {
  margin: 0px 0px 60px 0px;
  padding: 0px;
  text-align: center;
}
@media (min-width: 992px) {
  .company .company-message {
    margin: 0px auto 60px auto;
    padding: 0px 50px;
    max-width: 800px;
  }
}
.company .company-message .heading {
  margin: 0px 0px 60px 0px;
  font-size: 28px;
  font-weight: bold;
  color: #59493f;
}
.company .company-message .message {
  margin: 0px;
  font-size: 16px;
}
.company .company-message .message p {
  /*margin-bottom:30px;*/
  line-height: 2;
}
.company .company-message .message p br {
  display: none;
}
@media (min-width: 992px) {
  .company .company-message .message p br {
    display: inline;
  }
}
.company .company-message .row {
  font-size: 16px;
  line-height: 2;
}
.company .company-message .row img {
  display: block;
  max-width: 100%;
  margin: 0px auto 15px auto;
}
.company .company-message .compmay-name {
  text-align: right;
  font-size: 18px;
  font-weight: bold;
}
.company .company-message .compmay-name img {
  max-width: 250px;
  margin-top: 10px;
}
.company .company-message .hgs12 {
  font-family: "HGS行書体", monospace;
  font-size: 12pt;
}
.company .company-message .hgs18 {
  font-family: "HGS行書体", monospace;
  font-size: 18pt;
}
.company .company-heading {
  margin: 0px 0px 20px 0px;
  padding: 15px 25px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  background: #59493f;
  border-radius: 6px;
}
.company .company-access-item {
  margin: 0px 0px 30px 0px;
}
.company .company-access-item .heading {
  display: flex;
  margin: 0px 0px 10px 0px;
}
.company .company-access-item .heading .heading-left {
  width: 40%;
  padding: 0px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #3b322d;
}
@media (min-width: 992px) {
  .company .company-access-item .heading .heading-left {
    padding: 20px;
  }
}
.company .company-access-item .heading .heading-right {
  width: 60%;
  padding-left: 20px;
  border-left: 1px solid #3b322d;
}
@media (min-width: 992px) {
  .company .company-access-item .heading .heading-right {
    padding: 20px;
  }
}
.company .company-access-item .googlemap iframe {
  width: 100%;
  height: 300px;
}
.company .aisatsu {
  text-align: left;
}

/*
 * ENGLISH
 * -------------------------------------------------------------------
 */
.english {
  padding: 60px 0px;
}
.english .english-heading {
  margin: 0px 0px 20px 0px;
  padding: 15px 25px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  background: #59493f;
  border-radius: 6px;
}
.english .english-content {
  margin: 0px 0px 0px 0px;
}
.english .english-content .english-content-text {
  position: relative;
  margin: 0px 0px 100px 0px;
  padding: 20px;
  font-size: 18px;
  font-weight: normal;
  color: #59493f;
  background: #abb8d9;
  border-radius: 15px;
}
.english .english-content .english-content-text .bottle {
  position: absolute;
  bottom: -100px;
  right: 0px;
  z-index: 2;
}
.english .english-content .english-content-text .bottle img {
  display: block;
  width: 150px;
}
@media (min-width: 992px) {
  .english .english-content .english-content-text .bottle img {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .english .english-content .english-content-text .bottle {
    bottom: -150px;
    right: 0%;
  }
}
.english .english-content .english-content-heading {
  margin: 0px 0px 50px 0px;
  border-bottom: 6px solid #abb8d9;
  display: flex;
}
.english .english-content .english-content-heading span {
  margin: 0px;
  padding: 10px 15px;
  font-size: 20px;
  font-weight: bold;
  color: #59493f;
  display: block;
  border-bottom: 6px solid #59493f;
  margin-bottom: -6px;
}
.english .english-content .english-content-flow-image {
  display: block;
  max-width: 100%;
  margin: 0px auto 50px auto;
}
.english .english-content .english-content-button .button {
  display: block;
  margin: 0px auto;
  padding: 10px 15px;
  max-width: 300px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #503529;
  border: 1px solid #503529;
  border-radius: 30px;
  background-color: #f4ede1;
}
.english .english-content .english-content-button .button:hover {
  color: #ffffff;
  border: 1px solid #f4ede1;
  background-color: #503529;
}

/*
 * CONTACT
 * -------------------------------------------------------------------
 */
.contact {
  padding: 60px 0px;
}
.contact .contact-message {
  margin: 0px 0px 60px 0px;
  padding: 0px;
  text-align: center;
}
@media (min-width: 992px) {
  .contact .contact-message {
    margin: 0px auto 60px auto;
    padding: 0px 50px;
    max-width: 800px;
  }
}
.contact .contact-message .heading {
  margin: 0px 0px 60px 0px;
  font-size: 28px;
  font-weight: bold;
  color: #59493f;
}
.contact .contact-message .message {
  margin: 0px 0px 60px 0px;
  font-size: 16px;
}
.contact .contact-message .message p {
  margin-bottom: 30px;
  line-height: 2;
}
.contact .contact-message .message p br {
  display: none;
}
@media (min-width: 992px) {
  .contact .contact-message .message p br {
    display: inline;
  }
}
@media (min-width: 992px) {
  .contact .contact-form {
    margin: 0px auto;
    max-width: 800px;
  }
}
.contact .contact-form .form-control {
  color: #3e2121;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #3e2121;
  border-radius: 0px;
}
.contact .contact-form .hissu {
  color: #ff0000;
}
.contact .contact-form .privacy-text {
  margin: 0px 0px 30px 0px;
  text-align: center;
}
.contact .contact-form .button,
.contact .contact-form .wpcf7-submit {
  display: block;
  margin: 10px auto;
  padding: 10px 15px;
  width: 100%;
  max-width: 400px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #503529;
  border: 1px solid #503529;
  border-radius: 30px;
  background-color: #f4ede1;
  transition: all 0.2s;
}
.contact .contact-form .button:hover,
.contact .contact-form .wpcf7-submit:hover {
  color: #ffffff;
  border: 1px solid #f4ede1;
  background-color: #503529;
}
@media (min-width: 992px) {
  .contact .contact-form .button,
  .contact .contact-form .wpcf7-submit {
    width: 100%;
    max-width: 200px;
    display: inline-block;
    margin: 0px 10px;
  }
}
.contact .contact-form .wpcf7-mail-sent-ok {
  background: #e3f2fd;
  color: #0d47a1;
  padding: 15px;
  text-align: center;
  border: none;
}
.contact .contact-form .wpcf7-validation-errors {
  background: #ffebee;
  color: #b71c1c;
  padding: 15px;
  text-align: center;
  border: none;
}

/*
 * PRIVACY
 * -------------------------------------------------------------------
 */
.privacy {
  padding: 60px 0px;
}
.privacy .privacy-message {
  margin: 0px;
  padding: 15px;
  color: #503529;
  background-color: #f4ede1;
}
@media (min-width: 992px) {
  .privacy .privacy-message {
    padding: 50px;
  }
}
.privacy .privacy-message .heading {
  margin: 0px 0px 60px 0px;
  font-size: 28px;
  font-weight: bold;
  color: #59493f;
}
.privacy .privacy-message .message {
  margin: 0px 0px 0px 0px;
  font-size: 16px;
}
.privacy .privacy-message .message p {
  margin-bottom: 30px;
  line-height: 2;
  /*
          br{
              display:none;
              @media (min-width: 992px) {
                  display:inline;
              }
          }
          */
}

.project {
  padding: 50px 0px 100px;
}
@media (min-width: 992px) {
  .project {
    padding: 50px 0 100px;
  }
}
.project_title {
  margin: 0px 20px 30px 20px;
  max-width: 768px;
  padding: 15px 25px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  background: #59493f;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .project_title {
    margin: 0px auto 30px auto;
  }
}
@media (min-width: 992px) {
  .project_title {
    max-width: 768px;
    max-width: 1100px;
  }
}
.project h4 {
  font-size: 20px;
  color: #503529;
  padding-bottom: 10px;
  font-weight: bold;
}
@media (min-width: 992px) {
  .project h4 {
    font-size: 24px;
  }
}
.project_hr {
  color: #eee;
  padding-bottom: 70px;
}
@media (min-width: 992px) {
  .project_hr {
    padding-bottom: 60px;
  }
}
.project_sub_title_bottom {
  width: 100%;
  height: 10px;
  background-color: #abb8d9;
}
.project_sub_title_bottom_inner {
  background-color: #757081;
  height: 100%;
  width: 200px;
}
.project_diplomacy {
  margin: 0 auto;
  padding: 0 20px 40px;
  max-width: 808px;
}
@media (min-width: 992px) {
  .project_diplomacy {
    padding: 0 20px 100px;
    max-width: 1100px;
  }
}
.project_diplomacy .project_flow_list_item:first-of-type .project_flow_list_item_texts_icon {
  width: 70px;
  padding-top: 20px;
}
@media (min-width: 992px) {
  .project_diplomacy .project_flow_list_item:first-of-type .project_flow_list_item_texts_icon {
    width: 80px;
    padding-top: 14px;
  }
}
.project_diplomacy .project_flow_list_item:nth-of-type(2) .project_flow_list_item_texts_icon {
  width: 45px;
  padding-top: 20px;
}
@media (min-width: 650px) {
  .project_diplomacy .project_flow_list_item:nth-of-type(2) .project_flow_list_item_texts_icon {
    padding-top: 40px;
  }
}
@media (min-width: 1100px) {
  .project_diplomacy .project_flow_list_item:nth-of-type(2) .project_flow_list_item_texts_icon {
    width: 55px;
    padding-top: 14px;
  }
}
.project_diplomacy .project_flow_list_item:nth-of-type(3) .project_flow_list_item_texts_icon {
  width: 52px;
  padding-top: 35px;
}
@media (min-width: 992px) {
  .project_diplomacy .project_flow_list_item:nth-of-type(3) .project_flow_list_item_texts_icon {
    width: 65px;
    padding-top: 60px;
  }
}
.project_diplomacy .project_flow_list_item:nth-of-type(4) .project_flow_list_item_texts_icon {
  width: 65px;
  padding-top: 38px;
}
@media (min-width: 992px) {
  .project_diplomacy .project_flow_list_item:nth-of-type(4) .project_flow_list_item_texts_icon {
    width: 80px;
    padding-top: 35px;
  }
}
.project_research {
  padding: 0 20px 40px;
  margin: 0 auto;
  position: relative;
  max-width: 808px;
}
@media (min-width: 992px) {
  .project_research {
    padding: 0 20px 100px;
    max-width: 1100px;
  }
}
.project_research .project_flow_list_item:first-of-type .project_flow_list_item_texts_icon {
  width: 80px;
}
@media (min-width: 992px) {
  .project_research .project_flow_list_item:first-of-type .project_flow_list_item_texts_icon {
    width: 130px;
    padding-top: 48px;
  }
}
.project_research .project_flow_list_item:nth-of-type(2) .project_flow_list_item_texts_icon {
  width: 50px;
}
@media (min-width: 992px) {
  .project_research .project_flow_list_item:nth-of-type(2) .project_flow_list_item_texts_icon {
    width: 80px;
    padding-top: 38px;
  }
}
.project_research .project_flow_list_item:nth-of-type(3) .project_flow_list_item_texts_icon {
  width: 60px;
}
@media (min-width: 992px) {
  .project_research .project_flow_list_item:nth-of-type(3) .project_flow_list_item_texts_icon {
    width: 80px;
    padding-top: 105px;
  }
}
.project_research .project_detail h3 {
  height: auto;
}
@media (min-width: 1100px) {
  .project_research .project_detail h3 {
    height: 95px;
  }
}
.project_research .project_detail h3 br {
  display: none;
}
@media (min-width: 1100px) {
  .project_research .project_detail h3 br {
    display: block;
  }
}
.project_research .project_detail:last-of-type .project_detail_box {
  grid-template-columns: 1fr;
}
.project_research .project_detail:last-of-type .project_detail_box_images {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.project_research .project_detail:last-of-type .project_detail_box_images a {
  display: block;
}
.project_research .project_detail:last-of-type .project_detail_box_images a:hover {
  opacity: 0.5;
}
.project_research .project_detail:last-of-type .project_detail_box_images a img {
  width: 100%;
  display: block;
}
.project_research .project_detail:last-of-type .project_detail_box_images a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-weight: 700;
  display: block;
  text-align: center;
  font-size: 20px;
}
@media (min-width: 992px) {
  .project_research .project_detail:last-of-type .project_detail_box_images a span {
    font-size: 24px;
  }
}
.project_research .project_detail_box {
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .project_research .project_detail_box {
    grid-template-columns: 1fr 1fr;
  }
}
.project_research .project_detail_box_texts h4 {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
  padding-bottom: 5px;
  margin-bottom: 0;
}
.project_research .project_detail_box_texts h4::before {
  content: "";
  display: inline-block;
  padding-right: 20px;
  background: url("../img/project/project-title-arrow.svg") no-repeat center center;
  width: 15px;
  height: 20px;
}
.project_research .project_detail_box_texts a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: #0066c0;
  text-decoration: underline;
  font-size: 14px;
}
@media (min-width: 992px) {
  .project_research .project_detail_box_texts a {
    text-align: right;
    justify-content: flex-end;
    align-items: flex-end;
    font-size: 16px;
  }
}
.project_research .project_detail_box_texts a:hover {
  text-decoration: none;
}
.project_research .project_detail_box_texts a img {
  width: 20px;
}
@media (min-width: 992px) {
  .project_research .project_detail_box_texts a img {
    width: auto;
  }
}
.project_manufacturing {
  max-width: 808px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 992px) {
  .project_manufacturing {
    max-width: 1100px;
  }
}
.project_manufacturing .project_flow_list_item:first-of-type .project_flow_list_item_texts_icon {
  width: 50px;
}
@media (min-width: 992px) {
  .project_manufacturing .project_flow_list_item:first-of-type .project_flow_list_item_texts_icon {
    width: 70px;
    padding-top: 48px;
  }
}
.project_manufacturing .project_flow_list_item:nth-of-type(2) .project_flow_list_item_texts_icon {
  width: 90px;
}
@media (min-width: 992px) {
  .project_manufacturing .project_flow_list_item:nth-of-type(2) .project_flow_list_item_texts_icon {
    width: 110px;
    padding-top: 14px;
  }
}
.project_manufacturing .project_flow_list_item:nth-of-type(3) .project_flow_list_item_texts_icon {
  width: 85px;
}
@media (min-width: 992px) {
  .project_manufacturing .project_flow_list_item:nth-of-type(3) .project_flow_list_item_texts_icon {
    width: 105px;
    padding-top: 66px;
  }
}
.project_manufacturing .project_flow_list_item:nth-of-type(4) .project_flow_list_item_texts_icon {
  width: 95px;
}
@media (min-width: 992px) {
  .project_manufacturing .project_flow_list_item:nth-of-type(4) .project_flow_list_item_texts_icon {
    width: 115px;
    padding-top: 64px;
  }
}
.project_top {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 30px 0;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .project_top {
    align-items: center;
    flex-direction: row;
  }
}
.project_top_image {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .project_top_image {
    max-width: 500px;
  }
}
.project_top_image img {
  width: 100%;
}
.project_top_texts {
  font-weight: 700;
  color: #503529;
  line-height: 2;
  font-size: 18px;
}
@media (min-width: 992px) {
  .project_top_texts {
    font-size: 25px;
  }
}
.project_top_texts br {
  display: none;
}
@media (min-width: 992px) {
  .project_top_texts br {
    display: block;
  }
}
.project_flow {
  background-color: #f4ede1;
  margin-bottom: 25px;
  padding: 15px;
}
@media (min-width: 1100px) {
  .project_flow {
    padding: 25px 50px 25px 24px;
  }
}
.project_flow_list {
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  place-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 450px) {
  .project_flow_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .project_flow_list {
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.project_flow_list.three {
  grid-template-columns: 1fr;
}
@media (min-width: 450px) {
  .project_flow_list.three {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .project_flow_list.three {
    grid-template-columns: repeat(3, 1fr);
  }
}
.project_flow_list.three .project_flow_list_item {
  width: 100%;
}
@media (min-width: 780px) {
  .project_flow_list.three .project_flow_list_item {
    max-width: 345px;
  }
}
@media (min-width: 1100px) {
  .project_flow_list.three .project_flow_list_item {
    width: 320px;
    max-width: 100%;
  }
}
.project_flow_list.three .project_flow_list_item h3 {
  background-size: cover;
  width: 105%;
}
@media (min-width: 300px) {
  .project_flow_list.three .project_flow_list_item h3 {
    width: 105%;
  }
}
@media (min-width: 350px) {
  .project_flow_list.three .project_flow_list_item h3 {
    width: 104.5%;
  }
}
@media (min-width: 400px) {
  .project_flow_list.three .project_flow_list_item h3 {
    width: 104%;
  }
}
@media (min-width: 450px) {
  .project_flow_list.three .project_flow_list_item h3 {
    width: 106.5%;
  }
}
@media (min-width: 500px) {
  .project_flow_list.three .project_flow_list_item h3 {
    width: 106%;
  }
}
@media (min-width: 550px) {
  .project_flow_list.three .project_flow_list_item h3 {
    width: 105.5%;
  }
}
@media (min-width: 600px) {
  .project_flow_list.three .project_flow_list_item h3 {
    width: 105%;
  }
}
@media (min-width: 650px) {
  .project_flow_list.three .project_flow_list_item h3 {
    width: 104.5%;
  }
}
@media (min-width: 700px) {
  .project_flow_list.three .project_flow_list_item h3 {
    width: 104%;
  }
}
@media (min-width: 1100px) {
  .project_flow_list.three .project_flow_list_item h3 {
    width: 340px;
  }
}
.project_flow_list_item {
  background-color: #fff;
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 100%;
  min-height: 265px;
}
@media (min-width: 780px) {
  .project_flow_list_item {
    max-height: 315px;
    max-width: 345px;
  }
}
@media (min-width: 1100px) {
  .project_flow_list_item {
    width: 235px;
    max-width: 100%;
  }
}
.project_flow_list_item h3 {
  font-size: 16px;
  color: #59493f;
  padding: 6px 0;
  position: absolute;
  font-weight: 700;
  text-align: center;
  width: 105%;
}
.project_flow_list_item h3 span {
  margin-left: -10px;
}
@media (min-width: 350px) {
  .project_flow_list_item h3 {
    width: 105%;
  }
}
@media (min-width: 400px) {
  .project_flow_list_item h3 {
    width: 104%;
  }
}
@media (min-width: 450px) {
  .project_flow_list_item h3 {
    width: 106.5%;
  }
}
@media (min-width: 500px) {
  .project_flow_list_item h3 {
    width: 106%;
  }
}
@media (min-width: 550px) {
  .project_flow_list_item h3 {
    width: 105.5%;
  }
}
@media (min-width: 600px) {
  .project_flow_list_item h3 {
    width: 105%;
  }
}
@media (min-width: 650px) {
  .project_flow_list_item h3 {
    width: 104.5%;
  }
}
@media (min-width: 700px) {
  .project_flow_list_item h3 {
    width: 104%;
  }
}
@media (min-width: 780px) {
  .project_flow_list_item h3 {
    width: 360px;
  }
}
@media (min-width: 1100px) {
  .project_flow_list_item h3 {
    font-size: 20px;
    padding: 9px 0;
    width: 255px;
  }
}
.project_flow_list_item:first-of-type h3 {
  background: url("../img/project/project-arrow-first.svg") center center no-repeat;
  background-size: cover;
}
.project_flow_list_item:nth-of-type(2) h3 {
  background: url("../img/project/project-arrow-secound.svg") center center no-repeat;
  background-size: cover;
}
.project_flow_list_item:nth-of-type(3) h3 {
  background: url("../img/project/project-arrow-three.svg") center center no-repeat;
  background-size: cover;
}
.project_flow_list_item:nth-of-type(4) h3 {
  background: url("../img/project/project-arrow-four.svg") center center no-repeat;
  background-size: cover;
}
.project_flow_list_item_texts {
  padding: 45px 15px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (min-width: 992px) {
  .project_flow_list_item_texts {
    padding: 55px 14px 15px 14px;
  }
}
.project_flow_list_item_texts p {
  line-height: 1.5;
  margin-bottom: 0;
  font-size: 16px;
}
.project_flow_list_item_texts_icon {
  width: 55px;
  margin: 0 auto;
  padding-top: 14px;
}
.project_flow_list_item_texts_icon img {
  display: block;
  width: 100%;
}
.project_detail {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}
@media (min-width: 1100px) {
  .project_detail {
    flex-direction: row;
  }
}
.project_detail:not(:last-of-type) {
  margin-bottom: 50px;
}
.project_detail h3 {
  font-size: 20px;
  padding: 15px 0;
  font-weight: 500;
  background-color: #aba9cf;
  color: #fff;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
@media (min-width: 992px) {
  .project_detail h3 {
    padding: 30px 35px;
    font-size: 26px;
  }
}
@media (min-width: 1100px) {
  .project_detail h3 {
    width: 170px;
    height: 95px;
  }
}
.project_detail_box {
  display: grid;
  gap: 20px 15px;
  width: 100%;
  grid-template-columns: 1fr;
}
@media (min-width: 778px) {
  .project_detail_box {
    gap: 35px 15px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.project_detail_box_block:hover {
  opacity: 0.5;
}
.project_detail_box_block h4 {
  font-size: 18px;
  color: #503529;
  padding: 6px 10px;
  font-weight: 700;
  background-color: #f8f8fb;
  border-left: 3px solid #aba9cf;
  border-bottom: 1px solid #aba9cf;
  margin-bottom: 5px;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .project_detail_box_block h4 {
    font-size: 24px;
  }
}
.project_detail_box_block h4 img {
  width: 20px;
}
.project_detail_box_block dl {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 0 15px;
  margin-bottom: 0;
  padding-left: 10px;
}
.project_detail_box_block dl dt,
.project_detail_box_block dl dd {
  font-size: 16px;
  margin-bottom: 0;
}
.project_detail_box_block dl dt {
  flex: 1;
  color: #cac9e1;
}
.project_detail_box_block dl dd {
  flex: 3;
  color: #7f6b62;
}

.plant-modal {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.plant-modal.open {
  opacity: 1;
  pointer-events: all;
}
.plant-modal .full-img {
  position: absolute;
  height: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  transition: all 0.5s ease;
}
.plant-modal .full-img.open {
  transform: translate(-50%, -50%) scale(1);
}

.plant-modal p {
  color: #fff;
  font-size: 2rem;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -5%);
}/*# sourceMappingURL=planet.css.map */