@charset "UTF-8";
body {
  width: 100%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #555;
  margin: 0;
  background-color: #f9f9f9;
  scroll-behavior: smooth;
  line-height: 1.9;
  letter-spacing: 1px;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2 {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

i {
  color: #3470d1;
}

.smp {
  display: block;
}

.pc {
  display: none;
}

h2 {
  color: #07306d;
}

#kiyaku h2, #privacy h2, #sitemap h2, #column_detail h2, #under_page #column h2, #about h2, #detail_mail h2, #corp h2 {
  font-size: 1.4rem;
  border-left: 10px solid #7197d1;
  margin: 10px 0 10px 10px;
  padding: 0 0 0 10px;
}

#privacy h3, #kiyaku h3, #sitemap h3, #column_detail h3, #about h3, #corp h3 {
  font-size: 1.2rem;
}

#under_page #column h3 {
  font-size: 1rem;
}

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

table {
  margin: 20px auto;
  width: 100%;
  font-size: 1rem;
  border-collapse: collapse;
}

th {
  border-bottom: 1px solid #ccc;
  padding: 10px;
  width: 25%;
}

td {
  padding: 10px;
  width: 70%;
  border-bottom: 1px solid #ccc;
  text-align: left;
}

header {
  width: 100%;
  background-color: #fff;
}
header #header_inner {
  width: 100%;
  margin: 0 auto;
}
header h1 {
  padding: 0 0 15px 10px;
}
header h1 img {
  width: 45%;
}
header nav {
  padding: 0;
}
header nav ul {
  width: 1200px;
  border-right: 1px solid #ccc;
  margin: 0 auto;
}
header nav ul li {
  border-left: 1px solid #ccc;
  width: 100%;
}
header nav ul li a {
  color: #fff;
  display: block;
  padding: 5px 15px;
  font-size: 1rem;
  text-align: left;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px; /*線の太さ*/
  width: 25px; /*長さ*/
  border-radius: 3px;
  background: #333;
  display: block;
  content: "";
  cursor: pointer;
}

#nav-open span:before {
  bottom: -8px;
}

#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none; /*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0; /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999; /*最前面に*/
  width: 90%; /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 220px; /*最大幅（調整してください）*/
  height: 100%;
  background: #fff; /*背景色*/
  transition: 0.3s ease-in-out; /*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%); /*左に隠しておく*/
}

#nav-content a {
  color: #333;
  padding: 10px;
  display: block;
  border-bottom: 1px solid #ccc;
  font-size: 1rem;
}

#nav-content a::before {
  content: ">";
  padding-right: 10px;
  font-size: 0.7rem;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block; /*カバーを表示*/
  opacity: 0.5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%); /*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

#nav-drawer {
  position: absolute;
  top: 2.6%;
  left: 87%;
}

.breadcrumb_bg {
  background: #f9f9f9;
}

.breadcrumb {
  margin: 0;
  padding: 0.3em 0.8em;
  list-style: none;
  overflow: hidden;
  font-size: 0.9rem;
}
.breadcrumb li {
  display: inline; /*横に並ぶように*/
  list-style: none;
}
.breadcrumb li:after {
  /* >を表示*/
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 600;
  padding: 0 0.2em;
  color: #666;
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb li a {
  text-decoration: none;
  color: #333;
}
.breadcrumb li:first-child a:before { /*家アイコンに*/
  font-family: "Font Awesome 5 Free";
  content: "\f015";
  font-weight: 600;
  font-size: 1.1em;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}

article {
  margin: 0 auto;
  width: 100%;
}

section {
  margin: 2% 2% 5%;
}
section #top_search_inner {
  background-color: #fff;
  padding: 2% 5% 10%;
  margin: 2% 2% 5%;
  width: 86%;
  box-shadow: 0px 0px 2px #ccc;
}
section h2 {
  font-size: 1.2rem;
  border-bottom: 2px dotted #aaa;
  margin: 20px 0 30px;
  padding: 0 0 10px;
}

#kiyaku section h2 {
  text-align: center;
  font-size: 1.4rem;
  margin: 50px 0 10px;
  padding: 0;
  border: 0;
}

a.back_btn {
  display: inline-block;
  padding: 5px 20px;
  font-size: 0.9rem;
  border-radius: 5px;
  text-align: center;
  margin: 5px 0 0;
  background-color: #555555;
  color: #fff;
}

a.back_btn::before {
  content: "<";
  margin-right: 5px;
}

#main_img {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  justify-content: center;
  min-height: 40vh;
  color: #fff;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
#main_img .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-color: #333;
  background-position: 0% top;
  z-index: -1;
}
#main_img .background-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  opacity: 0.1;
}
#main_img .p_h2 {
  font-size: 1.2rem;
  text-shadow: 0 0 5px #000;
}
#main_img .p_h2 h2 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
#main_img .p_h2 p {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

#main_img2 {
  max-width: 100%;
  background-color: #3470d1;
  margin: 0 auto;
  height: 155px;
}
#main_img2 #main_img_inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  height: 155px;
}
#main_img2 #main_img_inner .main_img_text {
  position: absolute;
  width: 48%;
  top: 45px;
  left: 25px;
}
#main_img2 #main_img_inner .main_img_pc {
  display: block;
  width: 105px;
  position: absolute;
  top: 15px;
  right: 42px;
}
#main_img2 #main_img_inner ul {
  display: flex;
  position: absolute;
  bottom: 25px;
  right: 31px;
}
#main_img2 #main_img_inner ul li {
  width: 35px;
  margin: 0 5px 0 0;
}

