﻿@charset "UTF-8";
body {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "游ゴシック", Yu Gothic, Osaka, "ＭＳ Ｐゴシック", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.3;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
 
img {
  max-width: 100%;
  vertical-align: bottom;
}

html, * {
  box-sizing: border-box;
}

a {
  color: #333;
  text-decoration: none;
}


.mincho {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", 游明朝, "Yu Mincho", YuMincho, HGS明朝E, メイリオ, Meiryo,serif;
}

.inner {
  max-width: 1130px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.sp {
  display: none;
}

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

  .pc {
    display: none !important;
  }
}
/*********************************************
 共通
*********************************************/
.title_area {
  padding: 82.5px 0;
  background: url(../img/common/title_bg.jpg) no-repeat center;
  background-size: cover;
}

.title_block {
  text-align: center;
}
.title_block .en_sub {
  margin-bottom: 10px;
  font-size: 26px;
  color: #595757;
}
.title_block .en_sub span {
  padding: 0 18px;
  position: relative;
  display: inline-block;
}
.title_block .en_sub span::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 8px;
  background: url(../img/common/icon_ornament.png);
  left: 0;
}
.title_block .en_sub span::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 8px;
  background: url(../img/common/icon_ornament.png);
  right: 0;
}
.title_block h2 {
  font-size: 40px;
  color: #cc0033;
  letter-spacing: 0.26em;
}

.office .inner .title_block h2 a{
  color: #cc0033;
}

.breadcrumb {
  margin: 40px auto 45px;
}
.breadcrumb ul {
  display: flex;
}
.breadcrumb ul li {
  position: relative;
  color: #666;
}
.breadcrumb ul li a {
  margin-right: 15px;
  color: #666;
}
.breadcrumb ul li a:hover {
  text-decoration: underline;
}
.breadcrumb ul li:not(:last-child)::after {
  content: ">";
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .title_area {
    padding: 30px 0;
  }

  .title_block .en_sub {
    margin-bottom: 5px;
    font-size: 20px;
  }
  .title_block h2 {
    font-size: 24px;
  }

  .breadcrumb {
    margin: 20px auto;
  }
  .breadcrumb ul {
    flex-wrap: wrap;
  }
  .breadcrumb ul li {
    font-size: 12px;
  }
  .breadcrumb ul li:not(:last-child) {
    margin-bottom: 5px;
  }
  .breadcrumb ul li a {
    margin-right: 10px;
    font-size: 12px;
    text-decoration: underline;
  }
  .breadcrumb ul li:not(:last-child)::after {
    content: ">";
    margin-right: 10px;
  }
}
/*********************************************
 header
*********************************************/
header {
  width: 100%;
  color: #fff;
}
header .support { /** 20200514add **/
  background: #fff url(../img/header/header_bg.png) no-repeat top center;
  padding: 4px 0; 
}
header .support .inner {
  display: flex;
  justify-content: flex-end;
}
header .support .logo {/** 20200514add **/
 margin-right: auto;
}
header .support .inner .sitemap {
  margin-right: 30px;
}
header .support .inner .sitemap,
header .support .inner .contact {
  display: flex;
  align-items: center;
}
header .support .inner .sitemap img,
header .support .inner .contact img {
  margin-right: 10px;
}
header .support .inner .sitemap a,
header .support .inner .contact a {
  color: #FFF;
}
header .support .inner .sitemap a:hover,
header .support .inner .contact a:hover {
  text-decoration: underline;
}
header .g_nav {
  background: #c7c7c7;
}
header .g_nav .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .g_nav .inner ul {
  display: flex;
}
header .g_nav .inner ul li {
  padding: 28px 0;
}
header .g_nav .inner ul li a {
  padding: 0 10px;
  position: relative;
}
header .g_nav .inner ul li a:hover {
  color: #ff7373;
}
header .g_nav .inner ul li a:hover::after {
  content: '';
  width: 100%;
  height: 4px;
  background: #ff7373;
  position: absolute;
  bottom: -26px;
  left: 0;
}
header .g_nav .inner ul li.active a {
  color: #ff7373;
}
header .g_nav .inner ul li.active a::after {
  content: '';
  width: 100%;
  height: 4px;
  background: #ff7373;
  position: absolute;
  bottom: -26px;
  left: 0;
}
header .g_nav .inner ul li:not(:last-child) {
  margin-right: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  header .g_nav .inner {
    display: block;
  }
  header .g_nav .inner h1 {
    padding-top: 17px;
  }
}
@media screen and (max-width: 767px) {
  header {
    height: 50px;
  }
  header .support {
    display: none;
  }
  header .g_nav {
    width: 100%;
    position: fixed;
    z-index: 100;
    border-bottom: 1px solid #d11328;
  }
  header .g_nav .inner {
    background: #fff url(../img/header/header_bg_sp.png) no-repeat top right;
    padding: 14px 10px;
  }
  header .g_nav .inner h1 {
    max-width: 164px;
    line-height: 0;
  }
  header .g_nav .inner .menu_button {
    width: 30px;
    height: 20px;
    position: relative;
  }
  header .g_nav .inner .menu_button .line {
    width: 30px;
    height: 2px;
    margin: auto;
    background-color: #ffffff; /** 20200514add **/
    position: absolute;
    left: 0;
    right: 0;
    border-radius: 0;
    transition: .3s;
  }
  header .g_nav .inner .menu_button .top {
    top: 0;
  }
  header .g_nav .inner .menu_button .middle {
    top: 9px;
  }
  header .g_nav .inner .menu_button .bottom {
    top: 18px;
  }
  header .h_menu {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    background: #c7c7c7;
    position: fixed;
    top: -100%;
    z-index: 99;
    transition: .3s;
  }
  header .h_menu li {
    border-bottom: 1px solid #d11328;
  }
  header .h_menu li a {
    padding: 15px 0 15px 15px;
    display: block;
  }

  .open header .g_nav .inner .menu_button .top {
    transform: translateY(10px) rotate(45deg);
  }
  .open header .g_nav .inner .menu_button .middle {
    opacity: 0;
  }
  .open header .g_nav .inner .menu_button .bottom {
    transform: translateY(-8px) rotate(-45deg);
  }
  .open header .h_menu {
    top: 50px;
  }
}
/*==========================================================================

 トップページ

==========================================================================*/
/********************************************
 slider
********************************************/
.top .slider.slick-dotted {
  margin: 0;
}
.top .slider.slick-dotted .slick-slide {
  outline: none;
}

.top .slider .slick-dots {
  display: flex;
  justify-content: center;
  bottom: 15px;
}
.top .slider .slick-dots li {
  width: 14px;
  height: 14px;
  margin: 0;
  display: block;
}
.top .slider .slick-dots li button {
  width: 14px;
  height: 14px;
  padding: 0;
}
.top .slider .slick-dots li button::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #c7c7c7;
  border-radius: 14px;
  opacity: 1;
}
.top .slider .slick-dots li.slick-active button::before {
  background-color: #d11328;
  opacity: 1;
}
.top .slider .slick-dots li:not(:last-child) {
  margin-right: 20px;
}

/********************************************
 slider sp
********************************************/
@media screen and (max-width: 767px) {
  .top .slider .slick-dots {
    bottom: 10px;
  }
  .top .slider .slick-dots li {
    width: 8px;
    height: 8px;
  }
  .top .slider .slick-dots li button {
    width: 8px;
  }
  .top .slider .slick-dots li button::before {
    width: 8px;
    height: 8px;
    border-radius: 10px;
  }
  .top .slider .slick-dots li:not(:last-child) {
    margin-right: 15px;
  }
}
/********************************************
 ourcompany 20191106add
********************************************/
.top .ourcompany {
  padding: 100px 0 50px;
}
.top .ourcompany .title_block {
  margin-bottom: 45px;
}
.top .ourcompany .title_block h2 {
  font-weight: normal;
}
.top .ourcompany_movie iframe {
  display: block;
  margin: 0 auto;
}

/********************************************
 ourcompany sp 20191106add
********************************************/
@media screen and (max-width: 767px) {
  .top .ourcompany {
    padding: 40px 0 20px;
  }
  .top .ourcompany .title_block {
    margin-bottom: 20px;
  }
  .top .ourcompany .title_block .en_sub {
    margin-bottom: 5px;
    font-size: 20px;
  }
  .top .ourcompany .title_block h2 {
    font-size: 24px;
  }
  .top .ourcompany_movie {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .top .ourcompany_movie iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }
}
/********************************************
 business
********************************************/
.top .business {
  padding: 100px 0 125px;
}
.top .business .title_block {
  margin-bottom: 45px;
}
.top .business .title_block h2 {
  font-weight: normal;
}
.top .business .grid_block {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: calc(calc(100% - 60px) / 3) calc(calc(100% - 60px) / 3) calc(calc(100% - 60px) / 3);
  grid-gap: 30px;
}
.top .business .grid_block .item08 {
  grid-column: 2 / 4;
}
.top .business .btn {
  width: 285px;
  margin: 0 auto;
}
.top .business .btn a {
  width: 100%;
  padding: 15px 0;
  background: #d11328;
  display: block;
  font-size: 24px;
  text-align: center;
  color: #FFF;
}
.business_contact {
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin: 80px 0 150px;
  color: #333;
}
.business_contact .business_contact_btn a {
  width: 600px;
  padding: 15px 0;
  margin: 10px auto 0;
  background: #d11328;
  display: block;
  font-size: 24px;
  font-weight: normal;
  text-align: center;
  color: #FFF;
}

/********************************************
 business sp
********************************************/
@media screen and (max-width: 767px) {
  .top .business {
    padding: 40px 0 60px;
  }
  .top .business .title_block {
    margin-bottom: 20px;
  }
  .top .business .title_block .en_sub {
    margin-bottom: 5px;
    font-size: 20px;
  }
  .top .business .title_block h2 {
    font-size: 24px;
  }
  .top .business .grid_block {
    margin-bottom: 30px;
    grid-template-columns: calc(calc(100% - 10px) / 2) calc(calc(100% - 10px) / 2);
    grid-gap: 10px;
  }
  .top .business .grid_block .item08 {
    grid-column: 2 / 3;
  }
  .top .business .btn {
    width: 255px;
  }
  .top .business .btn a {
    padding: 10px 0;
    font-size: 18px;
  }
  .business_contact {
    font-size: 18px;
  }
  .business_contact .business_contact_btn a {
  width: 90%;
  font-size: 16px;
  }
}
/********************************************
 recruit
********************************************/
.top .recruit {
  background: #d11328;
  padding: 20px 0;
}
.top .recruit .inner {
  max-width: 1160px;
}
.top .recruit .inner .ngtb_mt {
  margin-top: -50px;
}

.top .recruit .inner a{
  text-decoration: none;
  margin:0;
  background: #FFF;
  color: #d11328;
    padding: 15px 0;
    font-size: 24px;
	width:285px;
	text-align:center;
  margin: -60px auto 0;
  display:block;

}

/********************************************
 recruit sp
********************************************/
@media screen and (max-width: 767px) {
  .top .recruit {
    padding: 30px 0;
  }
  .top .recruit .inner {
    max-width: 100%;
  }
  .top .recruit .inner a {
    width: 255px;
    margin-top: -20px;
    padding: 10px 0;
    font-size: 18px;
    z-index: 1;
    position: relative;
  }
  .top .recruit .inner .ngtb_mt {
    margin-top: -50px;
  }
}
/********************************************
 info
********************************************/
.top .info {
  padding: 70px 0 55px;
  background: url(../img/top/info_bg.png) no-repeat top center;
  background-size: cover;
}
.top .info .inner {
  display: flex;
  justify-content: space-between;
}
.top .info .inner .info_list {
  max-width:800px;
  width: 100%;
  margin: 0 auto;
}
.top .info .inner .info_list .title_block {
  text-align:center;
  margin-bottom: 40px;
}
.top .info .inner .info_list .title_block h2 {
  font-size: 32px;
  color: #666;
  font-weight: normal;
  letter-spacing: normal;
}
.top .info .inner .info_list .title_block h2 span {
  color: #cc0033;
  font-weight: bold;
}
.top .info .inner .info_list ul {
  margin-bottom: 30px;
}
.top .info .inner .info_list ul li a {
  display: flex;
  font-size: 24px;
}
.top .info .inner .info_list ul li a .date {
  margin-right: 20px;
  color: #cc0033;
}
.top .info .inner .info_list ul li a .text {
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: underline;
}
.top .info .inner .info_list ul li a:hover .text {
  text-decoration: none;
}
.top .info .inner .info_list ul li:not(:last-child) {
  margin-bottom: 25px;
}
.top .info .inner .info_list .go_list {
  display: flex;
}
.top .info .inner .info_list .go_list a {
  width: 165px;
  padding: 7px 0;
  background: #d11328;
  display: block;
  font-size: 20px;
  text-align: center;
  margin:0 auto;
  color: #FFF;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  .top .info .inner {
    display: block;
  }
  .top .info .inner .info_list {
    max-width: 600px;
    margin: 0 auto;
  }
  .top .info .inner .news {
    margin-bottom: 10px;
  }
}
/********************************************
 info sp
********************************************/
@media screen and (max-width: 767px) {
  .top .info {
    padding: 40px 0;
  }
  .top .info .inner {
    display: block;
  }
  .top .info .inner .info_list {
    margin: 0 auto;
  }
  .top .info .inner .info_list .title_block {
    margin-bottom: 15px;
  }
  .top .info .inner .info_list .title_block h2 {
    font-size: 20px;
  }
  .top .info .inner .info_list ul {
    margin-bottom: 15px;
  }
  .top .info .inner .info_list ul li a {
    font-size: 16px;
  }
  .top .info .inner .info_list ul li a .date {
    margin-right: 10px;
  }
  .top .info .inner .info_list ul li a:hover .text {
    text-decoration: underline;
  }
  .top .info .inner .info_list ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  .top .info .inner .info_list .go_list a {
    width: 150px;
    padding: 6px 0;
    font-size: 14px;
  }
  .top .info .inner .news {
    margin-bottom: 30px;
  }
}






