/* タブレット1,024px以下 　スマホ480px以下*/
/* ============================================================
cssの初期化
============================================================ */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html, body, h1, h2, h3, h4, h5, h6, address, div, blockquote, p, pre, ul, ol, li, dl, dt, dd, hr, table, caption, th, td, span, em, strong, dfn, code, samp, kbd, var, cite, abbr, acronym, sub, sup, q, br, ins, del, a, img, object, iframe {
	font-weight: normal;
  margin: 0;
  padding: 0;
	font-feature-settings: "palt";
	letter-spacing: .05em;
}
body {
  font-size: clamp(0.75rem, 0.25rem + 1.07vw, 1.25rem);/* 12px:750 16px:1500くらい下*/
  color: #333;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
	line-height: 1.8;
}
a {
  text-decoration: none;
  color: #333;
}
a:hover {
  color: #199be1;
}
a img {
  opacity: 1;
  -ms-filter: "alpha(opacity=100)";
  filter: alpha(opacity=100);
}
a:hover img {
  opacity: 0.7;
  -ms-filter: "alpha(opacity=70)";
  filter: alpha(opacity=70);
}
img {
  max-width: 100%;
  height: auto;
}
/*============================
 webフォント
============================*/
/* 貂明朝 */
.ten {
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
}
/*============================
 パーツ
============================*/
.contentWrap {
	max-width: 1200px;
	width: 96%;
	margin: auto;	
}
.contentWrap02 {
	max-width: 1600px;
	width: 96%;
	margin: auto;	
}
/* フォントサイズ pc */
.font60 {
  font-size: 60%;
}
.font70 {
  font-size: 70%;
}
.font80 {
  font-size: 80%;
}
.font90 {
  font-size: 90%;
}
.font100 {
  font-size: 100%;
}
.font120 {
  font-size: 120%;
}
.font130 {
  font-size: 130%;
}
.font140 {
  font-size: 140%;;
}
.font160 {
  font-size: 160%
}
.font180 {
  font-size: 180%;
}
.font200 {
  font-size: 200%;
}
.font220 {
  font-size: 220%;
}
.text-white {
	color: #fff;
}
.color01 {
	color: #0074bf;
}
/* テキスト位置*/
.text-center{text-align:center!important}/* ずっと中央 */
.text-center_c_l{text-align:center!important}/* 中 中 左 */
.text-center_l_l{text-align:center!important}/* 中 左 左 */
.text-left_l_c{text-align:left!important}/* 左 左 中 */
.text-left_c_c{text-align:left!important}/* 左 中 中 */
/* 中央寄せ*/
.chuou{margin-right:auto!important;margin-left:auto!important}
/* パディング　section */
.pdn_sec {
  padding-top: 80px;
  padding-bottom: 80px;
}
.pdn_sec02 {
  padding-top: 100px;
  padding-bottom: 100px;
}
/* パディング　下 */
.pdn01 {
  padding-bottom: 40px;
}
/* マージン　section */
.mgn_sec {
  margin-top: 80px;
  margin-bottom: 80px;
}
/* マージン　auto */
.mgn_auto {
  margin-left: auto;
  margin-right: auto;
}
/* マージン　上 */
.mgnt10 { margin-top: 10px; }
.mgnt20 { margin-top: 20px; }
.mgnt30 { margin-top: 30px; }
.mgnt40 { margin-top: 40px; }
.mgnt50 { margin-top: 50px; }
.mgnt60 { margin-top: 60px; }
.mgnt70 { margin-top: 70px; }
.mgnt74 {
  margin-top: 74px;
}
/* マージン　上下 */
.mgntb01 {
  margin-top: 40px;
  margin-bottom: 40px;
}
/* 幅 */
.wid100 {
  width: 100%;
}
.wid96 {
  width: 96%;
}
.wid90 {
  width: 90%;
}
.wid80 {
  width: 80%;
}
.wid70 {
  width: 70%;
}
.wid60 {
  width: 60%;
}
.wid50 {
  width: 50%;
}
.wid40 {
  width: 40%;
}
.wid30 {
  width: 30%;
}
.wid20 {
  width: 20%;
}
.wid10 {
  width: 10%;
}
.max940 {
  max-width: 940px;
}
.max1200 {
  max-width: 1200px;
}
/* 表示 非表示 */
.pc_only{display:block!important;}
.tb_only{display:none!important;}
.sp_only{display:none!important;}
/* ボタン 01 */
.btn01 {
  display: inline-block;
  padding: 15px 20px 15px 60px;
  font-size: 90%;
	font-weight: bold;
  color: #fff;
  background: #0074bf;
  border-radius: 5px;
}
.btn01::after {
  content: "\f0da";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
  margin: 0 0 0 40px;
  color: #fff;
}
.btn01:hover {
  background: #199be1;
  color: #fff;
}
/* 下から上へ出現 */
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
/* 左から出現 */
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}
/* 右から出現 */
.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_right.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}
/*============================
kv
============================*/
.kv {
  position: relative;
  height: 985px;
  background: url(../images/kv_img.jpg) no-repeat center center;
}
.kv p {
  position: absolute;
  top: 180px;
  left: 0;
  right: 0;
  font-size: 4.5vw;
  line-height: 1.4;
  color: #0074bf;
 }
@media screen and (max-width: 766px) {
.kv {
  position: relative;
  height: 704px;
  background: url(../images/kv_img_s.jpg) no-repeat center center;
  background-size: cover;
}
.kv p {
  position: absolute;
  top: 140px;
  left: 0;
  right: 0;
  font-size: 5.5vw;
 }
}
/*============================
ヘッダー
============================*/
#top-head {
  width: 100%;
  height: 110px; /*  ヘッダーの高さ */
  background: #fff;
  opacity: 0.9;
  display: flex;
  position: fixed;
  z-index: 999;
  top: 0;
}
#top-head .inner {
  position: relative;
  width: 94%;
  margin: 0 auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