#top_search h2 {
  border: 0;
  text-align: center;
  font-size: 1.2rem;
  margin: 10px 0;
  padding: 0;
}
#top_search #top_search_inner h3 {
  font-size: 1.2rem;
  border-bottom: 2px dotted #aaa;
  margin: 0 0 15px;
  padding: 0 0 5px;
}
#top_search #top_search_inner #top_search_work {
  padding: 15px 4% 10px;
  border-radius: 20px 20px 0 0;
  /* アクティブなタブ */
  /* ラジオボタン非表示 */
}
#top_search #top_search_inner #top_search_work ul {
  display: flex;
  flex-wrap: wrap;
}
#top_search #top_search_inner #top_search_work ul li {
  width: 45%;
  margin: 0 2.4%;
}
#top_search #top_search_inner #top_search_work ul .work-label {
  border-radius: 10px;
  border: 2px solid #583d22;
  font-size: 0.8rem;
  margin: 5px 0px;
  padding: 1%;
  text-align: center;
  height: 7vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top_search #top_search_inner #top_search_work .work_input:checked + .work-label {
  background: #e6f0ff;
  color: #583d22;
  box-shadow: 0px 0px 0px #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top_search #top_search_inner #top_search_work .work_input {
  display: none;
}
@media screen and (min-width: 1024px) {
  #top_search #top_search_inner .work-label br {
    display: none;
  }
}
#top_search #top_search_inner #top_search_area {
  padding: 10px 4% 10px;
}
#top_search #top_search_inner #top_search_area #top_search_area_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  /* アクティブなタブ */
  /* ラジオボタン非表示 */
}
#top_search #top_search_inner #top_search_area #top_search_area_inner .tab {
  font-size: 0.8rem;
  margin: 0px;
  padding: 1%;
  width: 45%;
}
#top_search #top_search_inner #top_search_area #top_search_area_inner .area-label {
  border-radius: 10px;
  border: 2px solid #583d22;
  font-size: 0.8rem;
  margin: 3px 0px;
  padding: 1%;
  text-align: center;
  height: 7vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top_search #top_search_inner #top_search_area #top_search_area_inner .area_input:checked + .area-label {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6f0ff;
  color: #583d22;
}
#top_search #top_search_inner #top_search_area #top_search_area_inner .area_input {
  display: none;
}
#top_search #top_search_inner #top_search_ken {
  padding: 10px 4% 10px;
  border-radius: 0 0 20px 20px;
  justify-content: space-around;
}
#top_search #top_search_inner #top_search_ken .content {
  display: none;
}
#top_search #top_search_inner #top_search_ken .content.show {
  display: block;
}
#top_search #top_search_inner #top_search_ken li {
  width: 45%;
}
#top_search #top_search_inner #top_search_ken ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  /* アクティブなタブ */
  /* ラジオボタン非表示 */
}
#top_search #top_search_inner #top_search_ken ul .ken-label {
  font-size: 0.8rem;
  margin: 5px 0px;
  padding: 1%;
  text-align: center;
  height: 7vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 2px solid #583d22;
}
#top_search #top_search_inner #top_search_ken ul .ken_input:checked + .ken-label {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6f0ff;
  color: #583d22;
  box-shadow: 0px 0px 0px #000;
}
#top_search #top_search_inner #top_search_ken ul .ken_input {
  display: none;
}
#top_search button {
  background-color: #3470d1;
  border: 0;
  color: #fff;
  font-weight: bold;
  padding: 15px 40px;
  font-size: 0.7em;
  border-radius: 10px;
  margin: 20px auto 0px;
  text-align: center;
  display: block;
}

#top_all_search {
  padding: 10% 5%;
  margin: 2% 2% 5%;
}
#top_all_search input[type=text] {
  width: 90%;
  padding: 15px 5%;
  font-size: 1rem;
}
#top_all_search button {
  background-color: #3470d1;
  border: 0;
  color: #fff;
  font-weight: bold;
  padding: 10px 40px;
  font-size: 0.7em;
  border-radius: 10px;
  margin: 20px auto 0;
  display: block;
}

#sp {
  width: 100%;
}

#top_new_recruit {
  margin: 10% 2%;
  width: 95%;
}
#top_new_recruit h2 {
  font-size: 1.2rem;
  margin: 0px 10px 20px;
}
#top_new_recruit ul {
  display: flex;
  flex-wrap: wrap;
}
#top_new_recruit li {
  padding: 1%;
  background-color: #fff;
  box-shadow: 0px 0px 2px #ccc;
  margin: 2% 0.5%;
  width: 47%;
}
#top_new_recruit h3 {
  font-size: 1rem;
  margin: 0;
  padding: 0;
}
#top_new_recruit .tag {
  margin: 5px 0;
}
#top_new_recruit .tag span {
  display: inline-block;
  border-radius: 10px;
  padding: 2px 10px;
  font-size: 0.7rem;
}
#top_new_recruit .tag .bengoshi {
  background-color: #e25a97;
  color: #fff;
}
#top_new_recruit p {
  font-size: 0.9rem;
  padding: 0;
  margin: 0;
}

