/* CSS Document */

img {
  /* ウィンドウサイズに応じて画像を拡縮 */
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: auto;
  -webkit-backface-visibility: hidden;
}

body {
  color: #081f2c;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5em;
  word-break: break-all;
}
.wrapper,
.wrapper_narrow,
.vertical_ttl_block /* PCのとき縦書きタイトルのマージン変則ブロック */ {
  max-width: 1040px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

.vertical_ttl_block .vertical_ttl_block_contents {
  flex-basis: 72%;
  margin-bottom: 5rem;
}

.vertical_ttl_block .vertical_ttl_block_contents .img {
  margin-bottom: 3rem;
}

.vertical_ttl_block .vertical_ttl_block_contents .img .caption {
  display: block;
  font-size: 0.875rem;
  text-align: right;
  margin-top: 0.3rem;
}

.vertical_ttl_block .vertical_ttl_block_contents .text {
  line-height: 2;
}

.vertical_ttl_block .vertical_ttl_block_contents .text:not(:last-of-type) {
  margin-bottom: 1.5em;
}

.vertical_ttl_block .vertical_ttl_block_contents .text span {
  color: #e62e8b;
}

.vertical_ttl_block .vertical_ttl {
  flex-basis: 28%;
  text-align: center;
}

.vertical_ttl_block .vertical_ttl .numbers {
  text-combine-upright: all;
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
}

.vertical_ttl_block .vertical_ttl > span {
  display: inline-block;
  text-align: left;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  line-height: 1.7;
}

.vertical_ttl_block .vertical_ttl span span {
  color: #e62e8b;
}

a {
  text-decoration: none;
}

sup {
  font-size: 0.75em;
  vertical-align: top;
  position: relative;
  top: -0.2em;
}

.sp_break,
.sp_only {
  display: none;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.fade {
  opacity: 0;
  transition: opacity 3s;
}

.fade.view {
  opacity: 1;
}

@media screen and (max-width: 736px) {
  .wrapper {
    padding: 0 1rem;
  }

  .wrapper_narrow {
    padding: 0 10%;
  }

  .vertical_ttl_block /* PCのとき縦書きタイトルのマージン変則ブロック */ {
    padding: 0;
  }

  .vertical_ttl_block.column_reverse {
    /* SPのときにはタイトルが常に先に来るように */
    flex-direction: column-reverse;
  }

  .vertical_ttl_block .vertical_ttl_block_contents {
    flex-basis: auto;
    margin-bottom: 3rem;
  }

  .vertical_ttl_block .vertical_ttl_block_contents .img {
    margin-bottom: 1.5rem;
  }

  .vertical_ttl_block .vertical_ttl_block_contents .img .caption {
    font-size: 0.75rem;
    padding: 0 1rem;
  }

  .vertical_ttl_block .vertical_ttl_block_contents .text {
    font-size: 0.75rem;
    padding: 0 10%;
  }

  .vertical_ttl_block .vertical_ttl {
    flex-basis: auto;
    text-align: left;
  }

  .vertical_ttl_block .vertical_ttl > span {
    writing-mode: horizontal-tb;
    ms-writing-mode: horizontal-tb;
    font-size: 1.5rem;
    padding: 0 10%;
    margin-bottom: 2rem;
  }

  .pc_break,
  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }

  .sp_break {
    display: inline;
  }
}

/***************************
 ** flexible boxと子要素の関係
 * flexible box仕様には3段階あります。box,flexbox,flex
 * ブラウザによって実装段階がそれぞれ異なるので、注意すること
 *
 * 横並びのboxなのでクラス名を「flex_row」に変更
 */

.flex_row {
  /* flexible boxの使用宣言（box,flexbox,flex） */
  display: -webkit-box; /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox; /*--- ie10 ---*/
  display: -webkit-flex; /*--- mac old safari ---*/
  display: flex;
  /* flexアイテムの横方向の位置揃え */
  -webkit-box-pack: justify; /*--- Androidブラウザ ---*/
  -ms-flex-pack: justify; /*--- ie10 ---*/
  -webkit-justify-content: space-between; /*--- mac old safari ---*/
  justify-content: space-between;
  /* flexアイテムの縦方向の整列 */
  -webkit-box-align: stretch; /*--- Androidブラウザ ---*/
  -ms-flex-align: stretch; /*--- ie10 ---*/
  -webkit-align-items: stretch; /*--- mac old safari ---*/
  align-items: stretch;
  /* flexアイテムの並び方向 */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal; /*--- Androidブラウザ 2つに分かれている ---*/
  -ms-flex-direction: row; /*--- ie10 ---*/
  -webkit-flex-direction: row; /*--- mac old safari ---*/
  flex-direction: row;
  /* flexアイテムを複数行にするかどうか */
  /* box仕様のbox-linesに当たるが、androidブラウザは未対応 */
  /* wrapさせたい場合はandroid4DefaultBrowser.cssにて対応すること */
  -ms-flex-wrap: nowrap; /*--- ie10 ---*/
  -webkit-flex-wrap: nowrap; /*--- mac old safari ---*/
  flex-wrap: nowrap;
}
.flex_row > * {
  /**** flexible box関連指定 ****/
  /* flexアイテムの伸縮、アイテム幅の指定 */
  -webkit-box-flex: 0.1; /*--- Androidブラウザ 要素がはみ出す場合があることへの対処 ---*/
  -ms-flex: 1 1; /*--- ie10 ---*/
  -webkit-flex: 1 1 auto; /* mac old safari */
  /* ie11で、flex-basisを記述すると正しく動作しないので記載しないように変更 */
  flex: 1 1; /*--- flex-grow,flex-shrink,flex-basis ---*/
  /* 並び順の指定 */
  -webkit-box-ordinal-group: 1; /*--- Androidブラウザ ---*/
  -ms-flex-order: 0; /*--- ie10 ---*/
  -webkit-order: 0; /*--- mac old safari ---*/
  order: 0;
}

@media screen and (max-width: 736px) {
  /***************************
 * スマホの場合にどうするかを記載するので接頭辞として、「sp_」を追加
 */
  .sp_flex_col {
    /* flexアイテムの並び方向 */
    -webkit-box-orient: vertical; /*--- Androidブラウザ 2つに分かれている ---*/
    -ms-flex-direction: column; /*--- ie10 ---*/
    -webkit-flex-direction: column; /*--- mac old safari ---*/
    flex-direction: column;
  }
  .sp_flex_col > * {
    width: 100%;
  }

  .sp_flex_2row2col {
    /* flexアイテムを複数行にするかどうか */
    /* box仕様のbox-linesに当たるが、androidブラウザは未対応 */
    /* wrapさせたい場合はandroid4DefaultBrowser.cssにて対応すること */
    -ms-flex-wrap: wrap; /*--- ie10 ---*/
    -webkit-flex-wrap: wrap; /*--- mac old safari ---*/
    flex-wrap: wrap;
  }
  .sp_flex_2row2col > * {
    width: 50%;
    box-sizing: border-box;
  }
}

/***************************
 ** アコーディオン
 */
.accordion_container .accordion_item {
}
.accordion_container .accordion_btn {
  cursor: pointer;
}
.accordion_container .accordion_box {
  display: none;
}

/***************************
 ** header
 */
.main_header {
  padding: 1rem 0;
}

/*ハンバーガーメニューボタン*/
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 999;
  background-color: #fff;
  cursor: pointer;
}
.info_hamburger-menu .menu-btn {
  height: 40px;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #f69;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

/*ハンバーガーメニューの中身*/
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  transition: all 0.5s;
}

