@charset "utf-8";
/*=======================================================
基本設定
=======================================================*/
* {
  margin: 0;
  padding: 0;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-style: normal;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  line-break: strict;
  word-wrap: break-word;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*,
*:focus,
a:focus {
  outline: none;
}
html {
  font-family: "メイリオ", Meiryo, "游ゴシック Medium", "游ゴシック体",
    "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.04em;
  -webkit-text-size-adjust: 100%;
  color: #333;
}
body,
header,
main,
footer {
  min-width: 1020px;
}
body {
  background: #fff;
}
article,
aside,
figcaption,
figure,
picture,
footer,
main,
header,
nav,
section {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
ul,
ol {
  list-style: none;
}
p,
li,
dt,
dd,
th,
td {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}
a {
  color: #107ce1;
}
a:hover,
.hp_hover:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
img {
  max-width: 100%;
  height: auto;
}
picture {
  line-height: 0;
}
picture img {
  vertical-align: top;
}
input,
button,
select,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  outline: none;
}
/*PC/SP*/
.pc {
  display: initial !important;
}
.sp {
  display: none !important;
}
@media only screen and (min-device-width: 1025px) {
  a:hover,
  .hp_hover:hover {
    opacity: 0.7;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  label:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 28px;
  }
  body,
  header,
  main,
  footer {
    min-width: 750px;
    max-width: 750px;
    width: 100%;
  }
  .sp {
    display: initial !important;
  }
  .pc {
    display: none !important;
  }
}
/*=============================
　共通デザイン
==============================*/
/*レイアウト*/
.ly_head_inner,
.ly_foot_inner,
.ly_cont,
.ly_cont_inner {
  width: 1020px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.sec_mainTtl {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3px;
}
.hp_mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: bold;
}
/*el_btn*/
.el_btn {
  padding: 3px 0 0 0;
  background: #a47e3b;
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
  width: 301px;
  height: 62px;
  font-size: 24px;
  border-bottom: 4px solid #cfcfcd;
}
.el_btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: auto 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 9px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0;
  right: 19px;
  bottom: 0;
}
/*※*/
.el_att {
  padding: 0 0 0 1rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  /*レイアウト*/
  .ly_head_inner,
  .ly_foot_inner,
  .ly_cont,
  .ly_cont_inner {
    width: 100%;
  }
  /*各セクション見出し*/
  .el_sec_mainTtl {
    font-size: 44px;
  }
  /*bl_media*/
  .bl_mediaUnit,
  .bl_media {
    display: block;
  }
  .bl_media {
    width: 100% !important;
  }
  .bl_media_imgWrapper {
    width: 100% !important;
    margin-bottom: 40px;
  }
  .bl_media_body {
    width: 100% !important;
    margin-top: 0;
  }
  .bl_media_body p {
    margin-bottom: 35px;
  }
  /*el_btn*/
  .el_btn {
    height: 96px;
    padding: 4px 10px 0 0;
    border-bottom-width: 4px;
    border-radius: 20px;
    font-size: 38px;
    width: 496px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 39px;
  }
  .el_btn::after {
    border-width: 8.5px 0 8.5px 14px;
    right: 29px;
  }
}
/*=============================
　header
==============================*/
.ly_head {
  background: none;
  height: auto;
  position: relative;
  border: none;
  box-shadow: none;
}
.ly_head_inner {
  width: 1020;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.top_img{
	text-align: center;
}
.top_img img{
	height: 820px;
	width: 100%
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc-img { display: block !important; }
.sp-img { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc-img { display: none !important; }
    .sp-img { display: block !important; }
}
@media screen and (max-width: 750px) {
  .ly_head_inner {
    width: 100%;
  }
  #intro .el_txet {
    font-size: 32px;
    letter-spacing: 0.04em;
    line-height: 1.54;
  }
  .top_img img{
	  height: auto;
	  width: 100%;
  }
}
/*=========================================
 子どもだらけの研究集団「THE LABO」の新作
 =========================================*/
#intro {
	background: url(../images/maskpan/round-bg.png) center no-repeat;
  padding-top: 40px;
  padding-bottom: 50px;
}

