@charset "utf-8";

/*---------------------------------------------
 **  ふわっと
---------------------------------------------*/
body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*---------------------------------------------
	body
---------------------------------------------*/
* {
  box-sizing: border-box;
  /*通常の記述*/
  -webkit-box-sizing: border-box;
  /*Google ChromeやSafariの機能を利用*/
  -moz-box-sizing: border-box;
  /*Firefoxの機能を利用*/
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  overflow-y: scroll;
}

/* 10px */
body {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  color: #525261;
  line-height: 1.9;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
article,
aside,
hgroup,
header,
address,
figure,
figcaption,
ul {
  margin: 0;
  padding: 0;
}

.fwb {
  font-weight: bold;
}

/*---------------------------------------------
 **  背景
---------------------------------------------*/
.bg_line {
  width: 100%;
  background: url(../img/common/bg_line.jpg) top center #fff;
  background-size: 200px 1px;
  position: relative;
  z-index: 1;
}

/*---------------------------------------------
	Anchor
---------------------------------------------*/
a {
  outline: none;
}

a:link {
  text-decoration: none;
  color: #0059b2;
}

a:visited {
  text-decoration: none;
  color: #0059b2;
}

a:hover {
  color: color-mod(#0059b2 shade(50%));
  text-decoration: none;
}

a:active {
  text-decoration: none;
  color: #0059b2;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*---------------------------------------------
	p
---------------------------------------------*/

p+p {
  margin-top: 1em;
}

p+a {
  margin-top: 1em !important;
}

p+div {
  margin-top: 1.5em !important;
}

/*---------------------------------------------
 ** ON OFF hover
---------------------------------------------*/
.hover {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

/*---------------------------------------------
 **  ページトップ
---------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

#pageTop a {
  display: block;
  padding: 5px 3px 0px 3px;
  border-radius: 30px;
  background-color: #02529c;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  background: url(../img/common/page_top.png) no-repeat;
  background-size: 100%;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.header_contact {
  position: absolute;
  top: 0;
  right: 0;
}


/*---------------------------------------------
 **   text-align
---------------------------------------------*/
.tac {
  text-align: center;
}

/*---------------------------------------------
 ** パンくずリスト
---------------------------------------------*/
nav#breadcrumbs ol {
  padding: 0;
}

nav#breadcrumbs ol li {
  display: inline;
  list-style-type: none;
  font-size: 80%;
}

nav#breadcrumbs ol li:before {
  content: " > ";
}

nav#breadcrumbs ol li:first-child:before {
  content: "";
}

/*---------------------------------------------
 **  flexbox
---------------------------------------------*/
.display_flex {
  display: flex;
}

.flex_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex_item_clounm_3 {
  width: 31.5%;
}

.flex_item_clounm_2 {
  width: 48.5%;
  margin-bottom: 25px;
}

.flex_item_clounm_4 {
  width: 23.5%;
  margin-bottom: 25px;
}

/*=================================================================================================================================*/
/**  共通部分	*/
/*=================================================================================================================================*/

/*---------------------------------------------
 ** 見出し
---------------------------------------------*/
/*---------------------------------------------
 ** h2
---------------------------------------------*/
h2 {
  font-size: 3.4rem;
  line-height: 1.5;
  margin-bottom: 1.8rem;
  color: #000000;
  letter-spacing: 5px;
}

h2 span {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 12px;
  display: block;
  max-width: 164px;
  margin: 0px auto;
  padding: 2px 0;
}

.icon_01_service {
  margin-bottom: 20px;
}

.icon_01_service::before {
  width: 55px;
  height: 50px;
  background: url(../img/common/icon/icon_01_service.png) 0 0 no-repeat;
  background-size: contain;
  content: "";
  margin: 0 auto 14px;
  display: block;
}

.icon_work {
  margin-bottom: 112px;
}

.icon_work::before {
  width: 73px;
  height: 76px;
  background: url(../img/common/icon/icon_new.png) 0 0 no-repeat;
  background-size: contain;
  content: "";
  margin: 0 auto 14px;
  display: block;
}

.icon_contact {
  color: #0072b8;
  font-size: 35px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.icon_contact::before {
  width: 105px;
  height: 148px;
  background: url(../img/common/icon/icon_contact.png) 0 0 no-repeat;
  background-size: contain;
  content: "";
  margin: 0 auto 32px;
  display: block;
}

.icon_about {
  margin-bottom: 20px;
}

.icon_about::before {
  width: 55px;
  height: 50px;
  background: url(../img/common/icon/icon_about.png) 0 0 no-repeat;
  background-size: contain;
  content: "";
  margin: 0 auto 14px;
  display: block;
}

/*---------------------------------------------
 ** h3
---------------------------------------------*/
h3 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  color: #000000;
}