/********************************************
 social_action
********************************************/

.social_action .inner{
	padding: 30px 0;
}

.top .social_action .btn {
    width: 30%;
    margin: 0 2%;
    float:left;
}

.top .social_action .btn:first-child {
    margin-left: 1%;
}
.top .social_action .btn:last-child {
    margin-right: 1%;
}
.social_btn_box{
  width: 100%;
  height:70px;
  margin:30px auto;
}

.top .social_action .btn a {
  width: 100%;
  padding: 15px 0;
  background: #d11328;
  font-size: 24px;
  text-align: center;
  display: inline-block;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .top .social_action .btn a {
    font-size: 16px;
  }
}


/*==========================================================================

 縺斐≠縺・＆縺､

==========================================================================*/



.contents .inner table.history {
  width: 100%;
  border-collapse:collapse;
  margin-bottom: 100px;
}
.contents .inner table.history th {
  color: #666;
  background: #EFEFEF;
  text-align: left;
  padding: 0.5em 3em;
}
.contents .inner table.history thead th {
  color: #cc0033;
  border-top: 2px solid #000;
  border-bottom: 3px double #000;
  background: #f7e8e8;
  text-align: center;
  font-size: 20px;
  line-height: 1;
}
.contents .inner table.history th,
.contents .inner table.history td {
  padding: 0.5em 2em;
  border-bottom: 1px solid #666;
  line-height: 1.7;
}



.contents .history_img { /** 20200219add **/
	max-width:980px;
	margin: 0 auto 50px;
	}



.contents .inner .history_center { /** 20200219add **/
	max-width:980px;
	margin: 0 auto 150px;
	}

.contents .inner .history_center .history_table table { /** 20200219add **/
	margin: 0 25px;
	padding: 0;
	border-spacing: 0 !important;
	border-collapse:collapse !important;
	}
.contents .inner .history_center .history_table td { /** 20200219add **/
	padding: 0;
	border-spacing: 0 !important;
	border-collapse:collapse !important;
	}

.contents .inner .history_center .history_table .history_list { /** 20200219add **/
	text-align:right;
	width: 73px;
	}

.contents .inner .history_center .history_table .h_ym { /** 20200219add **/
	font-family:arial;
	font-weight: bold;
	text-align:right;
	vertical-align: top;
	padding: 10px 20px 0 0;
	width: 150px;
	}

.contents .inner .history_center .history_table .h_txt { /** 20200219add **/
	color:#666666;
	border-color: #dd0f2b;
	border-left-style: solid ;
	padding:0 15px;
	}

.contents .inner .history_center .history_table .h_txt .h_dot { /** 20200219add **/
	list-style-type: disc !important;
	margin-left: 24px;
	}

.contents .inner .history_center .history_table .h_year_b { /** 20200219add **/
	color:#dc0f2b;
	font-size: 40px;
	font-weight: bold;
	}
.contents .inner .history_center .history_table .h_year_s { /** 20200219add **/
	color:#dc0f2b;
	font-size: 30px;
	font-weight: bold;
	}
.contents .inner .history_center .history_table .h_year_ss { /** 20200219add **/
	color:#dc0f2b;
	font-size: 20px;
	font-weight: bold;
	}

.contents .inner .history_center .history_table .h_bold_22 { /** 20200219add **/
	font-size: 22px;
	font-weight: bold;
	}
.contents .inner .history_center .history_table .h_bold_15 { /** 20200219add **/
	font-size: 15px;
	font-weight: bold;
	}


.contents .inner .history_center .history_table .pad10 { /** 20200219add **/
	padding: 10px 15px;
	}
.contents .inner .history_center .history_table .pad15 { /** 20200219add **/
	padding: 15px;
	}
.contents .inner .history_center .history_table .pad20 { /** 20200219add **/
	padding: 20px 15px;
	}



.contents .inner .history_center .history_table .history_yb_pc { /** 20200219add **/
	line-height:1;
	display: block !important;
	}
.contents .inner .history_center .history_table .history_yb_sp { display: none !important; } /** 20200219add **/



@media screen and (max-width: 767px) { /** 20200219add **/
.contents .inner .history_center .history_table .history_list { display: none !important; } /** 20200219add **/
.contents .inner .history_center .history_table .history_yb_pc { display: none !important; } /** 20200219add **/
.contents .inner .history_center .history_table .history_yb_sp { display: block !important; } /** 20200219add **/



.contents .sp_history_img { /** 20200219add **/
	width: 100%;
	margin: 0;
	}

.contents .inner .history_center .history_table  { /** 20200219add **/
	width: 100%;
	}

.contents .inner .history_center .history_table .h_ym_s { /** 20200219add **/
	font-family:arial;
	font-weight: bold;
	text-align:right;
	vertical-align: top;
	padding: 20px 20px 0 0;
	width: 200px;
	}

.contents .inner .history_center .history_table  td { /** 20200219add **/
	border-top: 0px;
	border-bottom: 0px;
	display: block;
	width: 100%;
	padding: 8px 0 0;
	}

.contents .inner .history_center .history_table .sp_h_ym { /** 20200219add **/
	text-align:left;
	padding: 20px 20px 0 0;
	}

.contents .inner .history_center .history_table .h_txt_sp { /** 20200219add **/
	color:#666666;
	border-color: #dd0f2b;
	padding:10px 15px;
	}



}



@media screen and (max-width: 767px) {
  .contents .inner table.history th,
  .contents .inner table.history td {
    padding: 0.5em 1em;
  }
  contents .inner table.history thead th {
    font-size: 16px;
  }
}



.corporate .network .inner .corporate_pc {  /** 20200212add **/
	display: block !important;
	position: relative;
	max-width:100%;
	height:700px;
	}
.corporate .network .inner .corporate_sp { display: none !important; /** 20200212add **/ }





@media screen and (max-width: 767px) { /** 20200212add **/
.corporate .network .inner .corporate_pc { display: none !important; }
.corporate .network .inner .corporate_sp { display: block !important; }
}

.corporate .network .inner .corporate_pc .corporate_pc_000 { /** 20200212add **/
	position: absolute;
	top: -85px;
	left: 0;
	right: 0;
	bottom; 0;
	margin: auto;
	}

.corporate .network .inner .corporate_pc .corporate_pc_001 { /** 20200212add **/
	display:inline-block;
	max-width:100%;
	color: #666;
	border: solid #feb62c 2px;
	position: absolute;
	top: 310px;
	left: 165px;
	background-color: #fff;
	}
.corporate .network .inner .corporate_pc .corporate_pc_001 ul { /** 20200212add **/
	padding: 15px 10px;
	margin: 0 25px;
	}
.corporate .network .inner .corporate_pc .corporate_pc_001 li { /** 20200212add **/
	list-style-type: disc;
	font-size: 14px;
	}
.corporate .network .inner .corporate_pc .corporate_pc_001 .corporate_kinki { /** 20200212add **/
	color: #fff;
	margin: 0 auto;
	padding: 5px;
	background-color: #feb62c;
	text-align: center;
	font-size: 20px;
	}

.corporate .network .inner .corporate_pc .corporate_pc_002 { /** 20200212add **/
	display:inline-block;
	max-width:100%;
	color: #666;
	border: solid #52a254 2px;
	position: absolute;
	top: 115px;
	left: 270px;
	background-color: #fff;
	}
.corporate .network .inner .corporate_pc .corporate_pc_002 ul { /** 20200212add **/
	padding: 15px 10px;
	margin: 0 25px;
	}
.corporate .network .inner .corporate_pc .corporate_pc_002 li { /** 20200212add **/
	list-style-type: disc;
	font-size: 14px;
	}
.corporate .network .inner .corporate_pc .corporate_pc_002 .corporate_tokai { /** 20200212add **/
	color: #fff;
	margin: 0 auto;
	padding: 5px;
	background-color: #52a254;
	text-align: center;
	font-size: 20px;
	}

.corporate .network .inner .corporate_pc .corporate_pc_003 { /** 20200212add **/
	display:inline-block;
	max-width:100%;
	color: #666;
	border: solid #59bbc2 2px;
	position: absolute;
	top: 535px;
	left: 710px;
	background-color: #fff;
	}
.corporate .network .inner .corporate_pc .corporate_pc_003 ul { /** 20200212add **/
	padding: 15px 10px;
	margin: 0 25px;
	}
.corporate .network .inner .corporate_pc .corporate_pc_003 li { /** 20200212add **/
	list-style-type: disc;
	font-size: 14px;
	}
.corporate .network .inner .corporate_pc .corporate_pc_003 .corporate_kanto { /** 20200212add **/
	color: #fff;
	margin: 0 auto;
	padding: 5px;
	background-color: #59bbc2;
	text-align: center;
	font-size: 20px;
	}

.corporate .network .inner .corporate_pc .corporate_pc_004 { /** 20200212add **/
	display:inline-block;
	max-width:100%;
	color: #666;
	border: solid #cf485b 2px;
	position: absolute;
	top: 645px;
	left: 50px;
	background-color: #fff;
	}
.corporate .network .inner .corporate_pc .corporate_pc_004 ul { /** 20200212add **/
	padding: 15px 10px;
	margin: 0 25px;
	}
.corporate .network .inner .corporate_pc .corporate_pc_004 li { /** 20200212add **/
	list-style-type: disc;
	font-size: 14px;
	}
.corporate .network .inner .corporate_pc .corporate_pc_004 .corporate_kyuoki { /** 20200212add **/
	color: #fff;
	margin: 0 auto;
	padding: 5px;
	background-color: #cf485b;
	text-align: center;
	font-size: 20px;
	}





.corporate .affiliated .inner .corporate_tbl table { /** 20200212add **/
	width: 100%;
	margin: 0;
	padding: 0;
	border-spacing: 0;
	}

.corporate .affiliated .inner .corporate_tbl th { /** 20200212add **/
	width: 390px;
	text-align: left;
	border-top: solid 2px #ededed;
	color: #505050;
	padding: 0px 30px;
	}
.corporate .affiliated .inner .corporate_tbl td { /** 20200212add **/
	border-top: solid 2px #ededed;
	color: #505050;
	padding: 8px;
	}
.corporate .affiliated .inner .corporate_tbl .corporate_tbl_map { /** 20200219add **/
	width: 150px;
	}
.corporate .affiliated .inner .corporate_tbl_end th { /** 20200212add **/
	border-bottom: solid 2px #ededed;
	}
.corporate .affiliated .inner .corporate_tbl_end td { /** 20200212add **/
	border-bottom: solid 2px #ededed;
	background-color:#fff;
	}

.corporate .affiliated .inner .corporate_tbl .corporate_tbl_01 { /** 20200212add **/
	background: url(../img/corporate/corporate_01.png) no-repeat left top #f8f8f8 !important;
	}
.corporate .affiliated .inner .corporate_tbl .corporate_tbl_02 { /** 20200212add **/
	background: url(../img/corporate/corporate_02.png) no-repeat left top #f8f8f8 !important;
	}
.corporate .affiliated .inner .corporate_tbl .corporate_tbl_03 { /** 20200212add **/
	background: url(../img/corporate/corporate_03.png) no-repeat left top  #f8f8f8 !important;
	}
.corporate .affiliated .inner .corporate_tbl .corporate_tbl_04 { /** 20200212add **/
	background: url(../img/corporate/corporate_04.png) no-repeat left top  #f8f8f8 !important;
	}



.corporate .affiliated .inner .corporate_tbl .btn,
.corporate .affiliated .inner .corporate_tbl .btn2 { /** 20200219add **/
	background:#bebebe;
	display: block;
	font-size: 14px;
	text-align: center;
	line-height: 20px;
	color: #FFF;
	max-width: 56px;
	width: 100%;
	float: left;
	margin: 0 10px 0 0;
	}

.corporate .affiliated .inner .corporate_tbl .btn a { /** 20200219add **/
	background:#0c80b3;
	display: block;
	font-size: 14px;
	text-align: center;
	line-height: 20px;
	color: #FFF;
}
.corporate .affiliated .inner .corporate_tbl .btn2 a { /** 20200212add **/
	background:#a20037;
	display: block;
	font-size: 14px;
	text-align: center;
	line-height: 20px;
	color: #FFF;
}



.corporate .affiliated .inner .corporate_rb_mar10 { /** 20200212add **/
	margin: 0 0 10px 0;
	font-size: 18px;
	font-weight: bold;
	}

.corporate .affiliated .inner .corporate_rb_mar30 { /** 20200212add **/
	margin: 0 0 30px 0;
	}
.corporate .affiliated .inner .corporate_square { /** 20200212add **/
	color:#cc0033;
	}