#intro .sec_mainTtl {
  background: url(../images/maskpan/intro-h2-bg.png) no-repeat top;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0.06em;
  margin-bottom: 45px;
  text-align: center;
  width: 630px;
  height: 130px;
  color: #fff;
  text-shadow: 1px 2px 2px #000;
  font-size: 29px;
}
#intro .labo-link a{
	text-shadow: 2px 2px 2px #fff;
}
#intro .el_txt {
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.08rem;
  line-height: 1.54;
  margin-bottom: 15px;
}
.el_txt .font_origin{
	font-family: 'Abril Fatface', cursive;
}
#intro .el_txet {
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.08rem;
  line-height: 1.54;
  margin-bottom: 12px;
}
#intro .figure_Wrapper {
  text-align: center;
}
#intro .figure_Wrapper img {
  height: 224px;
  width: 417px;
}
.tenten{
	position: absolute;
	right: -20px;
	height: 450px;
	width: auto;
	bottom: -105px;
	z-index: 2;
}
@media screen and (max-width: 750px) {
  #intro {
    padding-top: 81px;
  }
  #intro .sec_mainTtl{
	  margin-bottom: 25px;
  }
  #intro .el_sec_mainTtl {
    width: 550px;
    height: 84px;
  }
  #intro .el_txt {
    font-size: 30px;
    letter-spacing: 0.04em;
    line-height: 1.54;
    margin-bottom: 0;
  }
  #intro .el_txet {
    font-size: 30px;
    letter-spacing: 0.04em;
    line-height: 1.54;
  }
  #intro .el_imgWrapper {
    margin-top: 50px;
  }
}
/*=============================
　マスクパンは高性能
=============================*/
#pride {
  background-color: rgba(37, 30, 61, 0.925);
  padding-top: 65px;
  padding-bottom: 63px;
}
#pride .ly_cont_inner {
  background: #fff;
  width: 920px;
  padding-top: 54px;
  padding-left: 56px;
  padding-right: 56px;
}
#pride .sec_mainTtl {
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 45px;
  height: 65px;
  text-align: center;
  background: url(../images/maskpan/intro_h2_bg.png) top center no-repeat;
}
#pride .hp_mincho_only {
  font-family: "MS Mincho、ＭＳ 明朝";
}
#pride .el_txt {
  position: relative;
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.08rem;
  line-height: 1.54;
  margin-bottom: 37px;
}
#pride .bottom-none-margin{
	padding-bottom: 40px;
}

/*---------- 検証結果 ------------*/
.expt {
  background-color: #fff;
  padding: 24px 0 24px;
}
.expt_all{
	margin: 24px 14px 24px;
	padding: 0 6px 0;
	border: 3px dashed rgba(37, 30, 61, 0.925);
}
.expt_Ttl {
  font-size: 25px;
  letter-spacing: 0.06em;
  border-top: 2px solid;
  border-bottom: 2px solid;
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}
.expt_contener {
  margin-left: auto;
  margin-right: auto;
  margin-top: 55px;
  margin-bottom: 30px;
  align-items: flex-start;
  display: flex;
  justify-content: center;
}
.no_margin{
	margin-top: 0;
}
.expt_left {
  margin-right: 40px;
}
.experiment_imgWrapper {
  margin-bottom: 6px;
  position: relative;
}
.experiment_imgWrapper img {
  height: 255px;
  width: 375px;
  object-fit: cover;
}
.experiment_imgWrapper02 {
	margin-top: 25px;
	margin-bottom: 20px;
	position: relative;
	display: flex;
	justify-content: center;
}
.border {
	padding: 2px;
	border: 1px solid;
}
.ex_txt {
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.08rem;
  line-height: 1.54;
}
.ex_subTxt {
  text-align: right;
  padding-bottom: 30px;
  padding-right: 50px;
  font-size: 15px;
}
@media screen and (max-width: 750px) {
  #pride {
    padding-top: 45px;
  }
  #pride > .ly_cont_inner {
    width: 650px;
  }
  #pride .sec_mainTtl {
    margin-bottom: 45px;
    padding-bottom: 8px;
    font-size: 44px;
	height: 85px;
  }
  #pride .sp_sen01{
	background: url(../images/maskpan/intro_h2_bg_sp.png) center no-repeat;
  }
  #pride .sp_sen02{
	background: url(../images/maskpan/intro_h2_bg_sp.png) center no-repeat;
  }
  #pride .el_txt {
	text-align: left;
    font-size: 25px;
    letter-spacing: 0.06em;
    line-height: 1.46;
    margin-bottom: 45px;
  }
  #pride .expt_Ttl {
    font-size: 22px;
    text-align: center;
    width: 420px;
  }
  #pride .min_font {
    font-size: 18px;
  }
  .ex_txt .sp_font {
    font-size: 12px;
  }
}
/*=============================
　3次元パン立体フィット
=============================*/
#pride .none_bottom{
	padding-bottom: 0;
}
#pride .little_margin{
	margin-bottom: 0;
}
.margin-top {
  margin-top: 97px;
}
.min_font {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.08rem;
  line-height: 1.54;
  padding-bottom: 30px;
}