/*---------------------------------------------
 ** コンテンツ全体
---------------------------------------------*/
#content {
  width: 100%;
}

#main {
  width: 100%;
  margin: 0 auto;
  padding: inherit;
}

/*---------------------------------------------
 ** セクション
---------------------------------------------*/
.section_block {
  margin-bottom: 70px;
}

.section_block:last-of-type {
  margin-bottom: 0;
}

/*---------------------------------------------
 ** ヘッダー記述
---------------------------------------------*/
#header {
  width: 100%;
}

/* ヘッダー */
.header_inner {
  padding: 37px 0 50px;
}

.header_txt {
  font-size: 12px;
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.header_txt:after {
  width: 10px;
  height: 1px;
  position: absolute;
  top: 10px;
  left: -18px;
  border-top: 1px solid #333;
  content: "";
}

.header_txt:before {
  width: 10px;
  height: 1px;
  position: absolute;
  top: 10px;
  right: -18px;
  border-top: 1px solid #333;
  content: "";
}

.header_wrapper {}

/* ロゴ */
#logo {}

#logo a {
  width: 100%;
  height: 100%;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../img/common/logo.png) no-repeat;
  background-size: 100%;
  /* z-index: 9; */
  position: relative;
}

/* メインイメージ */

.main_img {
  width: 100%;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

#index .main_img {
  background: url(../img/main_img/top_main.jpg) top center no-repeat;
}

/* 背景動画用 */

/* ----- 背景用の動画ファイル ----- */
.main-visual {
  height: 1090px;
  background-size: cover;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.main-visual video {
  margin: 0 auto;
  z-index: 1;
  height: 100%;
  width: auto;
  position: relative;
}

/* 動画の上コンテンツ */
.main_content {
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(-45deg,
      rgba(000, 000, 000, 0.4),
      rgba(17, 66, 99, 0.5));
  z-index: 1000;
}

/* メインのサービス内容3つ */
.main_wrapper {
  padding-top: 184px;
}

.service_itme {
  width: 316px !important;
  height: 63px;
  background: #fff;
  position: relative;
}

.service_itme div {
  margin-top: 8px;
}

.main_graphic img {
  width: 224px;
}

.main_web-site img {
  width: 259px;
}

.main_sign img {
  width: 237px;
}

/* 上の小さい文字 */
.main_top_span {
  font-size: 12px;
  font-family: Arial;
  color: #ffffff;
  position: absolute;
  top: -29px;
  left: 4px;
  letter-spacing: 0.7px;
}

.bg_bd {
  position: relative;
}

/* 背景の白枠 */
.bg_bd:after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 6px;
  left: 5px;
  content: "";
  z-index: -1;
  border: 1px solid #fff;
}

/* ネストにお任せください。 */
.igi {
  width: 732px;
  height: 123px;
  background: url(../img/common/omakase.png) 0 0 no-repeat;
  text-indent: -999em;
  margin: 67px auto 0;
}

/* 区切り線二重　左右に● */
.double_line {
  width: 80%;
  max-width: 980px;
  height: 3px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: relative;
  margin: 30px auto 64px;
}

.double_line:before,
.double_line:after {
  position: absolute;
  content: "●";
  font-size: 24px;
  color: #ffffff;
}

.double_line:before {
  top: -20px;
  left: -5px;
}

.double_line:after {
  top: -20px;
  right: -5px;
}

/* それぞれの矢印 */
.arrow_L {
  width: 116px;
  height: 76px;
  position: absolute;
  top: 79px;
  left: 30px;
}

.arrow_C {
  width: 14px;
  height: 42px;
  position: absolute;
  top: 66px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.arrow_R {
  width: 116px;
  height: 76px;
  position: absolute;
  top: 79px;
  right: 10px;
}

/* お任せくださいの下h */
.main_h2_01 {
  font-size: 35px;
  color: #ffffff;
  text-align: center;
  line-height: 1.9;
  letter-spacing: 2px;
  text-shadow: 1px 2px 13px #333;
}

/* header文言 */
.main_h2_01_p {
  font-size: 16px;
  color: #ffffff;
  max-width: 840px;
  margin: 0 auto;
  position: relative;
}

.main_h2_01_p:after {
  width: 55px;
  height: 68px;
  position: absolute;
  bottom: -110px;
  left: 0px;
  right: 0;
  margin: 0 auto;
  background: url(../img/common/logo_nest_white.png) no-repeat;
  background-size: contain;
  content: "";
}

/*---------------------------------------------
 ** フッター記述
---------------------------------------------*/
#footer {
  clear: both;
  position: relative;
}

/* footerロゴ */
#footer #logo {
  margin: 0px auto 56px;
  position: relative;
  top: 0;
  width: 237px;
  height: 85px;
}

#footer #logo a {
  background: url(../img/common/logo_white.png) no-repeat;
  background-size: 100%;
}