#top_intern {
  margin: 10% 2%;
}
#top_intern h2 {
  font-size: 1.2rem;
  margin: 0px 10px 20px;
}
#top_intern .slick01 .slick-dots li {
  padding: 0;
}
#top_intern .slick01 .slick-slide {
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 2px #ccc;
  margin: 5px;
}
#top_intern .slick01 h3 {
  font-size: 1rem;
  margin: 0;
  padding: 0;
}
#top_intern .slick01 .tag {
  margin: 5px 0;
}
#top_intern .slick01 .tag a {
  display: inline-block;
  border-radius: 10px;
  padding: 2px 10px;
  font-size: 0.7rem;
}
#top_intern .slick01 .tag .bengoshi {
  background-color: #e25a97;
  color: #fff;
}
#top_intern .slick01 p {
  font-size: 0.9rem;
  padding: 0;
  margin: 0;
}

#top_column {
  padding: 10% 2%;
  margin: 2% 2% 5%;
  /* アクティブなタブ */
  /* ラジオボタン非表示 */
}
#top_column h2 {
  font-size: 1.2rem;
  margin: 0px 10px 20px;
}
#top_column .tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 20px;
}
#top_column .tab-wrap:after {
  content: "";
  width: 100%;
  height: 3px;
  background: #941010;
  display: block;
  order: -1;
}
#top_column .tab-label {
  color: White;
  background: #db8a8a;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px 0.5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
  font-size: 0.8rem;
  width: 50%;
}
#top_column .tab-label span {
  font-size: 0.8rem;
  display: block;
}
#top_column .tab-label:not(:last-of-type) {
  margin-right: 5px;
}
#top_column .tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  border-radius: 0 0 5px 5px;
}
#top_column .tab-switch:checked + .tab-label {
  background: #941010;
}
#top_column .tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  overflow: auto;
  padding: 5px;
  opacity: 1;
  transition: 0.5s opacity;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
#top_column .tab-switch {
  display: none;
}
#top_column ul {
  width: 94%;
  background-color: #fff;
  padding: 0 3%;
  border-radius: 5px;
}
#top_column ul li {
  margin: 0px 0;
  padding: 20px 3%;
  border-bottom: 1px solid #ccc;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-around;
}
#top_column ul li p {
  margin: 0;
}
#top_column ul li span {
  display: block;
  text-align: right;
  color: #aaa;
}
#top_column ul li .tag {
  margin: 5px 0;
}
#top_column ul li .tag a {
  display: inline-block;
  border-radius: 10px;
  padding: 2px 10px;
  font-size: 0.7rem;
}
#top_column ul li .tag .saimu {
  background-color: #e25a97;
  color: #fff;
}
#top_column ul li img {
  width: 40%;
}
#top_column ul li h3 {
  padding: 0;
  margin: 0;
  width: 53%;
  line-height: 1.5;
  font-size: 1rem;
}
#top_column ul li div {
  width: 100%;
}
#top_column ul li div p {
  border-top: 2px dashed #ccc;
  margin-top: 10px;
  padding-top: 10px;
}
#top_column ul li:last-of-type {
  border: 0px;
}

#top_news {
  margin: 15% 4% 15%;
  width: 90%;
}
#top_news h2 {
  font-size: 1.2rem;
}
#top_news dl {
  width: 100%;
  margin: 0 auto;
  font-size: 1rem;
}
#top_news dl dt {
  margin: 10px 0;
  border-left: 7px solid #1d5cb7;
  padding-left: 10px;
  font-weight: bold;
}
#top_news dl dd {
  margin: 10px 0 10px 20px;
}

#top_nagare {
  margin: 2% 5% 5%;
}
#top_nagare h3 {
  font-size: 1.4rem;
  margin: 10px 0;
}
#top_nagare .nagare_list {
  width: 100%;
  margin: 0 auto;
}
#top_nagare dl {
  width: 90%;
  margin: 0 auto;
}
#top_nagare dl dt {
  margin: 0 0;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  color: #333;
}
#top_nagare dl dt::before {
  content: "Q";
  font-weight: bold;
  color: #1d5cb7;
  font-size: 1rem;
  margin-right: 10px;
}
#top_nagare dl dd {
  margin: 0 0 20px 0;
  border-bottom: 1px dotted #ccc;
}
#top_nagare dl dd p {
  font-size: 0.9rem;
  padding: 0 0 15px;
  margin: 0;
}
#top_nagare dl dd p::before {
  content: "A";
  font-weight: bold;
  color: #1d5cb7;
  font-size: 1.1rem;
  margin-right: 10px;
}