@media screen and (max-width: 767px) { /** 20200212add **/
.corporate .affiliated .inner .corporate_tbl .last td:last-child {
	border-bottom: solid 1px #ccc;
	width: 100%;
	}
.corporate .affiliated .inner .corporate_tbl { /** 20200212add **/
	width: 100%;
	}
.corporate .affiliated .inner .corporate_tbl th { /** 20200212add **/
	text-align: left;
	border-top: 0px;
	border-bottom: 0px;
	display: block;
	width: 100%;
	padding: 10px 10px 10px 22px;
	}
.corporate .affiliated .inner .corporate_tbl td { /** 20200212add **/
	border-top: 0px;
	border-bottom: 0px;
	display: block;
	width: 100%;
	padding: 8px 0 0;
	}
.corporate .affiliated .inner .corporate_tbl .corporate_tbl_map { /** 20200212add **/
	width: 100%;
	margin: 0 auto;
	}

.corporate .affiliated .inner .corporate_tbl .btn_box { /** 20200219add **/
	width: 170px;
	}

.corporate .affiliated .inner .corporate_tbl .btn_box .btn,
.corporate .affiliated .inner .corporate_tbl .btn_box .btn2 { /** 20200219add **/
	display: block;
	margin: 0 10px 10px 0;
	}

.corporate .affiliated .inner .corporate_tbl .btn_box .clear_btn { /** 20200219add **/
	clear:both;
	}



}



/********************************************
 contents
********************************************/
.greeting .contents {
  margin-bottom: 140px;
  padding-top: 45px;
}
.greeting .contents .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.greeting .contents .inner .text_block {
  max-width: 590px;
  width: 100%;
}
.greeting .contents .inner .text_block h3 {
  margin-bottom: 45px;
  font-size: 25px;
  color: #333;
  line-height: 1.5;
}
.greeting .contents .inner .text_block p {
  font-size: 20px;
  color: #333;
  line-height: 1.6;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  .greeting .contents .inner {
    display: block;
    text-align: center;
  }
  .greeting .contents .inner .text_block {
    max-width: 700px;
    margin: 0 auto 20px;
    text-align: left;
  }
}

.recruit_info .contents  .inner .interview_movie .recruit_mv_youtube { /** 20200206add **/
	border: 2px solid #dc0f2b;
}
.recruit_info .contents  .inner .affiliated .recruit_mv_flex { /** 20200206add **/
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	justify-content: center;
	justify-content: space-around;
}

.recruit_info .contents  .inner .affiliated .recruit_mv_cell { /** 20200206add **/
	display:table-cell;
	width:15%;
	vertical-align: top;
	padding: 10px 0;
}
.recruit_info .contents  .inner .affiliated .recruit_mv_youtube { /** 20200206add **/
	border: 2px solid #dc0f2b;
}
.recruit_info .contents  .inner .affiliated .recruit_mv_txt { /** 20200206add **/
	font-size: 1rem;
	color: #dc0f2b;
	line-height: 1.5;
	font-weight: bold;
	padding: 5px 0 0 0;
}



