@charset "UTF-8";

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

   common-Setting

========================================================= */
html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

:root {
  --color_text: #000000;
  --color_orange: #EA5404;
	--color_l-orange: #f5ad87;
  --color_blue: #009FDE;
  --color_blue_rgb: 0, 159, 222;
  --color_navy: #192548;
  --color_gray: #8D8D8D;
  --color_white: #FFFFFF;
  --color_bg_gray: #F7F7F7;
}

body {
  color: var(--color_text);
  -webkit-text-size-adjust: 100%;
  font-family: "Ubuntu", "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
}
h1,h2,h3,h4,h5,h6,
input,button,textarea,select,
p,blockquote,
table,th,td,pre,address,
ul,ol,li,dl,dt,dd {
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  line-height: 2;
}
li { list-style: none; }
th,td { vertical-align: middle; }
select { visibility: visible !important; }

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: var(--color_orange);
  text-decoration: none;
}
a:hover {
  color: var(--color_orange);
  text-decoration: underline;
}

.mb_10 { margin-bottom: 10px !important; }
.mb_20 { margin-bottom: 20px !important; }
.mb_30 { margin-bottom: 30px !important; }
.mb_40 { margin-bottom: 40px !important; }
.mb_50 { margin-bottom: 50px !important; }
.mb_60 { margin-bottom: 60px !important; }
.mb_70 { margin-bottom: 70px !important; }
.mb_80 { margin-bottom: 80px !important; }
.mb_90 { margin-bottom: 90px !important; }
.mb_100 { margin-bottom: 100px !important; }

.mb_t { margin-bottom: 20px !important; }
.mb_s { margin-bottom: 30px !important; }
.mb_m { margin-bottom: 50px !important; }
.mb_l { margin-bottom: 70px !important; }

.f_b { font-weight: bold; }
.f_10 { font-size: 10px !important; }
.f_12 { font-size: 12px !important; }
.f_14 { font-size: 14px !important; }
.f_16 { font-size: 16px !important; }
.f_18 { font-size: 18px !important; }
.f_20 { font-size: 20px !important; }
.f_22 { font-size: 22px !important; }
.mb_txt { margin-bottom: 1em; }
.txt-l { text-align: left !important; }
.txt-c { text-align: center !important; }
.txt-r { text-align: right !important; }

.bg_gray { background: var(--color_bg_gray); }
.bg_white { background: var(--color_bg_white); }
.bg_blue { background: var(--color_blue) !important; }
.bg_navy { background: var(--color_navy) !important; }

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1500ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.pc_area { display: none; }


.wrapper {
  overflow-x: hidden;
  position: relative;
}
.wrapper::before {
  content: '';
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
.wrapper.index_page::before,
.wrapper.news_page::before {
  background: url("../images/bg_index.png") no-repeat center;
  background-size: cover;
}
.wrapper.job_page::before {
  background: url("../images/bg_job.png") no-repeat center;
  background-size: cover;
}
.wrapper.recruit_page::before {
  background: url("../images/bg_recruit.png") no-repeat center;
  background-size: cover;
}
.wrapper.company_page::before {
  background: url("../images/bg_company.png") no-repeat center;
  background-size: cover;
}
.wrapper.contact_page::before {
  background: url("../images/bg_contact.png") no-repeat center;
  background-size: cover;
}
.contets_area {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .mb_t { margin-bottom: 30px !important; }
  .mb_s { margin-bottom: 50px !important; }
  .mb_m { margin-bottom: 80px !important; }
  .mb_l { margin-bottom: 100px !important; }
  
  .sp_area { display: none; }
  .pc_area { display: block; }
  
  .hover_opacity { transition: 0.3s; }
  .hover_opacity:hover {
    transition: 0.3s;
    opacity: 0.8;
  }
}

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

   header

========================================================= */
.outer_header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px) brightness(1.15);
  -webkit-backdrop-filter: blur(16px) brightness(1.15);
}
.header {
  width: 95%;
  margin: 0 auto;
}
.header .logo {
  height: 40px;
  position: fixed;
  top: 15px;
  left: 2.5%;
  z-index: 1;
}
.header .logo img {
  width: auto;
  height: 100%;
}
.hd_menu_cover {
  display: none;
}
@media screen and (min-width: 1025px) {
  .outer_header {
    height: auto;
  }
  .header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
  }
  .header h1 {
    display: block;
    width: 100%;
    font-size: 11px;
    margin-bottom: 5px;
  }
  .header .logo {
    width: 240px;
	height: 60px;
	position: static;
	margin-left: 20px;
  }
  .hd_menu_cover {
    width: calc(100% - 200px);
	display: flex;
	align-items: center;
	justify-content: flex-end;
  }
  .gnav {
    display: flex;
    justify-content: center;
    list-style: none;
	padding-right: 10px;
  }
  .gnav li.gnav_ttl {
    text-align: center;
	margin-right: 20px;
	padding-left: 20px;
    position: relative;
  }
  .gnav li.gnav_ttl::before {
    content: '';
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 100%;
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
	left: 0;
  }
  .gnav li.gnav_ttl.gnav_ttl01::before {
	background: var(--color_orange);
  }
  .gnav li.gnav_ttl.gnav_ttl02::before {
	background: var(--color_blue);
  }
  .gnav li.gnav_ttl.gnav_ttl03::before {
	background: var(--color_navy);
  }
  .gnav a {
    display: block;
    padding: 15px 0;
    color: var(--color_text);
    text-decoration: none;
    font-weight: 700;
	transition: 0.3s;
  }
  .gnav a:hover {
	transition: 0.3s;
  }
  .gnav li.gnav_ttl.gnav_ttl01 a:hover {
    color: var(--color_orange);
  }
  .gnav li.gnav_ttl.gnav_ttl02 a:hover {
    color: var(--color_blue);
  }
  .gnav li.gnav_ttl.gnav_ttl03 a:hover {
    color: var(--color_gray);
  }
  .gnav_submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) ;
    background-color: var(--color_white);
	border-radius: 20px;
 	padding: 30px 40px;
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);
  }
  .gnav_submenu li {
    width: 300px;
	padding-left: 25px;
	margin-bottom: 5px;
  }
  .gnav_submenu li:last-child {
	margin-bottom: 0;
  }
  .gnav li.gnav_ttl.gnav_ttl01 .gnav_submenu li {
    background: url("../images/arrow_icon_org.png") no-repeat left center;
	background-size: 14px;
  }
  .gnav li.gnav_ttl.gnav_ttl02 .gnav_submenu li {
    background: url("../images/arrow_icon_blu.png") no-repeat left center;
	background-size: 14px;
  }
  .gnav li.gnav_ttl.gnav_ttl03 .gnav_submenu li {
    background: url("../images/arrow_icon_gry.png") no-repeat left center;
	background-size: 14px;
  }
  .gnav_submenu a {
    display: inline-block;
	padding: 0;
	line-height: 1.6;
	font-weight: 400;
  }
  .gnav li:hover > .gnav_submenu {
    display: block;
  }
  .hd_link_contents {
	background: rgba(0,0,0,0.03);
	border-radius: 5px;
	padding: 10px 10px 10px 20px;
  }
  .hd_link_contents ul {
    display: flex;
	align-items: center;
	height: 100%;
  }
  .hd_link_contents li a {
	text-decoration: none;
  }
  .hd_link_contents li.hd_link01 {
    margin-right: 20px;
	text-align: center;
	line-height: 1.1;
  }
  .hd_link_contents li.hd_link01 a {
    font-size: 13px;
	color: #000;
  }
  .hd_link_contents li.hd_link01 a .phone_number {
    display: inline-block;
	font-size: 20px;
	font-weight: 700;
	color: var(--color_text);
	padding-left: 20px;
	background: url("../images/icon_img01.png") no-repeat left center;
	background-size: 14px auto;
  }
  .hd_link_contents li.hd_link02,
  .hd_link_contents li.hd_link03 {
    font-size: 15px;
	border-radius: 50vh;
  }
  .hd_link_contents li.hd_link02 {
	background: var(--color_orange);
  }
  .hd_link_contents li.hd_link03 {
	background: var(--color_blue);
	transition: 0.3s;
  }
  .hd_link_contents li.hd_link03:hover {
	transition: 0.3s;
	opacity: 0.8;
  }
  .hd_link_contents li.hd_link02 a,
  .hd_link_contents li.hd_link03 a {
    display: block;
	padding: 10px 20px;
	color: var(--color_white);
  }
  .hd_link_contents li.hd_link02 a span,
  .hd_link_contents li.hd_link03 a span {
    display: inline-block;
	padding-left: 20px;
  }
  .hd_link_contents li.hd_link02 a span {
	background: url("../images/icon_img02.png") no-repeat left center;
	background-size: 14px auto;
  }
  .hd_link_contents li.hd_link03 a span {
	background: url("../images/icon_img03.png") no-repeat left center;
	background-size: 14px auto;
  }  
  .hd_link_contents li.hd_link02 {
    margin-right: 10px;
  }
}