h1 {
}
.inner h1 a {
  text-decoration: none;
}
h1 a::before {
  content: "";
  display: inline-block;
  width: 58px;
  height: 58px;
  background: url("../images/logo_header.png") no-repeat;
  background-size: contain;
  margin-right: 10px;
  margin-bottom: 10px;
  vertical-align: middle;
}
/*header_info*/
.header_info p {
  display: flex;
  flex-direction: row;
 justify-content: end;
  align-items: center;
  text-align: right;
}
.header_info p span {
  margin-left: 20px;
  font-size: 130%;
}
.header_info p span::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 26px;
  background: url("../images/tel_ico.png") no-repeat;
  background-size: contain;
  margin-right: 5px;
  margin-bottom: 10px;
  vertical-align: middle;
}
.header_info .tel_sp {
  display: none;
}
#top-head nav ul {
  display: flex;
  list-style-type: none;
  align-items: center;
  justify-content: end;
}
/*nav link style*/
#top-head nav ul li a {
  margin-left: 1em;
  text-decoration: none;
  vertical-align: middle;
  font-size: 90%;
}
#top-head nav ul li a::before {
  content: "／";
  color: #0074bf;
  margin-right: 5px;
}
#top-head nav ul li a:hover {
  color: #0074bf;
}
#nav_toggle {
  display: none;
}
main {
  margin-top: 110px; /* ヘッダーの高さ分の余白 */
}
/*=============================================================================================================
ヘッダーナビ　レスポンシブ
=============================================================================================================*/
@media screen and (max-width:1430px) {
#top-head nav ul li a {
  padding: 10px;
	font-size: 90%;
}
}
/*=============================================================================================================
バーガーメニューと電話番号 1250pxから
=============================================================================================================*/
@media screen and (max-width:1250px) {
  #top-head {
  height: 80px; /*  ヘッダーの高さ */
    padding-top: 7px;
}
  /*hamburger menu style*/
  #nav_toggle {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 22px;
    right: 10px;
    z-index: 100;
  }
  #nav_toggle div {
    position: relative;
  }
  /*hamburger menu close style*/
  #nav_toggle span {
    display: block;
    height: 2px;
    background: #404040;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  #nav_toggle span:nth-child(1) {
    top: 0px;
  }
  #nav_toggle span:nth-child(2) {
    top: 10px;
  }
  #nav_toggle span:nth-child(3) {
    top: 20px;
  }
  /*hamburger menu open style*/
  .open #nav_toggle span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  /*nav style*/
  #top-head nav {
    display: none;
    position: absolute;
    top: 73px;
    left: -3%;
    width: calc(100% + 6%);
    height: 1040px;
    margin: auto;
    background: #fff;
    z-index: 999;
  }
  #top-head nav ul {
    display: block;
    width: 80%;
  }
  #top-head nav ul li {
    text-align: center;
    border-bottom: 1px solid #dcdcdc;
  }
  #top-head nav ul li:last-child {
    border: none;
  }
  /*nav link style*/
  #top-head nav ul li a {
    display: block;
  }
  /* 電話番号 */
.header_info .tel_pc {
  display: none;
}
.header_info .tel_sp {
    display: block;
  }
.header_info .tel_sp a {
    position: fixed;
    right: calc(55px + 4%);
    top: 20px;
    display: block;
    text-align: center;
    width: 45px;
  height: 40px;
    z-index: 99;
    text-decoration: none;
    background: #39c;
    color: #fff;
    border-radius: 3px;
  }
.header_info .tel_sp a::before {
    content: "\f2a0";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
    display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -2px;
    font-size: 24px;
  transform: rotate(-45deg);
  }
  main {
  margin-top: 80px; /* ヘッダーの高さ分の余白 */
}
}
/*============================
フッター
============================*/
footer {
}
.footer_sns {
	display: flex;
	justify-content: center;
  width: 180px;
  margin: 0 auto;
}
.footer_sns figure {
	width: calc(100% / 2 - 20px);
  padding: 10px;
}
.footer01{
  padding: 90px 0;
  background: url("../images/footer_bg.jpg");
}
.f_logo {
  font-size: 200%;
  text-align: center;
  margin-bottom: 26px;
}
.f_logo::before {
  content: "";
  display: inline-block;
  width: 58px;
  height: 58px;
  background: url(../images/logo_header.png) no-repeat;
  background-size: 58px 58px;
  vertical-align: middle;
  line-height: 1.4;
  margin-right: 15px;
  margin-top: -15px;
}
.footer_contact {
  max-width: 800px;
  width: 96%;
  margin-top: 30px;
}
.footer_contact > div {
  width: calc(100% / 2 - 40px);
  margin: 0 20px;
}
.f_mail {
  display: flex;
  height: 80px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  background: #0074bf;
  font-weight: bold;
  border-radius: 14px;
}
.f_mail:hover {
  color: #fff;
  background: #666;
}
.f_mail::before {
    content: "\f0e0";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
    display: inline-block;
  margin: -2px 10px 0 0;
  vertical-align: middle;
    font-size: 30px;
}
.f_tel {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  margin-bottom: 10px;
  background: #199be1;
  border-radius: 14px;
}
.f_tel:hover {
  color: #fff;
  background: #666;
}
.f_tel::before {
    content: "\f2a0";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
    display: inline-block;
  margin: -2px 5px 0 0;
    font-size: 30px;
  transform: rotate(-45deg);
}

