/* CSS Document */
:root {
  --fs-sm: clamp(13.6px, 16 / 736 * 100vw, 16px);
}

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

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: 1rem;
  padding-bottom: 1rem;
}

.site_ttl {
  flex-basis: 50%;
}

.tel {
  flex-basis: 50%;
  text-align: right;
}

.tel a {
  display: inline-block;
  font-weight: 500;
  color: #039;
  font-size: 1.5rem;
}

.tel a::before {
  font-family: "icomoon";
  content: "\e942";
  display: inline-block;
  font-weight: normal;
}

.time {
  font-size: 0.875rem;
}

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

  .site_ttl {
    flex-basis: 70%;
  }

  .tel {
    flex-basis: 30%;
  }

  .tel a {
    font-size: 1.875rem;
    padding-right: 37px;
  }

  .tel a span {
    display: none;
  }

  .time {
    display: none;
  }
}

@media screen and (max-width: 320px) {
  .site_ttl img {
    width: 80%;
  }
}

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

/* トグルボタン */
/*.navbar_toggle{
  z-index:9999;
}
.navbar_toggle_icon {
 position: relative;
 display: block;
 height: 2px;
 width: 30px;
 background: #5c6b80;
 -webkit-transition: ease .5s;
 transition: ease .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: 500;
}

.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;
  }
}
/*パンくず*/
.breadcrumbs {
  max-width: 1040px;
  margin: 0 auto;
}

.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  margin: 1em auto;
  /*padding: 0 1em;*/
}
.breadcrumbs ul li:not(:last-child):after {
  content: "＞";
  padding: 0 5px;
}

.breadcrumbs li {
  display: flex;
  font-size: var(--fs-sm);
}

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

/* 横幅いっぱい写真＋サイト幅テキストのエリア */
.set_area > * {
  flex-basis: 47.5%;
}

.set_area .set_img {
  text-align: center;
}

.img-text_area .set_img,
.text-img_area .set_text {
  margin-right: 5%;
}

.set_text p:not(:last-child) {
  margin-bottom: 2rem;
  line-height: 2;
}

@media screen and (max-width: 736px) {
  .set_area > * {
    flex-basis: auto;
    box-sizing: border-box;
  }

  .set_area .set_img img {
    width: 33%;
  }

  .text-img_area {
    flex-direction: column-reverse;
  }

  .img-text_area .set_img,
  .text-img_area .set_text {
    margin-right: 0;
  }

  .set_img {
    margin-bottom: 1rem;
  }

  .set_text {
    padding: 0 1rem;
    font-size: 0.875rem;
  }

  .set_text p:not(:last-child) {
    margin-bottom: 1rem;
  }
}

/* 項目タイトル */
.top_text_ttl {
  margin-bottom: 2rem;
  color: #039;
  font-size: 1.5rem;
  font-weight: 500;
  display: table;
}

.top_text_ttl span {
  display: table-cell;
  vertical-align: middle;
}

.top_text_ttl .number {
  font-size: 3.125rem;
  font-weight: normal;
  color: #d7d9e2;
  height: 1em;
  line-height: 1;
  padding-right: 1rem;
  border-right: 1px solid #d7d9e2;
  white-space: nowrap;
}

.top_text_ttl span:nth-child(2) {
  padding-left: 1rem;
}

@media screen and (max-width: 736px) {
  /* 項目タイトル */
  .top_text_ttl {
    margin-bottom: 1rem;
    font-size: 1.0625rem;
  }

  .top_text_ttl .number {
    font-size: 1.5rem;
    padding-right: 0.5rem;
  }

  .top_text_ttl span:nth-child(2) {
    padding-left: 0.5rem;
  }
}
/***************************
 ** 共通ボタン・リンク
 */

/* ベースになる角丸ボタンの形状 */
.base_btn {
  display: block;
  padding: 1rem;
  border-radius: 50px;
  text-align: center;
  position: relative;
}

.base_btn::before {
  font-family: "icomoon";
  content: "\e904";
  display: block;
  position: absolute;
  top: 50%;
  left: 2em;
  margin-top: -0.8em;
}