/* hamburger menu */
.hamburger_menu_cover {
  position: fixed;
  top: 10px;
  right: 2.5%;
  z-index: 999;
}
.hamburger_menu {
  display: flex;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 10px;
  cursor: pointer;
  border-radius: 100vh;
  transform: 0.3s;
}
.hamburger_menu.open {
  transform: 0.3s;
  background: #EBEBEB;
}
.hamburger_menu__line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #6C6C6C;
  position: relative;
  transition: all 0.5s;
}
.hamburger_menu__line::before,
.hamburger_menu__line::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #6C6C6C;
  position: absolute;
  transition: all 0.5s;
}

.hamburger_menu__line::before { transform: translateY(-6px); }
.hamburger_menu__line::after { transform: translateY(6px); }
.hamburger_menu.open .hamburger_menu__line { background-color: transparent; }
.hamburger_menu.open .hamburger_menu__line::before { transform: rotate(45deg); }
.hamburger_menu.open .hamburger_menu__line::after { transform: rotate(-45deg); }

.nav_sp {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  padding: 30px 5%;
  background: var(--color_bg_gray);
  text-align: left;
  transition: right 0.5s;
  overflow: scroll;
  z-index: 998;
}
.nav_sp .nav_sp_logo {
  height: 30px;
  margin-bottom: 30px;
}
.nav_sp .nav_sp_logo img {
  width: auto;
  height: 100%;
}
.nav_sp.open {
  right: 0;
}

.sp_menu_list01 {
  margin-bottom: 20px;
}
.has_submenu {
  padding: 18px 15px;
  background: var(--color_white);
  border-radius: 5px;
  margin-bottom: 5px;
}

/* サブメニューのトグルボタン */
.submenu_toggle {
  display: block;
  position: relative;
  cursor: pointer;
  color: var(--color_text);
  font-size: 16px;
  font-weight: 700;
  padding-left: 20px;
}
.has_submenu01 .submenu_toggle {
  background: url("../images/txt_deco_org.png") no-repeat left center;
  background-size: 14px auto;
}
.has_submenu02 .submenu_toggle {
  background: url("../images/txt_deco_blu.png") no-repeat left center;
  background-size: 14px auto;
}
.has_submenu03 .submenu_toggle {
  background: url("../images/txt_deco_nav.png") no-repeat left center;
  background-size: 14px auto;
}

/* プラスマーク（開閉アイコン） */
.submenu_toggle::after, 
.submenu_toggle::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.submenu_toggle::after { 
  width: 10px;
  height: 2px;
}
.submenu_toggle::before {
  width: 2px;
  height: 10px;
  right: 4px;
}
.has_submenu01 .submenu_toggle::after, 
.has_submenu01 .submenu_toggle::before {
  background: var(--color_orange);
}
.has_submenu02 .submenu_toggle::after, 
.has_submenu02 .submenu_toggle::before {
  background: var(--color_blue);
}
.has_submenu03 .submenu_toggle::after, 
.has_submenu03 .submenu_toggle::before {
  background: var(--color_gray);
}
.has_submenu.open .submenu_toggle::before {
  display: none;
}

/* サブメニュー */
.submenu {
  display: none;
  padding: 5px 0 0 20px;
}
.submenu.open {
  display: block;
}
.submenu li {
  font-size: 14px;
  font-weight: 600;
  padding-left: 30px;
}
.submenu li a {
  color: var(--color_text);
  text-decoration: none;
}
.has_submenu01 .submenu li {
  background: url("../images/arrow_icon_org.png") no-repeat left center;
  background-size: 16px auto;
}
.has_submenu02 .submenu li {
  background: url("../images/arrow_icon_blu.png") no-repeat left center;
  background-size: 16px auto;
}
.has_submenu03 .submenu li {
  background: url("../images/arrow_icon_gry.png") no-repeat left center;
  background-size: 16px auto;
}

.sp_menu_list02 li {
  font-size: 16px;
  font-weight: 700;
  border-bottom: #E0E0E0 1px solid;
}
.sp_menu_list02 li a {
  display: inline-block;
  color: var(--color_text);
  padding: 15px 0 15px 36px;
  background: url("../images/arrow_icon_wht.png") no-repeat left center;
  background-size: 26px;
  text-decoration: none;
}
.sp_menu_list02 li.external_link a {
  background: url("../images/icon_external03.png") no-repeat left center;
  background-size: 26px;
}
@media screen and (min-width: 1025px) {
  .hamburger_menu_cover {
    display: none;
  }
}

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

   footer

========================================================= */
.outer_footer {
  width: calc(100% - 5%);
  margin: 0 auto;
  background: var(--color_white);
  border-radius: 30px 30px 0 0;
}
.footer_contents {
  width: 86%;
  padding: 50px 0 10px;
  margin: 0 auto;
}
.footer_contents .lft_section .ft_logo {
  width: 60%;
  max-width: 280px;
  margin: 0 auto 30px;
}
.footer_contents .rgt_section {
  display: none;
}
.ft_navi {
  margin-bottom: 30px;
}
.ft_navi04 {
  margin-bottom: 50px;
}
.ft_navi a {
  color: var(--color_text);
  text-decoration: none;
}
.ft_navi .ft_navi_ttl {
  padding-left: 25px;
}
.ft_navi01 .ft_navi_ttl {
  background: url("../images/txt_deco_org.png") no-repeat left center;
  background-size: 14px auto;
}
.ft_navi02 .ft_navi_ttl {
  background: url("../images/txt_deco_blu.png") no-repeat left center;
  background-size: 14px auto;
}
.ft_navi03 .ft_navi_ttl {
  background: url("../images/txt_deco_nav.png") no-repeat left center;
  background-size: 14px auto;
}
.ft_navi .ft_navi_ttl a {
  font-weight: 700;
  margin-bottom: 1em;
}
.ft_navi li {
  margin-bottom: 3px;
}
.ft_navi li:last-child {
  margin-bottom: 0;
}
.ft_navi01 li,
.ft_navi02 li,
.ft_navi03 li {
  padding-left: 25px;
  font-size: 14px;
}
.ft_navi01 li {
  background: url("../images/arrow_icon_org.png") no-repeat left center;
  background-size: 16px auto;
}
.ft_navi02 li {
  background: url("../images/arrow_icon_blu.png") no-repeat left center;
  background-size: 16px auto;
}
.ft_navi03 li {
  background: url("../images/arrow_icon_gry.png") no-repeat left center;
  background-size: 16px auto;
}
.ft_navi04 li {
  font-size: 14px;
  font-weight: 700;
}
.ft_navi04 li a {
  padding-right: 25px;
  background: url("../images/arrow_icon_wht.png") no-repeat right center;
  background-size: 16px auto;
}
.ft_navi04 li.external_link a {
  background: url("../images/icon_external01.png") no-repeat right center;
  background-size: 16px auto;
}
.lft_section .copy {
  color: #777777;
  font-size: 11px;
}
@media screen and (min-width: 1025px) {
  .outer_footer {
    width: calc(100% - 120px);
    border-radius: 60px 60px 0 0;
	overflow: hidden;
  }
  .footer_contents {
    width: 100%;
    padding: 0;
	display: flex;
  }
  .footer_contents .lft_section {
	width: 60%;
	padding: 100px 7%;
  }
  .footer_contents .lft_section .ft_logo {
    width: 60%;
    max-width: 280px;
    margin: 0 0 50px;
  }
  .footer_contents .lft_section .ft_navi_section {
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 50px;
  }
  .footer_contents .lft_section .ft_navi_section .ft_navi {
    width: 48%;
    margin-bottom: 40px;
  }
  .ft_navi a,
  .ft_navi a:hover {
    transition: 0.3s;
  }
  .ft_navi01 a:hover,
  .ft_navi04 a:hover {
    color: var(--color_orange);
  }
  .ft_navi02 a:hover {
    color: var(--color_blue);
  }
  .ft_navi03 a:hover {
    color: var(--color_gray);
  }
  .ft_navi .ft_navi_ttl {
    font-size: 20px;
	padding-left: 30px;
	margin-bottom: 3px;
  }
  .ft_navi01 .ft_navi_ttl {
    background: url("../images/txt_deco_org.png") no-repeat left center;
    background-size: 20px auto;
  }
  .ft_navi02 .ft_navi_ttl {
    background: url("../images/txt_deco_blu.png") no-repeat left center;
    background-size: 20px auto;
  }
  .ft_navi03 .ft_navi_ttl {
    background: url("../images/txt_deco_nav.png") no-repeat left center;
    background-size: 20px auto;
  }
  .ft_navi li {
    margin-bottom: 5px;
  }
  .ft_navi01 li,
  .ft_navi02 li,
  .ft_navi03 li {
    padding-left: 30px;
    font-size: 15px;
  }
  .ft_navi01 li {
    background: url("../images/arrow_icon_org.png") no-repeat left center;
    background-size: 20px auto;
  }
  .ft_navi02 li {
    background: url("../images/arrow_icon_blu.png") no-repeat left center;
    background-size: 20px auto;
  }
  .ft_navi03 li {
    background: url("../images/arrow_icon_gry.png") no-repeat left center;
    background-size: 20px auto;
  }
  .ft_navi04 li {
    font-size: 15px;
  }
  .ft_navi04 li a {
    padding-right: 30px;
    background: url("../images/arrow_icon_wht.png") no-repeat right center;
    background-size: 20px auto;
  }
  .ft_navi04 li.external_link a {
    background: url("../images/icon_external01.png") no-repeat right center;
    background-size: 20px auto;
  }
  .lft_section .copy {
    font-size: 14px;
  }
  .footer_contents .rgt_section {
    display: block;
	width: 40%;
    background: var(--color_bg_gray);
	position: relative;
	padding: 100px 0;
  }
  .footer_contents .rgt_section ul.ft_external_link {
    width: 90%;
	max-width: 470px;
	margin: 0 auto;
  }
  .footer_contents .rgt_section ul.ft_external_link li {
    background: var(--color_white);
	margin-bottom: 10px;
	border-radius: 10px;
  }
  .footer_contents .rgt_section ul.ft_external_link li a {
    display: block;
	color: var(--color_text);
	font-size: 20px;
	font-weight: 700;
    text-decoration: none;
	padding: 30px 30px 60px;
	background: url("../images/icon_external01.png") no-repeat right 20px bottom 20px;
	background-size: 40px;
  }
  .footer_contents .rgt_section ul.ft_external_link li a .en_txt {
    display: block;
	color: #cbcbcb;
	font-size: 13px;
	font-weight: 400;
  }
  .footer_contents .rgt_section .ft_external_bn {
    width: 90%;
	max-width: 470px;
	position: absolute;
	left: 50%;
	bottom: 100px;
	transform: translateX(-50%);
  }
}