.main_header .menu-content {
  /* 本体サイトの背景 */
  background-color: rgba(255, 255, 255, 0.95);
}

.info_header .menu-content {
  /* 情報サイトの背景 */
  background-color: rgba(255, 102, 153, 0.9);
}

.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  list-style: none;
  padding-left: 1em;
}

.main_header .menu-content ul li {
  /* 本体サイトのメニュー罫線 */
  border-bottom: 1px solid #ffaac6;
}

.info_header .menu-content ul li {
  /* 情報サイトのメニュー罫線 */
  border-bottom: 1px solid #fff;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.main_header .menu-content ul li a {
  /* 本体サイトのメニュー文字色 */
  color: #081f2c;
}

.info_header .menu-content ul li a {
  /* 情報サイトのメニュー文字色 */
  color: #fff;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

#menu-btn-check:checked ~ .menu-content {
  left: 60%; /*メニューを画面内へ*/
}

@media screen and (max-width: 736px) {
  #menu-btn-check:checked ~ .menu-content {
    left: 0; /*メニューを画面内へ*/
  }

  .menu-content ul li {
    text-align: center;
  }
}
/*パンくず*/
.breadcrumbs {
  max-width: 1040px;
  margin: 0 auto;
}
.breadcrumbs ul {
  display: flex;
  flex-flow: wrap;
  margin: 1em auto;
}
.breadcrumbs ul li:not(:last-child):after {
  content: "＞";
  padding: 0 5px;
}
/* SNSボタン */
.info_sns_list {
  margin-bottom: 1.5rem;
  text-align: center;
}