#footer #logo:after {
  width: 35px;
  height: 2px;
  position: absolute;
  bottom: -29px;
  left: 0px;
  right: 0;
  margin: 0 auto;
  background: #fff;
  content: "";
  overflow: unset;
}

/* フッターインナー */
.footer_inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 0 0 0;
  color: #fff;
}

.footer_inner a {
  color: #fff !important;
  text-decoration: none !important;
}

/* コピーライト */
#copyright {
  font-size: 0.8em;
  width: 100%;
  text-align: center;
  letter-spacing: 3px;
  padding: 18px 0 15px;
  background: #252236;
  color: #fff;
}

/*=================================================================================================================================*/
/**  TOPコンテンツ	*/
/*=================================================================================================================================*/

/* サービス */
.service_a {
  padding: 47px 0 57px 0;
  display: block;
}

.service_img {
  width: 299px;
  margin: 0 auto;
}

.service_wrapper {
  text-align: center;
}

.h3_service_01 {
  font-size: 28px;
  letter-spacing: 3px;
  line-height: 1.6;
  margin-top: 33px;
  color: #242424;
}

.h3_service_01 span {
  display: block;
  color: #0073b8;
  font-size: 25px;
  letter-spacing: 1px;
  position: relative;
}

.h3_service_01 span:after {
  width: 44px;
  height: 4px;
  margin: 18px auto 34px;
  display: block;
  background: #0073b8;
  content: "";
}

/* ボタン */

.btn_01 {
  border: 1px solid #0073b8;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  text-decoration: unset !important;
  padding: 9px 25px;
  font-weight: bold;
  color: #0073b8 !important;
  display: inline-block;
  background: #fff;
}

.btn_01:hover {
  background: #0073b8 !important;
  color: #ffffff !important;
}

