@charset "UTF-8";
/*
Theme Name: Emanon Business
Theme URI: https://wp-emanon.jp
Author: 株式会社イノ・コード
Author URI: https://innocord.co.jp/
Description: Emanon BusinessはEmanon Pro専用の子テーマです。Emanon Proの機能に加え、フロントページのデザイン機能を拡張しています。Emanon Pro本体がインストールされていないと動作しませんのでご注意ください。
Template: emanon-pro
Version: 2.0.6
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, three-columns, left-sidebar, right-sidebar, theme-options

Emanon Business用のスタイルを以下に記述
カスタマイズ機能のCSS圧縮をオンにしている場合、オフに切り替えてからスタイルを追加し、その後、再度CSS圧縮をオンにしてください。
*/


.top-wrap {
  margin-top: 40px;
}

/* タブ切り替え */
.tabs {
  display: flex;
  flex-wrap: wrap;
}
.tab_label {
  color: #f39800;
  font-weight: bold;
  border: solid 1px #f39800;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  padding: 5px 0;
  margin: 0 5px;
  text-align: center;
  border-radius: 9999px;
}
.tab_label:hover {
  opacity: 0.75;
}
.tab_content {
  flex: 100%;
  display: none;
  overflow: hidden;
}
input[name="tab_switch"] {
  display: none;
}
.tabs input:checked + .tab_label {
  color: #fff;
  background-color: #f39800;
}
.tabs input:checked + .tab_label::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #f39800 transparent transparent transparent;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  transition: all 0.3s ease 0s;
}

#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content,
#tab03:checked ~ #tab03_content,
#tab04:checked ~ #tab04_content {
  display: block;
}

.tab_content {
  position: relative;
  animation: fadeIn 1s ease;
  margin-top: 50px;
}
.tab_content_inner {
  padding: 40px;
  border: solid 1px #ddd;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.08);
  border-radius: var(--ema-border-radius-3);
  background-color: #fff;
}

h2.top_title {
  color: #999;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 200%;
  line-height: 1.2;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.12em;
  text-align: center;
}

/* tabs2 ********** */

/*タブ切り替え全体のスタイル*/
.tabs2 {
  margin-top: 50px;
  padding-bottom: 40px;
  border: solid 1px #ddd;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.08);
  border-radius: var(--ema-border-radius-3);
  background-color: #fff;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/5);
  height: 50px;
  border-bottom: 3px solid #f39800;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content2 {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#tab2-1:checked ~ #tab2-1_content,
#tab2-2:checked ~ #tab2-2_content,
#tab2-3:checked ~ #tab2-3_content,
#tab2-4:checked ~ #tab2-4_content,
#tab2-5:checked ~ #tab2-5_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs2 input:checked + .tab_item {
  background-color: #f39800;
  color: #fff;
}


/* タブ内Contents ********** */
.tab_content_description h2 {
  font-size: 180%;
  text-align: center;
  border-bottom: #999 1px solid;
  margin-bottom: 1em;
}
.tab_content_description p {
  margin: 1em 0;
}


/* for map ********** */
.map_img {
  position: relative;
}
img.img01 {
  position: absolute;
  left: 40%;
  top: 20%;
  width: 6.25%;
  height: auto;
}
img.img02 {
  position: absolute;
  left: 53.83%;
  top: 18.88%;
  width: 10.58%;
  height: auto;
}
img.img03 {
  position: absolute;
  left: 40%;
  top: 36%;
}