/********************************************
 contents sp
********************************************/
@media screen and (max-width: 767px) {
  .greeting .contents {
    margin-bottom: 70px;
    padding-top: 20px;
  }
  .greeting .contents .inner {
    display: block;
  }
  .greeting .contents .inner .text_block {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .greeting .contents .inner .text_block h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .greeting .contents .inner .text_block p {
    font-size: 16px;
  }
}

.recruit_info .contents  .inner .interview_movie .recruit_mv_youtube { /** 20200206add **/
	border: 2px solid #dc0f2b;
}
.recruit_info .contents  .inner .affiliated .recruit_mv_flex { /** 20200206add **/
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	justify-content: center;
	justify-content: space-around;
}

.recruit_info .contents  .inner .affiliated .recruit_mv_cell { /** 20200206add **/
	display:table-cell;
	width:15%;
	vertical-align: top;
	padding: 10px 0;
}
.recruit_info .contents  .inner .affiliated .recruit_mv_youtube { /** 20200206add **/
	border: 2px solid #dc0f2b;
}
.recruit_info .contents  .inner .affiliated .recruit_mv_txt { /** 20200206add **/
	font-size: 1rem;
	color: #dc0f2b;
	line-height: 1.5;
	font-weight: bold;
	padding: 5px 0 0 0;
}


/********************************************
 statement
********************************************/
.greeting .statement {
  margin-bottom: 150px;
}
.greeting .statement .heading {
  margin-bottom: 100px;
}
.greeting .statement .corporate_philosophy {
  margin-bottom: 100px;
}
.greeting .statement .corporate_philosophy .title_block {
  margin-bottom: 40px;
}
.greeting .statement .corporate_philosophy p:not(.en_sub) {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
.greeting .statement .action_agenda .title_block {
  margin-bottom: 40px;
}
.greeting .statement .action_agenda ul {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}
.greeting .statement .action_agenda ul li {
  font-size: 24px;
  color: #333;
  line-height: 1.6;
}

.greeting .statement .action_agenda ol {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}

.greeting .statement .action_agenda ol li {
  font-size: 24px;
  color: #333;
  line-height: 1.6;
  list-style:decimal;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  .greeting .statement .corporate_philosophy p:not(.en_sub) {
    font-size: 23px;
  }
  .greeting .statement .action_agenda ol li {
    font-size: 23px;
  }

}
/********************************************
 statement sp
********************************************/
@media screen and (max-width: 767px) {
  .greeting .statement {
    margin-bottom: 70px;
  }
  .greeting .statement .heading {
    margin-bottom: 40px;
  }
  .greeting .statement .corporate_philosophy {
    margin-bottom: 50px;
  }
  .greeting .statement .corporate_philosophy .title_block {
    margin-bottom: 20px;
  }
  .greeting .statement .corporate_philosophy p:not(.en_sub) {
    font-size: 18px;
  }
  .greeting .statement .action_agenda .title_block {
    margin-bottom: 20px;
  }
  .greeting .statement .action_agenda ol {
    max-width: 590px;
  }
  .greeting .statement .action_agenda ol li {
    font-size: 16px;
  }
  .greeting .statement .action_agenda ol li:not(:last-child) {
    margin-bottom: 10px;
  }
}
/*==========================================================================

 莨夂､ｾ讎りｦ・

==========================================================================*/
/********************************************
 information
********************************************/
.corporate .information {
  margin-bottom: 150px;
  padding-top: 10px;
}
.corporate .information .inner {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.corporate .information .inner .text_block {
  max-width: 590px;
  width: 100%;
}
.corporate .information .inner .text_block h3 {
  font-size: 24px;
  color: #666;
}
.corporate .information .inner .text_block .en_sub {
  margin-bottom: 10px;
  font-size: 20px;
  color: #333;
}
.corporate .information .inner .text_block dl {
  margin: 0 0 5px;
  display: flex;
  align-items: center;
  font-size: 20px;
}
.corporate .information .inner .text_block dl dt {
  color: #666;
  font-weight: bold;
}
.corporate .information .inner .text_block dl dt:nth-of-type(2) {
  margin-left: 20px;
}
.corporate .information .inner .text_block dl dd {
  margin-left: 20px;
  color: #333;
}
.corporate .information .inner .text_block dl.mb30 {
  margin-bottom: 30px;
}
.corporate .information .inner .text_block dl dd a {
  color: #333;
  text-decoration: none;
}
.corporate .information .inner .text_block dl.no_flex {
  display: block;
}
.corporate .information .inner .text_block dl.no_flex dd {
  margin: 0;
  line-height: 1.7;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  .corporate .information .inner {
    display: block;
    text-align: center;
  }
  .corporate .information .inner .text_block {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: left;
  }
}
/********************************************
 information sp
********************************************/
@media screen and (max-width: 767px) {
  .corporate .information {
    margin-bottom: 70px;
    padding-top: 20px;
  }
  .corporate .information .inner {
    display: block;
    text-align: center;
  }
  .corporate .information .inner .text_block {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: left;
  }
  .corporate .information .inner .text_block h3 {
    font-size: 20px;
  }
  .corporate .information .inner .text_block .en_sub {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .corporate .information .inner .text_block dl {
    margin: 0 0 15px;
    display: block;
    font-size: 16px;
  }
  .corporate .information .inner .text_block dl dt:nth-of-type(2) {
    margin: 15px 0 0;
  }
  .corporate .information .inner .text_block dl dd {
    color: #333 !important;
    margin-left: 0;
    line-height: 1.7;
  }
  .corporate .information .inner .text_block dl.mb30 {
    margin-bottom: 15px;
  }
}
/********************************************
 access_map
********************************************/
.corporate .access_map {
  margin-bottom: 100px;
}
.corporate .access_map .title_block {
  margin-bottom: 60px;
}
.corporate .access_map .map {
  line-height: 0;
}

/********************************************
 access_map sp
********************************************/
@media screen and (max-width: 767px) {
  .corporate .access_map {
    margin-bottom: 70px;
  }
  .corporate .access_map .title_block {
    margin-bottom: 20px;
  }
  .corporate .access_map .map iframe {
    height: 200px;
  }
}
/********************************************
 network
********************************************/
.corporate .network {
  margin-bottom: 150px;
}
.corporate .network .title_block {
  margin-bottom: 80px;
}

/********************************************
 network sp
********************************************/
@media screen and (max-width: 767px) {
  .corporate .network {
    margin-bottom: 70px;
  }
  .corporate .network .title_block {
    margin-bottom: 20px;
  }
}
/********************************************
 info_box
********************************************/
.corporate .flex_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.corporate .flex_box .info_box {
  max-width: 380px;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 18px;
  color: #666;
  line-height: 1.7;
}
.corporate .flex_box .info_box .btn {
  max-width: 56px;
  width: 100%;
  margin-bottom: 5px;
}
.corporate .flex_box .info_box .btn a { 
  background:#0c80b3;
  display: block;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  color: #FFF;
}
.corporate .flex_box .info_box:last-child,
.corporate .flex_box .info_box:not(:nth-child(even)):nth-last-child(-n+2) {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  .corporate .flex_box {
    display: block;
  }
  .corporate .flex_box .info_box,
  .corporate .flex_box .info_box:not(:nth-child(even)):nth-last-child(-n+2) {
    margin: 0 auto 30px;
  }
}
/********************************************
 info_box sp
********************************************/
@media screen and (max-width: 767px) {
  .corporate .flex_box {
    display: block;
  }
  .corporate .flex_box .info_box {
    max-width: 380px;
    margin: 0 auto 30px;
    font-size: 16px;
  }
  .corporate .flex_box .info_box p {
    font-size: 16px;
  }
  .corporate .flex_box .info_box .btn {
    max-width: 56px;
    width: 100%;
    margin-bottom: 5px;
  }
  .corporate .flex_box .info_box .btn a {
    font-size: 12px;
    line-height: 20px;
  }
  .corporate .flex_box .info_box:not(:nth-child(even)):nth-last-child(-n+2) {
    margin: 0 auto 30px;
  }
}
/********************************************
 affiliated
********************************************/
.corporate .affiliated {
  margin-bottom: 100px;
}
.corporate .affiliated .inner {
  max-width: 1000px;
}
.corporate .affiliated .inner .title_block {
  margin-bottom: 65px;
}

/********************************************
 affiliated sp
********************************************/
@media screen and (max-width: 767px) {
  .corporate .affiliated {
    margin-bottom: 70px;
  }
  .corporate .affiliated .inner {
    max-width: 100%;
  }
  .corporate .affiliated .inner .title_block {
    margin-bottom: 20px;
  }
}
/********************************************
 office
********************************************/
.corporate .office {
  padding: 50px 0 100px;
  background: #f7e8e8;
}
.corporate .office .inner {
  max-width: 1000px;
}
.corporate .office .inner .title_block {
  margin-bottom: 65px;
}

/********************************************
 office sp
********************************************/
@media screen and (max-width: 767px) {
  .corporate .office {
    padding: 30px 0 50px;
  }
  .corporate .office .inner {
    max-width: 100%;
  }
  .corporate .office .inner .title_block {
    margin-bottom: 20px;
  }
}
/********************************************
 related
********************************************/
.corporate .related {
  margin-bottom: 100px;
  padding-top: 50px;
}
.corporate .related .inner {
  max-width: 1000px;
}
.corporate .related .inner .title_block {
  margin-bottom: 65px;
}
.corporate .related .inner .info_box {
  max-width: 410px;
}

/********************************************
 related sp
********************************************/
@media screen and (max-width: 767px) {
  .corporate .related {
    margin-bottom: 70px;
    padding-top: 70px;
  }
  .corporate .related .inner {
    max-width: 100%;
  }
  .corporate .related .inner .title_block {
    margin-bottom: 20px;
  }
  .corporate .related .inner .info_box {
    max-width: 410px;
  }
}
/*==========================================================================

 譁ｰ逹諠・ｱ

==========================================================================*/
/********************************************
 news
********************************************/
.news .news_list {
  margin-bottom: 150px;
  padding-top: 10px;
}
.news .news_list .inner ul li {
  padding: 20px 20px 20px 10px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #c7c7c7;
}
.news .news_list .inner ul li .date {
  min-width: 110px;
  margin-right: 20px;
  font-size: 18px;
  color: #dd0f2b;
  font-weight: bold;
}
.news .news_list .inner ul li .text {
  max-width: 925px;
  width: 100%;
  color: #333;
}
.news .news_list .inner ul li .text h3 {
  margin-bottom: 5px;
  font-size: 20px;
}
.news .news_list .inner ul li .text h3 a {
  color: #333;
  text-decoration: underline;
}
.news .news_list .inner ul li .text h3 a:hover {
  text-decoration: none;
}
.news .news_list .inner ul li .text p {
  font-size: 18px;
}

/********************************************
 news sp
********************************************/
@media screen and (max-width: 767px) {
  .news .news_list {
    margin-bottom: 75px;
    padding-top: 0;
  }
  .news .news_list .inner ul li {
    padding: 15px 10px;
    display: block;
  }
  .news .news_list .inner ul li .date {
    min-width: 100%;
    margin: 0 0 5px;
    font-size: 14px;
  }
  .news .news_list .inner ul li .text {
    max-width: 100%;
  }
  .news .news_list .inner ul li .text h3 {
    margin-bottom: 5px;
    font-size: 18px;
  }
  .news .news_list .inner ul li .text h3 a:hover {
    text-decoration: underline;
  }
  .news .news_list .inner ul li .text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
/*==========================================================================

 譁ｰ逹諠・ｱ隧ｳ邏ｰ

==========================================================================*/
/********************************************
 news_detail
********************************************/
.news .news_detail {
  margin-bottom: 150px;
  padding-top: 10px;
}
.news .news_detail .inner .title {
  margin-bottom: 40px;
  padding: 20px;
  background: #f7e8e8;
}
.news .news_detail .inner .title p {
  font-size: 20px;
  color: #dd0f2b;
  font-weight: bold;
  line-height: 1.6;
}
.news .news_detail .inner .title h3 {
  font-size: 26px;
  color: #333;
}
.news .news_detail .inner .contents {
  margin-bottom: 45px;
  padding: 0 20px 70px;
  border-bottom: 1px solid #c7c7c7;
}
.news .news_detail .inner .contents p {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}
.news .news_detail .inner .contents a {
  color: #333;
  text-decoration: underline;
  word-break: break-all;
}
.news .news_detail .inner .contents a:hover {
  text-decoration: none;
}
.news .news_detail .inner .contents .img_box {
  margin: 30px 0 10px;
  display: flex;
  justify-content: center;
}
.news .news_detail .inner .contents .img_box .flex_box {
  max-width: 930px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.news .news_detail .inner .contents .img_box .flex_box img {
  max-width: 450px;
  width: calc(calc(100% - 30px) / 2);
  margin-bottom: 30px;
}
.news .news_detail .inner .contents .img_box .flex_box img:nth-child(odd) {
  margin-right: 30px;
}
.news .news_detail .inner .btn a {
  max-width: 224px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  display: block;
  background: #d11328;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  color: #FFF;
}
.news .news_detail .inner .btn a:hover {
  text-decoration: underline;
}

/********************************************
 news_detail sp
********************************************/
@media screen and (max-width: 767px) {
  .news .news_detail {
    margin-bottom: 75px;
  }
  .news .news_detail .inner .title {
    margin-bottom: 20px;
    padding: 10px;
  }
  .news .news_detail .inner .title p {
    font-size: 14px;
    line-height: 1.5;
  }
  .news .news_detail .inner .title h3 {
    font-size: 18px;
  }
  .news .news_detail .inner .contents {
    margin-bottom: 40px;
    padding: 0 0 40px;
  }
  .news .news_detail .inner .contents p {
    font-size: 16px;
    line-height: 1.6;
  }
  .news .news_detail .inner .contents .img_box {
    margin: 20px 0 10px;
  }
  .news .news_detail .inner .contents .img_box .flex_box img {
    width: calc(calc(100% - 10px) / 2);
    margin-bottom: 10px;
  }
  .news .news_detail .inner .contents .img_box .flex_box img:nth-child(odd) {
    margin-right: 10px;
  }
  .news .news_detail .inner .btn a {
    max-width: 200px;
    padding: 15px 0;
    font-size: 14px;
  }
  .news .news_detail .inner .btn a:hover {
    text-decoration: none;
  }
}
/*==========================================================================

 豢ｻ蜍募ｱ蜻・

==========================================================================*/
/********************************************
 activity
********************************************/
.activity .activity_list {
  margin-bottom: 150px;
  padding-top: 10px;
}
.activity .activity_list .inner ul li {
  padding: 20px 20px 20px 10px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #c7c7c7;
}
.activity .activity_list .inner ul li .date {
  min-width: 110px;
  margin-right: 20px;
  font-size: 18px;
  color: #dd0f2b;
  font-weight: bold;
}
.activity .activity_list .inner ul li .text {
  max-width: 925px;
  width: 100%;
  color: #333;
}
.activity .activity_list .inner ul li .text h3 {
  margin-bottom: 5px;
  font-size: 20px;
}
.activity .activity_list .inner ul li .text h3 a {
  color: #333;
  text-decoration: underline;
}
.activity .activity_list .inner ul li .text h3 a:hover {
  text-decoration: none;
}
.activity .activity_list .inner ul li .text p {
  font-size: 18px;
}

/********************************************
 activity sp
********************************************/
@media screen and (max-width: 767px) {
  .activity .activity_list {
    margin-bottom: 75px;
    padding-top: 0;
  }
  .activity .activity_list .inner ul li {
    padding: 15px 10px;
    display: block;
  }
  .activity .activity_list .inner ul li .date {
    min-width: 100%;
    margin: 0 0 5px;
    font-size: 14px;
  }
  .activity .activity_list .inner ul li .text {
    max-width: 100%;
  }
  .activity .activity_list .inner ul li .text h3 {
    margin-bottom: 5px;
    font-size: 18px;
  }
  .activity .activity_list .inner ul li .text h3 a:hover {
    text-decoration: underline;
  }
  .activity .activity_list .inner ul li .text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
/*==========================================================================

 豢ｻ蜍募ｱ蜻願ｩｳ邏ｰ

==========================================================================*/
/********************************************
 activity_detail
********************************************/
.activity .activity_detail {
  margin-bottom: 150px;
  padding-top: 10px;
}
.activity .activity_detail .inner .title {
  margin-bottom: 40px;
  padding: 20px;
  background: #f7e8e8;
}
.activity .activity_detail .inner .title p {
  font-size: 20px;
  color: #dd0f2b;
  font-weight: bold;
  line-height: 1.6;
}
.activity .activity_detail .inner .title h3 {
  font-size: 26px;
  color: #333;
}
.activity .activity_detail .inner .contents {
  margin-bottom: 45px;
  padding: 0 20px 70px;
  border-bottom: 1px solid #c7c7c7;
}
.activity .activity_detail .inner .contents p {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}
.activity .activity_detail .inner .contents .img_box {
  margin: 30px 0 10px;
  display: flex;
  justify-content: center;
}
.activity .activity_detail .inner .contents .img_box .flex_box {
  max-width: 930px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.activity .activity_detail .inner .contents .img_box .flex_box img {
  max-width: 450px;
  width: calc(calc(100% - 30px) / 2);
  margin-bottom: 30px;
}
.activity .activity_detail .inner .contents .img_box .flex_box img:nth-child(odd) {
  margin-right: 30px;
}
.activity .activity_detail .inner .btn a {
  max-width: 224px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  display: block;
  background: #d11328;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
}
.activity .activity_detail .inner .btn a:hover {
  text-decoration: underline;
}

/********************************************
 activity_detail sp
********************************************/
@media screen and (max-width: 767px) {
  .activity .activity_detail {
    margin-bottom: 75px;
  }
  .activity .activity_detail .inner .title {
    margin-bottom: 20px;
    padding: 10px;
  }
  .activity .activity_detail .inner .title p {
    font-size: 14px;
    line-height: 1.5;
  }
  .activity .activity_detail .inner .title h3 {
    font-size: 18px;
  }
  .activity .activity_detail .inner .contents {
    margin-bottom: 40px;
    padding: 0 0 40px;
  }
  .activity .activity_detail .inner .contents p {
    font-size: 16px;
    line-height: 1.6;
  }
  .activity .activity_detail .inner .contents .img_box {
    margin: 20px 0 10px;
  }
  .activity .activity_detail .inner .contents .img_box .flex_box img {
    width: calc(calc(100% - 10px) / 2);
    margin-bottom: 10px;
  }
  .activity .activity_detail .inner .contents .img_box .flex_box img:nth-child(odd) {
    margin-right: 10px;
  }
  .activity .activity_detail .inner .btn a {
    max-width: 200px;
    padding: 15px 0;
    font-size: 14px;
  }
  .activity .activity_detail .inner .btn a:hover {
    text-decoration: none;
  }
}
/*==========================================================================

 莠区･ｭ蜀・ｮｹ

==========================================================================*/
/********************************************
 contents
********************************************/
.business .contents {
  margin-bottom: 140px;
}
.business .contents .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.business .contents .inner > div:not(:last-child) {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  .business .contents .inner > div {
    width: 49%;
  }
}
/********************************************
 contents sp
********************************************/
@media screen and (max-width: 767px) {
  .business .contents {
    margin-bottom: 70px;
    padding-top: 10px;
  }
  .business .contents .inner {
    display: block;
  }
  .business .contents .inner > div {
    width: 100%;
  }
  .business .contents .inner > div:not(:last-child) {
    margin-bottom: 30px;
  }
}
/*==========================================================================

 謗｡逕ｨ諠・ｱ

==========================================================================*/
/********************************************
 contents
********************************************/
.recruit_info .contents {
  margin-bottom: 100px;
  padding-top: 55px;
}
.recruit_info .contents .inner h3 {
  margin-bottom: 30px;
  font-size: 30px;
  color: #dc0f2b;
  text-align: center; /** 20191105add **/
}
.recruit_info .contents .inner .interview_movie iframe { /** 20191105add **/
  display: block;
  margin: 0 auto;
}
.recruit_info .contents .inner .interview_txt { /** 20191105add **/
  width: 700px;
  margin: 60px auto 30px;
  font-size: 20px;
  color: #333;
}
.recruit_info .contents .inner .interview_txt h4 { /** 20191105add **/
  margin-bottom: 10px;
  text-align: center;
}
.recruit_info .contents .inner .interview_txt .interview_txt_title { /** 20191105add **/
  color: #dc0f2b;
  font-weight: bold;
  margin-top: 15px;
}
.recruit_info .contents .inner .interview_btn { /** 20191105add **/
  width: 600px;
  margin: 60px auto 30px;
  display: flex;
  justify-content: center;
}
.recruit_info .contents .inner .interview_btn .btn { /** 20191105add **/
  width: 285px;
  margin: 0 auto 80px;
}
.recruit_info .contents .inner .interview_btn .btn a { /** 20191105add **/
  width: 100%;
  padding: 15px 0;
  background: #d11328;
  display: block;
  font-size: 24px;
  text-align: center;
  color: #FFF;
}
.recruit_info .contents .inner .requirements {
  margin-bottom: 30px;
  font-size: 20px;
  color: #333;
}
.recruit_info .contents .inner .requirements h4 {
  margin-bottom: 10px;
}
.recruit_info .contents .inner .requirements .list_box {
  max-width: 960px;
  border: 1px solid #e2e2e2;
}
.recruit_info .contents .inner .requirements .list_box dl {
  margin: 0;
  display: flex;
  line-height: 1.5;
}
.recruit_info .contents .inner .requirements .list_box dl:not(:last-child) {
  border-bottom: 1px solid #e2e2e2;
}
.recruit_info .contents .inner .requirements .list_box dl dt {
  width: 200px;
  padding: 15px 0;
  background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%);
  font-size: 16px;
  color: #000;
  text-align: center;
  font-weight: bold;
  border-right: 1px solid #e2e2e2;
}
.recruit_info .contents .inner .requirements .list_box dl dd {
  width: calc(100% - 200px);
  margin-left: 0;
  padding: 15px 25px;
  font-size: 16px;
  color: #000;
}
.recruit_info .contents .inner .requirements .list_box dl dd ul li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
}
.recruit_info .contents .inner .requirements .list_box dl dd .bold {
  font-weight: bold;
}

/********************************************
 contents sp
********************************************/
@media screen and (max-width: 767px) {
  .recruit_info .contents {
    margin-bottom: 50px;
    padding-top: 10px;
  }
  .recruit_info .contents .inner {
    max-width: 510px;
  }
  .recruit_info .contents .inner h3 {
    font-size: 20px;
  }
  .recruit_info .contents .inner .interview_movie { /** 20191105add **/
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .recruit_info .contents .inner .interview_movie iframe { /** 20191105add **/
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }
  .recruit_info .contents .inner .interview_txt { /** 20191105add **/
    width: 100%;
    margin: 10% auto 0;
    font-size: 18px;
    color: #333;
  }
  .recruit_info .contents .inner .interview_txt h4 { /** 20191105add **/
    margin-bottom: 1%;
    text-align: center;
  }
  .recruit_info .contents .inner .interview_txt .interview_txt_title { /** 20191105add **/
    color: #dc0f2b;
    font-weight: bold;
    margin-top: 2%;
  }
  .recruit_info .contents .inner .interview_btn { /** 20191105add **/
    width: 95%;
    margin: 5% auto 15%;
    display: flex;
    justify-content: center;
  }
  .recruit_info .contents .inner .interview_btn .btn { /** 20191105add **/
    width: 40%;
    margin: 0 auto  2%;
  }
  .recruit_info .contents .inner .interview_btn .btn a { /** 20191105add **/
    width: 100%;
    padding: 10px 0;
    background: #d11328;
    display: block;
    font-size: 18px;
    text-align: center;
  }
  .recruit_info .contents .inner .requirements {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .recruit_info .contents .inner .requirements .list_box {
    max-width: 100%;
  }
  .recruit_info .contents .inner .requirements .list_box dl {
    display: block;
  }
  .recruit_info .contents .inner .requirements .list_box dl dt {
    width: 100%;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid #e2e2e2;
  }
  .recruit_info .contents .inner .requirements .list_box dl dd {
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.7;
  }
  .recruit_info .contents .inner .requirements .list_box dl dd ul li,
  .recruit_info .contents .inner .requirements .list_box dl dd p {
    line-height: 1.7;
  }
}
/********************************************
 form
********************************************/
.recruit_info .form {
  margin-bottom: 100px;
}
.recruit_info .form .inner {
  max-width: 980px;
}
.recruit_info .form .inner form .note {
  font-size: 18px;
  margin-bottom: 5px;
}
.recruit_info .form .inner form .note sup {
  font-size: 12px;
  color: #e20023;
}
.recruit_info .form .inner form .button {
  margin-top: 30px;
}
.recruit_info .form .inner form .button p {
  display: flex;
  justify-content: center;
}
.recruit_info .form .inner form .button p button {
  padding: 15px 30px;
  background: none;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  outline: none;
}
.recruit_info .form .inner form .button p button:nth-child(-n+2) {
  margin-right: 20px;
}
.recruit_info .form .inner form .button p button:hover {
  opacity: .7;
}
.recruit_info .form .inner form .button p button.confirm {
  background: #d11328;
}
.recruit_info .form .inner form .button p button.reset {
  background: #666;
}

.recruit_info .form .inner form ul {
  display: flex;
  align-items: center;
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}

.recruit_info .form .inner form ul .title {
  max-width: 325px;
  padding: 21px 0;
  background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%);
  font-size: 18px;
  color: #000;
  text-align: center;
  font-weight: bold;
  border-right: 1px solid #e2e2e2;
}

.recruit_info .form .inner form ul .title sup {
  font-size: 12px;
  color: #e20023;
}

.recruit_info .form .inner form ul li:not(.title) {
  padding: 0 30px;
}

.recruit_info .form .inner form ul li {
  width: 100%;
}

.recruit_info .form .inner form ul li input {
  max-width: 280px;
  width: 100% !important;
  font-size: 16px;
  padding: 3px;
}

.recruit_info .form .inner form ul li .large {
  max-width: 455px;
}

.recruit_info .form .inner form ul li .small {
  max-width: 100px;
}

.recruit_info .form .inner form ul li textarea {
  max-width: 325px;
  width: 100% !important;
  height: auto !important;
  font-size: 14px;
}

.recruit_info .form .inner form ul li button {
  background: none;
  font-weight: bold;
  border: 1px solid #848484;
  border-radius: 3px;
  cursor: pointer;
  outline: none;
}

.recruit_info .form .inner form ul.mail {
  border-top: 1px solid #e2e2e2;
}

.recruit_info .form .inner form ul.contact {
  align-items: inherit;
}

.recruit_info .form .inner form ul.contact .title {
  display: flex;
  justify-content: center;
}

.recruit_info .form .inner form ul.contact li:not(.title) {
  padding: 15px 30px;
  line-height: 0;
}

.recruit_info .form .inner form ul.policy li:not(.title) {
  display: flex;
  align-items: center;
}

.recruit_info .form .inner form ul.policy li:not(.title) label input {
  display: none;
}

.recruit_info .form .inner form ul.policy li:not(.title) label:first-child {
  margin-right: 10px;
}

.recruit_info .form .inner form ul.policy li:not(.title) span.check_box {
  padding-left: 25px;
  position: relative;
  display: block;
  font-weight: bold;
}

.recruit_info .form .inner form ul.policy li:not(.title) span.check_box::before {
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  border: 1px solid #848484;
  border-radius: 3px;
}

.recruit_info .form .inner form ul.policy li:not(.title) input:checked + span.check_box::after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 9px;
  border: 0px;
  border-bottom: solid 3px #848484;
  border-right: solid 3px #848484;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
  left: 5px;
}

.recruit_info .form .inner form ul.rdobtn li:not(.title) {
  display: flex;
  align-items: center;
}

.recruit_info .form .inner form ul.rdobtn li:not(.title) label input {
  display: none;
}

.recruit_info .form .inner form ul.rdobtn li:not(.title) label:first-child {
  margin-right: 10px;
}

.recruit_info .form .inner form ul.rdobtn li:not(.title) span.radio_btn {
  padding-left: 25px;
  position: relative;
  display: block;
  font-weight: bold;
}

.recruit_info .form .inner form ul.rdobtn li:not(.title) span.radio_btn::before {
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  border: 1px solid #848484;
  border-radius: 50%;
}

.recruit_info .form .inner form ul.rdobtn li:not(.title) input:checked + span.radio_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: #848484;
  border-radius: 50%;
}

/********************************************
 form sp
********************************************/
@media screen and (max-width: 767px) {
  .recruit_info .form {
    margin-bottom: 50px;
  }
  .recruit_info .form .inner {
    max-width: 510px;
  }
  .recruit_info .form .inner form ul {
    display: block;
  }
  .recruit_info .form .inner form ul .title {
    max-width: 100%;
    padding: 13px 0;
    font-size: 16px;
    border-right: 0;
    border-bottom: 1px solid #e2e2e2;
  }
  .recruit_info .form .inner form ul li:not(.title) {
    padding: 15px;
  }
  .recruit_info .form .inner form ul li {
    width: 100%;
  }
  .recruit_info .form .inner form ul li input {
    max-width: 100%;
    font-size: 14px;
  }
  .recruit_info .form .inner form ul li .large {
    max-width: 100%;
  }
  .recruit_info .form .inner form ul li textarea {
    max-width: 100%;
  }
  .recruit_info .form .inner form ul.code li:not(.title) {
    display: flex;
    justify-content: center;
  }
  .recruit_info .form .inner form ul.code li:not(.title) input {
    margin-right: 5px;
  }
  .recruit_info .form .inner form ul.contact li:not(.title) {
    padding: 15px;
  }
  .recruit_info .form .inner form ul.policy li:not(.title) {
    justify-content: center;
  }
  .recruit_info .form .inner form ul.policy li:not(.title) span.check_box {
    font-size: 14px;
  }
  .recruit_info .form .inner form ul.button li:not(.title) {
    display: flex;
    justify-content: center;
  }
  .recruit_info .form .inner form ul.button li:not(.title) button:first-child {
    margin-right: 10px;
  }
  .recruit_info .form .inner form ul.rdobtn li:not(.title) {
    justify-content: center;
  }
  .recruit_info .form .inner form ul.rdobtn li:not(.title) span.radio_btn {
    font-size: 14px;
  }
}
/*==========================================================================

 莠区･ｭ蜀・ｮｹ蜈ｱ騾夐Κ蛻・

==========================================================================*/
/********************************************
 蜈ｱ騾・
********************************************/
.business_contents .contents .inner .logo_red {
  margin-bottom: 60px;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #d11328;
  border-bottom: 1px solid #d11328;
}
.business_contents .contents .inner .slider_box {
  margin-bottom: 55px;
}
.business_contents .contents .inner .slider_box .slider_business {
  margin-bottom: 30px;
}
.business_contents .contents .inner .slider_box .slider_business li {
  outline: none;
}
.business_contents .contents .inner .slider_box .thumb_business .slick-track {
  display: flex;
  justify-content: space-between;
}
.business_contents .contents .inner .slider_box .thumb_business .slick-track li {
  max-width: 249px;
  outline: none;
  cursor: pointer;
}
.business_contents .contents .inner .slider_box .thumb_business .slick-track::before,
.business_contents .contents .inner .slider_box .thumb_business .slick-track::after {
  content: none;
}
.business_contents .contents .inner .business_policy h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #dc0f2b;
  letter-spacing: 0.5em;
}
.business_contents .contents .inner .business_policy p {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
}
/** 2020107add **/
.business_contents .office .inner .flex_box .office_block a span {
  color: #666;
  padding-right: 24px;
  background: url(../img/web_icon.png) right center/20px auto no-repeat;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  .business_contents .contents .inner .slider_box .thumb_business .slick-track li {
    width: 23% !important;
  }
}
/********************************************
 蜈ｱ騾・sp
********************************************/
@media screen and (max-width: 767px) {
  .business_contents .contents .inner .logo_red {
    margin-bottom: 30px;
    padding: 20px 0;
  }
  .business_contents .contents .inner .slider_box {
    margin-bottom: 30px;
  }
  .business_contents .contents .inner .slider_box .slider_business {
    margin-bottom: 10px;
  }
  .business_contents .contents .inner .slider_box .thumb_business .slick-track li {
    width: 23% !important;
  }
  .business_contents .contents .inner .business_policy h3 {
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: 0.3em;
  }
  .business_contents .contents .inner .business_policy p {
    font-size: 16px;
  }
}
/********************************************
 蜈ｱ騾・office
********************************************/
.business_contents .office {
  padding: 50px 0 80px;
  background: #f7e8e8;
}
.business_contents .office .inner {
  max-width: 1000px;
}
.business_contents .office .inner .title_block {
  margin-bottom: 65px;
}
.business_contents .office .inner .flex_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.business_contents .office .inner .flex_box .office_block {
  max-width: 380px;
  width: 100%;
  margin-bottom: 30px;
}
.business_contents .office .inner .flex_box .office_block .info_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.business_contents .office .inner .flex_box .office_block .info_box p {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
}
.corporate .affiliated .inner .flex_box .info_box p a,
.business_contents .office .inner .flex_box .office_block .info_box p a{
  color: #666;
}

.business_contents .office .inner .flex_box .office_block .info_box p span {
  font-weight: bold;
}
.business_contents .office .inner .flex_box .office_block .info_box .btn {
  max-width: 56px;
  width: 100%;
  margin-bottom: 5px;
}
.business_contents .office .inner .flex_box .office_block .info_box .btn a {
  background: #0c80b3;
  display: block;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  color: #FFF;
}
.business_contents .office .inner .flex_box .office_block .info_box:last-child,
.business_contents .office .inner .flex_box .office_block .info_box:not(:nth-child(even)):nth-last-child(-n+2) {
  margin-bottom: 0;
}
.business_contents .office .inner .flex_box .office_block .info_box.align_end {
  align-items: flex-end;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  .business_contents .office .inner .flex_box {
    display: block;
  }
  .business_contents .office .inner .flex_box .office_block {
    margin: 0 auto 30px;
  }
}
/********************************************
 蜈ｱ騾・office sp
********************************************/
@media screen and (max-width: 767px) {
  .business_contents .office {
    padding: 30px 0 45px;
  }
  .business_contents .office .inner {
    max-width: 100%;
  }
  .business_contents .office .inner .title_block {
    margin-bottom: 20px;
  }
  .business_contents .office .inner .flex_box {
    display: block;
  }
  .business_contents .office .inner .flex_box .office_block {
    margin: 0 auto 25px;
  }
  .business_contents .office .inner .flex_box .office_block .info_box p {
    font-size: 16px;
  }
  .business_contents .office .inner .flex_box .office_block .info_box .btn a {
    font-size: 12px;
  }
}
/*==========================================================================

 閾ｪ蜍戊ｻ頑蕗鄙剃ｺ区･ｭ

==========================================================================*/
/********************************************
 contents
********************************************/
.driving_school .contents {
  margin-bottom: 75px;
}

/********************************************
 contents sp
********************************************/
@media screen and (max-width: 767px) {
  .driving_school .contents {
    margin-bottom: 70px;
  }
}
/********************************************
 office
********************************************/
.driving_school .office .inner .flex_box .office_block .category_box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.driving_school .office .inner .flex_box .office_block .category_box ul li {
  max-width: 72px;
  width: 100%;
  background: #999;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  border-radius: 2px;
}
.driving_school .office .inner .flex_box .office_block .category_box ul li.active {
  background: #d11328;
}
.driving_school .office .inner .flex_box .office_block .category_box ul li:nth-child(-n+5) {
  margin-bottom: 5px;
}
.driving_school .office .inner .flex_box .office_block .category_box ul li:nth-child(11) {
  margin-top: 5px;
}

/********************************************
 office 20190617
********************************************/
.driving_school .office .inner .flex_box .office_block .icon_box ul {
  display: flex;
  flex-wrap: wrap;
}
.driving_school .office .inner .flex_box .office_block .icon_box ul li {
  max-width: 30px;
  width: 100%;
  margin: 1% 1% 0 0;
}


/********************************************
 office sp
********************************************/
@media screen and (max-width: 767px) {
  .driving_school .office .inner .flex_box .office_block .category_box ul {
    justify-content: normal;
  }
  .driving_school .office .inner .flex_box .office_block .category_box ul li {
    margin-right: calc(calc(100% - 72px * 4) / 3);
    margin-bottom: 5px;
    font-size: 12px;
  }
  .driving_school .office .inner .flex_box .office_block .category_box ul li:nth-child(4n) {
    margin-right: 0;
  }
  .driving_school .office .inner .flex_box .office_block .category_box ul li:nth-child(11) {
    margin-top: 0;
  }
}
/*==========================================================================

 繝ｯ繝ｼ繧ｯ繝ｩ繧､繧ｻ繝ｳ繧ｹ莠区･ｭ

==========================================================================*/
/********************************************
 contents
********************************************/
.license_school .contents {
  margin-bottom: 75px;
}
.license_school .contents .inner .business_policy {
  margin-bottom: 55px;
}
.license_school .contents .inner .appeal {
  margin-bottom: 90px;
}
.license_school .contents .inner .appeal h3 {
  margin-bottom: 30px;
  font-size: 24px;
  color: #dc0f2b;
  letter-spacing: 0.5em;
  text-align: center;
}
.license_school .contents .inner .appeal .flex_box {
  display: flex;
}
.license_school .contents .inner .appeal .flex_box ul {
  max-width: 530px;
}
.license_school .contents .inner .appeal .flex_box ul li {
  font-size: 20px;
}
.license_school .contents .inner .appeal .flex_box ul li h4 {
  color: #cc0033;
  line-height: 1.5;
}
.license_school .contents .inner .appeal .flex_box ul li p {
  color: #333;
  line-height: 1.5;
}
.license_school .contents .inner .appeal .flex_box ul li:not(:last-child) {
  margin-bottom: 45px;
}
.license_school .contents .inner .appeal .flex_box ul.left {
  margin-right: 50px;
}
.license_school .contents .inner .reservation h3 {
  font-size: 39px;
  color: #d01f49;
}
.license_school .contents .inner .reservation p {
  font-size: 26px;
  color: #666;
  font-weight: bold;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  .license_school .contents .inner .appeal .flex_box {
    display: block;
  }
  .license_school .contents .inner .appeal .flex_box ul {
    max-width: 530px;
    margin: 0 auto;
  }
  .license_school .contents .inner .appeal .flex_box ul.left {
    margin-bottom: 45px;
    margin-right: auto;
  }
  .license_school .contents .inner .reservation {
    max-width: 705px;
    margin: 0 auto;
  }
  .license_school .contents .inner .reservation h3 {
    font-size: 34px;
  }
  .license_school .contents .inner .reservation p {
    font-size: 24px;
  }
}
/********************************************
 contents sp
********************************************/
@media screen and (max-width: 767px) {
  .license_school .contents {
    margin-bottom: 70px;
  }
  .license_school .contents .inner .business_policy {
    margin-bottom: 40px;
  }
  .license_school .contents .inner .appeal {
    margin-bottom: 50px;
  }
  .license_school .contents .inner .appeal h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .license_school .contents .inner .appeal .flex_box {
    display: block;
  }
  .license_school .contents .inner .appeal .flex_box ul {
    margin: 0 auto;
  }
  .license_school .contents .inner .appeal .flex_box ul li {
    font-size: 16px;
  }
  .license_school .contents .inner .appeal .flex_box ul li:not(:last-child) {
    margin-bottom: 25px;
  }
  .license_school .contents .inner .appeal .flex_box ul.left {
    margin-bottom: 25px;
    margin-right: auto;
  }
  .license_school .contents .inner .reservation {
    max-width: 530px;
    margin: 0 auto;
  }
  .license_school .contents .inner .reservation h3 {
    font-size: 24px;
  }
  .license_school .contents .inner .reservation p {
    font-size: 18px;
  }
}
/********************************************
 office
********************************************/
.license_school .office .inner .flex_box .office_block {
  max-width: 405px;
}
.license_school .office .inner .flex_box .office_block .info_box p span.small {
  font-size: 16px;
  font-weight: normal;
}
.license_school .office .inner .flex_box .office_block .category_box ul {
  display: flex;
  flex-wrap: wrap;
}
.license_school .office .inner .flex_box .office_block .category_box ul li {
  margin-right: 10px;
  padding: 0 10px;
  background: #d11328;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  border-radius: 2px;
}
.license_school .office .inner .flex_box .office_block .category_box ul li:nth-child(n+4) {
  margin-top: 10px;
}

/********************************************
 office sp
********************************************/
@media screen and (max-width: 767px) {
  .license_school .office .inner .flex_box .office_block .info_box p span.small {
    font-size: 14px;
  }
  .license_school .office .inner .flex_box .office_block .category_box ul li {
    margin-right: 8px;
    padding: 0 8px;
    font-size: 12px;
  }
  .license_school .office .inner .flex_box .office_block .category_box ul li:nth-child(n+4) {
    margin-top: 8px;
  }
}
/*==========================================================================

 螳牙・謨呵ご莠区･ｭ

==========================================================================*/
/********************************************
 contents
********************************************/
.safety_education .contents {
  margin-bottom: 70px;
}
.safety_education .contents .inner .business_policy {
  margin-bottom: 100px;
}
.safety_education .contents .inner .appeal {
  margin-bottom: 75px;
}
.safety_education .contents .inner .appeal h3 {
  margin-bottom: 30px;
  font-size: 24px;
  color: #dc0f2b;
  letter-spacing: 0.5em;
  text-align: center;
}
.safety_education .contents .inner .appeal .flex_box {
  display: flex;
}
.safety_education .contents .inner .appeal .flex_box ul {
  max-width: 530px;
}
.safety_education .contents .inner .appeal .flex_box ul li {
  font-size: 20px;
}
.safety_education .contents .inner .appeal .flex_box ul li h4 {
  color: #cc0033;
  line-height: 1.5;
}
.safety_education .contents .inner .appeal .flex_box ul li p {
  color: #333;
  line-height: 1.5;
}
.safety_education .contents .inner .appeal .flex_box ul li:not(:last-child) {
  margin-bottom: 45px;
}
.safety_education .contents .inner .appeal .flex_box ul.left {
  margin-right: 50px;
}
.safety_education .contents .inner .service_guide h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #d01f49;
}
.safety_education .contents .inner .service_guide ul {
  display: flex;
}
.safety_education .contents .inner .service_guide ul li {
  margin-right: 5px;
  padding: 0 8px;
  background: #d11328;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  border-radius: 2px;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  .safety_education .contents .inner .appeal .flex_box {
    display: block;
  }
  .safety_education .contents .inner .appeal .flex_box ul {
    max-width: 530px;
    margin: 0 auto;
  }
  .safety_education .contents .inner .appeal .flex_box ul.left {
    margin-bottom: 45px;
    margin-right: auto;
  }
  .safety_education .contents .inner .service_guide {
    max-width: 530px;
    margin: 0 auto;
  }
}
/********************************************
 contents sp
********************************************/
@media screen and (max-width: 767px) {
  .safety_education .contents .inner .business_policy {
    margin-bottom: 50px;
  }
  .safety_education .contents .inner .appeal {
    margin-bottom: 50px;
  }
  .safety_education .contents .inner .appeal h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .safety_education .contents .inner .appeal .flex_box {
    display: block;
  }
  .safety_education .contents .inner .appeal .flex_box ul {
    max-width: 530px;
    margin: 0 auto;
  }
  .safety_education .contents .inner .appeal .flex_box ul li {
    font-size: 16px;
  }
  .safety_education .contents .inner .appeal .flex_box ul li:not(:last-child) {
    margin-bottom: 25px;
  }
  .safety_education .contents .inner .appeal .flex_box ul.left {
    margin-bottom: 25px;
    margin-right: auto;
  }
  .safety_education .contents .inner .service_guide {
    max-width: 530px;
    margin: 0 auto;
  }
  .safety_education .contents .inner .service_guide ul {
    flex-wrap: wrap;
  }
  .safety_education .contents .inner .service_guide ul li {
    margin-bottom: 5px;
    margin-right: 5px;
    padding: 0 8px;
    font-size: 12px;
  }
}
/********************************************
 office
********************************************/
.safety_education .office .inner .flex_box .office_block {
  max-width: 400px;
}

/*==========================================================================

 菫晁ご莠区･ｭ

==========================================================================*/
/********************************************
 contents
********************************************/
.nursery_school .contents {
  margin-bottom: 70px;
}
.nursery_school .contents .inner .business_policy {
  margin-bottom: 100px;
}
.nursery_school .contents .inner .appeal {
  margin-bottom: 85px;
}
.nursery_school .contents .inner .appeal h3 {
  margin-bottom: 30px;
  font-size: 24px;
  color: #dc0f2b;
  letter-spacing: 0.5em;
  text-align: center;
}
.nursery_school .contents .inner .appeal .flex_box {
  display: flex;
}
.nursery_school .contents .inner .appeal .flex_box ul {
  max-width: 530px;
}
.nursery_school .contents .inner .appeal .flex_box ul li {
  font-size: 20px;
}
.nursery_school .contents .inner .appeal .flex_box ul li h4 {
  color: #cc0033;
  line-height: 1.5;
}
.nursery_school .contents .inner .appeal .flex_box ul li p {
  color: #333;
  line-height: 1.5;
}
.nursery_school .contents .inner .appeal .flex_box ul li:not(:last-child) {
  margin-bottom: 45px;
}
.nursery_school .contents .inner .appeal .flex_box ul.left {
  margin-right: 50px;
}
.nursery_school .contents .inner .childcare_goal {
  max-width: 560px;
  margin: 0 auto;
}
.nursery_school .contents .inner .childcare_goal h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #cc0033;
  text-align: center;
}
.nursery_school .contents .inner .childcare_goal ul li {
  font-size: 24px;
  color: #333;
  font-weight: bold;
}
.nursery_school .contents .inner .childcare_goal ul li span {
  color: #cc0000;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  .nursery_school .contents .inner .appeal .flex_box {
    display: block;
  }
  .nursery_school .contents .inner .appeal .flex_box ul {
    max-width: 530px;
    margin: 0 auto;
  }
  .nursery_school .contents .inner .appeal .flex_box ul.left {
    margin-bottom: 45px;
    margin-right: auto;
  }
  .nursery_school .contents .inner .service_guide {
    max-width: 530px;
    margin: 0 auto;
  }
}
/********************************************
 contents sp
********************************************/
@media screen and (max-width: 767px) {
  .nursery_school .contents .inner .business_policy {
    margin-bottom: 50px;
  }
  .nursery_school .contents .inner .appeal {
    margin-bottom: 50px;
  }
  .nursery_school .contents .inner .appeal h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .nursery_school .contents .inner .appeal .flex_box {
    display: block;
  }
  .nursery_school .contents .inner .appeal .flex_box ul {
    max-width: 530px;
    margin: 0 auto;
  }
  .nursery_school .contents .inner .appeal .flex_box ul li {
    font-size: 16px;
  }
  .nursery_school .contents .inner .appeal .flex_box ul li:not(:last-child) {
    margin-bottom: 25px;
  }
  .nursery_school .contents .inner .appeal .flex_box ul.left {
    margin-bottom: 25px;
    margin-right: auto;
  }
  .nursery_school .contents .inner .childcare_goal {
    max-width: 560px;
    margin: 0 auto;
  }
  .nursery_school .contents .inner .childcare_goal ul li {
    padding-left: 1em;
    text-indent: -1em;
    font-size: 18px;
  }
}
/*==========================================================================

 繝ｬ繝ｳ繧ｿ繝ｫ繝舌う繧ｯ莠区･ｭ

==========================================================================*/
/********************************************
 contents
********************************************/
.rental_bikes .contents {
  margin-bottom: 70px;
}
.rental_bikes .contents .inner .business_policy {
  margin-bottom: 100px;
}
.rental_bikes .contents .inner .appeal {
  margin-bottom: 85px;
}
.rental_bikes .contents .inner .appeal h3 {
  margin-bottom: 30px;
  font-size: 24px;
  color: #dc0f2b;
  letter-spacing: 0.5em;
  text-align: center;
}
.rental_bikes .contents .inner .appeal .flex_box {
  display: flex;
}
.rental_bikes .contents .inner .appeal .flex_box ul {
  max-width: 530px;
}
.rental_bikes .contents .inner .appeal .flex_box ul li {
  font-size: 20px;
}
.rental_bikes .contents .inner .appeal .flex_box ul li h4 {
  color: #cc0033;
  line-height: 1.5;
}
.rental_bikes .contents .inner .appeal .flex_box ul li p {
  color: #333;
  line-height: 1.5;
}
.rental_bikes .contents .inner .appeal .flex_box ul li:not(:last-child) {
  margin-bottom: 45px;
}
.rental_bikes .contents .inner .appeal .flex_box ul.left {
  margin-right: 50px;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  .rental_bikes .contents .inner .appeal .flex_box {
    display: block;
  }
  .rental_bikes .contents .inner .appeal .flex_box ul {
    max-width: 530px;
    margin: 0 auto;
  }
  .rental_bikes .contents .inner .appeal .flex_box ul.left {
    margin-bottom: 45px;
    margin-right: auto;
  }
}
/********************************************
 contents sp
********************************************/
@media screen and (max-width: 767px) {
  .rental_bikes .contents .inner .business_policy {
    margin-bottom: 50px;
  }
  .rental_bikes .contents .inner .appeal {
    margin-bottom: 50px;
  }
  .rental_bikes .contents .inner .appeal h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .rental_bikes .contents .inner .appeal .flex_box {
    display: block;
  }
  .rental_bikes .contents .inner .appeal .flex_box ul {
    max-width: 530px;
    margin: 0 auto;
  }
  .rental_bikes .contents .inner .appeal .flex_box ul li {
    font-size: 16px;
  }
  .rental_bikes .contents .inner .appeal .flex_box ul li:not(:last-child) {
    margin-bottom: 25px;
  }
  .rental_bikes .contents .inner .appeal .flex_box ul.left {
    margin-bottom: 25px;
    margin-right: auto;
  }
}
/*==========================================================================

 蜈千ｫ･謨呵ご莠区･ｭ

==========================================================================*/
/********************************************
 contents
********************************************/
.child_education .contents {
  margin-bottom: 70px;
}
.child_education .contents .inner .business_policy {
  margin-bottom: 100px;
}
.child_education .contents .inner .appeal {
  margin-bottom: 85px;
}
.child_education .contents .inner .appeal h3 {
  margin-bottom: 30px;
  font-size: 24px;
  color: #dc0f2b;
  letter-spacing: 0.5em;
  text-align: center;
}
.child_education .contents .inner .appeal .flex_box {
  display: flex;
}
.child_education .contents .inner .appeal .flex_box ul {
  max-width: 530px;
}
.child_education .contents .inner .appeal .flex_box ul li {
  font-size: 20px;
}
.child_education .contents .inner .appeal .flex_box ul li h4 {
  color: #cc0033;
  line-height: 1.5;
}
.child_education .contents .inner .appeal .flex_box ul li p {
  color: #333;
  line-height: 1.5;
}
.child_education .contents .inner .appeal .flex_box ul li:not(:last-child) {
  margin-bottom: 45px;
}
.child_education .contents .inner .appeal .flex_box ul.left {
  margin-right: 50px;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  .child_education .contents .inner .appeal .flex_box {
    display: block;
  }
  .child_education .contents .inner .appeal .flex_box ul {
    max-width: 530px;
    margin: 0 auto;
  }
  .child_education .contents .inner .appeal .flex_box ul.left {
    margin-bottom: 45px;
    margin-right: auto;
  }
}
/********************************************
 contents sp
********************************************/
@media screen and (max-width: 767px) {
  .child_education .contents .inner .business_policy {
    margin-bottom: 50px;
  }
  .child_education .contents .inner .appeal {
    margin-bottom: 50px;
  }
  .child_education .contents .inner .appeal h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .child_education .contents .inner .appeal .flex_box {
    display: block;
  }
  .child_education .contents .inner .appeal .flex_box ul {
    max-width: 530px;
    margin: 0 auto;
  }
  .child_education .contents .inner .appeal .flex_box ul li {
    font-size: 16px;
  }
  .child_education .contents .inner .appeal .flex_box ul li:not(:last-child) {
    margin-bottom: 25px;
  }
  .child_education .contents .inner .appeal .flex_box ul.left {
    margin-bottom: 25px;
    margin-right: auto;
  }
}
/*==========================================================================

 繧ｷ繝九い繧ｵ繝ｼ繝薙せ莠区･ｭ

==========================================================================*/
/********************************************
 contents
********************************************/
.senior_services .contents {
  margin-bottom: 90px;
}
.senior_services .contents .inner .business_policy {
  margin-bottom: 100px;
}
.senior_services .contents .inner .emergency_section {
  margin-bottom: 65px;
}
.senior_services .contents .inner .emergency_section h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #dc0f2b;
  letter-spacing: 0.5em;
  text-align: center;
}
.senior_services .contents .inner .emergency_section .description {
  margin-bottom: 50px;
  font-size: 20px;
  color: #333;
  line-height: 1.5;
}
.senior_services .contents .inner .emergency_section .flex_box {
  display: flex;
}
.senior_services .contents .inner .emergency_section .flex_box ul {
  max-width: 530px;
}
.senior_services .contents .inner .emergency_section .flex_box ul li {
  font-size: 20px;
}
.senior_services .contents .inner .emergency_section .flex_box ul li h4 {
  color: #cc0033;
  line-height: 1.5;
}
.senior_services .contents .inner .emergency_section .flex_box ul li p {
  color: #333;
  line-height: 1.5;
}
.senior_services .contents .inner .emergency_section .flex_box ul li:not(:last-child) {
  margin-bottom: 45px;
}
.senior_services .contents .inner .emergency_section .flex_box ul.left {
  margin-right: 50px;
}
.senior_services .contents .inner .delivery_section {
  margin-bottom: 65px;
}
.senior_services .contents .inner .delivery_section h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #dc0f2b;
  letter-spacing: 0.5em;
  text-align: center;
}
.senior_services .contents .inner .delivery_section .description {
  margin-bottom: 50px;
  font-size: 20px;
  color: #333;
  line-height: 1.5;
}
.senior_services .contents .inner .delivery_section h4 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #d01f49;
}
.senior_services .contents .inner .delivery_section ul {
  display: flex;
}
.senior_services .contents .inner .delivery_section ul li {
  margin-right: 5px;
  padding: 0 8px;
  background: #d11328;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  border-radius: 2px;
}
.senior_services .contents .inner .health_section h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #dc0f2b;
  letter-spacing: 0.5em;
  text-align: center;
}
.senior_services .contents .inner .health_section .description {
  margin-bottom: 50px;
  font-size: 20px;
  color: #333;
  line-height: 1.5;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  .senior_services .contents .inner .emergency_section .flex_box {
    display: block;
  }
  .senior_services .contents .inner .emergency_section .flex_box ul {
    max-width: 530px;
    margin: 0 auto;
  }
  .senior_services .contents .inner .emergency_section .flex_box ul.left {
    margin-bottom: 45px;
    margin-right: auto;
  }
  .senior_services .contents .inner .delivery_section .flex_box {
    max-width: 795px;
    margin: 0 auto;
  }
}
/********************************************
 contents sp
********************************************/
@media screen and (max-width: 767px) {
  .senior_services .contents {
    margin-bottom: 70px;
  }
  .senior_services .contents .inner .business_policy {
    margin-bottom: 50px;
  }
  .senior_services .contents .inner .emergency_section {
    margin-bottom: 50px;
  }
  .senior_services .contents .inner .emergency_section h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .senior_services .contents .inner .emergency_section .description {
    margin-bottom: 25px;
    font-size: 16px;
  }
  .senior_services .contents .inner .emergency_section .flex_box {
    display: block;
  }
  .senior_services .contents .inner .emergency_section .flex_box ul {
    max-width: 530px;
    margin: 0 auto;
  }
  .senior_services .contents .inner .emergency_section .flex_box ul li {
    font-size: 16px;
  }
  .senior_services .contents .inner .emergency_section .flex_box ul li:not(:last-child) {
    margin-bottom: 25px;
  }
  .senior_services .contents .inner .emergency_section .flex_box ul.left {
    margin-bottom: 25px;
    margin-right: auto;
  }
  .senior_services .contents .inner .delivery_section {
    margin-bottom: 50px;
  }
  .senior_services .contents .inner .delivery_section h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .senior_services .contents .inner .delivery_section .description {
    margin-bottom: 25px;
    font-size: 16px;
  }
  .senior_services .contents .inner .delivery_section .flex_box h4 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .senior_services .contents .inner .delivery_section .flex_box ul {
    flex-wrap: wrap;
  }
  .senior_services .contents .inner .delivery_section .flex_box ul li {
    margin-bottom: 5px;
    margin-right: 5px;
    padding: 0 8px;
    font-size: 12px;
  }
  .senior_services .contents .inner .health_section h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .senior_services .contents .inner .health_section .description {
    margin-bottom: 25px;
    font-size: 16px;
  }
}