.footer_follow {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  padding-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1;
}
.footer_follow.is_show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.footer_follow .sp_btm_contact {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 5px 0; 
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px) brightness(1.15);
  -webkit-backdrop-filter: blur(16px) brightness(1.15);
  border-radius: 5px;
}
.footer_follow .sp_btm_contact li.sp_btm_btn01 {
  width: 34%;
}
.footer_follow .sp_btm_contact li.sp_btm_btn02,
.footer_follow .sp_btm_contact li.sp_btm_btn03 {
  width: 29%;
  margin-left: 1%;
}
@media screen and (min-width: 1025px) {
  .footer_follow  {
    padding: 0;
  }
  .footer_follow .sp_btm_contact {
    display: none;
  }
}

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

   index

========================================================= */
.main_img_cover {
  width: 100%;
  height: 100vh;
  background: url("../images/mv_sp.png") no-repeat center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main_img_cover h2,
.main_img_cover p {
  font-weight: 700;
  text-align: center;
  color: var(--color_white);
}
.main_img_cover p.main_txt_small {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}
.main_img_cover h2 {
  font-size: 38px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.main_img_cover h2 .bl,.index_intro_ttl .bl{color:#009fde; text-shadow: 1px 1px 3px #ffffff}
.main_img_cover h2 .or,.index_intro_ttl .or{color:#ea5404; text-shadow: 1px 1px 3px #ffffff}
.main_img_cover p {
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  .main_img_cover {
    background: url("../images/mv_pc.png") no-repeat center;
    background-size: cover;
  }
  .main_img_cover h2 {
    font-size: 66px;
  }
  .main_img_cover p {
    font-size: 22px;
  }
}

.index_intro_contents {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 150px 0 200px;
}
.index_intro_contents h3,
.index_intro_contents p {
  color: var(--color_white);
}
.index_intro_contents h3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 50px;
}
.index_intro_contents p {
  margin-bottom: 2em;
}
.index_intro_contents p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .index_intro_contents {
    width: calc(100% - 120px);
    padding: 280px 0;
	display: flex;
    justify-content: space-between;
  }
  .index_intro_ttl {
    width: 48%;
	display: flex;
	align-items: center;
  }
  .index_intro_contents h3 {
    font-size: 3.0vw;
    margin-bottom: 0;
  }
  .index_intro_txt {
    width: 50%;
  }
}

.main_contents {
  width: 95%;
  margin: 0 auto;
  background: var(--color_white);
  border-radius: 0 0 30px 30px;
  position: relative;
}
.bg_gray_contents {
  border-radius: 0 0 30px 30px;
}
@media screen and (min-width: 1025px) {
  .main_contents {
    width: calc(100% - 120px);
    border-radius: 60px;
  }
  .bg_gray_contents {
    border-radius: 0 0 60px 60px;
  }
}

.main_contents .tab_area {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  position: absolute;
  top: -90px;
}
.main_contents .tab_area .js_tab_button {
  width: 50%;
  height: 90px;
  display: flex;
	flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.main_contents .tab_area .js_tab_button p {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-bottom: 25px;
}
.main_contents .tab_area .tab_button01,
.main_contents .tab_area .tab_button02 {
  background: var(--color_white);
}
.main_contents .tab_area .tab_button01 {
  border-radius: 10px 10px 0 0;
}
.main_contents .tab_area .tab_button02 {
  border-radius: 10px 10px 0 0;
}
.main_contents .tab_area .tab_button01 {
  background: var(--color_orange);
  border-top: 2px solid var(--color_orange);
  border-right: 2px solid var(--color_orange);
  border-left: 2px solid var(--color_orange);
}
.main_contents .tab_area .tab_button02 {
  background: var(--color_blue);
  border-top: 2px solid var(--color_blue);
  border-right: 2px solid var(--color_blue);
  border-left: 2px solid var(--color_blue);
}
@media screen and (min-width: 1025px) {
	
.main_contents .tab_area .tab_button01 .click-btn,
.main_contents .tab_area .tab_button02 .click-btn{
	width: 100%;
    display: block;
    text-align: center;
    background: none;
	padding: 0;
	line-height: 0;
}
.main_contents .tab_area .tab_button01.is_active .click-btn,
.main_contents .tab_area .tab_button02.is_active .click-btn{
    background: none;
}
.main_contents .tab_area .tab_button01 .click-btn span{
	background: #fff;
	color: var(--color_orange);
	padding: 5px 20px;
    border-radius: 25px;
    font-size: 14px;
}
.main_contents .tab_area .tab_button02 .click-btn span{
	background: #fff;
	color: var(--color_blue);
	padding: 5px 20px;
    border-radius: 25px;
    font-size: 14px;
}
.main_contents .tab_area .tab_button01.is_active .click-btn span,
.main_contents .tab_area .tab_button02.is_active .click-btn span{
	color: var(--color_white);
}
}

.main_contents .tab_area .tab_button01.is_active,
.main_contents .tab_area .tab_button02.is_active {
  background: var(--color_white);
}

.main_contents .tab_area .tab_button01 p,
.main_contents .tab_area .tab_button02 p {
  color: var(--color_white);
  background: url("../images/arrow_icon_wht_btm.png") no-repeat center bottom;
  background-size: 20px;
}
.main_contents .tab_area .tab_button01.is_active p,
.main_contents .tab_area .tab_button02.is_active p {
  color: var(--color_text);
}
.main_contents .tab_area .tab_button01.is_active p {
  background: url("../images/arrow_icon_org_btm.png") no-repeat center bottom;
  background-size: 20px;
}
.main_contents .tab_area .tab_button02.is_active p {
  background: url("../images/arrow_icon_blu_btm.png") no-repeat center bottom;
  background-size: 20px;
}
.main_contents .tab_area .tab_button01.is_active p span {
  color: var(--color_orange);
}
.main_contents .tab_area .tab_button02.is_active p span {
  color: var(--color_blue);
}
@media screen and (min-width: 1025px) {
  .main_contents .tab_area {
    top: -130px;
	left: 50%;
	transform: translateX(-50%);
  }
  .main_contents .tab_area .js_tab_button {
    height: 130px;
	cursor: pointer;
  }
  .main_contents .tab_area .tab_button01 {
    border-radius: 30px 30px 0 0;
  }
  .main_contents .tab_area .tab_button02 {
    border-radius: 30px 30px 0 0;
  }

  .main_contents .tab_area .js_tab_button p {
    display: inline-block;
	font-size: 24px;
    padding: 15px 40px 15px 70px;
  }
  .main_contents .tab_area .tab_button01 p {
    background-image:
      url("../images/icon_img05.png"),
      url("../images/arrow_icon_wht_btm.png");
    background-position:
      left center,
      right center;
    background-repeat: no-repeat;
    background-size:
      60px,
      30px;
  }
  .main_contents .tab_area .tab_button01.is_active p {
    background-image:
      url("../images/icon_img05.png"),
      url("../images/arrow_icon_org_btm.png");
    background-position:
      left center,
      right center;
    background-repeat: no-repeat;
    background-size:
      60px,
      30px;
  }
  .main_contents .tab_area .tab_button02 p {
    background-image:
      url("../images/icon_img06.png"),
      url("../images/arrow_icon_wht_btm.png");
    background-position:
      left center,
      right center;
    background-repeat: no-repeat;
    background-size:
      60px,
      30px;
  }
  .main_contents .tab_area .tab_button02.is_active p {
    background-image:
      url("../images/icon_img06.png"),
      url("../images/arrow_icon_blu_btm.png");
    background-position:
      left center,
      right center;
    background-repeat: no-repeat;
    background-size:
      60px,
      30px;
  }
}

.main_contents .tab_contents {
  /*width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 0 80px;*/
}
.index_features_head {
  /*margin-bottom: 50px;*/
  
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 0 50px;
  
}
.index_features_ttl {
  margin-bottom: 15px;
}
.index_features_ttl .en_txt,
.index_features_ttl h4 {
  font-weight: 700;
  text-align: center;
}
.index_features_ttl .en_txt {
  font-size: 14px;
  line-height: 1.8;
}
.index_features_ttl .en_txt::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto 5px;
  border-radius: 100vh;
}
.index_features_ttl h4 {
  font-size: 22px;
}
.index_features01 .index_features_ttl .en_txt {
  color: var(--color_orange);
}
.index_features01 .index_features_ttl .en_txt::before {
  background: var(--color_orange);
}
.index_features02 .index_features_ttl .en_txt {
  color: var(--color_blue);
}
.index_features02 .index_features_ttl .en_txt::before {
  background: var(--color_blue);
}
.index_features_btn {
  width: 250px;
  margin: 0 auto;
}
.index_features_list {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.index_features_list ul {
  counter-reset: feature_num;
}
.index_features_list li {
  counter-increment: feature_num;
  background: var(--color_bg_gray);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
}
.index_features_list li:last-child {
  margin-bottom: 0;
}
.index_features_list li h5 {
  color: var(--color_white);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: 1.6;
  padding: 15px 5px 25px;
  position: relative;
}
.index_features_list li h5 span {
		font-size: 150%;
}
@media screen and (max-width: 375px) {
	.index_features_list li h5 {
		font-size: 4vw;
	}
	.index_features_list li h5 span {
		font-size: 6.5vw;
	}
}
.index_features01 .index_features_list li h5 {
  background: var(--color_orange);
}
.index_features02 .index_features_list li h5 {
  background: var(--color_blue);
}
.index_features_list li h5::before {
  content: counter(feature_num, decimal-leading-zero);
  display: block;
  font-size: 30px;
  line-height: 1.4;
}
.index_features_list li h5::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 7px 0 7px;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}
.index_features01 .index_features_list li h5::after {
  border-color: var(--color_orange) transparent transparent transparent;
}
.index_features02 .index_features_list li h5::after {
  border-color: var(--color_blue) transparent transparent transparent;
}
.index_features_list li p {
  padding: 20px 30px;
}
@media screen and (min-width: 1025px) {
  .main_contents .tab_contents {
    /*padding: 100px 0 120px;*/
  }
  .index_features_head {
    display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 100px 0 50px;
  }
  .index_features_ttl {
    width: calc(100% - 270px);
	margin-bottom: 0;
  }
  .index_features_ttl .en_txt,
  .index_features_ttl h4 {
    text-align: left;
  }
  .index_features_ttl .en_txt {
    font-size: 20px;
	padding-left: 25px;
	position: relative;
  }
  .index_features_ttl .en_txt::before {
    width: 12px;
    height: 12px;
    margin: 0;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  }
  .index_features_ttl h4 {
    font-size: 38px;
  }
  .index_features_btn {
    margin: 0;
  }
  .index_features_list {
    padding-bottom: 120px;
  }
  .index_features_list ul {
    display: flex;
	justify-content: space-between;
  }
  .index_features_list li {
    width: 32%;
    border-radius: 20px;
    margin-bottom: 0;
  }
  .index_features_list li h5 {
    font-size: 22px;
    padding: 15px 5px 25px;
  }
	.index_features_list li h5 span {
		font-size: 150%;
	}
  .index_features_list li h5::before {
    font-size: 50px;
  }
  .index_features_list li p {
    padding: 20px 30px;
  }
}

.search_cover {
  width: 90%;
  margin: 0 auto;
}
.search_title {
  max-width: 1100px;
  margin: -100px auto 0;
  background: var(--color_orange);
  border-radius: 20px;
}
.search_title h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color_white);
  text-align: center;
  position: relative;
  padding: 15px 0;
}
.search_title h3::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 7px 0 7px;
  border-color: var(--color_orange) transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}