.info_sns_list li {
  display: inline-block;
  margin-right: 0.6rem;
}

.info_sns_list li:first-child a::after {
  font-family: "icomoon";
  content: "\e91a";
  color: #00b832;
  font-size: 2.5rem;
}

.info_sns_list li:nth-child(2) a::after {
  content: "";
  translate: 0 3px;
  width: 41px;
  aspect-ratio: 40 / 41;
  display: inline-block;
  background: url(../../img/icon/x-circle.svg) no-repeat center center/contain;
}

.info_sns_list li:nth-child(3) a::after {
  font-family: "icomoon";
  content: "\e90c";
  color: #3b579d;
  font-size: 2.5rem;
}
/***************************
 ** #main
 */
main {
  display: block;
  /* for ie10 */
}

/***************************
 ** 共通ボタン・リンク
 */
/* ベースになるボタンの形状 */
.base_btn {
  display: block;
  padding: 1rem;
  text-align: center;
  position: relative;
}

.base_btn::after {
  font-family: "icomoon";
  content: "\e901";
  display: block;
  position: absolute;
  top: 50%;
  right: 0.6em;
  margin-top: -0.8em;
}

/* 白いボタンの装飾 */
.white_btn {
  background: #fff;
  color: #2b2b2b;
}

.white_btn::after {
  color: #81cced;
}

.white_btn:hover {
  background: #81cced;
  color: #fff;
}

.white_btn:hover::after {
  color: #fff;
}

/* オレンジボタンの装飾 */
.orange_btn {
  background: #f6ac19;
  color: #fff;
  font-weight: bold;
}

.orange_btn::after {
  color: #fff;
  font-weight: normal;
}

.orange_btn:hover {
  opacity: 0.7;
}

/* ダウンロードボタンの装飾 */
.dl_btn::after,
.dl_btn:hover::after {
  font-family: "icomoon";
  content: "\e900";
}

/* 前アイコン付きテキストリンク */
.text_link_before {
  color: #09c;
}

.text_link_before::before {
  font-family: "icomoon";
  content: "\e901";
  display: inline-block;
  /*color: #81cced;*/
  margin-right: 0.5em;
}

/* 下向き丸囲み矢印付きテキストリンク（ページ内リンクなど） */
.text_link_down {
  color: #2b2b2b;
}

.text_link_down::after {
  font-family: "icomoon";
  content: "\e909";
  display: inline-block;
  color: #81cced;
  margin-left: 0.5em;
}

/* ホバー時 */
.text_link_before:hover .text_link_down:hover {
  text-decoration: underline;
}

/* テキスト矢印付きテキストリンク */
.text_arrow_link {
  color: #09c;
  text-decoration: underline;
}

.text_arrow_link::before {
  content: "》";
}

/* ラインアニメーションリンクボタン */
.link_btn {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  padding: 1rem;
  border: 2px solid #081f2c;
  color: #081f2c;
  background: url("../../img/vitax/common/icon_arrow_circle.svg") no-repeat 90%
      center,
    #fff;
  background-size: 16px 16px;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all 0.2s;
}