/*==========================================================================

 ドローンスクール / 20200323add 

==========================================================================*/
/********************************************
 contents
********************************************/
.drone_education .contents {
  margin-bottom: 90px;
}
.drone_education .contents .inner .business_policy {
  margin-bottom: 100px;
}
.drone_education .contents .inner .emergency_section {
  margin-bottom: 65px;
}
.drone_education .contents .inner .emergency_section h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #dc0f2b;
  letter-spacing: 0.5em;
  text-align: center;
}
.drone_education .contents .inner .emergency_section .description {
  margin-bottom: 50px;
  font-size: 20px;
  color: #333;
  line-height: 1.5;
}
.drone_education .contents .inner .emergency_section .flex_box {
  display: flex;
}
.drone_education .contents .inner .emergency_section .flex_box ul {
  max-width: 530px;
}
.drone_education .contents .inner .emergency_section .flex_box ul li {
  font-size: 20px;
}
.drone_education .contents .inner .emergency_section .flex_box ul li h4 {
  color: #cc0033;
  line-height: 1.5;
}
.drone_education .contents .inner .emergency_section .flex_box ul li p {
  color: #333;
  line-height: 1.5;
}
.drone_education .contents .inner .emergency_section .flex_box ul li {
  margin-bottom: 45px;
}
.drone_education .contents .inner .emergency_section .flex_box ul.left {
  margin-right: 50px;
}
.drone_education .contents .inner .emergency_section .flex_box .left .list_dot {
list-style-type: disc !important;
margin: 10px 0 0 1.5em;
padding: 0;
}
.drone_education .contents .inner .emergency_section .flex_box .right .list_dot {
list-style-type: disc !important;
margin: 10px 0 0 1.5em;
padding: 0;
}
.drone_education .contents .inner .delivery_section {
  margin-bottom: 65px;
}
.drone_education .contents .inner .delivery_section h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #dc0f2b;
  letter-spacing: 0.5em;
  text-align: center;
}
.drone_education .contents .inner .delivery_section .description {
  margin-bottom: 50px;
  font-size: 20px;
  color: #333;
  line-height: 1.5;
}
.drone_education .contents .inner .delivery_section h4 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #d01f49;
}
.drone_education .contents .inner .delivery_section ul {
  display: flex;
}
.drone_education .contents .inner .delivery_section ul li {
  margin-right: 5px;
  padding: 0 8px;
  background: #d11328;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  border-radius: 2px;
}