.search_title h3 span {
  display: inline-block;
  background: url("../images/icon_img02.png") no-repeat left center;
  background-size: 20px auto;
  padding-left: 30px;
}
.search_contents_cover {
  padding-top: 30px;
}
.search_contents {
  background: var(--color_white);
  border-radius: 20px;
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}
.search_contents a {
  color: var(--color_text);
  text-decoration: none;
}
.search_contents .search_cat_title {
  padding: 10px 20px;
  border-bottom: #E0E0E0 1px solid;
}
.search_contents .search_cat_title h4 {
  font-size: 18px;
  font-weight: 700;
}
.search_contents .search_cat_title h4 span {
  display: inline-block;
  padding-left: 40px;
}
.search_contents01 .search_cat_title h4 span {
  background: url("../images/search_icon01.png") no-repeat left center;
  background-size: 30px;
}
.search_contents02 .search_cat_title h4 span {
  background: url("../images/search_icon02.png") no-repeat left center;
  background-size: 30px;
}
.search_contents03 .search_cat_title h4 span {
  background: url("../images/search_icon03.png") no-repeat left center;
  background-size: 30px;
}
.search_contents_inner {
  padding: 20px;
}
.search_contents01 .search_area_btn {
  background: var(--color_bg_gray);
  border-radius: 10px;
}
.search_contents01 .search_area_btn a {
  display: block;
  padding: 10px 50px 10px 15px;
  background: url("../images/arrow_icon_org.png") no-repeat right 15px center;
  background-size: 20px;
}
.search_contents_inner01 dl {
  margin-bottom: 20px;
}
.search_contents_inner01 dt {
  font-weight: 700;
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}
.search_contents_inner01 dt::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--color_gray);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.search_contents_inner01 dd ul {
  display: flex;
  flex-wrap: wrap;
}
.search_contents_inner01 li {
  border-radius: 10px;
  margin: 0 5px 5px 0;
  border: #EAEAEA 1px solid;
}
.search_contents_inner01 li a {
  display: block;
  padding: 5px 35px 5px 15px;
  background: url("../images/icon_img04.png") no-repeat right 15px center;
  background-size: 6px auto;
}
.search_contents_inner02 ul {
  display: flex;
  flex-wrap: wrap;
}
.search_contents_inner02 li {
  background: var(--color_bg_gray);
  border-radius: 10px;
  margin: 0 5px 5px 0;
}
.search_contents_inner02 li a {
  display: block;
  padding: 10px 50px 10px 15px;
  background: url("../images/arrow_icon_org.png") no-repeat right 15px center;
  background-size: 20px;
}
.search_contents_inner03 li {
  background: var(--color_bg_gray);
  margin-bottom: 5px;
  border-radius: 10px;
}
.search_contents_inner03 li.occupation_btn01 {
  background: var(--color_bg_gray) url("../images/search_icon03-01.png") no-repeat left 10px center;
  background-size: 40px;
}
.search_contents_inner03 li.occupation_btn02 {
  background: var(--color_bg_gray) url("../images/search_icon03-02.png") no-repeat left 10px center;
  background-size: 40px;
}
.search_contents_inner03 li.occupation_btn03 {
  background: var(--color_bg_gray) url("../images/search_icon03-03.png") no-repeat left 10px center;
  background-size: 40px;
}
.search_contents_inner03 li.occupation_btn04 {
  background: var(--color_bg_gray) url("../images/search_icon03-04.png") no-repeat left 10px center;
  background-size: 40px;
}
.search_contents_inner03 li.occupation_btn05 {
  background: var(--color_bg_gray) url("../images/search_icon03-05.png") no-repeat left 10px center;
  background-size: 40px;
}
.search_contents_inner03 li.occupation_btn06 {
  background: var(--color_bg_gray) url("../images/search_icon03-06.png") no-repeat left 10px center;
  background-size: 40px;
}
.search_contents_inner03 li.occupation_btn07 {
  background: var(--color_bg_gray) url("../images/search_icon03-07.png") no-repeat left 10px center;
  background-size: 40px;
}
.search_contents_inner03 li.occupation_btn08 {
  background: var(--color_bg_gray) url("../images/search_icon03-08.png") no-repeat left 10px center;
  background-size: 40px;
}
.search_contents_inner03 li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 50px 20px 60px;
  background: url("../images/arrow_icon_org.png") no-repeat right 20px center;
  background-size: 20px;
}
.search_contents_inner03 li a p {
  line-height: 1.5;
}
.search_contents_inner03 li a span {
  display: block;
  font-size: 12px;
  color: var(--color_gray);
}
@media screen and (min-width: 1025px) {
  .search_title {
    margin: -120px auto 0;
  }
  .search_title h3 {
    font-size: 28px;
	padding: 20px 0;
  }
  .search_title h3 span {
    background: url("../images/icon_img02.png") no-repeat left center;
    background-size: 30px auto;
    padding-left: 40px;
  }
  .search_contents_cover {
    padding-top: 70px;
    display: flex;
    justify-content: space-between;
  }
  .search_contents_cover .search_contents_lft,
  .search_contents_cover .search_contents_rgt {
    width: 49%;
  }
  .search_contents02 {
    margin-bottom: 0;
  }
  .search_contents .search_cat_title {
    padding: 15px 30px;
  }
  .search_contents .search_cat_title h4 {
    font-size: 24px;
  }
  .search_contents .search_cat_title h4 span {
    padding-left: 55px;
  }
  .search_contents01 .search_cat_title h4 span {
    background: url("../images/search_icon01.png") no-repeat left center;
    background-size: 40px;
  }
  .search_contents02 .search_cat_title h4 span {
    background: url("../images/search_icon02.png") no-repeat left center;
    background-size: 40px;
  }
  .search_contents03 .search_cat_title h4 span {
    background: url("../images/search_icon03.png") no-repeat left center;
    background-size: 40px;
  }
  .search_contents_inner {
    padding: 30px;
  }
  .search_contents01 .search_cat_title {
    display: flex;
    justify-content: space-between;
	align-items: center;
  }
  .search_contents01 .search_cat_title h4 {
    width: calc(100% - 230px);
  }
  .search_contents01 .search_cat_title .search_area_btn {
    width: 220px;
  }
  .search_contents01 .search_area_btn a {
    padding: 8px 50px 8px 15px;
  }
  .search_contents03 {
    height: 100%;
	margin-bottom: 0;
  }
  .search_contents_inner03 ul {
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
  }
  .search_contents_inner03 li {
    width: calc(50% - 2.5px);
  }
  .search_contents_inner03 li.occupation_btn01 {
    background: var(--color_bg_gray) url("../images/search_icon03-01.png") no-repeat left 20px center;
    background-size: 50px;
  }
  .search_contents_inner03 li.occupation_btn02 {
    background: var(--color_bg_gray) url("../images/search_icon03-02.png") no-repeat left 20px center;
    background-size: 50px;
  }
  .search_contents_inner03 li.occupation_btn03 {
    background: var(--color_bg_gray) url("../images/search_icon03-03.png") no-repeat left 20px center;
    background-size: 50px;
  }
  .search_contents_inner03 li.occupation_btn04 {
    background: var(--color_bg_gray) url("../images/search_icon03-04.png") no-repeat left 20px center;
    background-size: 50px;
  }
  .search_contents_inner03 li.occupation_btn05 {
    background: var(--color_bg_gray) url("../images/search_icon03-05.png") no-repeat left 20px center;
    background-size: 50px;
  }
  .search_contents_inner03 li.occupation_btn06 {
    background: var(--color_bg_gray) url("../images/search_icon03-06.png") no-repeat left 20px center;
    background-size: 50px;
  }
  .search_contents_inner03 li.occupation_btn07 {
    background: var(--color_bg_gray) url("../images/search_icon03-07.png") no-repeat left 20px center;
    background-size: 50px;
  }
  .search_contents_inner03 li.occupation_btn08 {
    background: var(--color_bg_gray) url("../images/search_icon03-08.png") no-repeat left 20px center;
    background-size: 50px;
  }
  .search_contents_inner03 li a {
    padding: 35px 50px 35px 90px;
    display: flex;
	align-items: center;
  }
  .search_contents_inner03 li a span {
    font-size: 14px;
  }
}