#under_page {
  padding: 0px 3% 2%;
  width: 94%;
}
#under_page h2 {
  font-size: 1rem;
  padding: 10px 0;
}
#under_page h2 span {
  font-size: 1.4rem;
}
#under_page .count_display {
  font-size: 0.8rem;
  padding: 20px 0 10px 5px;
}
#under_page .count_display span {
  font-weight: bold;
  font-size: 1rem;
  color: #000;
}
#under_page section h2 {
  margin: 0;
  padding-left: 5px;
}
#under_page section h2 i {
  font-size: 1.2rem;
}
#under_page section p {
  font-size: 0.9rem;
}
#under_page dl {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0px 0px 2px #ccc;
}
#under_page dl dt, #under_page dl dd {
  font-size: 0.9rem;
  margin: 3px 0;
  border-bottom: 1px solid #efefef;
}
#under_page dl dt {
  width: 20%;
  color: #333;
  font-weight: bold;
  padding: 10px 2%;
}
#under_page dl dd {
  width: 76%;
  color: #666;
  display: flex;
  align-items: center;
}
#under_page dl dd span {
  width: 63%;
}
#under_page dl dd a {
  margin-right: 2%;
}
#under_page dl dd.area_child, #under_page dl dd.work_child {
  justify-content: space-between;
}
#under_page dl dd.sort_child {
  justify-content: space-between;
}
#under_page dl dd.sort_child, #under_page dl .sort {
  border: 0;
}
#under_page .nav-links .page-numbers {
  display: flex;
  justify-content: center;
}
#under_page .nav-links .page-numbers li {
  display: inline-block;
  border: 2px solid #aaa;
  font-size: 1rem;
  margin: 0 5px;
  background-color: #fff;
  text-align: center;
}
#under_page .nav-links .page-numbers li span, #under_page .nav-links .page-numbers li a {
  display: block;
  padding: 5px 10px;
}
#under_page .nav-links .page-numbers .current {
  background-color: #aaa;
  color: #fff;
}
#under_page .page ul {
  display: flex;
  margin: 10px 0 20px;
  justify-content: center;
}
#under_page .page ul li {
  width: 3%;
  display: inline-block;
  border: 2px solid #aaa;
  padding: 5px 10px;
  font-size: 1rem;
  margin: 0 5px;
  background-color: #fff;
  text-align: center;
}
#under_page .page ul .stay {
  background-color: #aaa;
  color: #fff;
}
#under_page .detail_h2 {
  font-size: 0.9rem;
  padding-bottom: 0;
}
#under_page .detail_h3 {
  font-size: 0.7rem;
  margin: 0;
  padding: 0;
}
#under_page .detail_img {
  padding: 2% 0;
  height: 200px;
  object-fit: cover;
}
#under_page #top_slider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 0;
}
#under_page #top_slider .slick02 li img {
  padding: 2% 0;
  object-fit: contain;
  object-position: top;
}
#under_page #top_slider .slick-dots li button:before {
  font-size: 25px;
  width: 40px;
  height: 40px;
  color: #000;
}
#under_page #top_slider .slick-dotted.slick-slider {
  margin: 0;
}
#under_page #top_slider .next-arrow {
  right: 3vw;
}
#under_page #top_slider .prev-arrow {
  left: 1.5vh;
}
#under_page #top_slider .prev-arrow, #under_page #top_slider .next-arrow {
  top: 45%;
  position: absolute;
  z-index: 1;
}
#under_page #top_slider .slide-arrow {
  width: 30px;
  height: 30px;
}
#under_page #top_slider .slick_thumbs {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
#under_page #top_slider .slick_thumbs li {
  flex: 0 1 30%;
  box-sizing: border-box;
  position: relative;
  margin-right: 5px;
  cursor: pointer;
}
#under_page #top_slider .slick_thumbs li:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}
#under_page #detail_top {
  display: flex;
  justify-content: space-between;
}
#under_page #detail_top .detail_titlelist {
  top: 0;
  position: relative;
}
#under_page #detail_top .detail_left {
  width: 49%;
  position: relative;
}
#under_page #detail_top .detail_left .slick_thumbs {
  position: absolute;
  bottom: 10px;
}
#under_page #detail_top .detail_right {
  width: 49%;
}
#under_page #detail {
  font-size: 1rem;
  width: 98%;
  padding: 0 1%;
  margin: 0;
  background-color: #fff;
  box-shadow: 0px 0px 2px #ccc;
  /* アクティブなタブ */
  /* ラジオボタン非表示 */
}
#under_page #detail h2 {
  font-size: 1.2rem;
  border: 0;
  margin: 0;
  padding: 10px 0;
  position: relative;
}
#under_page #detail h3 {
  text-align: center;
  padding: 0;
  margin: 20px 0 0;
}
#under_page #detail .tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 20px;
}
#under_page #detail .tab-wrap:after {
  content: "";
  width: 100%;
  height: 3px;
  background: #583d22;
  display: block;
  order: -1;
}
#under_page #detail .tab-label {
  color: White;
  background: #c2b4a7;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px 0.5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
#under_page #detail .tab-label span {
  font-size: 0.8rem;
  display: block;
}
#under_page #detail .tab-label:not(:last-of-type) {
  margin-right: 5px;
}
#under_page #detail .tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
}
#under_page #detail .tab-switch:checked + .tab-label {
  background: #583d22;
}
#under_page #detail .tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  overflow: auto;
  padding: 5px;
  opacity: 1;
  transition: 0.5s opacity;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  background-color: #f9f8ef;
}
#under_page #detail .tab-switch {
  display: none;
}
#under_page #detail table {
  font-size: 0.9rem;
}
#under_page #detail th {
  width: 25%;
  padding: 3% 1%;
}
#under_page #detail_info, #under_page #detail_mailto {
  background-color: #fff;
  box-shadow: 0px 0px 2px #ccc;
  margin: 8% 0;
  padding: 2% 2%;
}
#under_page #detail_info table, #under_page #detail_mailto table {
  font-size: 0.9rem;
}
#under_page #detail_info th, #under_page #detail_mailto th {
  width: 27%;
  padding: 3% 1%;
}

.close-areaModal, .close-workModal {
  text-align: center;
  font-size: 0.8rem;
  padding: 10px 0 0;
  width: 80px;
  margin-left: auto;
}
.close-areaModal i, .close-workModal i {
  display: block;
  font-size: 1.8rem;
  color: #666;
}

#profile_list {
  font-size: 1rem;
  margin: 0;
  padding: 0;
}
#profile_list li {
  margin: 0 auto 20px;
  border-radius: 5px;
  padding: 4%;
  box-shadow: 0px 0px 2px #ccc;
  background-color: #fff;
}
#profile_list .profile {
  font-size: 0.8rem;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