/*=============================================================================================================
フッターナビ 
=============================================================================================================*/
.f_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 40px 0 30px;
}
.f_nav li {
  margin-right: 20px;
}
.f_nav li::before {
  content: "\f0da";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
  margin: -2px 5px 0 0;
  color: #a5daff;
}
.f_nav a:hover {
  color: #0074bf;
}
/*=============================================================================================================
フッターナビ 1250pxから
=============================================================================================================*/
@media screen and (max-width:1250px) {
.f_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  flex-direction:column;
  border-bottom:none;
	padding: 0;
}
.f_nav li {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    font-weight: bold;
    text-align: center;
	border-bottom: solid 1px #fff;
}
.f_nav li::before {
  content:none;
  padding-right: 0;
}
.f_nav li a {
	display: block;
    padding:20px 10px;
    background: #e4f1fa;
}
.f_nav li a:hover {
  color: #fff;
  background: #a3cbeb;
}
}
.copyright {
  padding: 20px 0 40px;
}
/*============================
トップページ
============================*/
.index_ttl {
  margin-bottom: 50px;
  padding-top: 60px;
  font-size: 200%;
  font-weight: bold;
  background: url(../images/index_ttl_bg.png) no-repeat center top;
  background-size: 62px auto;
}
@media screen and (max-width:599px) {
.index_ttl {
  margin-bottom: 30px;
  padding-top: 45px;
  background-size: 45px auto;
}
}
/* top01 */
#top01 .top01_wrap {
  width: 100%;
  padding: 80px 0;
  display: flex;
  flex-direction: row-reverse;
  background: url(../images/index01_bg.jpg) no-repeat right -80px;
}
#top01 .top01_img {
  width: 50%;
}
#top01 .top01_img img {
  border-radius: 0 30px 30px 0;
}
#top01 .top01_txt {
  width: calc(100% - 50% - 80px);
  margin: 0 2% 0 80px ;
}
#top01 h2 {
  margin-bottom: 40px;
  color: #0074bf;
}
#top01 .top01_txt p {
  margin-bottom: 40px;
  line-height: 2;
}
#top01 .top01_txt figure,
#top01 .top01_txt div {
  text-align: right;
}
#top01 .top01_txt figure img {
  max-width: 250px;
  width: 100%;
}
.top01_thumb {
  display: flex;
}
.top01_thumb li {
  width: calc(100% / 5);
	line-height: 0;
  list-style: none;
}
@media screen and (max-width:1250px) {
#top01 .top01_wrap  {
  padding: 60px 0;
  background-size: 300px;
}
#top01 .top01_txt {
  width: calc(100% - 50% - 40px);
  margin: 0 2% 0 40px;
}
#top01 h2 {
  margin-bottom: 20px;
  color: #0074bf;
}
#top01 .top01_txt p {
  margin-bottom: 20px;
}
#top01 .top01_txt figure img {
  max-width: 200px;
  width: 100%;
}
}
@media screen and (max-width:767px) {
#top01 .top01_wrap {
  margin: 0;
  padding: 40px 0;
  flex-direction: column;
  background-size: 250px;
}
#top01 .top01_img {
  width: 100%;
  margin: 30px 0 0;
  padding: 0;
  line-height: 0;
}
#top01 .top01_img img {
  border-radius: 0;
  margin: 0;
}
#top01 .top01_txt {
  width: 96%;
  margin: 0 auto;
}
#top01 h2 {
  margin-bottom: 20px;
  text-align: center;
}
#top01 .top01_txt p {
  margin-bottom: 30px;
  text-align: center;
}
#top01 .top01_txt figure,
#top01 .top01_txt div {
  text-align: center;
}
#top01 .top01_txt figure img {
  max-width: 200px;
  width: 90%;
}
 #top01 .top01_thumb {
    flex-wrap: wrap;
   margin: -40px 0 0;
}
.top01_thumb li {
  width: calc(100% / 3);
  margin: 0;
  line-height: 0;
}
.top01_thumb li:nth-of-type(4),
.top01_thumb li:nth-of-type(5) {
  width: calc(100% / 2);
  line-height: 0;
}
}
/* top02 */
#top02 {
  width: 100%;
  margin: 0;
  padding: 80px 0;
  background: #e4f1fa;
}
#top02 .top02_wrap {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
#top02 .top02_wrap .top02_wrap_item {
  width: calc(100% / 2 - 80px);
  margin: 40px;
  padding: 40px;
    background: #fff;
  border-radius: 10px;
}
#top02 .top02_wrap .top02_wrap_item .top02_icon {
  margin: -100px 0 10px;
}
#top02 h3 {
  margin-bottom: 30px;
  font-size: 160%;
  font-weight: bold;
  line-height: 1.6;
}
#top02 h3 span {
  display: inline-block;
  padding: 2px 20px 0;
  font-size: 40%;
  font-weight: bold;
  color: #fff;
  background: #199be1;
  border-radius: 100px;
}
#top02 h3 span em {
  margin-left: 3px;
  font-size: 140%;
  font-style: normal;
  font-weight: bold;
  vertical-align: middle;
}
@media screen and (max-width:767px) {
#top02 .top02_wrap .top02_wrap_item {
  width: calc(100% / 2 - 40px);
  margin: 0 20px 80px;
  padding: 30px;
}
}
@media screen and (max-width:599px) {
  #top02 {
  padding: 40px 0;
}
#top02 .top02_wrap {
  flex-direction: column;
}
#top02 .top02_wrap .top02_wrap_item {
  width: 90%;
  margin: 2% auto 30px;
  padding: 20px;
}
#top02 .top02_wrap .top02_wrap_item .top02_icon {
  margin: -50px auto 0;
  max-width: 80px;
}
#top02 h3 {
  margin-bottom: 30px;
  font-size: 160%;
  font-weight: bold;
  line-height: 1.6;
}
#top02 h3 span {
  display: inline-block;
  padding: 2px 20px 0;
  font-size: 40%;
  font-weight: bold;
  color: #fff;
  background: #199be1;
  border-radius: 100px;
}
#top02 h3 span em {
  margin-left: 3px;
  font-size: 140%;
  font-style: normal;
  font-weight: bold;
  vertical-align: middle;
}
}
/* top03 */
#top03 {
  width: 100%;
  margin: 0;
  padding: 80px 0;
}
#top03 .top03_wrap {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto 50px;
  display: flex;
  flex-wrap: wrap;
}
#top03 .top03_wrap .top03_wrap_item {
  width: calc(100% / 3 - 6%);
  margin: 0 3%;
    background: #fff;
  border-radius: 10px;
}
#top03 .top03_wrap .top03_wrap_item img {
	border-radius: 10px;
}
#top03 .top03_wrap .top03_wrap_item h3 {
	font-weight: bold;
}
#top03 .top03_wrap .top03_wrap_item h3::before {
  content: "／";
  color: #199be1;
  margin-right: 7px;
}
#top03 .top03_wrap .top03_wrap_item h3::after {
  content: "／";
  color: #199be1;
  margin-left: 7px;
}
@media screen and (max-width:599px) {
#top03 {
  padding: 40px 0;
}
#top03 .top03_wrap {
	margin-bottom: 20px;
	flex-direction: column;
}
#top03 .top03_wrap .top03_wrap_item {
  width: 90%;
  margin: 0 auto 30px;
}
}
/* top04 */
#top04 {
  width: 100%;
  margin: 0;
  padding: 100px 0;
	background: url(../images/index_faq_bg01.jpg) center center;
}
#top04 .top04_inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
	padding: 50px 50px 80px;
	background: rgba(255,255,255,0.9);
}
#top04 h2 {
	position: relative;
	margin: 0 0 50px;
}
#top04 h2::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -20px;
	display: block;
	width: 75px;
	height: 3px;
	margin: 0 auto;
	background: #199be1;
}
#top04 ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#top04 ul li {
  width: calc(100% / 2 - 6%);
  margin: 0 3%;
	padding: 20px;
	border-bottom: 1px solid #ccc;
	list-style: none;
}
#top04 ul li::before {
  content: "";
  display: block;
	float: left;
  width: 49px;
  height: 39px;
  background: url("../images/question_ico.png") no-repeat;
  background-size: contain;
  margin-right: 15px;
  margin-bottom: 10px;
  vertical-align: middle;
}
@media screen and (max-width:599px) {
#top04 {
  padding: 60px 0;
}
#top04 .top04_inner {
	padding: 20px 10px;
}
#top04 h2 {
	position: relative;
	margin: 0 0 30px;
}
#top04 h2::after {
	content: "";
	position: absolute;
	bottom: -10px;
	width: 50px;
}
#top04 ul {
	flex-direction: column;
}
#top04 ul li {
  width: 100%;
  margin: 0;
	padding: 10px;
}
#top04 ul li::before {
  width: 35px;
  height: 28px;
  background-size: contain;
}
}
/* top05 */
#top05 {
  width: 100%;
  margin: 0;
  padding: 80px 0;
}
.top05_wrap {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto 50px;
  display: flex;
  flex-wrap: wrap;
}
.top05_wrap .top05_wrap_item {
  width: calc(100% / 3 - 6%);
  margin: 0 3% 40px;
    background: #fff;
  border-radius: 10px;
}
.top05_wrap .top05_wrap_item img {
  max-width: 100%;
  width: 100%;
	border-radius: 10px;
}
.top05_wrap .top05_wrap_item h3 {
  margin: -20px 0 0;
	line-height: 1.4;
	font-size: 100%;
	font-weight: bold;
}
@media screen and (max-width:599px) {
#top05 {
  padding: 40px 0;
}
.top05_wrap {
	justify-content: center;
	margin-bottom: 20px;
	}