/* 共通画像サイズ */
.figure_Wrapper{
	text-align: center;
	padding-top: 10px;
	padding-bottom: 40px;
}
.figure_Wrapper img{
	height: 350px;
  	width: 487px;
}
/* 共通画像サイズ（終） */

@media screen and (max-width: 750px) {
	#pride .figure_Wrapper{
		margin-top: -55px;
	}
  }
/*=============================
　世界一幸せなマスクです
=============================*/
#siawase{
	background: url(../images/maskpan/siawase-letter-bg3.png) center no-repeat;
	margin-top: 60px;
	padding: 67px 30px 67px;
}
#about {
  background: url(../images/maskpan/flower.jpg) no-repeat;
  background-size: cover;
  margin-top: 60px;
  padding-top: 1px;
}
#siawase .sec_mainTtl{
	letter-spacing: 0.06em;
    height: 73px;
    text-align: center;
    margin-bottom: 26px;
}
#about .sec_mainTtl{
  letter-spacing: 0.06em;
  margin-bottom: 55px;
  height: 83px;
  text-align: center;
}
#about .bg_deco1, #siawase .bg_deco1{
  background: url(../images/maskpan/detail_h2_bg.png) top center no-repeat,
    url(../images/maskpan/about_h2_bg.png) bottom center no-repeat;
}
#about .bg_deco2, #siawase .bg_deco2{
  background: url(../images/maskpan/about_h2_bg.png) top center no-repeat,
    url(../images/maskpan/about_h2_bg.png) bottom center no-repeat;
}
#about .figure_Wrapper{
	padding-bottom: 67px;
}

/* -----共通画像ー大きさ------------- */
#intro .figure_Wrapper img, 
#siawase .figure_Wrapper img{
  height: 250px;
  width: 417px;
}
/* -------------------------------- */
#siawase .figure_Wrapper .height{
	height: 280px;
}
#about .figure_Wrapper img{
    height: 360px;
    width: 460px;
}
#about .el_txt, #siawase .el_txt{
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.08rem;
  line-height: 1.54;
  margin-bottom: 37px;
}
@media screen and (max-width: 750px) {
  #siawase{
	background: url(../images/maskpan/siawase-letter-bg-sp.png) center no-repeat;
  }
  #about .sec_mainTtl {
    font-size: 42px;
    height: 133px;
  }
  #siawase .sec_mainTtl{
	font-size: 42px;
    height: 86px;
  }
  #about .el_txt,
  #siawase .el_txt{
    font-size: 30px;
    letter-spacing: 0.04em;
    line-height: 1.66;
    margin-bottom: 40px;
  }
  /* メロンパンが、マスクより優れてた */
  #about .ly_cont_inner .mediam_font {
    font-size: 32px;
  }
  #about .min_font {
    font-size: 18px;
  }
}
/*=============================
　メロンパンが、マスクより優れてた
=============================*/
#about .mediam_font {
  font-size: 23px;
  margin-bottom: 0;
}