@media screen and (min-width: 768px) and (max-width: 1129px) {
  .drone_education .contents .inner .emergency_section .flex_box {
    display: block;
  }
  .drone_education .contents .inner .emergency_section .flex_box ul {
    max-width: 530px;
    margin: 0 auto;
  }
  .drone_education .contents .inner .emergency_section .flex_box ul.left {
    margin-bottom: 45px;
    margin-right: auto;
  }

  .drone_education .contents .inner .delivery_section .flex_box {
    max-width: 795px;
    margin: 0 auto;
  }

}
/********************************************
 contents sp
********************************************/
@media screen and (max-width: 767px) {
  .drone_education .contents {
    margin-bottom: 70px;
  }
  .drone_education .contents .inner .business_policy {
    margin-bottom: 50px;
  }
  .drone_education .contents .inner .emergency_section {
    margin-bottom: 50px;
  }
  .drone_education .contents .inner .emergency_section h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .drone_education .contents .inner .emergency_section .description {
    margin-bottom: 25px;
    font-size: 16px;
  }
  .drone_education .contents .inner .emergency_section .flex_box {
    display: block;
  }
  .drone_education .contents .inner .emergency_section .flex_box ul {
    max-width: 530px;
    margin: 0 auto;
  }
  .drone_education .contents .inner .emergency_section .flex_box ul,
  .drone_education .contents .inner .emergency_section .flex_box li {
    font-size: 16px;
  }
  .drone_education .contents .inner .emergency_section .flex_box ul li:not(:last-child) {
    margin-bottom: 25px;
  }
  .drone_education .contents .inner .emergency_section .flex_box ul.left {
    margin-bottom: 25px;
    margin-right: auto;
  }
  .drone_education .contents .inner .delivery_section {
    margin-bottom: 50px;
  }
  .drone_education .contents .inner .delivery_section h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .drone_education .contents .inner .delivery_section .description {
    margin-bottom: 25px;
    font-size: 16px;
  }
  .drone_education .contents .inner .delivery_section .flex_box h4 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .drone_education .contents .inner .delivery_section .flex_box ul {
    flex-wrap: wrap;
  }
  .drone_education .contents .inner .delivery_section .flex_box ul li {
    margin-bottom: 5px;
    margin-right: 5px;
    padding: 0 8px;
    font-size: 12px;
  }
  .drone_education .contents .inner .health_section h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .drone_education .contents .inner .health_section .description {
    margin-bottom: 25px;
    font-size: 16px;
  }
}