.top05_wrap .top05_wrap_item {
  width: calc(100% / 2 - 2%);
  margin: 0 1% 20px;
}
}
/*============================
当店について
============================*/
#about_intro {
	margin-bottom: 80px;
}
#about_intro .itemBox {
  position: relative;
	display: flex;
 flex-direction: row-reverse; 
	justify-content: center;
	align-items: center;
	margin-bottom: 80px;
}
#about_intro .itemBox:before {
    content: "";
    display: block;
    padding-top: 33%; /* 1:1 */
}
#about_intro .itemBox .about_intro_img {
	position: relative;
  width: 50%;
  margin: 0;
  display: grid;
  place-items: center center;
  position: absolute;
  top: 0;
  right: 0;
}
#about_intro .itemBox .about_intro_img img {
	border-radius: 10px;
}
#about_intro .about_intro_txt {
	position: relative;
	z-index: 2;
  width: 55%;
  margin-top: 10px;
  margin-right: 45%;
  padding: 50px;
	background: #e4f1fa;
  box-sizing: border-box;
}
#about_intro .about_intro_txt p {
  margin-bottom: 1em;
}
#about_intro .about_intro_txt p:last-of-type {
  margin-bottom: 0;
}
.about_name {
	margin-top: 3em;
	font-size: 80%;
	text-align: right;
}
.about_name strong {
	font-size: 150%;
	font-weight: bold;
}
#about_advantage {
	margin-bottom: 120px;
}
.about_advantage_item img {
	border-radius: 10px;
}

