@charset "UTF-8";
* {
 box-sizing: border-box;
}
#container {
    margin: auto;
    padding: 0 0 30px;
    width: 100%;
    text-align: unset;
}
#main_column.colnum1 {
    width: 100%;
    margin: 0;
}
#main_column h2 {
    padding: 0;
    margin-bottom: auto;
    border-bottom: none;
    font-size: inherit;
}
/*----- 共有 -----*/
/*########
l-flex-[justify-content]-[align-items]
########*/
/*
最初と最後の子要素を両端に配置し、
残りの要素は均等に間隔をあけて配置
*/
/*-- 上揃え --*/
.l-flex-between-start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/*-- 中央揃え --*/
.l-flex-between-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/*-- 下揃え --*/
.l-flex-between-end {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/*
行の開始位置から配置。
左揃え。
*/
/*-- 上揃え --*/
.l-flex-start-start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/*-- 中央揃え --*/
.l-flex-start-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/*-- 下揃え --*/
.l-flex-start-end {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/*
中央揃え
*/
/*-- 上揃え --*/
.l-flex-center-start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/*-- 中央揃え --*/
.l-flex-center-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/*-- 下揃え --*/
.l-flex-center-end {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/*-- 子要素を折り返し、複数行に上から下へ並べる --*/
.l-flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-center {
  text-align: center;
}

a {
  text-decoration: none;
  outline: none;
  color: #333;
  cursor: pointer;
}
a:hover {
  
}
/*----- 共通 -----*/
body{
  background: #01619d;
  width: 100%;
}
strong {
  font-weight: bold;
}
.l-container {
  width: 1000px;
  margin: 0 auto;
}
.l-block {
  width: 1100px;
  margin: 0 auto;
  box-shadow: 0 0 20px #00558b;
}
/*----- #fv -----*/
#fv {
  background: url(/upload/save_image/lp/sounokiwami2/fv_background.jpg)no-repeat top center/cover;
}
#fv .l-inner {
  width: 1200px;
  margin: 0 auto;
  background: url(/upload/save_image/lp/sounokiwami2/fv_img.png)no-repeat top right/auto;
  padding-bottom: 80px;
}
#fv h1 {
  padding-bottom: 30px;
}
.info {
  margin-top: -40px;
  width: 800px;
  margin: 0 auto;
  padding: 0 5px 5px;
  background: rgb(10,69,163);
  background: linear-gradient(180deg, rgba(10,69,163,1) 30%, rgba(136,179,42,1) 100%);
  border-radius: 20px;
}
.info .l-info-block {
  background: #fff;
  padding: 30px;
  position: relative;
  border-radius: 15px;
}
.info .catch {
  padding: 15px 0 15px 220px;
}
.info figure {
  position: absolute;
  top: -65px;
  left: 60px;
}
.info .text-image {
  text-align: end;
  padding-bottom: 20px;
}
/*----- #fixed -----*/
#fixed {
  width: 1500px;
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  z-index: 999;
  left: calc(75% - 180px);
}
/*----- #trouble -----*/
#trouble {
  background: #fffae6;
  padding: 30px 0 40px;
}
/*----- #about -----*/
#about {
  background: #fffae6;
  padding-bottom: 65px;
}
#about .l-container {
  background: url(/upload/save_image/lp/sounokiwami2/about_background_pattern.png);
  margin: -30px auto 50px;
  border-left: 2px solid #e6e1cb;
  border-right: 2px solid #e6e1cb;
  border-bottom: 2px solid #e6e1cb;
}
#about li+li {
  padding-top: 40px;
}
/*----- #point -----*/
#point {
  background: url(/upload/save_image/lp/sounokiwami2/point_title_background.jpg)no-repeat top center,#f4efc7;
  padding-top: 50px;
}
#point h2 {
  padding-bottom: 40px;
}
#point .l-container {
  width: 900px;
  border: 2px solid #d7c98c;
  position: relative;
  z-index: 1;
}
#point .points {
  padding: 50px 0;
}
#point .l-container li.points:first-of-type {
  background: url(/upload/save_image/lp/sounokiwami2/point_dha_tltle_background.jpg)no-repeat top right/contain, #e0ecf8;
}
#point .l-container li.points:nth-of-type(2) {
  background: url(/upload/save_image/lp/sounokiwami2/point_epa_title_background.jpg)no-repeat top right/contain, #ebf0df;
}
#point .l-container li.points:last-of-type {
  background: url(/upload/save_image/lp/sounokiwami2/point_fucoidan_title_background.jpg)no-repeat top right/contain, #f4e4e7;
}
#point .title {
  padding: 0 120px;
  text-align: start;
}
#point .title-info {
  width: 405px;
  padding: 25px 0;
  margin-left: 120px;
  text-align: start;
  font-size: 20px;
  line-height: 1.5;
}
#point .points:last-of-type .title-info{
  width: 500px;
}
#point .info-area {
  width: 722px;
  margin: 0 auto;
  background: #386a39;
  border: 2px solid #fff;
  box-shadow: 0 0 0 5px #386a39;
}
#point dl {
  position: relative;
  padding-bottom: 150px;
  min-height: 340px;
}
#point li:last-of-type dl {
  padding-bottom: 280px;
}
#point dt {
  margin-left: -45px;
  position: relative;
  z-index: 1;
}
#point dd {
  position: absolute;
  top: 160px;
  left: 45px;
  z-index: 0;
}
#point dd p {
  color: #fff;
  font-size: 20px;
  width: 260px;
  margin-right: 40px;
  text-align: start;
  line-height: 1.5;
  letter-spacing: .05em;
}
.m-bg-yellow {
  color: #386939;
  background: url(/upload/save_image/lp/sounokiwami2/point_text_backgroundPattern.png)repeat-x top center/auto;
  padding: 2px 5px;
  letter-spacing: .08em;
  font-weight: bold;
}
#point .l-inner {
  background: #305e31;
  margin-top: 30px;
  padding: 0 30px;
}
#point .epa-title {
  padding-top: 25px;
}
#point .nutrient {
  width: 645px;
  margin: 0 auto;
  padding: 10px 0 20px;
}
#point .nutrient li {
  padding: 5px 0;
}
#point .nutrient li:nth-of-type(2) {
  padding: 20px 0;
}
#point .nutrient .l-line {
  display: flex;
}
#point .nutrient li+li {
  border-top: 2px solid #4f7d4f;
}
#point .nutrient .l-line p {
  align-items: stretch;
  padding: 15px;
}
#point .nutrient .l-line p+p {
  border-left: 2px solid #4f7d4f;
}
#point .l-area {
  background: url(/upload/save_image/lp/sounokiwami2/point_background.jpg)no-repeat top center/cover;
  position: relative;
  z-index: 0;
  top: 0px;
  padding: 130px 0 40px;
  margin: -100px auto 0px;
}
#point h3 {
  padding-bottom: 160px;
}
#point .info {
  padding-top: 5px;
  position: relative;
} 
#point .info .catch {
  position: absolute;
  top: -85px;
  right: 0;
  z-index: 1;
}
/*----- #reason -----*/
#reason {
  background: #fffae5;
  padding-bottom: 70px;
}
#reason h2 {
  padding-top: 40px;
}
#reason .l-inner {
  width: 800px;
  margin: 0 auto;
  padding: 10px;
}
#reason dl {
  background: url(/upload/save_image/lp/sounokiwami2/company_title_background.png)no-repeat top right/auto;
  width: 540px;
  text-align: start;
  padding: 40px 0;
}
#reason dt {
  padding-bottom: 30px;
}
#reason dd {
  font-size: 18px;
  line-height: 1.667;
}
#reason .images {
  padding-bottom: 40px;
} 
/*----- #product -----*/
#product {
  background: url(/upload/save_image/lp/sounokiwami2/background1.jpg)no-repeat top center/contain,url(/upload/save_image/lp/sounokiwami2/background2.jpg)no-repeat bottom center/contain;
  padding-top: 130px;
}
#product h2 {
  padding-bottom: 45px;
}
#product .info {
  padding-top: 5px;
}
#product .l-inner {
  width: 900px;
  margin: 35px auto 0;
  background: #c1e7f7;
}
#product .l-area {
  background: url(/upload/save_image/lp/sounokiwami2/prodauct_twice_backgroundPattern.png);
  padding: 30px 89px;  
}
#product .product-btn {
  padding-bottom: 30px;
}
#product .product-btn li {
  position: relative;
}
#product .product-btn li a {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#product .l-card {
  border: 2px solid #bacf7a;
  background: #f7fbeb;
}
#product .send-info {
  padding: 30px 35px;
}
#product .send-info li {
  background: #fff;
  border-radius: 10px;
  border: 2px solid #d8d8d8;
  margin-bottom: 5px;
}
#product .send-info dl {
  padding: 20px 0;
} 
#product .send-info dt {
  width: 160px;
  padding: 0 25px;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
  text-align: start;
}
#product .send-info dd {
  text-align: start;
  width: 480px;
  padding: 0 20px;
}
#product .send-info dd p {
  font-size: 14px;
  line-height: 1.571;
}
#product .image+p {
  padding-top: 10px;
}
/*----- footer -----*/
footer {
  color: #fff;
  padding: 90px;
}
small {
  padding-left: 20px;
}