/*=============================
　購入欄
=============================*/
#cart {
  padding-top: 62px;
  padding-bottom: 10px;
}
#cart .bl_cartUnit {
  border: 2px solid #c2ad7b;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-left: 76px;
  padding-right: 76px;
  margin-bottom: 50px;
  background: #fff;
}
#cart .bl_cart_imgWrapper {
  width: 165px;
  margin-top: -20px;
}
#cart .bl_cart_body {
  width: 716px;
}
#cart .bl_cart_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
  margin-bottom: 25px;
  margin-left: -5px;
}
#cart .el_sec_mainTtl {
  font-size: 39px;
  position: relative;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: 50px;
  margin-right: 0;
}
#cart .el_sec_mainTtl::after {
  content: "【5個セット】";
  font-size: 20px;
  position: absolute;
  top: -30px;
  left: 60px;
  width: 148px;
}
#cart .el_cart_price {
  color: #df5b2d;
  font-size: 46px;
  position: relative;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
}
#cart .el_cart_price::before {
  content: "（税込）";
  display: block;
  position: absolute;
  top: -8px;
  left: 110px;
  font-size: 13px;
  letter-spacing: 0;
}
#cart .el_cart_price span {
  font-size: 30px;
  display: inline-block;
  padding-top: 10px;
  padding-top: 0;
}
#cart .el_cart_price::after {
  content: "送料 800円（全国一律）";
  font-size: 17px;
  margin-top: 5px;
  letter-spacing: 0.08em;
  color: #333;
  margin-left: 18px;
}
#cart .bl_cart_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
  margin-bottom: 18px;
  margin-left: -5px;
}
#cart .bl_cart_btnUnit {
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  flex-wrap: wrap;
}
#cart .bl_cart_btnUnit .cart-logo-img {
	width: 287px;
    position: relative;
    top: -15px;
	margin-left: 6px;
    text-align: center;
}
.cart-logo{
	height: 85px;
}
.el_btn {
  padding: 3px 0 0 0;
  background: #a47e3b;
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
  width: 301px;
  height: 62px;
  font-size: 24px;
  border-bottom: 4px solid #cfcfcd;
}
.el_btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: auto 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 9px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0;
  right: 19px;
  bottom: 0;
}
#cart .bl_cart_btnUnit .el_att {
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-left: 50px;
  margin-right: -80px;
  padding-left: 0;
}
#cart .news-7{
	margin: 0 auto;
	margin-bottom: 20px;
	font-weight: bold;
}
.el_att {
  padding: 0 0 0 1rem;
  position: relative;
}
@media screen and (max-width: 750px) {
	#cart .ly_cont_inner {
	  width: 690px;
	}
	#cart .el_sec_mainTtl {
	  font-size: 48px;
	  display: block;
	  margin-bottom: 75px;
	  padding-top: 30px;
	  margin-left: 35px;
	}
	#cart .bl_cartUnit {
	  height: 755px;
	  padding-top: 0;
	  position: relative;
	  padding-left: 67px;
	  padding-right: 67px;
	  border: 3px solid #c2ad7b;
	}
	#cart .bl_cart_imgWrapper {
	  width: auto;
	  position: absolute;
	  top: 70px;
	  left: 67px;
	}
	#cart .bl_cart_imgWrapper img {
	  height: 245px;
	  width: 178px;
	}
	#cart .bl_cart_btnUnit .cart-logo-img {
	  width: 287px;
	  position: relative;
	  top: -425px;
	  margin-left: 420px;
	  text-align: center;
	}
	#cart .bl_cart_btnUnit .el_text {
	  padding-bottom: 8px;
	}
	#cart .el_sec_mainTtl {
	  font-size: 34px;
	}
	#cart .el_sec_mainTtl::before {
	  width: 128px;
	  height: 98px;
	  top: -5px;
	  left: 212px;
	}
	#cart .el_sec_mainTtl::after {
	  font-size: 22px;
	  margin-top: 0;
	  right: 130px;
	  left: initial;
	  top: 85px;
	  width: 100%;
	  text-align: right;
  }
	#cart .el_sec_mainTtl span {
	  font-size: 28px;
	  margin-bottom: 15px;
	}
	#cart .bl_cart_head {
	  display: block;
	  position: absolute;
	  right: 87px;
	  top: 40px;
	  margin-bottom: 0;
	  width: 343px;
	  margin-top: 0;
	}
	#cart .el_cart_price {
	  font-size: 65px;
	  display: flex;
	  align-items: center;
	  text-align: right;
	  justify-content: flex-end;
	  flex-wrap: wrap;
	  padding-right: 0;
	}
	#cart .el_cart_price span {
	  font-size: 40px;
	  padding-top: 6px;
	}
	#cart .el_cart_price::before {
	  font-size: 16px;
	  right: -10px;
	  top: -7px;
	}
	#cart .bl_cart_btnUnit {
	  flex-wrap: wrap;
	  position: absolute;
	  bottom: -30px;
	  width: 550px;
	  padding-bottom: 90px;
	}
	#cart .bl_cart_btnUnit .el_txt {
	  width: 100%;
	  height: 104px;
	  padding-top: 15px;
	  padding-left: 0;
	  font-size: 28px;
	  line-height: 1.4;
	  text-align: center;
	  margin-bottom: 32px;
	}
	#cart .bl_cart_btnUnit .el_att {
	  font-size: 20px;
	  letter-spacing: 0.04em;
	  line-height: 1.41;
	  margin-left: 0;
	  margin-right: -20px;
	  margin-top: 0;
	  padding-left: 3.2em;
	  position: absolute;
	  top: 40px;
	  bottom: 50px;
	  left: 0;
	  text-align: center;
	}
	#cart .ly_cont_inner > .el_txt {
	  font-size: 28px;
	  line-height: 1.52;
	  margin-left: -10px;
	  margin-bottom: 10px;
	}
	#cart .el_att {
	  font-size: 24px;
	  margin-left: 27px;
	}
	#cart .el_cart_price::after {
	  font-size: 26px;
	  margin-left: 0;
	  display: block;
	  text-align: right;
	  margin-top: 10px;
	  width: 100%;
	}
	#cart .ly_cont_inner > .el_att {
	  font-size: 22px;
	  line-height: 1.54;
	  margin-bottom: 30px;
	  margin-left: -10px;
	}
	#cart .el_btn {
	  width: 381px;
	  height: 72px;
	  top: -255px;
	}
	#cart .news-7 {
	  position: absolute;
	  top: -50px;
	  text-align: center;
	  padding-left: 64px;
	}
  }