@media screen and (max-width:599px) {
#about_intro {
	margin-bottom: 40px;
}
#about_intro .itemBox {
 flex-direction: column; 
	margin-bottom: 0;
}
#about_intro .itemBox:before {
    content: inherit;
}
#about_intro .itemBox .about_intro_img {
  display: block;
  position: relative;
  top: 0;
  right: 0;
	width: 96%;
}
#about_intro .about_intro_txt {
	width: 90%;
  margin-top: -40px;
  margin-right: 0;
  padding: 20px;
}
#about_advantage {
	margin-bottom: 120px;
}
.about_advantage_item {
  width: 85%;
	margin: 0 auto 30px;
}
}
/*============================
業務内容
============================*/
#works01 {
	margin-bottom: 80px;
}
#works01 .itemBox {
  position: relative;
	display: flex;
 flex-direction: row; 
	justify-content: center;
	align-items: center;
	margin-bottom: 120px;
}
#works01 .itemBox:nth-of-type(even) {
 flex-direction: row-reverse;
}
#works01 .itemBox:before {
    content: "";
    display: block;
    padding-top: 33%; /* 1:1 */
}
#works01 .itemBox .works01_img {
	position: relative;
  width: 50%;
  margin: 0;
  display: grid;
  place-items: center center;
  position: absolute;
  top: 0;
  right: 0;
}
#works01 .itemBox:nth-of-type(even) .works01_img {
  right: inherit;
  left: 0;
}
#works01 .itemBox .works01_img img {
	border-radius: 10px;
}
#works01 .works01_txt {
	position: relative;
	z-index: 2;
  width: 55%;
  margin-top: 10px;
  margin-right: 45%;
  padding: 50px;
	background: #e4f1fa;
  box-sizing: border-box;
}
#works01 .itemBox:nth-of-type(even) .works01_txt {
  margin-right: 0;
  margin-left: 45%;
}
#works01 .works01_txt h3 {
  margin-bottom: 30px;
  color: #0074bf;
}
@media screen and (max-width:599px) {
 #works01 {
	margin-bottom: 0;
}
#works01 .itemBox {
 flex-direction: column;
	margin-bottom: 80px;
}
#works01 .itemBox:nth-of-type(even) {
 flex-direction: column;
}
#works01 .itemBox:before {
    content: inherit;
}
#works01 .itemBox .works01_img {
	position: relative;
  width: 96%;
  margin: 0;
  display: inherit;
}
#works01 .works01_txt {
	position: relative;
	z-index: 2;
  width: 90%;
  margin: -40px auto;
  padding: 20px;
}
#works01 .itemBox:nth-of-type(even) .works01_txt {
  margin: -40px auto;
}
#works01 .works01_txt h3 {
  margin-bottom: 10px;
}
}
/*============================
会社概要
============================*/
#company table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
#company table th,
#company table td {
  padding: 10px 20px;
  border: 1px solid #ccc;
}
#company table th {
  width: 25%;
  text-align: left;
  background: #e4f1fa;
}
#company table li {
  list-style: none;
}
@media screen and (max-width:599px) {
#company table th,
#company table td {
  display: block;
  padding: 10px;
  border-bottom: none;
}
#company table th {
  width: 100%;
}
  #company table tr:last-child td {
    border-bottom: 1px solid #ccc;
  }
}