/* サービス */
.service_wrapper>div,
.service_wrapper>div div {
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_wrapper>div:hover {
  background: #dfeef6;
}

.service_wrapper>div:hover .btn_01 {
  background: #0073b8 !important;
  color: #ffffff !important;
}

.service_wrapper>div a {
  text-decoration: unset !important;
}

.img_full_half {
  position: absolute;
  top: -70px;
  right: 0;
  width: 58%;
  max-width: 1080px;
}

.img_full_half_R {
  right: unset;
  top: -70px;
  left: 0;
  width: 51%;
  max-width: 1000px;
}

.por {
  position: relative;
}

.h3_service_web_01 {
  width: 392px;
  height: 70px;
  margin-bottom: 50px;
  background: url(../img/top/h3_service_web_01.png) 0 0 no-repeat;
  background-size: contain;
  color: #0677b9;
}

.h3_service_web_02 {
  width: 392px;
  height: 70px;
  margin-bottom: 50px;
  background: url(../img/top/h3_service_graphic_01.png) 0 0 no-repeat;
  background-size: contain;
  color: #0677b9;
}

.h3_service_web_03 {
  width: 392px;
  height: 70px;
  margin-bottom: 50px;
  background: url(../img/top/h3_service_sign_01.png) 0 0 no-repeat;
  background-size: contain;
  color: #0677b9;
}

.h3_service_web_01,
.h3_service_web_02,
.h3_service_web_03 {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.h3_service_bd_base:after {
  width: 42%;
  height: 1px;
  position: absolute;
  top: 99px;
  left: 0px;
  content: "";
}

.h3_service_R:after {
  width: 52%;
  left: unset;
  right: 0;
}

.web_bd_blue:after {
  background: #0677ba;
}

.graphic_bd_blue:after {
  background: #de3573;
}

.sign_bd_blue:after {
  background: #876ca6;
}

.ful_width_L {
  width: 38% !important;
}

.ful_width_R {
  width: 38% !important;
}

.bgc_white {
  background: #fff;
  padding: 90px 0 50px !important;
  margin-bottom: 0;
}

/* WEBサイト　（サービス） */
.service_list {
  font-size: 17px;
  list-style: none;
  margin-top: 35px;
}

.service_list li {
  position: relative;
  padding-left: 16px;
  padding-right: 10px;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
}

.list_base li:after {
  width: 9px;
  height: 9px;
  position: absolute;
  top: 11px;
  left: 0px;
  content: "";
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.list_blue li:after {
  background: #0677ba;
}

.list_pink li:after {
  background: #df3472;
}

.list_purple li:after {
  background: #9088d6;
}

.plan_wrapper {
  /* box-shadow */
  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.16);
  -moz-border-radius: 19px;
  -webkit-border-radius: 19px;
  border-radius: 19px;
  background: #fff;
  max-width: 457px;
}

.plan_inner {
  padding: 0px 30px 22px 30px;
}

/* CASEリボン */
.case_wrapper {
  display: block;
  position: relative;
}

.case_wrapper span {
  display: inline-block;
  position: absolute;
  top: -6px;
  left: -6px;
  margin: 0;
  padding: 11px 0 5px;
  z-index: 2;
  width: 53px;
  text-align: center;
  color: white;
  font-size: 13px;
  font-weight: bold;
  background: #fa8383;
  border-radius: 2px 0 0 0;
  line-height: 1.4;
}

.case_wrapper span:before {
  position: absolute;
  content: "";
  top: 0;
  right: -5px;
  border: none;
  border-bottom: solid 6px #d07676;
  border-right: solid 5px transparent;
}

.case_wrapper span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 26.5px solid transparent;
  border-right: 26.5px solid transparent;
  border-top: 10px solid #fa8383;
}

.case_wrapper span i {
  font-style: unset;
  font-size: 30px;
}

/* WEBSITE　青 */
.case_wrapper span {
  background: #0677ba;
}

.case_wrapper span:before {
  border-bottom: solid 6px #045a8e;
}

.case_wrapper span:after {
  border-top: 10px solid #0677ba;
}

/* グラフィック　ピンク */
.service_graphic .case_wrapper span {
  background: #df3472;
}

.service_graphic .case_wrapper span:before {
  border-bottom: solid 6px #cc3366;
}

.service_graphic .case_wrapper span:after {
  border-top: 10px solid #df3472;
}

/* 看板　紫 */
.service_sign .case_wrapper span {
  background: #9088d6;
}

.service_sign .case_wrapper span:before {
  border-bottom: solid 6px #6666cc;
}

.service_sign .case_wrapper span:after {
  border-top: 10px solid #9088d6;
}

/* CASE見出し */
.h4_plan_01 {
  padding: 21px 0px 31px 62px;
  font-size: 22px;
}

.bdb_dashed_1px {
  border-bottom: 1px dashed #444;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.h5_case_01 {
  font-size: 20px;
}

.case_ul {
  list-style: none;
}

.case_ul li {
  padding-left: 10px;
  text-indent: -0.7em;
}

.case_ul li:before {
  content: "• ";
  color: #444;
}

.price_base {
  font-size: 20px;
  text-align: center;
  padding: 0px 0;
  font-weight: bold;
  color: #333;
  letter-spacing: 3px;
  border-radius: 0px 0px 19px 19px;
}

.price_base span {
  font-size: 190%;
  letter-spacing: 0px;
}

.price_bg_blue {
  background: #d0e5f2;
}

.price_bg_pink {
  background: #ffb0c2;
}

.price_bg_purple {
  background: #ced0f9;
}

.flex_wrapper_block::before {
  content: "";
  display: block;
  width: 48.5%;
}

.sign_img {
  max-width: 1033px;
}

/*=================================================================================================================================*/
/**  トップページお知らせ	*/
/*=================================================================================================================================*/
.information {
  display: flex;
  border: 1px solid #0073b8;
  margin-bottom: 20px !important;
}

.information p {
  width: 18%;
  text-align: center;
  padding: 2%;
  background-color: #0073b8;
  font-weight: bold;
  color: #fff;
}

.information div {
  width: 80%;
  margin: 0 0 0 2% !important;
  background: #fff;
}

.information div dl {
  display: flex;
}

.information div dt {
  font-weight: bold;
  font-size: 100%;
  padding-top: 1%;
}

.information div dd {
  padding-top: 0.5%;
  font-size: 120%;
}


/* お知らせ */
.news_wrapper {
  border: 10px solid #0677ba;
  background: #fff;
  margin-bottom: 65px;
}

.news_wrapper>h3 {
  color: #fff;
  font-weight: bold;
}

.news_wrapper a {
  color: #0677ba;
}

.news_wrapper a:hover {
  text-decoration: underline !important;
}

.news_wrapper>h3 {
  font-size: 20px;
  display: block;
  width: 24.4%;
  text-align: center;
  float: left;
  margin: 0px 0 0 0;
  padding: 18px 0;
  color: #0677ba;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.news_wrapper>h3 span {
  display: block;
  font-size: 14px;
  color: #ccc;
}

.news_slid {
  padding: 14px 2em 14px 3em;
  border-left: 1px solid #0677ba;
}

.news_slid dt {
  float: left;
  padding-right: 20px;
}

.news_wrapper {
  padding: 0 0;
}



.headtitle>h2 {
  background: #0677ba;
  color: #fff;
  text-align: center;
  margin-top: 0 !important;
  margin-bottom: 30px;
  padding: 15px 0 20px 0;
}

@media (max-width: 767px) {
  .headtitle>h2 {
    font-size: 22px;
    padding: 25px 0 30px 0;
  }

  .headtitle>h2 span {
    margin: 4px auto 0;
    padding: 2px 0;
  }
}

#content {
  /* padding: 15px 10px; */
}