.index_information_section {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 50px;
}
.index_information_section h3 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 50px;
  padding-top: 10px;
  background: url("../images/txt_deco.png") no-repeat top center;
  background-size: 20px auto;
}
.index_information_section h3 span {
  display: block;
  font-size: 12px;
  color: var(--color_gray);
}
.index_information_list {
  margin-bottom: 50px;
}
.index_information_list article {
  background: var(--color_white);
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.05);
  margin-bottom: 15px;
}
.index_information_list article .info_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.index_information_list article .info_img {
  width: 140px;
  height: 100px;
}
.index_information_list article .info_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}
.index_information_list article h4 {
  width: calc(100% - 160px);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
.index_information_list article .info_txt_contents {
  padding: 10px 20px 20px;
  border-bottom: #D8D8D8 1px solid;
}
.index_information_list article .info_txt_contents li {
  display: flex;
  width: 100%;
  font-size: 13px;
  line-height: 1.6;
  padding-right: 15px;
  margin-bottom: 5px;
}
.index_information_list article .info_txt_contents li:last-child {
  margin-bottom: 0;
}
.index_information_list article .info_txt_contents li .info_ttl {
  width: 75px;
}
.index_information_list article .info_txt_contents li .info_txt {
  width: calc(100% - 75px);
  color: var(--color_gray);
}
.index_information_list article .info_link_btn a {
  display: block;
  padding: 15px 60px 15px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color_text);
  text-decoration: none;
  background: url("../images/index_info_arrow.png") no-repeat right 20px center;
  background-size: 50px auto;
}
.index_information_list .splide__pagination {
  bottom: -20px;
}
.index_information_list .splide__pagination__page {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 1;
  margin: 0 4px;
}
.index_information_list .splide__pagination__page.is-active {
  background: #333;
  transform: scale(1.2);
}
@media screen and (min-width: 1025px) {
  .index_information_section {
    padding-top: 80px;
  }
  .index_information_section h3 {
    font-size: 65px;
    margin-bottom: 50px;
    background: url("../images/txt_deco.png") no-repeat top center;
    background-size: 30px auto;
  }
  .index_information_section h3 span {
    font-size: 20px;
  }
  .index_information_list {
    display: flex;
	margin-bottom: 80px;
  }
  .index_information_list article {
    width: 23%;
	border-radius: 20px;
    margin: 0 1%;
  }
  .index_information_list article .info_head {
    display: block;
    padding: 15px 15px 0;
  }
  .index_information_list article .info_img {
    width: 100%;
    height: 200px;
	margin-bottom: 20px
  }
  .index_information_list article .info_img img {
    border-radius: 10px;
  }
  .index_information_list article h4 {
    width: 100%;
    font-size: 16px;
	padding: 0 5px;
  }
  .index_information_list article .info_txt_contents {
    padding: 15px 20px 20px;
  }
  .index_information_list article .info_link_btn a {
    font-size: 15px;
  }

  /* Splide有効時 */
  .index_information_list.is_splide {
    display: block;
  }
  .index_information_list.is_splide article {
    width: auto;
    margin: 0;
  }
  
  .index_information_list .splide__pagination {
    bottom: -40px;
  }
}

.index_news_section {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 0 160px;
  position: relative;
}
.index_news_section .index_news_ttl {
  margin-bottom: 20px;
}
.index_news_section h4 {
  color: var(--color_white);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  padding-top: 10px;
  background: url("../images/txt_deco_wht.png") no-repeat top left;
  background-size: 20px auto;
}
.index_news_section h4 span {
  display: block;
  font-size: 12px;
}
.index_news_section .txt_btn {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 70px;
}
.index_news_list article {
  margin-bottom: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px) brightness(1.15);
  -webkit-backdrop-filter: blur(16px) brightness(1.15);
}
.index_news_list article:last-child {
  margin-bottom: 0;
}
.index_news_list article a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color_white);
  text-decoration: none;
  background: url("../images/arrow_icon_wht.png") no-repeat top 10px right 10px;
  background-size: 20px;
  padding: 10px;
}
.index_news_list article a .index_news_img {
  width: 100px;
  height: 100px;
}
.index_news_list article a .index_news_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}
.index_news_list article a .index_news_txt {
  width: calc(100% - 120px);
}
.index_news_list article a .index_news_txt p,
.index_news_list article a .index_news_txt h5 {
  line-height: 1.6;
}
.index_news_list article a .index_news_txt p {
  font-size: 12px;
  margin-bottom: 5px;
}
.index_news_list article a .index_news_txt h5 {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .index_news_section {
    display: flex;
	justify-content: space-between;
	padding: 80px 0;
  }
  .index_news_section .index_news_ttl {
    width: 30%;
	margin-bottom: 0;
  }
  .index_news_section h4 {
    font-size: 65px;
    margin-bottom: 50px;
    background: url("../images/txt_deco_wht.png") no-repeat top left;
    background-size: 30px auto;
  }
  .index_news_section h4 span {
    font-size: 20px;
  }
  .index_news_section .txt_btn {
    max-width: 350px;
    position: relative;
	bottom: 0;
  }
  .index_news_list {
    width: 58%;
  }
  .index_news_list article {
    margin-bottom: 5px;
  }
  .index_news_list article a {
    background: url("../images/arrow_icon_wht.png") no-repeat top 20px right 20px;
    background-size: 30px;
    padding: 15px;
  }
  .index_news_list article a .index_news_img {
    width: 150px;
    height: 150px;
  }
  .index_news_list article a .index_news_img img {
    border-radius: 10px;
  }
  .index_news_list article a .index_news_txt {
    width: calc(100% - 180px);
  }
  .index_news_list article a .index_news_txt p {
    font-size: 14px;
  }
  .index_news_list article a .index_news_txt h5 {
    font-size: 16px;
  }
}

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

   block