/*============================
よくある質問
============================*/
#faq01 ul {
  margin-bottom: 120px;
}
#faq01 ul li {
  margin: 0;
	padding: 20px;
	border-bottom: 1px solid #ccc;
	list-style: none;
}
#faq01 ul li::before {
  content: "";
  display: block;
	float: left;
  width: 49px;
  height: 39px;
  background: url("../images/question_ico.png") no-repeat;
  background-size: contain;
  margin-right: 15px;
  margin-bottom: 10px;
  vertical-align: middle;
}
#faq01 dl {
  margin-bottom: 40px;
  padding: 40px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: url(../images/index01_bg.jpg) no-repeat right bottom;
  background-size: 250px auto;
}
#faq01 dl dt {
  margin-bottom: 20px;
  padding-bottom: 10px;
  padding-left: 50px;
  font-weight: bold;
  color: #0074bf;
	border-bottom: 1px solid #ccc;
}
#faq01 dl dt::before {
  content: "";
  display: block;
	float: left;
  width: 49px;
  height: 39px;
  background: url("../images/question_ico.png") no-repeat;
  background-size: contain;
  margin: 0 15px 0 -50px;
  vertical-align: middle;
}
#faq01 dl dd {
  padding-left: 50px;
}
#faq01 dl dd::before {
  content: "";
  display: block;
	float: left;
  width: 49px;
  height: 39px;
  background: url("../images/answer_ico.png") no-repeat;
  background-size: contain;
  margin: 0 15px 0 -50px;
  vertical-align: middle;
}
@media screen and (max-width:599px) {
  #faq01 ul {
  margin-bottom: 60px;
}
#faq01 ul li {
	padding: 15px;
}
#faq01 ul li::before {
  width: 40px;
  height: 32px;
  margin-right: 10px;
  margin-top: -5px;
}
#faq01 dl {
  margin-bottom: 20px;
  padding: 20px;
  background-size: 120px auto;
}
#faq01 dl dt::before {
  width: 40px;
  height: 32px;
  margin-right: 10px;
  margin-top: -5px;
}
#faq01 dl dd::before {
  width: 40px;
  height: 32px;
  margin-right: 10px;
  margin-top: -5px;
}
}
/*============================
施工例
============================*/
/* 一覧 */
.entry-content {
	max-width: 1200px;
	width: 96%;
	margin: auto;
}
.entry-content h1 {
	margin-bottom: 40px;
	padding-top: 60px;
  font-family: ten-mincho, serif;
  font-size: 180%;
  font-weight: bold;
	line-height: 1.6;
  text-align: center;
  background: url(../images/small_ttl_bg.png) no-repeat center top;
}
.entry-content .ex_date {
  margin-bottom: 50px;
}
.entry-content .ex_eyecatch {
  margin: 50px 0;
}
.entry-content .custom_field {
  padding: 20px 40px;
  background: #e4f1fa;
  border-radius: 10px;
}
.entry-content h2 {
 margin: 50px 0;
  padding: 0 0 10px;
  font-family: ten-mincho, serif;
  font-size: 160%;
  font-weight: bold;
  text-align: center;
  line-height:  1.4;
  border-bottom: 2px solid #199be1;
}
.entry-content h3 {
  margin: 50px 0;
	padding: 10px 20px;
  font-family: ten-mincho, serif;
	font-size: 150%;
  font-weight: bold;
	line-height: 1.3;
  color: #fff;
	background: #199be1;
	border-radius: 10px;
}
.entry-content h4 {
    position: relative;
	margin: 40px 0;
	padding: 10px;
  font-family: ten-mincho, serif;
	font-size: 130%;
	line-height: 1.3;
	border-bottom: 2px solid #ccc;
}
.entry-content h5 {
  position: relative;
	margin: 40px 0;
	padding: 10px 0;
  font-family: ten-mincho, serif;
	font-size: 130%;
	line-height: 1.3;
  color: #199be1;
}
.entry-content h6 {
  position: relative;
	margin: 30px 0;
	padding: 10px 0;
  font-family: ten-mincho, serif;
	font-size: 110%;
	line-height: 1.3;
}
.entry-content h6::before {
 content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #199be1;
  margin-right: 7px;
}
.entry-content p {
	margin: 20px 0;
}
.entry-content blockquote {
  position: relative;
	margin: 40px 0;
  padding: 20px 30px;
  border: 1px solid #ccc;
	background: #f3f3f3;
}
.entry-content figure {
	margin: 50px 0;
}
.entry-content .wp-block-image img {
	border-radius: 20px;
}
.entry-content table {
  width: 100%;
	margin: 50px 0;
	table-layout: fixed;
	border-collapse: collapse;
}
.entry-content table th {
	width: 25%;
	padding: 10px 15px;
	text-align: left;
	border: 1px solid #ccc;
	background: #e4f1fa;
}
.entry-content table td {
	width: 75%;
	padding: 15px;
	text-align: left;
	border: 1px solid #ccc;
}
.entry-content table p {
	margin: 0;
}
.entry-content table .required {
  border-radius: 6px;
  margin-left: 8px;
  padding-top: 5px;
  padding-bottom: 5px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #C00;
  color: #fff;
  font-size: 14px;
}
.entry-content table .selectdiv {
  position: relative;
  /*Don't really need this just for demo styling*/
  
  float: left;
  min-width: 360px;
  margin: 0;
}
.entry-content table .selectdiv:after {
  content: '<>';
  font: 17px "Consolas", monospace;
  color: #333;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  /*Adjust for position however you want*/
  
  top: 18px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  /*left line */
  
  position: absolute;
  pointer-events: none;
}
.selectdiv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Add some styling */
  
  display: block;
  width: 100%;
  max-width: 360px;
  height: 50px;
  float: right;
  margin: 5px 0px;
  padding: 0px 24px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 5px;
  -ms-word-break: normal;
  word-break: normal;
}
.entry-content table .wpcf7-list-item {
	margin-left: 0;
	margin-right: 2em;
}