.link_btn::before,
.link_btn::after {
  position: absolute;
  z-index: 2;
  content: "";
  width: 0;
  height: 0;
  border: 2px solid transparent;
  box-sizing: content-box;
}

.link_btn::before {
  top: -2px;
  left: -2px;
}

.link_btn::after {
  bottom: -2px;
  right: -2px;
}

.link_btn:hover {
  color: #e62e8b;
}

.link_btn:hover::before,
.link_btn:hover::after {
  width: 100%;
  height: 100%;
}

.link_btn:hover::before {
  border-bottom-color: #e62e8b;
  border-left-color: #e62e8b;
  transition: height 0.3s, width 0.3s 0.3s;
}

.link_btn:hover::after {
  border-top-color: #e62e8b;
  border-right-color: #e62e8b;
  transition: height 0.3s, width 0.3s 0.3s;
}

/* 外部リンク */
.ex_link::after {
  font-family: "icomoon";
  content: "\e90a";
  display: inline-block;
  margin-left: 0.5em;
}

@media screen and (max-width: 736px) {
  /* ベースになるボタンの形状 */
  .base_btn {
    font-size: 0.875rem;
    padding: 0.7rem;
  }

  /*前アイコン付きテキストリンク*/
  .text_link_before {
    font-size: 0.875rem;
  }

  .link_btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.875rem;
  }
}

/***************************
 ** #footer
 */
#footer {
  margin-top: 3rem;
  padding-bottom: 1rem;
}

.footer_nav {
  background: #081f2c;
  padding: 2rem 0 4rem;
  line-height: 2;
  margin-bottom: 2rem;
}

.footer_nav a,
#footer .footer_nav .wrapper ul li .ex_link::after {
  color: #fff !important;
}

.footer_inner {
  margin-bottom: 3rem;
}

.footer_left p {
  line-height: 1.5;
}

.footer_left a {
  display: block;
  font-size: 1.875rem;
  font-weight: bold;
  color: #e62e8b;
}

.footer_logo {
  text-align: right;
  padding-top: 50px;
}

.footer_logo img {
  width: 150px;
}

.copyright {
  text-align: center;
  font-size: 0.875rem;
}

@media screen and (max-width: 736px) {
  #footer {
    margin-top: 2rem;
  }

  .footer_nav {
    background: #081f2c;
    padding: 1rem 0;
    margin-bottom: 1rem;
  }

  .footer_nav .wrapper {
    flex-wrap: wrap;
  }

  .footer_nav .wrapper ul {
    flex-basis: 50%;
    font-size: 0.75rem;
  }

  .footer_nav .wrapper ul:last-child {
    margin-left: 50%;
  }

  .footer_inner {
    margin-bottom: 1rem;
  }

  .footer_left {
    flex-basis: auto;
  }

  .footer_left p {
    font-size: 0.875rem;
  }

  .footer_left a {
    font-size: 1.375rem;
  }

  .footer_logo {
    flex-basis: auto;
  }

  .copyright {
    font-size: 0.6875rem;
  }
}

/***************************
 ** #rev_top
 */
.rev_top {
  position: fixed;
  width: 7%;
  max-width: 46px;
  bottom: 180px;
  right: 20px;
}

@media screen and (max-width: 736px) {
  .rev_top {
    width: 15%;
    bottom: 20px;
  }
}

/***************************
 ** コラム・レシピ（トップページと情報ページ共通）
 */
.info_list {
  flex-wrap: wrap;
  justify-content: space-between;
}

.info_list::after {
  content: "";
  display: block;
  width: 31%;
}

.info_list > li {
  flex-basis: 31%;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  margin: 2rem 3.5% 1rem 0;
  position: relative;
}

.info_list > li:nth-child(3n) {
  margin-right: 0;
}

.info_list .new::after {
  content: "";
  width: 48px;
  height: 60px;
  position: absolute;
  left: 10px;
  top: -8px;
  background: url("../img/common/icon_new_ribbon.png") no-repeat;
  background-size: 100% 100%;
  z-index: 2;
}

