/* CSS Document */

img {
  /* ウィンドウサイズに応じて画像を拡縮 */
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: auto;
  -webkit-backface-visibility: hidden;
}
body {
  color: #2b2b2b;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5em;
  word-break: break-all;
}
.wrapper {
  max-width: 1040px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

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

.sp_break {
  display: none;
}

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

  .pc_break {
    display: none;
  }

  .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
 */
#header {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.site_ttl {
  flex-basis: 33%;
}

.header_nav {
  flex-basis: 67%;
  text-align: right;
  padding-top: 1rem;
}

.header_nav li {
  display: inline-block;
  margin-left: 1.5rem;
  font-size: 0.875rem;
}

.header_nav li a {
  color: #2b2b2b;
}

.header_nav li a:hover {
  text-decoration: underline;
}

.header_nav li a img {
  display: none;
}

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

@media screen and (max-width: 736px) {
  #header {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .site_ttl {
    flex-basis: 55%;
  }

  .header_nav {
    flex-basis: 45%;
    box-sizing: border-box;
    padding-top: 0;
    padding-right: 50px;
  }

  .header_nav li {
    box-sizing: border-box;
    margin-left: 0;
    font-size: 0.5rem;
    width: 40%;
    text-align: center;
  }

  .header_nav li a {
    text-align: center;
  }

  .header_nav li a img {
    display: inline;
    width: 25px;
  }

  .header_nav li a span {
    display: block;
    line-height: 1.2;
    margin-top: 0.5em;
  }

  #pc_txt {
    display: none;
  }

  .header_nav li a::before {
    content: none;
    display: none;
  }
}

/***************************
 ** nav
 */
#nav {
  position: relative;
  z-index: 9999;
}

nav {
  width: 100%;
  height: 0;
  /*position: relative;*/
  /* background: #F6F6F6;*/
}
.drawer {
  /*height: auto;*/
  position: absolute;
  right: 1rem;
  top: 0.8rem;
}

/* トグルボタン */
.navbar_toggle {
  z-index: 9999;
  margin-top: -60px;
}
.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background: #5c6b80;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.navbar_toggle_icon:nth-child(1) {
  top: 0;
}
.navbar_toggle_icon:nth-child(2) {
  margin: 8px 0;
}
.navbar_toggle_icon:nth-child(3) {
  top: 0;
}
/*OPEN時の動き*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ナビ */
.menu {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 1000;
  background: #6fc3ed;
}
.menu ul li {
  border-bottom: 1px solid #fff;
}

.menu ul li a {
  display: block;
  color: #fff;
  padding: 1rem;
}

.menu_ttl {
  display: inline-block;
  padding: 0 0.5em;
  border-radius: 20px;
  background: #fff;
  color: #6fc3ed;
  margin-right: 0.5em;
  font-weight: bold;
}

.menu ul li a br {
  display: none;
}

/*OPEN時の動き*/
.menu.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 9999;
}