/*==========================================================================

 縺雁撫縺・粋繧上○

==========================================================================*/
/********************************************
 contents
********************************************/
.contact .form {
  margin-bottom: 100px;
}
.contact .form .inner {
  max-width: 980px;
}
.contact .form .inner form .note {
  font-size: 18px;
  margin-bottom: 5px;
}
.contact .form .inner form .note sup {
  font-size: 12px;
  color: #e20023;
}
.contact .form .inner form .button {
  margin-top: 30px;
}
.contact .form .inner form .button p {
  display: flex;
  justify-content: center;
}
.contact .form .inner form .button p button {
  padding: 15px 30px;
  background: none;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  outline: none;
}
.contact .form .inner form .button p button:nth-child(-n+2) {
  margin-right: 20px;
}
.contact .form .inner form .button p button:hover {
  opacity: .7;
}
.contact .form .inner form .button p button.confirm {
  background: #d11328;
}
.contact .form .inner form .button p button.reset {
  background: #666;
}

.contact .form .inner form ul {
  display: flex;
  align-items: center;
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}

.contact .form .inner form ul .title {
  max-width: 325px;
  padding: 21px 0;
  background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%);
  font-size: 18px;
  color: #000;
  text-align: center;
  font-weight: bold;
  border-right: 1px solid #e2e2e2;
}