========================================================= */
.sub_page_contents {
  width: 95%;
  margin: 0 auto;
  padding: 60px 0 0;
  background: var(--color_white);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.main_sec {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.border_deco {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: #D6D6D6 1px solid;
}
.bg_gray_contents {
  padding: 60px 0;
  background: var(--color_bg_gray);
}
.bg_gray_section {
  width: 95%;
  margin: 0 auto;
  border-radius: 30px;
  background: var(--color_white);
  padding: 40px 0;
}
@media screen and (min-width: 1025px) {
  .sub_page_contents {
    width: calc(100% - 120px);
    padding: 100px 0 0;
    border-radius: 60px;
  }
  .border_deco {
    margin-bottom: 80px;
    padding-bottom: 80px;
  }
  .bg_gray_contents {
    padding: 80px 0;
  }
  .bg_gray_section {
    border-radius: 50px;
    padding: 60px 0;
  }
}

.topicpath {
  width: 90%;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color_orange);
  border-radius: 100vh;
  padding: 0 15px;
  z-index: 2;
}
.topicpath ul {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.topicpath li {
  line-height: 1.4;
  font-size: 12px;
  color: var(--color_white);
  padding-right: 0.5em;
}
.topicpath li:last-child {
  padding-right: 0;
}
.topicpath li::before {
  content: ' > ';
}
.topicpath li:first-child::before {
  content: '';
}
.topicpath li a {
  color: var(--color_white);
}
@media screen and (min-width: 1025px) {
  .topicpath {
    width: 60%;
    bottom: -35px;
  }
  .topicpath ul {
    height: 70px;
  }
  .topicpath li {
    font-size: 16px;
  }
}

.btm_topicpath {
  width: 95%;
  padding: 40px 0;
  margin: 0 auto;
}
.btm_topicpath ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btm_topicpath li {
  padding-right: 45px;
  background: url("../images/arrow_icon_org.png") no-repeat right 15px center;
  background-size: 15px;
}
.btm_topicpath.arrow_blue li {
  padding-right: 45px;
  background: url("../images/arrow_icon_blu.png") no-repeat right 15px center;
  background-size: 15px;
}
.btm_topicpath.arrow_navy li {
  padding-right: 45px;
  background: url("../images/arrow_icon_nav.png") no-repeat right 15px center;
  background-size: 15px;
}
.btm_topicpath li:last-child {
  padding-right: 0;
  background: none !important;
}
.btm_topicpath li,
.btm_topicpath a {
  line-height: 1.4;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: var(--color_white);
  text-decoration: none;
}
.btm_topicpath li .en_txt {
  font-size: 20px;
  display: block;
}

@media screen and (min-width: 1025px) {
  .btm_topicpath {
    padding: 60px 0;
  }
  .btm_topicpath li {
    padding-right: 60px;
    background: url("../images/arrow_icon_org.png") no-repeat right 20px center;
    background-size: 20px;
  }
  .btm_topicpath.arrow_blue li {
    background: url("../images/arrow_icon_blu.png") no-repeat right 20px center;
    background-size: 20px;
  }
  .btm_topicpath li,
  .btm_topicpath a {
    font-size: 16px;
  }
  .btm_topicpath li .en_txt {
    font-size: 30px;
  }
}

.row-content .row-block {
  margin-bottom: 30px;
  border-radius: 30px;
}
.row-content .row-block:last-child {
  margin-bottom: 0;
}
.row-content .row-block.pd {
  padding: 30px;
}
@media screen and (min-width: 1025px) {
  .row-content {
    display: flex;
    flex-wrap: wrap;
  }
  .row-content .row-block {
    margin-top: 30px;
	margin-bottom: 0;
	display: flex;
    flex-direction: column;
  }
  .row-content .row-block.pd {
    padding: 20px 40px;
  }
	.row-content .row-block .txt_btn {
		margin-top: auto;
	}
  
  .row-content.row-2 .row-block:nth-child(-n+2) { margin-top: 0; }
  .row-content.row-3 .row-block:nth-child(-n+3) { margin-top: 0; }
  .row-content.row-4 .row-block:nth-child(-n+4) { margin-top: 0; }
  .row-content.row-2 .row-block { width: calc(50% - 15px); }
  .row-content.row-2 .row-block:nth-child(2n) { margin-left: auto; }
  
  .row-content.row-3 .row-block {
    width: 32%;
    margin-right: 2%;
  }
  .row-content.row-4 .row-block {
    width: 23.5%;
    margin-right: 2%;
  }
  .row-content.row-3 .row-block:nth-child(3n),
  .row-content.row-4 .row-block:nth-child(4n) {
    margin-right: 0;
  }
}

.image_l .img,
.image_r .img {
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.img_deco {
  border-radius: 20px;
}
@media screen and (min-width: 1025px) {  
  .image_l,
  .image_r {
    display: flex;
  }
  .image_r {
    justify-content: flex-end;
    flex-direction: row-reverse;
  }
  .image_l .img,
  .image_r .img {
    width: 35%;
	  margin: 0;
  }
  .image_l .txt,
  .image_r .txt {
    width: 60%;
	padding-top: 10px;
  }
  .image_l .txt {
    margin-left: auto;
  }
  .image_r .txt {
    margin-right: auto;
  }
}

.sub_page_contact {
  width: 95%;
  margin: 30px auto 0;
  padding: 30px 0;
  border: var(--color_white) 2px solid;
  border-radius: 30px;  
}
.sub_page_contact.bg_opt-blue{
  background:  rgba(var(--color_blue_rgb), 0.5);
}
.sub_page_contact h3,
.sub_page_contact p {
  color: var(--color_white);
  text-align: center;
  margin-bottom: 30px;
}
.sub_page_contact .contact_btn {
  max-width: 350px;
  margin: 0 auto;
  text-align: left;
  font-weight: 700;
  background: var(--color_white);
  border-radius: 100vh;
  position: relative;
}
.sub_page_contact .contact_btn::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100vh;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: #00416A;
}
.sub_page_contact .contact_btn a {
  display: block;
  padding: 15px 30px;
  color: #00416A;
  text-decoration: none;
	text-align: center;
}
@media screen and (min-width: 1025px) {  
  .sub_page_contact {
    width: calc(100% - 120px);
    margin: 50px auto 0;
    padding: 50px 0;
    border-radius: 60px;
  }
}

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

   title

========================================================= */
.page_title {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 0 90px;
  position: relative;
}
.page_title h2 {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.page_title h2 .en_txt {
  display: block;
  color: #FFF;
  font-size: 40px;
}

.ttl_pt01 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  padding-top: 20px;
  background: url("../images/txt_deco.png") no-repeat top center;
  background-size: 20px auto;
}
.ttl_pt01.ttl_pt_org {
  background: url("../images/txt_deco_org.png") no-repeat top center;
  background-size: 20px auto;
}
.ttl_pt01.ttl_pt_org span {
  color: var(--color_orange);
}

.ttl_pt01.ttl_pt_org_blue {
  background: url("../images/txt_deco.png") no-repeat top center;
  background-size: 20px auto;
}
.ttl_pt01.ttl_pt_org_blue span {
  color: var(--color_orange);
}
.ttl_pt01.ttl_pt_org_l-blue {
  background: url("../images/txt_deco_org_l-_blue.png") no-repeat top center;
  background-size: 20px auto;
}
.ttl_pt01.ttl_pt_org_l-blue span {
  color: var(--color_orange);
}

.ttl_pt01.ttl_pt_l-org {
  background: url("../images/txt_deco_l-org.png") no-repeat top center;
  background-size: 20px auto;
}
.ttl_pt01.ttl_pt_l-org span {
  color: var(--color_blue);
}
.ttl_pt01.ttl_pt_blu {
  background: url("../images/txt_deco_blu.png") no-repeat top center;
  background-size: 20px auto;
}
.ttl_pt01.ttl_pt_blu span {
  color: var(--color_blue);
}
.ttl_pt01.ttl_pt_nav {
  background: url("../images/txt_deco_nav.png") no-repeat top center;
  background-size: 20px auto;
}
.ttl_pt01.ttl_pt_nav span {
  color: var(--color_navy);
}
.ttl_pt01.ttl_pt_gry {
  background: url("../images/txt_deco_gry.png") no-repeat top center;
  background-size: 20px auto;
}
.ttl_pt01.ttl_pt_gry span {
  color: var(--color_gray);
}
.sub_ttl_en {
  font-weight: 700;
  color: var(--color_gray);
  text-align: center;
  margin-bottom: 30px;
}

.ttl_pt02 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 15px;
  border-bottom: #D6D6D6 1px solid;
  position: relative;
  margin-bottom: 30px;
}
.ttl_pt02::before {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.ttl_pt02.ttl_pt_org::before {
  background: var(--color_orange);
}
.ttl_pt02.ttl_pt_org {
  color: var(--color_orange);
}
.ttl_pt02.ttl_pt_blu::before {
  background: var(--color_blue);
}
.ttl_pt02.ttl_pt_blu {
  color: var(--color_blue);
}
.ttl_pt02.ttl_pt_gry::before {
  background: var(--color_gray);
}

.ttl_pt03 {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color_white);
  border-radius: 100vh;
  padding: 10px 30px;
  margin-bottom: 20px;
}
.ttl_pt03.ttl_pt_org {
  background: var(--color_orange);
}
.ttl_pt03.ttl_pt_blu {
  background: var(--color_blue);
}
.ttl_pt03.ttl_pt_gry {
  background: var(--color_gray);
}

.ttl_pt04 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}
.ttl_pt04.ttl_pt_org {
  color: var(--color_orange);
}
.ttl_pt04.ttl_pt_blu {
  color: var(--color_blue);
}
.ttl_pt04.ttl_pt_gry {
  color: var(--color_gray);
}
@media screen and (min-width: 1025px) {
  .page_title {
    padding: 120px 0 140px;
  }
  .page_title h2 {
    font-size: 25px;
  }
  .page_title h2 .en_txt {
    font-size: 50px;
  }
  .ttl_pt01 {
    font-size: 38px;
  }
  .sub_ttl_en {
    font-size: 20px;
  }
  .ttl_pt02 {
    font-size: 28px;
	margin-bottom: 40px;
  }
  .image_l .txt .ttl_pt02::after,
  .image_r .txt .ttl_pt02::after {
    content: '';
	display: block;
	width: 100px;
	height: 1px;
	background: #D6D6D6;
	position: absolute;
	bottom: -1px;
  }
  .image_l .txt .ttl_pt02::after {
	left: -100px;
  }
  .image_r .txt .ttl_pt02::after {
	right: -100px;
  } 
  .ttl_pt03 {
    font-size: 22px;
  }
}

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

   list