@media screen and (min-width: 736px) {
  #nav {
    position: relative;
    z-index: 9999;
  }
  nav {
    max-width: 1040px;
    height: auto;
    box-sizing: border-box;
    padding: 0 20px;
    margin: 0 auto 1.2rem;
  }

  .navbar_toggle {
    display: none;
  }

  .menu {
    width: 100%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background: none;
  }

  .menu ul {
    display: table;
    width: 100%;
    border-radius: 10px;
    border: 3px solid #81cced;
    background: #fff;
  }
  .menu ul li {
    display: table-cell;
    vertical-align: middle;
    width: 16.666%;
    box-sizing: border-box;
    padding: 0;
    border-bottom: none;
    text-align: center;
    border-right: 1px solid #81cced;
  }

  .menu ul li:last-child {
    border-right: none;
  }

  .menu ul li:hover {
    background: #09c;
  }

  .menu ul li a {
    display: block;
    box-sizing: border-box;
    padding: 1.5rem 0.3rem;
    color: #2b2b2b;
    letter-spacing: -1px;
  }

  .menu ul li:first-child a {
    letter-spacing: -2px;
  }

  .menu ul li a:hover {
    background: #09c;
    color: #fff;
  }

  .menu_ttl {
    background: #6fc3ed;
    color: #fff;
    margin-right: 0;
  }

  .menu ul li:hover .menu_ttl {
    background: #fff;
    color: #09c;
  }

  .menu ul li a br {
    display: inline;
  }

  .about #nav .menu ul li:first-child,
  .recipe #nav .menu ul li:nth-child(4),
  .column #nav .menu ul li:nth-child(3),
  .qa #nav .menu ul li:nth-child(5),
  .purchase #nav .menu ul li:nth-child(6) {
    background: #09c;
  }

  .about #nav .menu ul li:first-child a,
  .recipe #nav .menu ul li:nth-child(4) a,
  .column #nav .menu ul li:nth-child(3) a,
  .qa #nav .menu ul li:nth-child(5) a,
  .purchase #nav .menu ul li:nth-child(6) a {
    color: #fff;
  }

  .column #nav .menu ul li .menu_ttl {
    background: #fff;
    color: #09c;
  }
}

/***************************
 ** #main
 */
main {
  display: block;
  /* for ie10 */
}

/***************************
 ** 共通ボタン・リンク
 */

/* ベースになる角丸ボタンの形状 */
.base_btn {
  display: block;
  padding: 1rem;
  border-radius: 50px;
  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;
}

/* 青いボタンの装飾 */
.blue_btn {
  background: #81cced;
  background: linear-gradient(to bottom right, #81cced 0%, #7db9e8 100%);
  color: #fff;
  font-weight: bold;
}

.blue_btn.base_btn::before,
.white_btn.base_btn::before {
  content: none;
}

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

.blue_btn:hover {
  background: #09c;
}

/* ダウンロードボタンの装飾 */
.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: "》";
}

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

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

/*カルシウム不足セルフチェックバナー*/
.blue_bnr {
  display: block;
  background: #81cced;
  border-radius: 10px;
  padding: 1rem 2rem 1rem 1rem;
  color: #2b2b2b;
  font-size: 1.125rem;
  position: relative;
}

.blue_bnr::after {
  font-family: "icomoon";
  content: "\e901";
  display: block;
  color: #fff;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  margin-top: -0.5em;
}

.blue_bnr:hover {
  background: #09c;
}

.blue_bnr p {
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 0 5px #7ac1e0;
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, -2px 2px 0 #fff,
    2px -2px 0 #fff, 0px 2px 0 #fff, 0-2px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff;
}

.check_bnr p {
  background: url("../../img/calcium/index/pc/bg_selfcheck.png") no-repeat right
      top,
    #fff;
}

.check_bnr p span {
  font-size: 1.6875rem;
  color: #09c;
  font-weight: bold;
  display: inline-block;
  margin-left: 1rem;
  vertical-align: middle;
}

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

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

  /* カルシウム不足セルフチェックバナー */
  .blue_bnr {
    font-size: 0.75rem;
  }

  .blue_bnr p {
    padding: 1rem;
  }

  .check_bnr p {
    background: url("../../img/calcium/index/sp/bg_selfcheck.png") no-repeat
        right top,
      #fff;
    background-size: 100% auto;
  }

  .check_bnr p span {
    font-size: 1.25rem;
    display: block;
    margin-left: 0;
    width: 60%;
  }
}

/***************************
 ** #footer
 */
.calcium_footer#footer {
  background: none;
}

#footer {
  margin-top: 3rem;
  border-top: 1px solid #81cced;
  padding: 2rem 0 1rem;
}

.footer_inner {
  margin-bottom: 1rem;
}

.footer_left p {
  line-height: 1.5;
}

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

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

.footer_logo img {
  width: 150px;
}

.footer_link_list {
  text-align: center;
}

.footer_link_list li {
  display: inline-block;
  font-size: 0.875rem;
}