.wpcf7cp-btns {
	display: flex;
	justify-content: center;
}
.entry-content .wpcf7-submit {
  background: #0074bf;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
	width: 40%;
  margin: 0 auto;
  padding: 20px 30px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  border-radius: 10px;
	border: none;
}
.entry-content .wpcf7-submit:hover {
  background: #aaa;
  color: #FFF;
}
.entry-content .wpcf7cp-cfm-edit-btn {
  background: #bbb;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
	width: 40%;
  margin: 0 auto;
  padding: 15px 30px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  border-radius: 100px;
	border: none;
}
.entry-content .wpcf7cp-cfm-edit-btn:hover {
  background: #666;
  color: #FFF;
}
.wpcf7 input,
.wpcf7 textarea {
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.wpcf7 textarea,
.entry-content ul {
	list-style: none;
}
.entry-content ul li::before {
	content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
	color: #199be1;
	margin-right: 7px;
}
.entry-content ul li ul li::before {
	content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
	color: #ccc;
	margin-right: 7px;
	vertical-align: middle;
}
.entry-content ol {
	list-style: none;
}
.entry-content ol ol {
	margin-left: 1.5em;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.wp-detailnavi {
	max-width: 1200px;
	width: 96%;
	margin: 30px auto;
	text-align: center;
}
.wp-detailnavi div {
	display: inline-block;
	margin: 0 10px;
}
.wp-detailnavi div a {
	display: block;
	padding: 5px 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.wp-detailnavi div a:hover {
  color: #fff;
  background: #00bfff;
}
/* 詳細 */
.entry-content {
	max-width: 1200px;
	width: 96%;
	margin: auto;
}
.entry-content h1 {
	margin-bottom: 40px;

	padding-top: 60px;
  font-family: ten-mincho, serif;
  font-size: 180%;
  font-weight: bold;
	line-height: 1.6;
  text-align: center;
  background: url(../images/small_ttl_bg.png) no-repeat center top;
}
.entry-content .ex_date {
  margin-bottom: 50px;
}
.entry-content .ex_eyecatch {
  margin: 50px 0;
}
.entry-content .custom_field {
  padding: 20px 40px;
  background: #e4f1fa;
  border-radius: 10px;
}
.entry-content h2 {
 margin: 50px 0;
  padding: 0 0 10px;
  font-family: ten-mincho, serif;
  font-size: 160%;
  font-weight: bold;
  text-align: center;
  line-height:  1.4;
  border-bottom: 2px solid #199be1;
}
.entry-content h3 {
  margin: 50px 0;
	padding: 10px 20px;
  font-family: ten-mincho, serif;
	font-size: 150%;
  font-weight: bold;
	line-height: 1.3;
  color: #fff;
	background: #199be1;
	border-radius: 10px;
}
.entry-content h4 {
    position: relative;
	margin: 40px 0;
	padding: 10px;
  font-family: ten-mincho, serif;
	font-size: 130%;
	line-height: 1.3;
	border-bottom: 2px solid #ccc;
}
.entry-content h5 {
  position: relative;
	margin: 40px 0;
	padding: 10px 0;
  font-family: ten-mincho, serif;
	font-size: 130%;
	line-height: 1.3;
  color: #199be1;
}
.entry-content h6 {
  position: relative;
	margin: 30px 0;
	padding: 10px 0;
  font-family: ten-mincho, serif;
	font-size: 110%;
	line-height: 1.3;
}
.entry-content h6::before {
 content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #199be1;
  margin-right: 7px;
}
.entry-content p {
	margin: 20px 0;
}
.entry-content blockquote {
  position: relative;
	margin: 40px 0;
  padding: 20px 30px;
  border: 1px solid #ccc;
	background: #f3f3f3;
}
.entry-content figure {
	margin: 50px 0;
}
.entry-content .wp-block-image img {
	border-radius: 20px;
}
.entry-content table {
  width: 100%;
	margin: 50px 0;
	table-layout: fixed;
	border-collapse: collapse;
}
.entry-content table th {
	width: 25%;
	padding: 10px 15px;
	text-align: left;
	border: 1px solid #ccc;
	background: #e4f1fa;
}
.entry-content table td {
	width: 75%;
	padding: 15px;
	text-align: left;
	border: 1px solid #ccc;
}
.entry-content table p {
	margin: 0;
}
.entry-content table .required {
  border-radius: 6px;
  margin-left: 8px;
  padding-top: 5px;
  padding-bottom: 5px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #C00;
  color: #fff;
  font-size: 14px;
}
.entry-content table .selectdiv {
  position: relative;
  /*Don't really need this just for demo styling*/
  
  float: left;
  min-width: 360px;
  margin: 0;
}
.entry-content table .selectdiv:after {
  content: '<>';
  font: 17px "Consolas", monospace;
  color: #333;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  /*Adjust for position however you want*/
  
  top: 18px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  /*left line */
  
  position: absolute;
  pointer-events: none;
}
.selectdiv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Add some styling */
  
  display: block;
  width: 100%;
  max-width: 360px;
  height: 50px;
  float: right;
  margin: 5px 0px;
  padding: 0px 24px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 5px;
  -ms-word-break: normal;
  word-break: normal;
}
.entry-content table .wpcf7-list-item {
	margin-left: 0;
	margin-right: 2em;
}

.wpcf7cp-btns {
	display: flex;
	justify-content: center;
}
.entry-content .wpcf7-submit {
  background: #0074bf;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
	width: 40%;
  margin: 0 auto;
  padding: 20px 30px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  border-radius: 10px;
	border: none;
}
.entry-content .wpcf7-submit:hover {
  background: #aaa;
  color: #FFF;
}
.entry-content .wpcf7cp-cfm-edit-btn {
  background: #bbb;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
	width: 40%;
  margin: 0 auto;
  padding: 15px 30px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  border-radius: 100px;
	border: none;
}
.entry-content .wpcf7cp-cfm-edit-btn:hover {
  background: #666;
  color: #FFF;
}
.wpcf7 input,
.wpcf7 textarea {
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.wpcf7 textarea,
.entry-content ul {
	list-style: none;
}
.entry-content ul li::before {
	content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
	color: #199be1;
	margin-right: 7px;
}
.entry-content ul li ul li::before {
	content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
	color: #ccc;
	margin-right: 7px;
	vertical-align: middle;
}
.entry-content ol {
	list-style: none;
}
.entry-content ol ol {
	margin-left: 1.5em;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.wp-detailnavi {
	max-width: 1200px;
	width: 96%;
	margin: 30px auto;
	text-align: center;
}
.wp-detailnavi div {
	display: inline-block;
	margin: 0 10px;
}
.wp-detailnavi div a {
	display: block;
	padding: 5px 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.wp-detailnavi div a:hover {
  color: #fff;
  background: #00bfff;
}

@media screen and (max-width:599px) {
	.entry-content table {
	margin: 20px 0;
}
.entry-content table th {
  display: block;
	width: 100%;
	padding: 15px;
	border-bottom: none;
}
.entry-content table td {
  display: block;
	width: 100%;
	padding: 15px;
	border-bottom: none;
}
  .entry-content table tr:last-of-type td {
	border-bottom: 1px solid #ccc;
  }
.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
}
  .wpcf7-radio input {
    width: inherit;
  }
}

/*ページトップ*/
#topcontrol a {
  position: fixed;
  z-index: 99;
  bottom: 40px;
  right: 10px;
  opacity: 1;
  cursor: pointer;
  width: 80px;
  height: 80px;
  padding-top: 30px;
  text-align: center;
  background: #039 url(../images/topcontrol_bg.png) no-repeat center top 15px;
  color: #fff;
  font-weight: bold;
  border-radius: 100px;
}
#topcontrol a:hover {
	opacity: 0.6;
}

/*============================
 各ページタイトル
============================*/
.page_ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 400px;
}
#about .page_ttl {
	background: url(../images/about_ttl_bg.jpg) no-repeat center center;
	background-size: cover;
}
#works .page_ttl {
	background: url(../images/works_ttl_bg.jpg) no-repeat center center;
	background-size: cover;
}
#company .page_ttl {
	background: url(../images/company_ttl_bg.jpg) no-repeat center center;
	background-size: cover;
}
#example .page_ttl {
	background: url(../images/example_ttl_bg.jpg) no-repeat center center;
	background-size: cover;
}
#faq .page_ttl {
	background: url(../images/faq_ttl_bg.jpg) no-repeat center center;
	background-size: cover;
}
#access .page_ttl {
	background: url(../images/access_ttlBg.jpg) no-repeat center center;
	background-size: cover;
}
#contact .page_ttl {
	background: url(../images/contact_ttl_bg.jpg) no-repeat center center;
	background-size: cover;
}
.page_ttl h2 {
	padding: 10px 30px;
	color: #fff;
	background: rgba(0,116,191,0.9);
}
.smallTitle {
	margin-bottom: 40px;
	padding-top: 60px;
	line-height: 1.6;
	background: url(../images/small_ttl_bg.png) no-repeat top center;
}
.tinyTitle {
	margin-bottom: 40px;
}
.tinyTitle::before {
	content: "";
	display: inline-block;
	width: 63px;
	height: 58px;
	background: url(../images/point02.png);
}
.tinyTitle span {
	margin-left: -20px;
}