.info_img a {
  display: block;
  position: relative;
  z-index: 1;
}

.info_img a:hover img {
  opacity: 0.7;
}

.info_text {
  padding: 20px;
}

.cate_name {
  display: inline-block;
  line-height: 1.3;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fff;
  padding: 0 1em;
  margin-bottom: 1rem;
}

.cate_column {
  background: #68a9cf;
}

.cate_recipe {
  background: #f6ac19;
}

.info_item_ttl {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.info_item_ttl a {
  color: #000;
}

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

.tag_list {
  line-height: 1.2;
}

.tag_list li {
  display: inline-block;
  font-size: 0.875rem;
  margin-right: 1.2em;
  line-height: 1.2;
}

.tag_list li a {
  color: #e62e8b;
}

.info_link {
  text-align: right;
}

@media screen and (max-width: 736px) {
  .info_list::after {
    display: none;
  }

  .info_list > li {
    flex-basis: auto;
    background: none;
    box-shadow: none;
    margin: 0 0 1rem 0;
    position: relative;
    display: -webkit-box; /*--- Androidブラウザ用 ---*/
    display: -webkit-flex; /*--- mac old safari ---*/
    display: flex;
    -webkit-box-pack: justify; /*--- Androidブラウザ ---*/
    -ms-flex-pack: justify; /*--- ie10 ---*/
    -webkit-justify-content: space-between; /*--- mac old safari ---*/
    justify-content: space-between;
    -webkit-box-align: stretch; /*--- Androidブラウザ ---*/
    -webkit-align-items: stretch; /*--- mac old safari ---*/
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal; /*--- Androidブラウザ 2つに分かれている ---*/
    -webkit-flex-direction: row; /*--- mac old safari ---*/
    flex-direction: row;
    -webkit-flex-wrap: nowrap; /*--- mac old safari ---*/
    flex-wrap: nowrap;
  }

  .info_list .new::after {
    content: "";
    width: 24px;
    height: 30px;
    position: absolute;
    left: 6px;
    top: -6px;
    background: url("../img/common/icon_new_ribbon.png") no-repeat;
    background-size: 100% 100%;
  }

  .info_img {
    flex-basis: 24%;
    margin-right: 3%;
  }

  .info_img img {
    aspect-ratio: 1;
  }

  .info_text {
    flex-basis: 73%;
    padding: 0;
  }

  .cate_name {
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
  }

  .info_item_ttl {
    font-size: 0.8125rem;
    margin-bottom: 0;
  }

  .tag_list li {
    display: inline-block;
    font-size: 0.75rem;
  }
}

/***************************
 ** QA（トップページとQAページ共通）
 */
.qa_area {
  margin-bottom: 4rem;
  z-index: -1;
}

.qa_list {
  border-bottom: 1px solid #081f2c;
}

.qa_list li {
  padding: 0.6rem 1rem;
  border-top: 1px solid #081f2c;
}

.qa_text_ttl {
  font-size: 1.125rem;
  display: table;
  width: 100%;
  position: relative;
}

.qa_text_ttl::after {
  font-family: "icomoon";
  content: "\e90e";
  display: inline-block;
  color: #081f2c;
  position: absolute;
  right: 1rem;
  top: 0.4rem;
}

.qa_text_ttl.btn_active::after {
  font-family: "icomoon";
  content: "\e911";
  display: inline-block;
  color: #081f2c;
  position: absolute;
}

.qa_text_ttl > span {
  display: table-cell;
  vertical-align: top;
}

.qa_q,
.qa_a {
  width: 2em;
}

.qa_q span,
.qa_a span {
  display: inline-block;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  box-sizing: border-box;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  border-radius: 50%;
  vertical-align: bottom;
}

.qa_q span {
  background: #081f2c;
}

.qa_ttl_last {
  padding-left: 0.5rem;
  padding-right: 3rem;
  line-height: 2;
}

.qa_text {
  padding: 2rem 1rem 2rem 4rem;
  box-sizing: border-box;
  display: table;
  width: 100%;
}

.qa_text > span {
  display: table-cell;
}

.qa_a span {
  background: #e62e8b;
  vertical-align: middle;
}

.qa_text_last {
  padding-left: 0.5rem;
  line-height: 2;
}

@media screen and (max-width: 736px) {
  .qa_text_ttl {
    font-size: 0.875rem;
  }

  .qa_q span,
  .qa_a span {
    font-size: 1.125rem;
    width: 1.6em;
    height: 1.6em;
    line-height: 1.6;
  }

  .qa_text {
    padding: 1rem 1rem 1.5rem 2rem;
    font-size: 0.75rem;
  }
}

/***************************
 ** 第二階層以下共通
 */
/* FV */
.under_fv_ttl {
  /*タイトルテキスト入のシンプルver*/
  height: 210px;
  width: 100%;
  background: url("../../img/vitax/common/bg_ttl_01.jpg") no-repeat;
  background-size: cover;
  font-family: "Noto Serif JP", serif;
  position: relative;
  margin-bottom: 3rem;
}

.page_ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  text-align: center;
  width: 100%;
}