#blog #content {
  padding: 15px 10px;
}

/*=================================================================================================================================*/
/**  最新の制作実績	*/
/*=================================================================================================================================*/

.our_work_wrapper {
  padding: 0 19px 0 11px;
  margin-bottom: 20px;
}

.our_work_wrapper dl {
  max-width: 378px;
}

.our_work_wrapper dl dt {
  background: #fff;
}

.our_work_wrapper dl dt img {
  max-width: 378px;
  max-height: 269px;
  width: 100%;
  object-fit: cover;
  object-position: 0 0;
  height: 249px;
}

@media (max-width: 767px) {
  .our_work_wrapper dl dt img {
    height: 95px;
  }
}

.our_work_wrapper a {
  text-decoration: none !important;
  /* color: #fff; */
}

.our_work_wrapper dl dd {
  position: relative;
  box-shadow: 0px 5px 23px -3px rgba(0, 0, 0, 0.11);
  margin: -10px 8% 0;
  padding: 29px 10px 18px 10px;
  background: #fff;
}

.our_work_wrapper dl dd span {
  background: #0677ba;
  font-size: 13px;
  font-weight: bold;
  padding: 5px 15px;
  position: absolute;
  top: -8px;
  left: -20px;
  margin: 0 auto;
  width: 150px;
  color: #fff;
}

.our_work_wrapper dl dd p {
  color: #212121;
  margin-top: 5px;
}

.our_work_wrapper dl dd p:nth-of-type(2) {
  color: #545454;
  text-decoration: underline;
}

@keyframes tabAnim {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.tab_wrap {
  width: 100%;
  margin: 0px auto 53px;
}

input[type="radio"] {
  display: none;
}

.tab_area {
  font-size: 0;
  margin: 0 10px -20px;
}

.tab_area label {
  margin: 0 5px;
  display: inline-block;
  padding: 10px 0px;
  max-width: 197px;
  width: 100%;
  color: #8fc2df;
  background: #fff;
  border-right: 1px solid #0677ba;
  border-left: 1px solid #0677ba;
  border-top: 1px solid #0677ba;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: ease 0.2s opacity;
}

.tab_area label:hover {
  opacity: 0.5;
}

.tab_panel {
  width: 100%;
  opacity: 0;
  padding: 0px 0;
  display: none;
}

.tab_panel p {
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
}

.panel_area {}

#tab1:checked~.tab_area .tab1_label {
  background: #0677ba;
  color: #000;
  opacity: 1;
}

#tab1~.tab_area .tab1_label,
#tab2~.tab_area .tab2_label,
#tab3~.tab_area .tab3_label {
  top: -68px;
  position: relative;
  display: inline-block;
}

#tab1:checked~.tab_area .tab1_label,
#tab2:checked~.tab_area .tab2_label,
#tab3:checked~.tab_area .tab3_label {
  position: relative;
  top: -68px;
  color: #fff !important;
}

#tab1:checked~.tab_area .tab1_label:after,
#tab2:checked~.tab_area .tab2_label:after,
#tab3:checked~.tab_area .tab3_label:after {
  position: absolute;
  bottom: -25px;
  left: 0px;
  right: 0;
  margin: 0 auto;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 15px 0 15px;
  border-color: #0678ba transparent transparent transparent;
}

#tab1:checked~.panel_area #panel1 {
  display: block;
  animation: tabAnim ease 0.6s forwards;
  -ms-animation: tabAnim ease 0.6s forwards;
  opacity: 1;
}

#tab2:checked~.tab_area .tab2_label {
  background: #0677ba;
  color: #000;
  opacity: 1;
}

#tab2:checked~.panel_area #panel2 {
  display: block;
  animation: tabAnim ease 0.6s forwards;
  -ms-animation: tabAnim ease 0.6s forwards;
  opacity: 1;
}

#tab3:checked~.tab_area .tab3_label {
  background: #0677ba;
  color: #000;
  opacity: 1;
}

#tab3:checked~.panel_area #panel3 {
  display: block;
  animation: tabAnim ease 0.6s forwards;
  -ms-animation: tabAnim ease 0.6s forwards;
  opacity: 1;
}

.bg_gray {
  background: rgba(243, 243, 243, 0.6);
}

/*=================================================================================================================================*/
/**  スライダー	※使わない
.slider {
  width: 50%;
  margin: 100px auto;
}

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-prev:before,
.slick-next:before {
  color: black !important;
}
.slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 0.2;
}

.slick-active {
  opacity: 0.5;
}

.slick-current {
  opacity: 1;
}
*/
/*=================================================================================================================================*/

/*=================================================================================================================================*/
/**  会社概要	*/
/*=================================================================================================================================*/
.about dl {
  width: 1000px;
  margin: 0 auto;
  font-size: 18px;
  border-bottom: 1px dashed #cccccc;
  padding: 28px 0 21px;
}