/* グレーボタンの装飾 */
.gray_btn {
  background: #eaebf0;
  color: #000;
}

.gray_btn::after {
  color: #000;
}

.gray_btn:hover {
  opacity: 0.7;
}

/* 紺色ボタンの装飾 */
.navy_btn {
  background: #039;
  color: #fff;
  font-weight: 500;
}

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

.navy_btn:hover {
  opacity: 0.7;
}

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

/* 1カラムのときの半分サイズボタン */
.col1_btn {
  max-width: 500px;
  margin: 0 auto;
}

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

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

/* グレー枠の四角いボタン */
.square_btn {
  display: block;
  border: 1px solid #dddddd;
  color: #333;
  text-align: center;
}

.square_btn:after {
  content: "";
  background: url("../img/corporate/icon_arrow_l.png") no-repeat;
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-left: 1rem;
  vertical-align: middle;
}

.square_btn:hover {
  color: #039;
  text-decoration: underline;
}

/* 下向き丸囲み矢印付きテキストリンク（ページ内リンクなど） */
/*.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: "》"
}*/

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

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

  /* 1カラムのときの半分サイズボタン */
  .col1_btn {
    max-width: 100%;
  }

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

/***************************
 ** セクション共通
 */

/* セクションの左肩の英語タイトル */
.section_en_ttl {
  display: block;
  font-size: 2.5rem;
  letter-spacing: 5px;
  color: #eaebf0;
  margin-bottom: 2rem;
}