.footer_link_list li::after {
  content: "|";
  display: inline-block;
  margin: 0 1em;
}

.footer_link_list li:last-child::after {
  display: none;
}

.footer_link_list li a {
  color: #2b2b2b;
}

.footer_link_list li a:hover {
  text-decoration: underline;
}

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

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

  .footer_left {
    flex-basis: auto;
  }

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

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

  .footer_logo {
    flex-basis: auto;
  }

  .footer_link_list li {
    font-size: 0.6875rem;
  }

  .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);
  border-radius: 10px;
  margin: 2rem 3.5% 1rem 0;
  position: relative;
}

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

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

.info_img a {
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.info_img img {
  width: 100%;
  object-fit: cover;
}

.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: #006;
}

.cate_recipe {
  background: #f66;
}

.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.75rem;
  margin-right: 1.2em;
  line-height: 1.2;
}

.tag_list li a {
  color: #09c;
}

.info_link {
  text-align: right;
}

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

  .info_list > li {
    flex-basis: auto;
    margin: 0.5rem 0 1rem 0;
  }

  .info_list .new::after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    left: -6px;
    top: -6px;
  }

  .info_text {
    padding: 1rem;
  }

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

  .info_item_ttl {
    font-size: 0.875rem;
  }

  .info_link {
    text-align: left;
  }
}

/***************************
 ** QA（トップページとQAページ共通）
 */
.qa_area {
  padding: 4rem 0;
  background: #4bd8d8;
  background: linear-gradient(to right, #4bd8d8 0%, #0099cc 100%);
  z-index: -1;
}

.qa_ttl {
  font-size: 1.6875rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}

.qa_list li {
  padding: 0.6rem 1rem;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.qa_text_ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.6rem;
  display: table;
  width: 100%;
  position: relative;
}

.qa_text_ttl::after {
  font-family: "icomoon";
  content: "\e902";
  display: inline-block;
  color: #32c092;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.qa_text_ttl.btn_active::after {
  font-family: "icomoon";
  content: "\e905";
  display: inline-block;
  color: #32c092;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.qa_text_ttl span {
  display: table-cell;
}

.qa_q {
  font-size: 1.875rem;
  color: #fff;
  box-sizing: border-box;
  width: 2em;
  height: 2em;
  line-height: 1;
  text-align: center;
  padding: 0.5em 0;
  background: url("../../img/calcium/common/bg_qa_q.png") no-repeat;
  background-size: 100% auto;
}

.qa_text_ttl span:last-child {
  padding-left: 0.5rem;
  padding-right: 1.5rem;
}

.qa_text {
  padding-left: 4rem;
  position: relative;
}

.qa_text::before {
  content: "A";
  color: #32c092;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 3rem;
}

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

.qa_link {
  text-align: right;
}

.qa_link .text_link_before,
.qa_link .text_link_before::before {
  color: #fff;
}

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

  .qa_ttl {
    font-size: 1.3125rem;
    margin-bottom: 1.5rem;
  }

  .qa_list li {
    padding: 0.3rem;
    margin-bottom: 0.6rem;
  }

  .qa_text_ttl {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .qa_text_ttl::after {
    right: 0.3rem;
    top: 0.5rem;
  }

  .qa_text_ttl.btn_active::after {
    right: 0.3rem;
    top: 0.5rem;
  }

  .qa_q {
    font-size: 1.125rem;
  }

  .qa_text_ttl span:last-child {
    padding-right: 1.2rem;
  }

  .qa_text {
    padding-left: 3rem;
    font-size: 0.75rem;
  }

  .qa_text::before {
    left: 2rem;
  }
}

/***************************
 ** 第二階層以下共通
 */

/* FV */
.calcium_under_fv {
  height: auto;
}

.under_fv {
  margin-bottom: 3rem;
  text-align: center;
}

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

/* 見出し */
.sec_ttl {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #09c;
  margin-bottom: 3rem;
  line-height: 1.5;
}

.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 {
    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;
  }
}