========================================================= */
.list_pt01 li {
  position: relative;
  margin-bottom: 3px;
  padding-left: 20px;
}
.list_pt01 li::before {
  display: block;
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color_text);
  border-radius: 100%;
}
.list_pt01.list_org li::before {
  background-color: var(--color_orange);
}
.list_pt01.list_blu li::before {
  background-color: var(--color_blue);
}
.list_pt01.list_gry li::before {
  background-color: var(--color_gray);
}
.list_pt01 li:last-child {
  margin-bottom: 0;
}

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

   table

========================================================= */
.tbl_pt01 {
  width: 100%;  
  table-layout: fixed;
}
.tbl_pt01 tr,
.tbl_pt01 th,
.tbl_pt01 td {
  display: block;
  box-sizing: border-box;
}
.tbl_pt01 tr {
  background: var(--color_bg_gray);
  border-bottom: var(--color_white) 10px solid;
}
.tbl_pt01 th {
  font-weight: 700;
  padding: 20px 20px 10px;
}
.tbl_pt01.tbl_org th {
  color: var(--color_orange);
}
.tbl_pt01.tbl_blu th {
  color: var(--color_blue);
}
.tbl_pt01.tbl_gry th {
  color: var(--color_gray);
}
.tbl_pt01 td {
  padding: 0 20px 20px;
}
@media screen and (min-width: 1025px) {
  .tbl_pt01 tr {
    display: table-row;
  }
  .tbl_pt01 th,
  .tbl_pt01 td {
    display: table-cell;
  }
  .tbl_pt01 th {
    width: 20%;
    padding: 30px;
  }
  .tbl_pt01 td {
    padding: 30px 30px 30px 0;
  }
}

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

   button

========================================================= */
.txt_btn {
  font-weight: 700;
  border-radius: 100vh;
  position: relative;
}
.txt_btn.btn_org {
  background: var(--color_orange);
}
.txt_btn.btn_blu {
  background: var(--color_blue);
}
.txt_btn.btn_gry {
  background: var(--color_gray);
}
.txt_btn.btn_wht {
  background: var(--color_white);
}
.txt_btn::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100vh;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: var(--color_white);
}
.txt_btn a {
  display: block;
  padding: 15px 30px;
  color: var(--color_white);
  text-decoration: none;
}
.txt_btn.btn_wht::before {
  background: var(--color_gray);
}
.txt_btn.btn_wht a {
  color: var(--color_text);
}
@media screen and (min-width: 1025px) {
  .w200 {
    max-width: 200px;
  }
  .w250 {
    max-width: 250px;
  }
  .w300 {
    max-width: 300px;
  }
  .w350 {
    max-width: 350px;
  }
  .w400 {
    max-width: 400px;
  }
  .w450 {
    max-width: 450px;
  }
  .w500 {
    max-width: 500px;
  }
  .txt_btn_cnt {
    margin: 0 auto;
  }
}

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

   02.お仕事をお探しの方

========================================================= */
.job_icon_list {
  width: 65%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.job_icon_list li {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 5%;
}
.job_icon_list li:nth-child(3n) {
  margin-right: 0;
}

.job_flow_contents {
  max-width: 800px;
  margin: 0 auto;
}
.job_flow_contents li.job_flow {
  padding: 5px 0 20px 80px;
  position: relative;
}
.job_flow_contents li.job_flow:last-child {
  padding: 5px 0 0 80px;
}
.job_flow_contents li.job_flow::before {
  content: '';
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 4px;
  left: 29px;
  background: var(--color_orange);
}
.job_flow_contents li.job_flow:last-child::before {
  display: none;
}
.job_flow_contents li::after {
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
}
.job_flow_contents li.job_flow01::after {
  background: url("../images/job_icon11.png") no-repeat center;
  background-size: cover;
}
.job_flow_contents li.job_flow02::after {
  background: url("../images/job_icon12.png") no-repeat center;
  background-size: cover;
}
.job_flow_contents li.job_flow03::after {
  background: url("../images/job_icon13.png") no-repeat center;
  background-size: cover;
}
.job_flow_contents li.job_flow04::after {
  background: url("../images/job_icon14.png") no-repeat center;
  background-size: cover;
}
.job_flow_contents li.job_flow05::after {
  background: url("../images/job_icon15.png") no-repeat center;
  background-size: cover;
}
.job_flow_contents li .job_flow_ttl {
  font-size: 20px;
  font-weight: 700;
  color: var(--color_orange);
  line-height: 1.4;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: var(--color_gray) 1px solid;
}
.job_flow_contents li .job_flow_ttl span {
  display: block;
  font-size: 16px;
  color: var(--color_gray);
}
@media screen and (min-width: 1025px) {
  .job_icon_list li,
  .job_icon_list li:nth-child(3n) {
    width: 18.4%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .job_icon_list li:nth-child(5n) {
    margin-right: 0;
  }
  .job_flow_contents li.job_flow {
    padding: 5px 0 40px 150px;
  }
  .job_flow_contents li.job_flow:last-child {
    padding: 5px 0 0 150px;
  }
  .job_flow_contents li.job_flow::before {
    left: 49px;
  }
  .job_flow_contents li::after {
    width: 100px;
    height: 100px;
  }
  .job_flow_contents li .job_flow_ttl {
    font-size: 24px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  .job_flow_contents li .job_flow_ttl span {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  .job_icon_list li:last-child{
    margin-right: 0;
  }
}
/* ======================================================

   03.企業のお客様

========================================================= */
.recruit_flow_contents {
  max-width: 800px;
  margin: 0 auto;
}
.recruit_flow_contents li.recruit_flow {
  padding: 5px 0 20px 80px;
  position: relative;
}
.recruit_flow_contents li.recruit_flow:last-child {
  padding: 5px 0 0 80px;
}
.recruit_flow_contents li.recruit_flow::before {
  content: '';
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 4px;
  left: 29px;
  background: var(--color_blue);
}
.recruit_flow_contents li.recruit_flow:last-child::before {
  display: none;
}
.recruit_flow_contents li::after {
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
}
.recruit_flow_contents li.recruit_flow01::after {
  background: url("../images/recruit_icon01.png") no-repeat center;
  background-size: cover;
}
.recruit_flow_contents li.recruit_flow02::after {
  background: url("../images/recruit_icon02.png") no-repeat center;
  background-size: cover;
}
.recruit_flow_contents li.recruit_flow03::after {
  background: url("../images/recruit_icon03.png") no-repeat center;
  background-size: cover;
}
.recruit_flow_contents li.recruit_flow04::after {
  background: url("../images/recruit_icon04.png") no-repeat center;
  background-size: cover;
}
.recruit_flow_contents li .recruit_flow_ttl {
  font-size: 20px;
  font-weight: 700;
  color: var(--color_blue);
  line-height: 1.4;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: var(--color_gray) 1px solid;
}
.recruit_flow_contents li .recruit_flow_ttl span {
  display: block;
  font-size: 16px;
  color: var(--color_gray);
}
@media screen and (min-width: 1025px) {
  .recruit_flow_contents li.recruit_flow {
    padding: 5px 0 40px 150px;
  }
  .recruit_flow_contents li.recruit_flow:last-child {
    padding: 5px 0 0 150px;
  }
  .recruit_flow_contents li.recruit_flow::before {
    left: 49px;
  }
  .recruit_flow_contents li::after {
    width: 100px;
    height: 100px;
  }
  .recruit_flow_contents li .recruit_flow_ttl {
    font-size: 24px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  .recruit_flow_contents li .recruit_flow_ttl span {
    font-size: 18px;
  }
}

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

   04.会社概要

========================================================= */
.company_special_section {
  background-color: var(--color_bg_gray);
}
.company_special_contents {
  width: 80%;
  margin: 0 auto;
  padding: 70px 0;
}
.company_special_contents h3{
	margin-bottom: 10px!important;
  text-align: center;
}

.company_special_contents h4,
.company_special_contents p {
  text-align: center;
}
.company_special_contents h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}
.company_special_contents h3 span {
  color: var(--color_orange);
}
.company_special_contents h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
}

.group_info {
  margin-bottom: 20px;
}
.group_info li {
  font-size: 14px;
  margin-bottom: 10px;
}
.group_info li:last-child {
  margin-bottom: 0;
}
.group_info li span {
  display: block;
}
.group_info li .group_ttl {
  font-weight: 700;
}
.group_info li .group_txt {
}
.company_map iframe {
  height: 300px;
}
@media screen and (min-width: 1025px) {
  .company_special_section {
    background-size:
      auto 65%,
      auto 33%,
      auto 29%,
      auto 57%;
  }
  .company_special_contents {
    width: 90%;
	max-width: 900px;
    padding: 120px 0;
  }
  .company_special_contents h3 {
    font-size: 50px;
    margin-bottom: 60px;
  }
  .company_special_contents h4 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  
  .group_info {
    margin-bottom: 30px;
  }
  .group_info li {
    display: flex;
    justify-content: space-between;
  }
  .group_info li .group_ttl {
    width: 100px;
  }
  .group_info li .group_txt {
    width: calc(100% - 100px);
  }
  .company_map iframe {
    height: 450px;
  }
}

@media screen and (max-width: 1024px) {
.company_special_contents h3,
.company_special_contents h4,
.company_special_contents p {
  text-align: left;
}
}
/* ======================================================

   05.お問い合わせ

========================================================= */
.contact_external_link {
  max-width: 800px;
  margin: 20px auto 0;
}
.contact_external_link li {
  font-size: 16px;
  line-height: 1.6;
  border: var(--color_orange) 1px solid;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 5px;
}
.contact_external_link li a {
  display: block;
  padding: 15px 40px 15px 15px;
  text-decoration: none;
  transition: 0.3s;
  background: url("../images/arrow_icon_org.png") no-repeat right 15px center;
  background-size: 15px;
}
@media screen and (min-width: 1025px) {
  .contact_external_link {
    margin: 30px auto 0;
  }
  .contact_external_link ul {
    display: flex;
	justify-content: space-between;
  }
  .contact_external_link li {
    width: 49%;
    margin-bottom: 0;
  }
}

.question_contents dl {
  margin-bottom: 10px;
}
.question_contents.question_contact dt {
	background: var(--color_blue);
}
.question_contents dt {
  color: var(--color_white);
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  cursor: pointer;
  padding: 15px 40px 15px 20px;
  background: var(--color_orange);
  border-radius: 10px;
}
.question_contents dt::before,
.question_contents dt::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--color_white);
  transform: translateY(-50%);
  transition: 0.3s;
}
.question_contents dt::after {
  transform: translateY(-50%) rotate(90deg);
}
.question_contents dt.is_open::after {
  transform: translateY(-50%) rotate(0deg);
}
.question_contents dd {
  padding: 20px;
  line-height: 1.6;
}
.privacy_policy {
  height: 250px;
  background: var(--color_white);
  padding: 20px;
  border-radius: 10px;
  border: #D6D6D6 1px solid;
  overflow: auto;
  overflow-wrap: anywhere;
  margin-bottom: 1em;
}
.privacy_policy p,
.privacy_policy li {
  font-size: 14px;
}
.privacy_policy li {
  float: none !important;
  padding-left: 20px !important;
}
.privacy_policy .list_pt01 li::before {
  top: 10px;
}
.privacy_policy p.note {
  font-size: 12px;
}
.privacy_policy .ttl_pt02 {
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.privacy_policy h5 {
  font-size: 15px;
  font-weight: 700;
  padding: 0 0 0 10px;
  margin-bottom: 10px;
  border-left: var(--color_orange) 3px solid;
}
.privacy_policy .pd_l {
  padding-left: 1em;
}
@media screen and (min-width: 1025px) {
  .privacy_policy {
    height: 300px;
    padding: 30px;
  }
}

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

   06-07.お知らせ

========================================================= */
.news_list {
  max-width: 1000px;
  margin: 0 auto 30px;
}
.news_list article {
  margin-bottom: 10px;
  border-radius: 10px;
  background: var(--color_bg_gray);
}
.news_list article:last-child {
  margin-bottom: 0;
}
.news_list article a {
  display: flex;
  justify-content: space-between;
  color: var(--color_text);
  text-decoration: none;
  background: url("../images/arrow_icon_org.png") no-repeat top 10px right 10px;
  background-size: 20px;
  padding: 10px;
}
.news_list article a .news_img {
  width: 100px;
  height: 100px;
}
.news_list article a .news_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}
.news_list article a .news_txt {
  width: calc(100% - 120px);
  padding: 15px 10px 15px 0;
}
.news_list article a .news_txt p,
.news_list article a .news_txt h5 {
  font-size: 14px;
  line-height: 1.6;
}
.news_list article a .news_txt p.data {
  font-size: 12px;
  margin-bottom: 5px;
}
.news_list article a .news_txt h5 {
  font-weight: 700;
  margin-bottom: 15px;
}
.news_detail {
  max-width: 1000px;
  margin: 0 auto;
}
.news_detail .news_img {
  margin: 40px 0;
}
.news_detail .news_img img {
  border-radius: 10px;
}
.news_detail .news_txt p {
  margin-bottom: 1em;
}
.news_detail .news_txt p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .news_list article a {
    background: url("../images/arrow_icon_org.png") no-repeat top 20px right 20px;
    background-size: 30px;
    padding: 15px;
  }
  .news_list article a .news_img {
    width: 180px;
    height: 180px;
  }
  .news_list article a .news_img img {
    border-radius: 10px;
  }
  .news_list article a .news_txt {
    width: calc(100% - 210px);
	padding: 20px 15px 20px 0;
  }
  .news_list article a .news_txt p {
    font-size: 16px;
  }
  .news_list article a .news_txt p.data {
    font-size: 14px;
  }
  .news_list article a .news_txt h5 {
    font-size: 18px;
  }
  .news_detail .news_img {
    margin: 60px 0;
  }
}