#profile_list .profile img {
  width: 33%;
  margin: 0 4% 0 0;
}
#profile_list .profile .profile_name {
  width: 62%;
}
#profile_list .profile .profile_detail {
  width: 100%;
  margin: 20px 0 0;
}
#profile_list .profile .tag {
  margin: 0 0 2%;
  display: block;
}
#profile_list .profile .tag span {
  display: inline-block;
  border-radius: 10px;
  padding: 2px 10px;
  font-size: 0.7rem;
}
#profile_list .profile .tag .bengoshi {
  background-color: #4960d3;
  color: #fff;
}
#profile_list .profile .tag .shihoushoshi {
  background-color: #ed8a16;
  color: #fff;
}
#profile_list .profile p {
  margin: 0;
  padding: 0 0 5px 0;
}
#profile_list .profile h4 {
  margin: 0 0 0 0;
  padding: 0 0 0 5px;
  border-left: 6px solid #583d22;
}
#profile_list .profile h3 {
  margin: 0;
}
#profile_list .profile_btn {
  display: flex;
  margin: 10px 0;
  flex-wrap: wrap;
  justify-content: space-around;
}
#profile_list .profile_btn a {
  display: block;
  width: 45%;
  font-weight: bold;
  padding: 10px 5px;
  border-radius: 10px;
  text-align: center;
  margin: 5px 0 0;
  font-size: 0.8rem;
}
#profile_list .profile_btn .tel {
  background-color: #0a4499;
  color: #fff;
  border: 2px solid #0a4499;
}
#profile_list .profile_btn .about, #profile_list .profile_btn .mail, #profile_list .profile_btn .price {
  background-color: #fff;
  border: 2px solid #0a4499;
  color: #555;
}

.profile_detail_btn {
  display: flex;
  margin: 0 0 20px;
  justify-content: space-around;
}
.profile_detail_btn a {
  display: block;
  width: 48%;
  font-weight: bold;
  padding: 10px 0;
  border-radius: 10px;
  text-align: center;
  margin: 5px 0 0;
  font-size: 0.8rem;
}
.profile_detail_btn .tel {
  background-color: #583d22;
  color: #fff;
  border: 2px solid #583d22;
}
.profile_detail_btn .about, .profile_detail_btn .mail, .profile_detail_btn .price {
  background-color: #fff;
  border: 2px solid #583d22;
  color: #555;
}

#profile_mail, #about {
  font-size: 0.9rem;
}
#profile_mail dt, #about dt {
  margin: 10px 0 3px;
  font-weight: bold;
}
#profile_mail dd, #about dd {
  margin: 0;
}
#profile_mail dd input[type=text], #about dd input[type=text] {
  width: 85%;
  padding: 10px;
}
#profile_mail dd textarea, #about dd textarea {
  width: 85%;
  height: 6.5em;
  line-height: 1.3;
}
#profile_mail button, #about button {
  background-color: #3470d1;
  border: 0;
  color: #fff;
  font-weight: bold;
  padding: 15px 40px;
  font-size: 1.2em;
  border-radius: 10px;
  display: block;
  margin: 30px auto 50px;
}

#privacy, #kiyaku, #sitemap, #about {
  margin: 0 auto;
}
#privacy section, #kiyaku section, #sitemap section, #about section {
  margin: 0 2% 1%;
}
#privacy p, #kiyaku p, #sitemap p, #about p {
  font-size: 0.8rem;
  margin: 0 0 10px;
}
#privacy p span, #kiyaku p span, #sitemap p span, #about p span {
  font-weight: bold;
  display: block;
}
#privacy h3, #kiyaku h3, #sitemap h3, #about h3 {
  font-size: 1.2rem;
  margin-top: 40px;
  margin-bottom: 0;
}
#privacy ul, #kiyaku ul, #sitemap ul, #about ul {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
  font-size: 0.8rem;
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
  font-size: 0.8rem;
}
#privacy ul li, #kiyaku ul li, #sitemap ul li, #about ul li {
  text-indent: -1.8em;
  padding-left: 1.8em;
  padding-top: 0.5em;
  padding-bottom: 0.9em;
}
#privacy ul li:before, #kiyaku ul li:before, #sitemap ul li:before, #about ul li:before {
  content: "▼";
  /* 以下は自由に装飾... */
  padding-right: 0.5em;
  font-weight: bold;
  color: #9096c5;
}
#privacy ul ul, #kiyaku ul ul, #sitemap ul ul, #about ul ul {
  padding-left: 1em;
  padding-top: 0;
}
#privacy ul ul li, #kiyaku ul ul li, #sitemap ul ul li, #about ul ul li {
  position: relative;
  padding-bottom: 0;
}
#privacy ul ul li:before, #kiyaku ul ul li:before, #sitemap ul ul li:before, #about ul ul li:before {
  content: "■";
  color: #9096c5;
  display: inline-block;
  font-size: 14px;
  line-height: 12px;
  position: absolute;
  left: 0;
  top: 14px;
}
#privacy ol, #kiyaku ol, #sitemap ol, #about ol {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
  font-size: 0.8rem;
  margin: 0;
}
#privacy ol li, #kiyaku ol li, #sitemap ol li, #about ol li {
  text-indent: -1.8em;
  padding-left: 2.8em;
  padding-top: 0.5em;
  padding-bottom: 0.9em;
}
#privacy ol li:before, #kiyaku ol li:before, #sitemap ol li:before, #about ol li:before {
  counter-increment: item;
  content: counter(item) ".";
  /* 以下は自由に装飾... */
  padding-right: 0.5em;
  font-weight: bold;
  color: #202653;
}
#privacy ol ol, #kiyaku ol ol, #sitemap ol ol, #about ol ol {
  padding-left: 1em;
  padding-top: 0.8em;
}
#privacy ol ol li, #kiyaku ol ol li, #sitemap ol ol li, #about ol ol li {
  position: relative;
  padding-bottom: 0.5em;
  counter-increment: num;
}
#privacy ol ol li:before, #kiyaku ol ol li:before, #sitemap ol ol li:before, #about ol ol li:before {
  content: "(" counter(num) ")";
  display: inline-block;
  font-size: 14px;
  line-height: 12px;
  position: absolute;
  left: 0;
  top: 14px;
}
#privacy ol ol ol, #kiyaku ol ol ol, #sitemap ol ol ol, #about ol ol ol {
  padding-left: 1em;
  padding-top: 0.8em;
}
#privacy ol ol ol li, #kiyaku ol ol ol li, #sitemap ol ol ol li, #about ol ol ol li {
  position: relative;
  padding-bottom: 0.5em;
  counter-increment: nums;
}
#privacy ol ol ol li:before, #kiyaku ol ol ol li:before, #sitemap ol ol ol li:before, #about ol ol ol li:before {
  content: "[" counter(nums, lower-alpha) "]";
  display: inline-block;
  font-size: 14px;
  line-height: 12px;
  position: absolute;
  left: 0;
  top: 14px;
}
#privacy table, #kiyaku table, #sitemap table, #about table {
  font-size: 0.7rem;
}
#privacy table th, #kiyaku table th, #sitemap table th, #about table th {
  background-color: #ddd;
}
#privacy table td, #kiyaku table td, #sitemap table td, #about table td {
  width: 50%;
}
#privacy table td, #privacy table th, #kiyaku table td, #kiyaku table th, #sitemap table td, #sitemap table th, #about table td, #about table th {
  border: solid 1px #999;
}