.contact .form .inner form ul .title sup {
  font-size: 12px;
  color: #e20023;
}

.contact .form .inner form ul li:not(.title) {
  padding: 0 30px;
}

.contact .form .inner form ul li {
  width: 100%;
}

.contact .form .inner form ul li input {
  max-width: 280px;
  width: 100% !important;
  font-size: 16px;
  padding: 3px;
}

.contact .form .inner form ul li .large {
  max-width: 455px;
}

.contact .form .inner form ul li .small {
  max-width: 100px;
}

.contact .form .inner form ul li textarea {
  max-width: 325px;
  width: 100% !important;
  height: auto !important;
  font-size: 14px;
}

.contact .form .inner form ul li button {
  background: none;
  font-weight: bold;
  border: 1px solid #848484;
  border-radius: 3px;
  cursor: pointer;
  outline: none;
}

.contact .form .inner form ul.contact {
  align-items: inherit;
}

.contact .form .inner form ul.contact .title {
  display: flex;
  justify-content: center;
}

.contact .form .inner form ul.contact li:not(.title) {
  padding: 15px 30px;
  line-height: 0;
}

.contact .form .inner form ul.policy li:not(.title) {
  display: flex;
  align-items: center;
}

.contact .form .inner form ul.policy li:not(.title) label input {
  display: none;
}

.contact .form .inner form ul.policy li:not(.title) label:first-child {
  margin-right: 10px;
}

.contact .form .inner form ul.policy li:not(.title) span.check_box {
  padding-left: 25px;
  position: relative;
  display: block;
  font-weight: bold;
}

.contact .form .inner form ul.policy li:not(.title) span.check_box::before {
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  border: 1px solid #848484;
  border-radius: 3px;
}

.contact .form .inner form ul.policy li:not(.title) input:checked + span.check_box::after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 9px;
  border: 0px;
  border-bottom: solid 3px #848484;
  border-right: solid 3px #848484;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
  left: 5px;
}

.contact .form .inner form ul.rdobtn {
  border-top: 1px solid #e2e2e2;
}

.contact .form .inner form ul.rdobtn li:not(.title) {
  display: flex;
  align-items: center;
}

.contact .form .inner form ul.rdobtn li:not(.title) label input {
  display: none;
}

.contact .form .inner form ul.rdobtn li:not(.title) label:not(:last-child) {
  margin-right: 10px;
}

.contact .form .inner form ul.rdobtn li:not(.title) span.radio_btn {
  padding-left: 25px;
  position: relative;
  display: block;
  font-weight: bold;
}

.contact .form .inner form ul.rdobtn li:not(.title) span.radio_btn::before {
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  border: 1px solid #848484;
  border-radius: 50%;
}

.contact .form .inner form ul.rdobtn li:not(.title) input:checked + span.radio_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: #848484;
  border-radius: 50%;
}

/********************************************
 contents sp
********************************************/
@media screen and (max-width: 767px) {
  .contact .form {
    margin-bottom: 50px;
  }
  .contact .form .inner {
    max-width: 510px;
  }
  .contact .form .inner form ul {
    display: block;
  }
  .contact .form .inner form ul .title {
    max-width: 100%;
    padding: 10px 0;
    font-size: 16px;
    border-right: 0;
    border-bottom: 1px solid #e2e2e2;
  }
  .contact .form .inner form ul li:not(.title) {
    padding: 15px;
  }
  .contact .form .inner form ul li {
    width: 100%;
  }
  .contact .form .inner form ul li input {
    max-width: 100%;
    font-size: 16px;
  }
  .contact .form .inner form ul li .large {
    max-width: 100%;
  }
  .contact .form .inner form ul li textarea {
    max-width: 100%;
    font-size: 16px;
  }
  .contact .form .inner form ul.code li:not(.title) {
    display: flex;
    justify-content: center;
  }
  .contact .form .inner form ul.code li:not(.title) input {
    margin-right: 5px;
  }
  .contact .form .inner form ul.contact li:not(.title) {
    padding: 15px;
  }
  .contact .form .inner form ul.policy p {
    padding: 15px;
  }
  .contact .form .inner form ul.button li:not(.title) {
    display: flex;
    justify-content: center;
  }
  .contact .form .inner form ul.button li:not(.title) button:first-child {
    margin-right: 10px;
  }
  .contact .form .inner form ul.rdobtn p {
    padding: 15px;
  }

  .contact .form .inner form ul.rdobtn li:not(.title) label:not(:last-child) {
    margin-right: 15px;
  }

  .contact .form .inner form ul.rdobtn li:not(.title) span.radio_btn {
    font-size: 14px;
  }

  .contact .form .inner form ul.rdobtn li:not(.title) span.radio_btn::before {
    width: 16px;
    height: 16px;
  }

  .contact .form .inner form ul.rdobtn li:not(.title) input:checked + span.radio_btn::after {
    top: 3px;
    left: 3px;
  }

  .contact .form .inner form ul.policy li:not(.title) span.check_box {
    font-size: 14px;
  }

  .contact .form .inner form .button p button {
    padding: 12px 20px;
  }
}
/*==========================================================================

 繧ｵ繧､繝医・繝・・

==========================================================================*/
/*********************************************
 sitemap_list
*********************************************/
.sitemap_list .contents {
  width: 100%;
  color: #d11328;
}
.sitemap_list .contents .wrapper {
  margin-bottom: 150px;
}
.sitemap_list .contents .wrapper .nav_block {
  display: flex;
}
.sitemap_list .contents .wrapper .nav_block > div:not(.support) {
  margin-right: 100px;
}
.sitemap_list .contents .wrapper .nav_block h4 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #ff7373;
}
.sitemap_list .contents .wrapper .nav_block li:not(:last-child) {
  margin-bottom: 20px;
}
.sitemap_list .contents .wrapper .nav_block li a {
  color: #666;
}
.sitemap_list .contents .wrapper .nav_block li a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  footer .wrapper {
    display: block;
  }
  footer .wrapper .nav_block {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 30px 0 60px;
  }
  footer .wrapper {
    margin-bottom: 30px;
    padding-bottom: 20px;
    display: block;
  }
}
/*********************************************
 sitemap_list sp
*********************************************/
@media screen and (max-width: 767px) {
  .sitemap_list .contents {
    width: 100%;
  }
  .sitemap_list .contents .wrapper {
    margin-bottom: 75px;
  }
  .sitemap_list .contents .wrapper .nav_block {
    max-width: 250px;
    margin: 0 auto;
    display: block;
  }
  .sitemap_list .contents .wrapper .nav_block > div:not(.support) {
    margin-bottom: 40px;
    margin-right: 0;
  }
  .sitemap_list .contents .wrapper .nav_block h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .sitemap_list .contents .wrapper .nav_block li:not(:last-child) {
    margin-bottom: 10px;
  }
  .sitemap_list .contents .wrapper .nav_block li a {
    font-size: 14px;
  }
  .sitemap_list .contents .wrapper .nav_block li a:hover {
    text-decoration: underline;
  }
}
/*==========================================================================

 繝励Λ繧､繝舌す繝昴Μ繧ｷ繝ｼ

==========================================================================*/
/********************************************
 contents
********************************************/
.privacy_policy .contents {
  margin-bottom: 100px;
  padding-top: 55px;
}
.privacy_policy .contents .inner p, .privacy_policy .contents .inner h3, .privacy_policy .contents .inner li {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  font-weight: normal;
}
.privacy_policy .contents .inner h3 {
  font-weight: bold;
  margin-bottom: 5px !important;
}
.privacy_policy .contents .inner .heading {
  margin-bottom: 30px;
}
.privacy_policy .contents .inner .list_box {
  margin-bottom: 30px;
}
.privacy_policy .contents .inner .list_box h3 {
  margin-bottom: 15px;
  text-indent: -1em;
  padding-left: 1em;
}
.privacy_policy .contents .inner .list_box ul {
  padding-left: 35px;
}
.privacy_policy .contents .inner .list_box ul li {
  text-indent: 0;
  padding-left: 0;
}
.privacy_policy .contents .inner .list_box ul.disc li {
  list-style-type: disc;
}
.privacy_policy .contents .inner .list_box ol li {
  list-style: decimal;
}
.privacy_policy .contents .inner .list_box ul.flex {
  display: flex;
}
.privacy_policy .contents .inner .list_box ul.flex li:not(:last-child) {
  margin-right: 15px;
  text-indent: inherit;
  padding-left: 0;
}

/********************************************
 contents sp
********************************************/
@media screen and (max-width: 767px) {
  .privacy_policy .contents {
    margin-bottom: 50px;
    padding-top: 10px;
  }
  .privacy_policy .contents .inner p, .privacy_policy .contents .inner h3, .privacy_policy .contents .inner li {
    font-size: 16px;
  }
  .privacy_policy .contents .inner .heading {
    margin-bottom: 20px;
  }
  .privacy_policy .contents .inner .list_box {
    margin-bottom: 20px;
  }
  .privacy_policy .contents .inner .list_box h3 {
    margin-bottom: 10px;
    text-indent: -1em;
    padding-left: 1em;
  }
  .privacy_policy .contents .inner .list_box ul {
    padding-left: 25px;
  }
  .privacy_policy .contents .inner .list_box ul.flex {
    display: block;
  }
  .privacy_policy .contents .inner .list_box ul.flex li:not(:last-child) {
    margin-right: 0px;
  }
}
/*********************************************
 footer
*********************************************/
footer {
  width: 100%;
  padding: 55px 0 25px;
  background: #d11328;
  color: #fff;
}
footer .wrapper {
  margin-bottom: 25px;
  padding-bottom: 40px;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 115, 115, 0.15);
}
footer .wrapper .company_block {
  margin-right: 115px;
}
footer .wrapper .company_block h3 {
  margin-bottom: 25px;
  font-size: 24px;
}
footer .wrapper .company_block .address,
footer .wrapper .company_block .tel {
  display: flex;
  align-items: flex-start;
}
footer .wrapper .company_block .address .icon,
footer .wrapper .company_block .tel .icon {
  margin-right: 20px;
}
footer .wrapper .company_block .address .text_block,
footer .wrapper .company_block .tel .text_block {
  margin-top: 5px;
}
footer .wrapper .company_block .address .text_block h4,
footer .wrapper .company_block .tel .text_block h4 {
  color: #ff7373;
  line-height: 1.6;
}
footer .wrapper .company_block .address .text_block p,
footer .wrapper .company_block .tel .text_block p {
  line-height: 1.6;
}
footer .wrapper .company_block .address {
  margin-bottom: 20px;
}
footer .wrapper .nav_block {
  display: flex;
}
footer .wrapper .nav_block > div:not(.support) {
  margin-right: 65px;
}
footer .wrapper .nav_block h4 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #ff7373;
}
footer .wrapper .nav_block li:not(:last-child) {
  margin-bottom: 20px;
}
footer .wrapper .nav_block li a {
  color: #FFF;
}
footer .wrapper .nav_block li a:hover {
  text-decoration: underline;
}
footer .copy {
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1129px) {
  footer .wrapper {
    display: block;
  }
  footer .wrapper .company_block {
    margin: 0 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .wrapper .company_block h3 {
    margin: 0 20px 0 0;
  }
  footer .wrapper .company_block .address,
  footer .wrapper .company_block .tel {
    align-items: center;
  }
  footer .wrapper .company_block .address .icon,
  footer .wrapper .company_block .tel .icon {
    margin-right: 15px;
  }
  footer .wrapper .company_block .address .text_block,
  footer .wrapper .company_block .tel .text_block {
    margin-top: 0;
  }
  footer .wrapper .company_block .address {
    margin: 0 20px 0 0;
  }
  footer .wrapper .nav_block {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 30px 0 60px;
  }
  footer .wrapper {
    margin-bottom: 30px;
    padding-bottom: 20px;
    display: block;
  }
  footer .wrapper .company_block {
    margin: 0 0 40px;
  }
  footer .wrapper .company_block h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  footer .wrapper .company_block .address .icon,
  footer .wrapper .company_block .tel .icon {
    margin-right: 20px;
  }
  footer .wrapper .company_block .address .text_block,
  footer .wrapper .company_block .tel .text_block {
    margin-top: 5px;
  }
  footer .wrapper .company_block .address {
    margin-bottom: 20px;
  }
  footer .wrapper .aco_menu li {
    margin-bottom: 20px;
  }
  footer .wrapper .aco_menu li h4 {
    margin-bottom: 10px;
    position: relative;
    font-size: 18px;
    color: #ff7373;
  }
  footer .wrapper .aco_menu li h4::after {
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    right: 15px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #ff7373;
    border-right: 2px solid #ff7373;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  footer .wrapper .aco_menu li h4.open::after {
    top: calc(50% - 2px);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  footer .wrapper .aco_menu li .aco_contents {
    display: none;
  }
  footer .wrapper .aco_menu li .aco_contents li:not(:last-child) {
    margin-bottom: 10px;
  }
  footer .wrapper .aco_menu li .aco_contents li a {
    color: #FFF;
  }
  footer .wrapper .aco_menu li:last-child {
    margin-bottom: 0;
  }
  footer .copy {
    font-size: 12px;
  }
  footer .wrapper .company_block .tel .text_block a {
    color: #fff;
    text-decoration: none;
  }
}