/* 各セクションのタイトル */
.top_section_ttl {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.section_ttl_s {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 2rem;
}

.top_section_ttl_bl {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #039;
}
/* 下層ページのFV */
.sub_fv {
  width: 100%;
  height: 260px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
  text-align: center;
}
.sub_fv p {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  top: 50%;
  font-feature-settings: "palt";
  letter-spacing: 0.25rem;
  text-align: left;
}

@media screen and (max-width: 736px) {
  /* セクションの左肩の英語タイトル */
  .section_en_ttl {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  /* 各セクションのタイトル */
  .top_section_ttl {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
  }

  .section_ttl_s {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
  }

  .top_section_ttl_bl {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    color: #039;
  }

  .sub_fv {
    height: 120px;
    overflow: hidden;
  }
  .sub_fv p {
    font-size: 1.2rem;
    margin-left: 1rem;
  }
}

/***************************
 ** #footer
 */
#footer {
  margin-top: 3rem;
  padding-top: 2rem;
  background: #eaebf0;
}

.footer_inner {
  padding-bottom: 3rem;
}

.footer_logo {
  flex-basis: 27%;
  margin-right: 3%;
}

.address {
  flex-basis: 70%;
  font-size: 0.875rem;
}

.address span {
  font-size: 1rem;
  font-weight: 500;
  display: block;
}

.footer_link {
  text-align: center;
  margin-bottom: 2rem;
}

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

.footer_link li:not(:last-child) {
  margin-right: 3em;
}

.footer_link li::before {
  font-family: "icomoon";
  content: "\e901";
  display: inline-block;
  font-weight: normal;
  color: #039;
  margin-right: 0.5em;
}

.footer_link li a {
  color: #000;
}

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

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

/* フッターのお問い合わせボタン */
.foot_inquiry_btn {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 2;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: #2f55a3;
}

.foot_inquiry_btn_list li {
  flex-basis: 48%;
}

.foot_inquiry_btn_list li:first-child {
  margin-right: 4%;
}

.btn_ttl {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
}

.btn_ttl br {
  display: none;
}

.foot_inquiry_btn_list li a {
  display: block;
  background: #fff;
  padding: 0.5rem;
  text-align: center;
  border-radius: 5px;
  color: #000;
  height: 2.5rem;
}

.tel_btn {
  font-size: 0.875rem;
  line-height: 30px;
}

.tel_btn span {
  font-size: 30px;
  font-weight: 500;
  color: #039;
}

.tel_btn span::before {
  font-family: "icomoon";
  content: "\e942";
  display: inline-block;
  font-weight: normal;
  font-size: 24px;
}

.form_btn {
  font-size: 1.125rem;
  font-weight: 500;
}

.form_btn::before {
  font-family: "icomoon";
  content: "\e90b";
  display: inline-block;
  font-weight: normal;
  font-size: 1.125rem;
  color: #039;
  margin-right: 0.5em;
  line-height: 36px;
}

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

  .footer_inner {
    padding-bottom: 1rem;
  }

  .footer_logo {
    flex-basis: 33%;
    margin-right: 3%;
  }

  .address {
    flex-basis: 64%;
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .address span {
    font-size: 0.875rem;
  }

  .footer_link {
    margin-bottom: 1rem;
  }

  .footer_link li:not(:last-child) {
    margin-right: 1em;
  }

  .footer_link li::before {
    margin-right: 0.3em;
  }

  .copyright {
    font-size: 0.75rem;
  }

  /* フッターのお問い合わせボタン */
  .foot_inquiry_btn {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .foot_inquiry_btn_list li {
    flex-basis: 49%;
  }

  .foot_inquiry_btn_list li:first-child {
    margin-right: 2%;
  }

  .btn_ttl {
    font-size: 0.625rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
    min-height: 2.8em;
  }

  .btn_ttl br {
    display: inline;
  }

  .foot_inquiry_btn_list li a {
    height: 1.4rem;
  }

  .tel_btn {
    font-size: 0.75rem;
    line-height: 1;
  }

  .tel_btn span {
    font-size: 1.25rem;
    display: block;
  }

  .tel_btn span::before {
    font-size: 16px;
  }

  .form_btn {
    font-size: 0.75rem;
  }

  .form_btn::before {
    font-size: 0.875rem;
    line-height: 1;
  }
}

@media screen and (max-width: 375px) {
  /* フッターのお問い合わせボタン */
  .tel_btn {
    font-size: 0.75rem;
  }

  .tel_btn span {
    font-size: 1rem;
  }

  .tel_btn span::before {
    font-size: 12px;
  }

  .form_btn {
    font-size: 0.625rem;
  }

  .form_btn::before {
    font-size: 0.625rem;
  }

  /*フッターコンテンツの並びを縦積みに*/
  .footer_inner {
    display: block;
  }

  .footer_logo {
    margin-bottom: 1rem;
  }

  .footer_logo img {
    width: 60%;
  }

  .copyright {
    font-size: 0.625rem;
  }

  .btn_ttl {
    letter-spacing: -1px;
  }
}

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

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

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

/* FV */
.under_fv {
  height: 260px;
}

#news.under_fv {
  background: url("../img/news/img_fv_news.jpg") no-repeat;
  background-size: cover;
}

#tech .under_fv {
  background: url("../img/tech/img_fv_tech.jpg") no-repeat;
  background-size: cover;
}

#recruit .under_fv {
  background: url("../img/recruit/img_fv_recruit.jpg") no-repeat;
  background-size: cover;
}

#product .under_fv {
  background: url("../img/product/bg_fv.jpg") no-repeat;
  background-size: cover;
}

#business .under_fv {
  background-image: url("../img/business/bg_fv.jpg");
  background-size: cover;
}

#corporate .under_fv {
  background-image: url("../img/corporate/bg_fv.jpg");
  background-size: cover;
}

#csr .under_fv {
  background-image: url("../img/corporate/bg_fv_csr.jpg");
  background-size: cover;
  background-position: center center;
}

.page_ttl {
  font-size: 1.75rem;
  color: #fff;
  font-weight: 500;
  height: 100%;
  position: relative;
  line-height: 1.4;
  /* ↓とりあえず全部共通に */
  text-shadow: 0px 1px 1px #2b2b2b, 0px 0px 1px #2b2b2b, 1px 0px 1px #2b2b2b,
    0px -1px 1px #2b2b2b, -1px -1px 1px #2b2b2b, -1px 0px 1px #2b2b2b;
}

.page_ttl span {
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
}

/*#tech .under_fv .page_ttl  {
  text-shadow:0px 1px 1px #031d4c,0px 0px 1px #031d4c,1px 0px 1px #031d4c,0px -1px 1px #031d4c,-1px -1px 1px #031d4c,-1px 0px 1px #031d4c;
}

#product .under_fv .page_ttl {
  color: #2B2B2B;
}*/