.after_btn {
  margin: 5% 0% 0%;
}

#about ul li:before {
  display: none;
}

#column {
  width: 100%;
  padding: 10px 0%;
  margin: 0 0 5%;
}
#column ul {
  width: 94%;
  background-color: #f9f8ef;
  padding: 0 3%;
  border-radius: 5px;
}
#column ul li {
  margin: 0px 0;
  padding: 20px 3%;
  border-bottom: 1px solid #ccc;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-around;
}
#column ul li p {
  margin: 0;
}
#column ul li span {
  display: block;
  text-align: right;
  color: #aaa;
}
#column ul li .tag {
  margin: 5px 0;
}
#column ul li .tag a {
  display: inline-block;
  border-radius: 10px;
  padding: 2px 10px;
  font-size: 0.7rem;
}
#column ul li .tag .saimu {
  background-color: #e25a97;
  color: #fff;
}
#column ul li img {
  width: 40%;
}
#column ul li h3 {
  padding: 0;
  margin: 0;
  width: 53%;
  line-height: 1.5;
  font-size: 1rem;
}
#column ul li div {
  width: 100%;
}
#column ul li div p {
  border-top: 2px dashed #ccc;
  margin-top: 10px;
  padding-top: 10px;
}
#column ul li:last-of-type {
  border: 0px;
}

#column_detail {
  background-color: #fffdf1;
  padding: 0 0 2%;
}
#column_detail h2 {
  font-size: 1.4rem;
}
#column_detail p {
  font-size: 1rem;
}
#column_detail h3 {
  border-left: 10px solid #5dba9d;
  padding: 0;
  padding-left: 10px;
}
#column_detail h4 {
  margin: 30px 0 0;
  font-size: 1.2rem;
}
#column_detail section {
  margin: 5% 2%;
  background-color: #f9f8ef;
  padding: 6% 3% 6% 5%;
  width: 88%;
}
#column_detail .column_page {
  border: 2px solid #333;
  padding: 20px;
  font-size: 0.9rem;
  background-color: #fff;
}
#column_detail .column_page .page_title {
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  padding-bottom: 10px;
}
#column_detail .column_page li ul {
  margin-left: 20px;
}

#corp table {
  font-size: 0.8rem;
  margin: 0 auto;
}
#corp th, #corp td {
  border: 1px solid #999;
}
#corp th {
  text-align: left;
  width: 33%;
  background-color: #efefef;
}

footer {
  margin: 0 auto;
  border-top: 1px solid #ccc;
  background-color: #eee;
  width: 100%;
  /*アコーディオン全体*/
  /*アコーディオンタイトル*/
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
  /*アコーディオンで現れるエリア*/
}
footer #footer_menu {
  display: flex;
  justify-content: space-around;
  align-self: flex-start;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}