.under_fv_ttl .page_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
}

.under_fv {
  /* 画像のみ ver*/
  margin-bottom: 3rem;
  text-align: center;
}

/* セクション1単位 */
.base_section {
  margin-bottom: 4rem;
}

/* 見出し */
.sec_ttl {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 3rem;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
}

/*.sec_ttl_s {
  text-align: center;
  font-size: 1.6875rem;
  font-weight: bold;
  color: #09c;
  margin-bottom: 3rem;
  line-height: 1.5;
}

.sec_sub_ttl {
  color: #2a4a70;
  font-weight: bold;
  font-size: 1.6875rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}*/

/*セクションのメインイメージ（幅いっぱいの画像）*/
.sec_main_img {
  margin-bottom: 3rem;
}

.sec_img {
  text-align: center;
}

/* セクションの通常テキスト */
.sec_base_text p {
  margin-bottom: 1.5em;
  line-height: 2;
}

.sec_base_text strong {
  font-weight: bold;
  background: #d3edfb;
  background: -moz-linear-gradient(
    top,
    transparent 0%,
    transparent 50%,
    #d3edfb 50%,
    #d3edfb 100%
  );
  background: -webkit-linear-gradient(
    top,
    transparent 0%,
    transparent 50%,
    #d3edfb 50%,
    #d3edfb 100%
  );
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    #d3edfb 50%,
    #d3edfb 100%
  );
}

.sec_base_text .link_strong {
  font-weight: bold;
}

.text_link {
  color: #09c;
  text-decoration: underline;
}

@media screen and (max-width: 736px) {
  /* FV */
  .under_fv_ttl {
    /*タイトルテキスト入のシンプルver*/
    height: 100px;
    margin-bottom: 2rem;
  }

  .page_ttl {
    font-size: 1.25rem;
  }

  .under_fv {
    margin-bottom: 1rem;
  }

  /* セクション1単位 */
  .base_section {
    margin-bottom: 2.5rem;
  }

  /* 見出し */
  .sec_ttl {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .sec_ttl_s {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .sec_sub_ttl {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  /*セクションのメインイメージ（幅いっぱいの画像）*/
  .sec_main_img {
    margin-bottom: 2rem;
  }

  /* セクションの通常テキスト */
  .sec_base_text p {
    font-size: 0.75rem;
  }
}

/***************************
 ** トップページ・ビタエックスとはページ共通
 */
.sec_ttl_horizontal {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.6;
}

@media screen and (max-width: 736px) {
  .sec_ttl_horizontal {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}


/***************************
 ** バナーエリア
 */
 .bnr_list {
  text-align: center;
}

.bnr_list li {
  padding: 0 0.3rem;
}

@media screen and (max-width: 736px) {
  .bnr_list {
    width: 90%;
    margin: 0 auto;
  }

  .bnr_list li {
    margin-bottom: 1rem;
    padding: 0;
  }

  .bnr_list li a,
  .bnr_list li a img {
    width: 100%;
    display: block;
  }
}