/*#tech .under_fv .page_ttl span {
  margin-top: -1.2em;
}*/

/* セクション1単位 */
.base_section {
}

/* 見出し */
.sec_ttl {
}

.sec_ttl_s {
}

/* FVなしで始まるページの囲み */
.under_wrapper {
  padding-top: 2rem;
}

@media screen and (max-width: 736px) {
  /* FV */
  .under_fv {
    height: 75px;
  }

  .page_ttl {
    font-size: 1.125rem;
  }

  /* FVなしで始まるページの囲み */
  .under_wrapper {
    padding-top: 1rem;
  }
}

/***************************
 ** ニューステーブル（トップ・ニュース一覧共通）
 */
.news_table {
  width: 100%;
  border-top: 1px solid #eaebf0;
  border-bottom: 1px solid #eaebf0;
  margin-bottom: 1.5rem;
}

.news_table tr th,
.news_table tr td {
  padding: 1rem;
  border-bottom: 1px dotted #eaebf0;
}

.news_table tr th {
  white-space: nowrap;
  color: #039;
}

.news_table tr td a {
  color: #000;
}

.news_table tr td a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 736px) {
  .news_table {
    display: block;
  }

  .news_table tr th,
  .news_table tr td {
    display: block;
    padding: 0.5rem;
    text-align: left;
    font-size: 0.8125rem;
  }

  .news_table tr th {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/***************************
 ** タブ切り替え
 */
.tab_group {
  display: flex;
  justify-content: center;
}

.tab {
  flex-grow: 1;
  text-align: center;
  cursor: pointer;
}

.panel_group {
}

.panel {
  display: none;
}

.panel.is_show {
  display: block;
}

/*  */
/************************************
** IcoMoon（現在利用してない）
************************************/
@font-face {
  font-family: "icomoon";
  src: url("webfonts/icomoon/fonts/icomoon.eot?hd9e6o");
  src: url("webfonts/icomoon/fonts/icomoon.eot?hd9e6o#iefix")
      format("embedded-opentype"),
    url("webfonts/icomoon/fonts/icomoon.ttf?hd9e6o") format("truetype"),
    url("webfonts/icomoon/fonts/icomoon.woff?hd9e6o") format("woff"),
    url("webfonts/icomoon/fonts/icomoon.svg?hd9e6o#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  /* speak: none; */
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-amp-logo2:before {
  content: "\e93c";
}
.icon-amp-logo:before {
  content: "\e93b";
}
.icon-facebook-logo:before {
  content: "\e92d";
}
.icon-feedly-logo:before {
  content: "\e92e";
}
.icon-flickr-logo:before {
  content: "\e92f";
}
.icon-google-plus-logo:before {
  content: "\e930";
}
.icon-hatebu-logo:before {
  content: "\e931";
}
.icon-instagram-logo-new:before {
  content: "\e933";
}
.icon-line-logo:before {
  content: "\e935";
}
.icon-pinterest-logo:before {
  content: "\e936";
}
.icon-rss-logo:before {
  content: "\e938";
}
.icon-twitter-logo:before {
  content: "\e939";
}
.icon-youtube-logo:before {
  content: "\e93a";
}
.icon-pocket:before {
  content: "\e914";
}
.icon-line:before {
  content: "\e915";
}
.icon-hatena:before {
  content: "\e916";
}
.icon-facebook:before {
  content: "\e919";
}
.icon-twitter:before {
  content: "\e91c";
}
.icon-pinterest:before {
  content: "\e92c";
}
.icon-googleplus:before {
  content: "\ea8b";
}
.icon-instagram-new:before {
  content: "\ea92";
}
.icon-github-logo:before {
  content: "\eab0";
}
.icon-amazon:before {
  content: "\ea87";
}

/* ===============================================
# 新ショップバナー 
=============================================== */
.bnr-new-shop {
  margin-inline: auto;
  max-width: 640px;
  margin-bottom: 40px;
}

@media screen and (max-width: 736px) {
  .bnr-new-shop {
    width: 90%;
  }
}