footer #footer_menu h2 {
  font-size: 1.4rem;
  margin: 0 auto 5px;
  border-bottom: 2px dotted #ccc;
}
footer .accordion-area {
  list-style: none;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
footer .accordion-area li {
  margin: 0;
}
footer .accordion-area section {
  background-color: #eee;
  margin: 3% 5%;
  padding: 0;
}
footer .title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 0 0 0 30px;
  transition: all 0.5s ease;
  margin: 2% 0;
  color: #333;
}
footer .title::before,
footer .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
}
footer .title::before {
  top: 48%;
  left: 0px;
  transform: rotate(0deg);
}
footer .title::after {
  top: 48%;
  left: 0px;
  transform: rotate(90deg);
}
footer .title.close::before {
  transform: rotate(45deg);
}
footer .title.close::after {
  transform: rotate(-45deg);
}
footer .box {
  display: none; /*はじめは非表示*/
  margin: 0;
  padding: 0;
}
footer #footer_area {
  width: 100%;
  padding: 1% 0;
}
footer #footer_area dl {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
footer #footer_area dl dt, footer #footer_area dl dd {
  font-size: 0.9rem;
  margin: 3px 0;
}
footer #footer_area dl dt {
  width: 18%;
  color: #333;
  font-weight: bold;
}
footer #footer_area dl dd {
  width: 82%;
  color: #666;
}
footer #footer_work {
  width: 100%;
  padding: 1% 0;
}
footer #footer_work ul {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
}
footer #footer_work ul li {
  margin: 3px 5px;
  font-size: 0.9rem;
  color: #666;
  width: 100%;
}
footer #footer_under_menu {
  width: 100%;
  background-color: #0a4499;
  padding: 10px 0;
}
footer #footer_under_menu ul {
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}
footer #footer_under_menu ul li {
  text-align: center;
}
footer #footer_under_menu ul li a {
  color: #eee;
  display: block;
  padding: 2px 15px;
  font-size: 0.8rem;
}
footer .copy {
  font-size: 0.6rem;
  padding: 10px 0;
  margin: 0;
  text-align: center;
  background-color: #0a4499;
  color: #eee;
}