/*=============================
　開発中のおはなし
=============================*/
#omake {
  background: url(../images/maskpan/gray_pc.jpg) no-repeat;
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 40px;
}
#omake .sec_mainTtl {
  position: relative;
  letter-spacing: 0.06em;
  margin-bottom: 95px;
  width: 360px;
  text-align: center;
  padding-bottom: 5px;
}
#omake .sec_mainTtl img{
	position: absolute;
	top: 40px;
}
#omake .el_txt {
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.08rem;
  line-height: 1.54;
  margin-bottom: 50px;
}
#omake .figure_Wrapper{
	padding-top: 0;
	padding-bottom: 50px;
}
#omake .figure_Wrapper img{
	height: 380px;
    width: 540px;
}
#omake .big-font {
  letter-spacing: 0.08rem;
  text-align: center;
  margin-bottom: 45px;
  line-height: 2.1;
  font-size: 31px;
  font-weight: bold;
  color: #000;
  text-align: center;
}
#omake .kennsyou-font{
	text-align: center;
	margin-top: 15px;
}
#omake .none-margin {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	background: url(../images/maskpan/book.png) center no-repeat;
	font-size: 24px;
	margin-bottom: 27px;
	padding-top: 0;
}
@media screen and (max-width: 750px) {
  #omake {
    background: url(../images/maskpan/gray_sp.png) center no-repeat;
    background-size: cover;
    height: 1270px;
  }
  #omake .sec_mainTtl {
    letter-spacing: 0.06em;
    margin-bottom:85px;
    height: 83px;
    text-align: center;
    font-size: 40px;
  }
  #omake .sec_mainTtl img{
	top: 65px;
}
  #omake .el_txt {
    font-size: 30px;
    letter-spacing: 0.04em;
    line-height: 1.66;
	margin-bottom: 70px;
  }
  #omake .omake_content {
    margin-left: 0;
}
#omake .figure_Wrapper{
	margin-bottom: 45px;
}
#omake .figure_Wrapper img {
    height: 400px;
    width: 560px;
}
  #omake .big-font {
    font-size: 34px;
	margin-top: 10px;
  }
  #omake .kennsyou-font {
    font-size: 20px;
  }
  #omake .none-margin {
	font-size: 28px;
	background-size: 440px;
	margin-top: 15px;
 }
}
/*=============================
　footer
=============================*/
main {
	min-height: calc(100vh - 285px /*header + footerの高さ*/);
  }
  .ly_foot {
	background: #1c243a;
	padding-top: 50px;
  }
  .ly_foot_inner {
	padding-bottom: 40px;
  }
  /*ナビ*/
  .bl_foot_gloNav {
	width: 910px;
	margin-left: auto;
	margin-right: auto;
  }
  .bl_foot_gloNav_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  .bl_foot_gloNav_inner li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	text-decoration: underline;
  }
  .bl_foot_gloNav_inner li::before {
	content: "";
	display: block;
	justify-content: center;
	margin-right: 7px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5.5px 0 5.5px 9px;
	border-color: transparent transparent transparent #c5b283;
  }
  .bl_foot_gloNav_inner a {
	color: #fff;
  }
  /*コピーライト*/
  .bl_foot_copyright {
	width: 100%;
	height: 35px;
	background: #000;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
  }
  .bl_foot_copyright small {
	color: #fff;
	font-size: 12px;
	font-family: Verdana; /* Android */
  }
  @media screen and (max-width: 750px) {
	.ly_foot_inner {
	  padding-bottom: 20px;
	}
	.bl_foot_gloNav {
	  width: initial;
	}
	.bl_foot_gloNav_inner {
	  display: block;
	}
	.bl_foot_gloNav_inner li {
	  margin-bottom: 30px;
	  justify-content: center;
	}
	.bl_foot_gloNav_inner li::before {
	  margin-right: 10px;
	  border-width: 8.5px 0 8.5px 12px;
	}
	.bl_foot_copyright {
	  height: 48px;
	}
	.bl_foot_copyright small {
	  font-size: 16px;
	}
  }
  /* Edge */
  _:-ms-lang(x)::backdrop {
  }
  
  /* firefox */
  _:lang(x)::-moz-placeholder {
  }
  
  /* Mac,iPad Safari */
  @media only screen and (min-device-width: 768px) {
	_::-webkit-full-page-media,
	_:future,
	:root .el_label,
	_::-webkit-full-page-media,
	_:future,
	:root .bl_vertPosts_date,
	_::-webkit-full-page-media,
	_:future,
	:root .hp_strikethrough {
	  padding-top: 0;
	}
	_::-webkit-full-page-media,
	_:future,
	:root .el_btn {
	  padding-top: 2px;
	}
	_::-webkit-full-page-media,
	_:future,
	:root .el_triangleLink::before {
	  top: 4px;
	}
	_::-webkit-full-page-media,
	_:future,
	:root .bl_catLabel {
	  padding-bottom: 11px;
	}
  }
  
/* Mac Ssafari */
 @media only screen and (min-device-width: 1025px) {
　_::-webkit-full-page-media,
　_:future,
  :root {
  }
}
  
/* iPad Safari */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	_::-webkit-full-page-media,
	_:future,
	:root {
	}
  }