@media screen and (max-width:1024px) {
.page_ttl {
	height: 280px;
}
}
@media screen and (max-width:599px) {
.page_ttl {
	height: 180px;
}
}

/*=============================================================================================================
タブレット tb：1,024px以下
=============================================================================================================*/
@media screen and (max-width:1024px) {
  /* フォントサイズ tb */
  .font80 {
    font-size: 90%;
  }
  .font120 {
    font-size: 110%;
  }
  .font130 {
    font-size: 120%;
  }
  .font140 {
    font-size: 130%;
  }
  .font160 {
    font-size: 140%;
  }
  .font180 {
    font-size: 150%;
  }

  .font200 {
    font-size: 160%;
  }
  .font220 {
    font-size: 180%;
  }
/* テキスト位置*/
.text-center_l_l{text-align:left!important}/* 中 左 左 */
.text-left_l_c{text-align:left!important}/* 左 左 中 */
.text-left_c_c{text-align:center!important}/* 左 中 中 */
/* マージン　上 */
.mgnt01 {
  margin-top: 40px;
}
/* 表示 非表示 */
.pc_only{display:none!important;}
.tb_only{display:block!important;}
.sp_only{display:none!important;}
  /* 縦書き */
  .tategaki {
    text-align: center;
    height: 380px;
  }
  /* タイトル */
  .title01 {
    background: url("../images/titlebg01_tb.png") no-repeat center;
    padding: 140px 0 30px 0;
  }
  .title02 {
    background: url("../images/titlebg02_tb.png") no-repeat center;
  padding: 100px 0 30px 0;
  }
  .title03 {
    background: url("../images/titlebg03_tb.png") no-repeat center;
  padding: 100px 0 30px 0;
  }
  .bg_wavy {
    padding-top: 200px;
    padding-bottom: 90px;
  }
/* お知らせ 新着情報 */
.topics {
  margin-bottom: 70px;
}
.flex-item3_2_1 {
	margin: 0 1em;
  padding: 3em 0;
  width:calc(100% / 2 - 2em)
}
.f-item3_2_1 {
	margin: 0 0.5em;
  padding: 1em 0;
  width:calc(100% / 2 - 1em)
}
/*============================
フッター
============================*/
footer {
}
.footer01{
  padding: 40px 0;
	
}
}

/*=============================================================================================================
スマートフォン スマホ：599px以下
=============================================================================================================*/
@media screen and (max-width:599px) {
/* テキスト位置*/
.text-center_c_l{text-align:left!important}/* 中 中 左 */
.text-center_l_l{text-align:left!important}/* 中 左 左 */
.text-left_l_c{text-align:center!important}/* 左 左 中 */
.text-left_c_c{text-align:center!important}/* 左 中 中 */
/* 表示 非表示 */
.pc_only{display:none!important;}
.tb_only{display:none!important;}
.sp_only{display:block!important;}
  
/* footer */ 
.footer_contact > div {
  width: 96%;
  margin: 0 auto;
}

.pdn_sec {
  padding-top: 40px;
  padding-bottom: 40px;
}
  
/*============================
お知らせ 新着情報
============================*/
  .topics dl {
    flex-flow: column;
  }
.f_point:before {
  content:none;
  margin-right: 0;
}
.f_point:after {
  content:none;
  margin-left: 0;
}
.flex-item3_2_1 {
	margin: 0 1em;
  padding: 2em 0;
  width:calc(100% / 1 - 2em)
}
.f-item3_2_1 {
	margin: 0 0.5em;
  padding: 1em 0;
  width:calc(100% / 1 - 1em)
}
.flex-item2_2_1 {
  padding: 2em 1em;
  width:calc(100% / 1 - 2em)
}
.f-item2_2_1 {
  padding: 1em;
  width:calc(100% / 1 - 1em)
}
}


@media print, screen and (min-width:600px) {
 /* flexbox */
 .pc_flexbox02 {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_flexbox02 > * {
    width: calc((100% - 1px)/2 - 2%);
    margin: 1%;
  }
  .pc_flexbox03 {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_flexbox03 > * {
    width: calc((100% - 1px)/3 - 2%);
    margin: 1%;
  }
  .pc_flexbox04 {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_flexbox04 > * {
    width: calc((100% - 1px)/4 - 2%);
    margin: 1%;
  }
  .pc_flexbox05 {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_flexbox05 > * {
    width: calc((100% - 1px)/5 - 2%);
    margin: 1%;
  }
}