@media screen and (min-width: 1200px) {
  .smp {
    display: none;
  }
  .pc {
    display: block;
  }
  i.pink {
    color: #ff3c93;
  }
  i.blue {
    color: #0088e7;
  }
  header #header_inner {
    width: 970px;
  }
  header h1 img {
    width: 20%;
  }
  #main_img2 {
    height: 350px;
  }
  #main_img2 #main_img_inner {
    height: 350px;
  }
  #main_img2 #main_img_inner .main_img_text {
    width: 32%;
    top: 115px;
    left: 180px;
  }
  #main_img2 #main_img_inner .main_img_pc {
    display: block;
    width: 280px;
    position: absolute;
    top: 30px;
    right: 184px;
  }
  #main_img2 #main_img_inner ul {
    bottom: 47px;
    right: 185px;
  }
  #main_img2 #main_img_inner ul li {
    width: 65px;
    margin: 0 20px 0 0;
  }
  #nav-drawer {
    top: 2.4%;
    left: 77%;
  }
  #top {
    width: 960px;
  }
  section {
    margin: 2% 0% 5%;
  }
  section h2 {
    font-size: 1.3rem;
  }
  .breadcrumb {
    width: 920px;
    margin: 0 auto;
  }
  #privacy, #kiyaku, #sitemap, #about, #corp {
    width: 920px;
  }
  #privacy section, #kiyaku section, #sitemap section, #about section, #detail_mail section, #corp section {
    margin: 0 0 1%;
  }
  #privacy p, #kiyaku p, #sitemap p, #about p, #detail_mail p, #corp p {
    font-size: 1rem;
  }
  #privacy ol, #kiyaku ol, #sitemap ol, #about ol, #detail_mail ol, #corp ol {
    font-size: 1rem;
  }
  #privacy ul, #kiyaku ul, #sitemap ul, #about ul, #detail_mail ul, #corp ul {
    font-size: 1rem;
  }
  table {
    font-size: 1.2rem;
  }
  #privacy h2, #kiyaku h2, #sitemap h2, #column_detail h2, #under_page #column h2, #about h2, #detail_mail h2, #corp h2 {
    margin: 20px 0 20px 10px;
    padding: 0 0 0 20px;
    font-size: 1.8rem;
  }
  #profile_mail dd input[type=text], #about dd input[type=text] {
    width: 40%;
  }
  #top_search {
    margin: 2% 0 5%;
    width: 100%;
  }
  #top_search h2 {
    font-size: 1.3rem;
  }
  #top_search #top_search_inner #top_search_work ul {
    justify-content: space-between;
  }
  #top_search #top_search_inner #top_search_work ul .work-label {
    height: 5vh;
    font-size: 1rem;
  }
  #top_search #top_search_inner #top_search_work ul li {
    width: 45%;
  }
  #top_search #top_search_inner #top_search_area #top_search_area_inner .tab {
    padding: 0.4% 0 0;
    width: 19%;
  }
  #top_search #top_search_inner #top_search_area #top_search_area_inner .area-label {
    height: 5vh;
    font-size: 1rem;
  }
  #top_search #top_search_inner #top_search_ken ul {
    justify-content: flex-start;
  }
  #top_search #top_search_inner #top_search_ken ul .ken-label {
    height: 5vh;
    font-size: 1rem;
  }
  #top_search #top_search_inner #top_search_ken li {
    width: 10%;
    margin-left: 1%;
  }
  #top_flex {
    display: flex;
    justify-content: space-between;
  }
  #top_flex #top_left {
    width: 49%;
  }
  #top_flex #top_right {
    width: 49%;
  }
  #top_all_search {
    padding: 5% 5%;
    margin: 2% 0 5%;
    width: 90%;
  }
  #top_all_search h2 {
    font-size: 1.3rem;
    margin: 0px 10px 20px;
  }
  #top_all_search input[type=text] {
    width: 96%;
    padding: 15px 2%;
  }
  #top_news {
    margin: 10% 2%;
    width: 95%;
  }
  #top_news h2 {
    font-size: 1.3rem;
  }
  #top_news dl {
    font-size: 1rem;
  }
  #top_news dl dt br {
    display: none;
  }
  #top_news dl dt span {
    display: inline-block;
    margin-right: 15px;
  }
  #top_column {
    padding: 5% 5%;
    margin: 2% 0 5%;
    width: 90%;
  }
  #top_column h2 {
    font-size: 1.3rem;
  }
  #top_column ul li {
    justify-content: space-between;
  }
  #top_column ul li h3 {
    font-size: 1rem;
    order: 1;
    width: 100%;
    margin: 5px 0;
  }
  #top_column ul li img {
    order: 2;
    width: 42%;
  }
  #top_column ul li div {
    order: 3;
    width: 56%;
  }
  #top_column ul li div p {
    border-bottom: 2px dashed #ccc;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-top: 0px;
    margin-top: 0;
    padding-top: 0;
    font-size: 0.9rem;
  }
  #top_column .tab-label {
    font-size: 1rem;
  }
  #top_new_recruit li {
    width: 22%;
  }
  #top_nagare {
    width: 95%;
    margin: 10% 2%;
  }
  #top_nagare .nagare_list div {
    width: 31%;
    margin-left: 2%;
  }
  #top_nagare dl dt {
    font-size: 1.2rem;
  }
  #top_nagare dl dd p {
    font-size: 1rem;
  }
  #top_nagare dl dt::before {
    font-size: 1.4rem;
  }
  #privacy section, #kiyaku section, #sitemap section, #about section, #detail_mail section, #corp section {
    margin: 0 0 1%;
  }
  #privacy p, #kiyaku p, #sitemap p, #about p, #detail_mail p, #corp p {
    font-size: 1rem;
  }
  #privacy ol, #kiyaku ol, #sitemap ol, #about ol, #detail_mail ol, #corp ol {
    font-size: 1rem;
  }
  #privacy ul, #kiyaku ul, #sitemap ul, #about ul, #detail_mail ul, #corp ul {
    font-size: 1rem;
  }
  #privacy table, #kiyaku table {
    font-size: 1rem;
  }
  #under_page {
    width: 920px;
    margin: 0 auto;
  }
  #under_page h2 {
    font-size: 1.2rem;
  }
  #under_page h2 span {
    font-size: 1.6rem;
  }
  #under_page dl dt, #under_page dl dd {
    font-size: 1rem;
  }
  #under_page .count_display {
    font-size: 1rem;
  }
  #under_page .count_display span {
    font-size: 1.2rem;
  }
  #under_page .detail_h2 {
    font-size: 1.4rem;
  }
  #under_page .detail_h3 {
    font-size: 1rem;
  }
  #under_page #profile_list .profile .profile_name {
    order: 1;
    width: 100%;
    font-size: 1.4rem;
  }
  #under_page #profile_list .profile img {
    order: 2;
  }
  #under_page #profile_list .profile .profile_detail {
    order: 3;
    width: 62%;
    font-size: 1rem;
    margin: 0;
  }
  #under_page #profile_list .profile .tag {
    margin: 0;
  }
  #under_page #profile_list .profile .tag span {
    font-size: 0.9rem;
  }
  #under_page #profile_list .profile_btn {
    justify-content: space-between;
  }
  #under_page #profile_list .profile_btn a {
    width: 48%;
    font-size: 1rem;
  }
  #under_page .detail_img {
    height: 330px;
  }
  #under_page #detail h2 {
    font-size: 1.6rem;
  }
  #under_page #detail .tab-label {
    font-size: 1.2rem;
  }
  #under_page #detail_top .detail_titlelist {
    top: 20%;
  }
  #under_page .before_btn a {
    font-size: 0.9rem;
  }
  #under_page .profile_detail_btn a {
    font-size: 1rem;
  }
  #under_page #column ul li {
    justify-content: space-between;
  }
  #under_page #column h3 {
    font-size: 1.4rem;
    order: 1;
    width: 100%;
    margin: 20px 0;
  }
  #under_page #column img {
    order: 2;
    width: 42%;
  }
  #under_page #column div {
    order: 3;
    width: 56%;
  }
  #under_page #column div p {
    border-bottom: 2px dashed #ccc;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-top: 0px;
    margin-top: 0;
    padding-top: 0;
    font-size: 1rem;
  }
  #workModal .modal-content {
    padding: 0 20px;
    max-width: 950px;
    margin: 0 auto;
  }
  #areaModal #top_search_inner {
    margin: 2% auto 5%;
    width: 780px;
  }
  #column_detail {
    padding: 1% 0 2%;
  }
  #column_detail h2 {
    margin: 1% auto;
    padding: 0% 0% 0% 1%;
    width: 940px;
    font-size: 1.4rem;
  }
  #column_detail section {
    margin: 2% auto 5%;
    width: 880px;
    padding: 6% 60px;
  }
  #column_detail p {
    font-size: 1rem;
  }
  #column_detail .column_page {
    font-size: 1rem;
    margin: 70px 0;
  }
  footer .title {
    position: static;
    padding: 0;
    font-weight: bold;
    text-align: center;
  }
  footer .title::after, footer .title::before {
    display: none;
  }
  footer .box {
    display: block;
  }
  footer .accordion-area {
    display: flex;
    justify-content: center;
    max-width: 960px;
  }
  footer .accordion-area li {
    width: 45%;
  }
  footer .accordion-area section {
    width: 100%;
    margin: 3% 0;
  }
  footer #footer_work ul {
    width: 100%;
  }
  #corp table {
    width: 75%;
    font-size: 1rem;
  }
}