ul.pagination {
  display: flex;
  justify-content: center;
}
ul.pagination li {
  margin: 2px;
  font-size: 14px;
  line-height: 1.6;
  border: var(--color_orange) 1px solid;
  border-radius: 5px;
  cursor: pointer;
}
ul.pagination li a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  transition: 0.3s;
}
ul.pagination li:hover a,
ul.pagination li.active a {
  transition: 0.3s;
  color: var(--color_white);
  background: var(--color_orange);
}
.news_btm_btn {
  position: relative;
}
.news_btm_btn ul {
  max-width: 1000px;
  height: 50px;
  margin: 0 auto;
  position: relative;
}
.news_btm_btn ul li {
  font-size: 14px;
  line-height: 1.6;
  border: var(--color_orange) 1px solid;
  border-radius: 5px;
  height: 50px;
  position: absolute;
  top: 0;
}
.news_btm_btn ul li.next {
  right: 0;
}
.news_btm_btn ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 15px;
  text-decoration: none;
  transition: 0.3s;
}
.news_btm_btn ul li a:hover {
  transition: 0.3s;
  color: var(--color_white);
  background: var(--color_orange);
  cursor: pointer;
}
.news_btm_btn .news_btn {
  font-size: 14px;
  line-height: 1.6;
  border: var(--color_orange) 1px solid;
  border-radius: 5px;
  height: 50px;
  margin-top: 10px;
}
.news_btm_btn .news_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 15px;
  text-decoration: none;
  transition: 0.3s;
}
.news_btm_btn .news_btn a:hover {
  transition: 0.3s;
  color: var(--color_white);
  background: var(--color_orange);
  cursor: pointer;
}
.p-footer-floating {
  position: fixed;
  right: 0;
  padding: 10px;
  top: 35%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.4);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.p-footer-floating .floating-link-unit a {
  width: 50px;
  text-align: center;
  padding: 30px 15px;
  display: block;
  margin: 10px 0;
  color: #fff;
  border-radius: 5px;
  transition: 0.3s all;
}
.p-footer-floating .floating-link-unit a:hover {
  text-decoration: none;
}
.p-footer-floating .floating-link-unit a.f-btn-1{
  background: var(--color_orange);
}
.p-footer-floating .floating-link-unit a.f-btn-2{
  background: var(--color_blue);
}
.p-footer-floating .floating-link-unit a.f-btn-2:hover{
  opacity: 0.9;
}
@media screen and (min-width: 1025px) {
  .news_btm_btn .news_btn {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 1100px) and (max-width: 1401px) {
  .hd_link_contents li.hd_link02 a {
    background: url(../images/icon_img02.png) no-repeat center center;
    background-size: 20px;
    width: 50px;
    height: 50px;
  }
  .hd_link_contents li.hd_link03 a {
    background: url(../images/icon_img03.png) no-repeat center center;
    background-size: 25px;
    width: 50px;
    height: 50px;
  }
  .hd_link_contents li.hd_link02 a span,
  .hd_link_contents li.hd_link03 a span {
    display: none;
  }
}
@media (min-width: 1025px) and (max-width: 1099px) {
  .hd_link_contents li.hd_link02 a {
    background: url(../images/icon_img02.png) no-repeat center center;
    background-size: 20px;
    width: 50px;
    height: 50px;
  }
  .hd_link_contents li.hd_link03 a {
    background: url(../images/icon_img03.png) no-repeat center center;
    background-size: 25px;
    width: 50px;
    height: 50px;
  }
  .hd_link_contents li.hd_link02 a span,
  .hd_link_contents li.hd_link03 a span {
    display: none;
  }
  .header .logo {
        width: 200px;
        height: 60px;
        position: static;
        margin-left: 0;
        display: flex;
        align-items: center;
    }
  .header .logo img {
    width: 100%;
    height: auto;
  }
  .gnav a {
    font-size: 15px;
  }
}