.about dl dt {
  width: 30%;
  text-align: center;
  float: left;
  font-weight: bold;
}

.about dl dd {
  width: 70%;
  padding-left: 260px;
}

.map {
  width: 100%;
  height: 486px;
  margin-bottom: 40px;
}

.btn_02_gradation {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  max-width: 410px;
  display: inline-block;
  text-decoration: none !important;
  color: #fff !important;
  font-weight: bold;
  font-size: 20px;
  padding: 17px 70px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;

  line-height: 1;
  /* グラデーション */
  background: #078cdc;
  /* Old browsers */
  background: -moz-linear-gradient(left,
      #078cdc 0%,
      #0677ba 34%,
      #0068bd 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left,
      #078cdc 0%,
      #0677ba 34%,
      #0068bd 100%);
  /* Chrome10-25,Safari5.1-6 */

  background: linear-gradient(to right,
      #078cdc 0%,
      #0677ba 34%,
      #0068bd 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#078cdc', endColorstr='#0068bd', GradientType=1);
  /* IE6-9 */
}

.btn_02_gradation:hover {
  /* box-shadow */
  box-shadow: 0px 0px 50px -3px rgba(28, 28, 28, 0.5);
  margin: -5px 0 5px 0;
}

/*---------------------------------------------
 **  お問い合わせ
---------------------------------------------*/
.font_required {
  color: #b20000;
  font-weight: bold;
}

/*---------------------------------------------
 **  ふわふわアニメーション
---------------------------------------------*/
.animation_fuwa {
  animation: fuwa 4s infinite ease;
  transform-origin: 50% 50%;
  margin: 1rem 0 !important;
}

.animation_fuwa2 {
  animation: fuwa2 5s infinite ease;
  transform-origin: 50% 50%;
  margin: 1rem 0 !important;
}

.animation_fuwa3 {
  animation: fuwa3 10s infinite ease;
  transform-origin: 40% 50%;
  margin: 1rem 0 !important;
}

@keyframes fuwa {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, -15px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes fuwa2 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 20px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes fuwa3 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 30px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.blue_fuwa {
  position: absolute;
  top: -120px;
  left: -125px;
}

.blue_fuwa li {
  list-style: none;
}

.blue_fuwa li:nth-of-type(1) {
  width: 90px;
  height: 185px;
  background: url(../img/top/fuwa/blue_tri_01.png) 0 0 no-repeat;
}

.blue_fuwa li:nth-of-type(2) {
  width: 90px;
  height: 71px;
  background: url(../img/top/fuwa/blue_tri_02.png) 0 0 no-repeat;
  position: absolute;
  top: 140px;
  left: -80px;
}

.blue_fuwa li:nth-of-type(3) {
  width: 103px;
  height: 56px;
  background: url(../img/top/fuwa/blue_tri_03.png) 0 0 no-repeat;
  position: absolute;
  top: 380px;
  left: -40px;
}

.purple_fuwa_itm_01 {
  background: url(../img/top/fuwa/purple_tri_01.png) 0 0 no-repeat !important;
}

.purple_fuwa_itm_02 {
  background: url(../img/top/fuwa/purple_tri_02.png) 0 0 no-repeat !important;
}

.purple_fuwa_itm_03 {
  background: url(../img/top/fuwa/purple_tri_03.png) 0 0 no-repeat !important;
}

.pink_fuwa {
  position: absolute;
  top: -120px;
  left: unset;
  right: -65px;
}

.pink_fuwa_itm_01 {
  background: url(../img/top/fuwa/pink_tri_01.png) 0 0 no-repeat !important;
  right: 30px;
  left: unset;
}

.pink_fuwa_itm_02 {
  background: url(../img/top/fuwa/pink_tri_02.png) 0 0 no-repeat !important;
}

.pink_fuwa_itm_03 {
  background: url(../img/top/fuwa/pink_tri_03.png) 0 0 no-repeat !important;
}

.h3_price_ex {
  font-size: 35px;
  text-align: center;
  margin: 60px 0 20px;
  position: relative;
  display: inline-block;
}

.h3_price_ex:after {
  width: 40%;
  height: 1px;
  position: absolute;
  top: 30px;
  left: -55%;
  content: "";
}

.h3_price_ex:before {
  width: 40%;
  height: 1px;
  position: absolute;
  top: 30px;
  right: -55%;
  content: "";
}

.h3_price_blue {
  color: #0677ba;
}

.h3_price_blue:after {
  background: #0677ba;
}

.h3_price_blue:before {
  background: #0677ba;
}

.h3_price_pink {
  color: #df3472;
}

.h3_price_pink:after {
  background: #df3472;
}

.h3_price_pink:before {
  background: #df3472;
}

.h3_price_purple {
  color: #9088d6;
}

.h3_price_purple:after {
  background: #9088d6;
}

.h3_price_purple:before {
  background: #9088d6;
}

.link_off {
  text-decoration: none !important;
  color: #525261 !important;
}

.fish_01 {
  width: 246px;
  height: 246px;
  background: url(../img/common/fish/fish_01.png) 0 0 no-repeat;
  position: absolute;
  bottom: 10px;
  left: -90px;
}

.fish_02 {
  width: 223px;
  height: 161px;
  background: url(../img/common/fish/fish_02.png) 0 0 no-repeat;
  position: absolute;
  top: 90px;
  left: 50px;
}

.fish_03 {
  width: 168px;
  height: 143px;
  background: url(../img/common/fish/fish_03.png) 0 0 no-repeat;
  position: absolute;
  bottom: 100px;
  left: 30%;
}

.fish_04 {
  width: 223px;
  height: 224px;
  background: url(../img/common/fish/fish_04.png) 0 0 no-repeat;
  position: absolute;
  bottom: 10px;
  right: 110px;
}

.fish_05 {
  width: 138px;
  height: 174px;
  background: url(../img/common/fish/fish_05.png) 0 0 no-repeat;
  position: absolute;
  top: 70px;
  right: 129px;
}


/* お問い合わせフォーム */
.nesc {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 5px;
  margin-left: 10px;
  border-radius: 5px;
}

@media (min-width: 768px) {
  .table-res-form {
    width: 90%;
    margin: 0 auto;
  }

  .table-res-form th {
    width: 25%;
  }

}

.table-res-form td {
  padding: 1.5em 2em;
}

input,
textarea {
  padding: 0.5em 1em;
  width: 95%;
}

/*=================================================================================================================================*/
/**  グーテンベルグ対応CSS	*/
/*=================================================================================================================================*/
img {
  width: 100%;
  height: auto;
}

figcaption {
  width: 100%;
  text-align: center;
  padding: 0.5rem 1rem 1rem;
}

.wp-block-gallery {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  padding-left: 0;
}

.jfc {
  justify-content: center !important;
}

.wp-block-gallery li {
  margin: 0;
}

/* 画像 */
.wp-block-image {
  margin-bottom: 25px;
}

/* ul  */
section ul li {
  list-style-type: unset;
  margin-left: 2em;
}

section ul {
  margin-bottom: 20px;
}

.columns-1 .blocks-gallery-item {
  width: 100%;
}

.columns-2 .blocks-gallery-item {
  width: 49%;
}

.columns-3 .blocks-gallery-item {
  width: 32%;
}

.columns-4 .blocks-gallery-item {
  width: 24%;
}

.columns-5 .blocks-gallery-item {
  width: 19%;
}

.columns-6 .blocks-gallery-item {
  width: 15%;
}

/* カラム */
@media (min-width: 768px) {
  .wp-block-columns {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .has-2-columns .wp-block-column {
    width: 48%;
  }

  .has-3-columns .wp-block-column {
    width: 32%;
  }

  .has-4-columns .wp-block-column {
    width: 24%;
  }

  .has-5-columns .wp-block-column {
    width: 24%;
  }

  .has-6-columns .wp-block-column {
    width: 15%;
  }
}

/* テーブル */
.wp-block-table {
  width: 90%;
  min-width: 240px;
  border-collapse: collapse;
  margin: 0 auto 30px;
}

.wp-block-table td,
.wp-block-table th {
  padding: 1.5em 2em;
  border: 1px solid;
  word-break: break-all;
}

.wp-block-table th,
.wp-block-table td {
  border-color: #bbb;
}

.wp-block-table th {
  width: 25%;
  background: #F3F4F5;
  font-size: 110%;
}

/* ボタン */
.wp-block-button__link {
  background: url(/img/common/arrow.png) #162165 no-repeat top 21px left 25px;
  padding: 10px 30px 10px 50px;
  display: inline-block;
  color: #fff !important;
  font-weight: bold;
  font-size: 110%;
  border-radius: 8px;
}

.wp-block-button__link:hover,
.wp-block-button__link:active {
  background-color: #00698C;
}

.is-style-stripes tr:nth-child(odd) {
  background-color: #f3f4f5;
}



@media (min-width: 768px) {
  .wp-block-media-text {
    display: grid;
    _zoom: 1;
    overflow: hidden;

  }

  .wp-block-media-text__media {}

  .wp-block-media-text__content {
    padding: 15px 30px;


  }
}


/* カラー */
.has-navy-color {
  color: #171A5F;
}

.has-vivid-cyan-blue-color {
  color: #0693e3;
}

.has-light-gray-color {
  color: #eeeeee;
}

.has-cyan-blue-gray-color {
  color: #abb8c3;
}

.has-dark-gray-color {
  color: #313131;
}


.has-navy-background-color {
  background: #171A5F;
}

.has-vivid-cyan-blue-background-color {
  background: #0693e3;
}

.has-light-gray-background-color {
  background: #eeeeee;
}

.has-cyan-blue-gray-background-color {
  background: #abb8c3;
}

.has-dark-gray-background-color {
  background: #313131;
}

.cmn-fz-14 {
  font-size: 14px;
}

.cmn-plan-coution {
  display: inline-block;
  margin: 0 0 5px;
}


/*---------------------------------------------
 **  コロナによるお知らせ
---------------------------------------------*/
.news_wrapper_important {
  border-left: unset;
  border-right: unset;
  border-top: 1px solid #0677ba;
  margin-bottom: 0;
}

.news_wrapper_important .news_slid {
  padding: 14px 2em 14px 3em;
  border-left: unset;
}

.m-t-30 {
  margin-top: 30px;
}


/*---------------------------------------------
 **  制作実績アーカイブ
---------------------------------------------*/

.arc_page {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.arc_page dl {
  width: 100%;
  max-width: 378px;
  margin-bottom: 50px;
  margin-right: 23px;
}

@media (max-width: 767px) {
  .arc_page dl {
    margin-right: unset;
  }
}

.arc_page dl:nth-of-type(3n) {
  margin-right: unset;
}

.arc_page dl dt {
  width: 90%;
  margin: 0 auto 1.1rem !important;
  letter-spacing: 1px;

}

.arc_page dl dt a {
  display: block;
}


.arc_page dl dt a .box-img {
  max-height: 234px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.arc_page dl dt a:hover .box-img img {
  transform: scale(1.1);
}



.arc_page dl dt img {
  object-fit: cover;
  object-position: 0 0;
  height: 235.5px;
  transition: transform .6s ease;
}

.arc_page dl dt img.dtp {
  object-fit: contain;
  object-position: 50%;
}

.arc_page dl dt img.height-unset {
  height: unset;
}



.arc_page dl dd {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}


.our-work-section {
  margin-top: 4rem;
}


.sub-nav {
  margin: 2rem 12px 3.5rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  background: #FFF;
}



.sub-nav li {
  border: 2px solid #0C79B7;
  margin: 0;
  width: 25%;
}

.sub-nav li+li {
  border-left: unset;
}

.sub-nav.web .web,
.sub-nav.clinic .clinic,
.sub-nav.dtp .dtp,
.sub-nav.sign .sign {
  background: #0677ba;
}

.sub-nav.web .web a,
.sub-nav.clinic .clinic a,
.sub-nav.dtp .dtp a,
.sub-nav.sign .sign a {
  color: #FFF !important;
}


.sub-nav li a {
  padding: 1.3rem 2rem 1.1rem 3.5rem;
  width: 100%;
  height: 100%;
  display: block;
  font-size: 2rem;
  text-decoration: none;

  font-weight: bold;
}

.sub-nav li a:hover {
  background: #0677ba1a;
}


.m-b-30 {
  margin-bottom: 30px;
}


@media (max-width: 767px) {
  .sub-nav {
    flex-direction: column;
  }

  .sub-nav li {
    width: 100%;
  }

  .sub-nav li+li {
    border-left: 2px solid #0C79B7;
    border-top: unset;
  }

  .sub-nav li a {
    font-size: 1.6rem;
    padding: 1rem 2rem 0.8rem 2rem;
  }
}





/*---------------------------------------------
 **  モーダルウィンドウ
---------------------------------------------*/
/*--------------------------------------
モーダル
--------------------------------------*/
/* Modal Base */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 100;
}

.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 101;
}

/* Modal Content */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  z-index: 102;
}

@media screen and (max-width: 640px) {
  .modal-content {
    width: 80vw;
  }
}

.modal-inner {
  position: relative;
  background: white;
  width: 100%;
  max-height: 90vh;
  padding: 10px;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-inner img {

  height: unset !important;
}

/* Close Button */
.btn_close {
  display: block;
  position: absolute;
  top: -50px;
  right: 0;
  background-color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: black;
  text-align: center;
  font-size: 30px;
  text-decoration: none;
  line-height: 39px;
  padding-left: 0.05em;
  z-index: 105;
}


.top-gallery-btn .flex_item_clounm_2 {
  width: 38.5%;
}

@media (max-width: 767px) {
  .top-gallery-btn .flex_item_clounm_2 {
    width: 100%;
  }

}

.our_work_wrapper dl dt img.top-dtp {
  object-fit: contain !important;
  object-position: 50% !important;
}


.btn-ptn-01 {
  background: #000;
}



.price-size-s {
  font-size: 12px !important;
  display: block;
  line-height: 0;
  margin-bottom: 3em;
}