@charset "UTF-8";
/*-----------------------------------*/
/*事務所詳細ページテストアップが適用されているSCSS*/
/*-----------------------------------*/
@font-face {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-display: swap;
}
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: #fff;
  scroll-behavior: smooth;
  line-height: 1.9;
  letter-spacing: 1px;
  font-display: swap;
}

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

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

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

.smp {
  display: block;
}

.pc {
  display: none;
}

i {
  color: #0088e7;
}

i.new_blue {
  color: #0000bb;
}

.red {
  color: #f00;
}

#privacy h2, #kiyaku h2, #sitemap h2, #column_detail h2, #under_page #column h2, #about h2, #detail_mail h2, #customer_reg h2, #login_page h2, #mypage h2, #corp h2, #contact h2 {
  font-size: 1.4rem;
  border-left: 10px solid #d3983b;
  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;
}

#contact h3 {
  font-size: 1.2rem;
  color: #583d22;
}

#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: 32%;
}

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

header {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #d7c7a8;
}
header #header_inner {
  width: 100%;
  margin: 0 auto;
}
header h1 {
  padding: 10px 0 10px 10px;
}
header h1 img {
  width: 65%;
}
header nav {
  padding: 0;
}
header nav ul {
  width: 880px;
  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: #583d22;
  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.8%;
  left: 87%;
}

.breadcrumb_bg {
  background: #f1dfbc;
}

.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: #583d22;
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb li a {
  text-decoration: none;
  color: #583d22;
}
.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 {
  background-color: #fffdf1;
  padding: 2% 5%;
  margin: 2% 2% 5%;
  border-radius: 20px;
  width: 86%;
}
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: #8c7d70;
  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: 25vh;
  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 {
  text-shadow: 1px 1px 2px #583d22;
  font-size: 1.2rem;
}
#main_img .p_h2 h2 {
  font-size: 1.2rem;
  font: bold "Open Sans", sans-serif;
  margin-bottom: 15px;
}
#main_img .p_h2 p {
  font-size: 1.2rem;
  font: bold "Open Sans", sans-serif;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

#main_img2 {
  background-image: url("../images/main_girl.jpg");
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
  background-size: contain;
  height: 265px;
  margin: 0 auto;
  max-width: 1000px;
}
#main_img2 .main_img_text {
  width: 53%;
  position: absolute;
  top: 50px;
  left: 20px;
}
#main_img2 ul {
  display: flex;
  position: absolute;
  top: 130px;
  left: 25px;
}
#main_img2 ul li {
  width: 80px;
  margin: 0 20px 0 0;
}

#top_search {
  background-color: #fffdf1;
  padding: 2% 5%;
  margin: 2% 2% 5%;
}
#top_search h2 {
  border: 0;
  text-align: center;
  font-size: 1.2rem;
  margin: 10px 0;
  padding: 0;
}
#top_search #top_search_inner {
  padding: 0 0 20px;
}
#top_search #top_search_inner h3 {
  font-size: 1.2rem;
  border-bottom: 2px dotted #aaa;
  margin: 0 0 15px;
  padding: 0 0 5px;
  border-left: 0;
}
#top_search #top_search_inner #top_search_soudan {
  padding: 15px 4% 10px;
  border-radius: 20px 20px 0 0;
  /* アクティブなタブ */
  /* ラジオボタン非表示 */
}
#top_search #top_search_inner #top_search_soudan ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#top_search #top_search_inner #top_search_soudan ul li {
  width: 45%;
}
#top_search #top_search_inner #top_search_soudan ul .soudan-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_soudan .soudan_input:checked + .soudan-label {
  background: #f7d6b5;
  color: #583d22;
  box-shadow: 0px 0px 0px #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top_search #top_search_inner #top_search_soudan .soudan_input {
  display: none;
}
@media screen and (min-width: 1024px) {
  #top_search #top_search_inner .soudan-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: #f7d6b5;
  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: #f7d6b5;
  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: #583d22;
  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: #583d22;
  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_column {
  padding: 10% 5%;
  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: #583d22;
  display: block;
  order: -1;
}
#top_column .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;
  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: #583d22;
}
#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: #f9f8ef;
}
#top_column .tab-switch {
  display: none;
}
#top_column ul {
  width: 94%;
  background-color: #f9f8ef;
  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;
  margin: 0 0 0 5px;
  width: auto;
}
#top_column ul li .tag .saimu {
  background-color: #e25a97;
  color: #fff;
}
#top_column ul li a {
  width: 40%;
}
#top_column ul li a img {
  width: 100%;
  height: auto;
}
#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 {
  padding: 10% 5%;
  margin: 2% 2% 5%;
}
#top_news h2 {
  font-size: 1.2rem;
  margin: 0px 10px 20px;
}
#top_news dl {
  width: 100%;
  margin: 0 auto;
  font-size: 1rem;
}
#top_news dl dt {
  width: 100%;
  margin: 10px 0;
  border-left: 7px solid #480f27;
  padding-left: 10px;
  font-weight: bold;
}
#top_news dl dd {
  width: 100%;
  margin: 10px 0 10px 20px;
}

#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 div {
  position: relative;
  padding: 25px 0 0;
  margin: 15px 0 0;
}
#top_nagare dl dt {
  margin: 0 0;
  font-weight: bold;
  font-size: 1.2rem;
  background-color: #583d22;
  border-radius: 50%;
  display: inline-block;
  padding: 15px;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
#top_nagare dl dd {
  margin: 0;
}
#top_nagare dl dd img {
  width: 50%;
  display: block;
  margin: 0 auto;
}
#top_nagare dl dd p {
  font-size: 0.9rem;
  padding: 0 0 15px;
  margin: 0;
}

#top_faq .details {
  line-height: 2;
  border: 1px solid #ccc;
  font-size: 1rem;
  margin-bottom: 20px;
}
#top_faq .details__summary {
  position: relative;
  display: block;
  background-color: #f9f8ef;
  cursor: pointer;
  margin: 0;
  padding: 10px 40px 10px 16px;
}
#top_faq .details__summary::-webkit-details-marker {
  display: none;
}
#top_faq .details__summary::after {
  display: block;
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: calc(50% - 6px);
  right: 16px;
  width: 6px;
  height: 6px;
  border: 6px solid transparent;
  border-left: 6px solid #666;
  transition: all 0.4s ease-out;
  transform-origin: 3px 6px;
  transform: rotate(90deg);
}
#top_faq .details__summary::before {
  display: inline-block;
  content: "Q";
  color: #0088e7;
  font-weight: bold;
  padding-right: 10px;
}
#top_faq .details__content {
  overflow: hidden;
  margin: 0;
  padding-left: 16px;
  padding-right: 16px;
}
#top_faq .details__content > * {
  margin: 0;
  padding-top: 16px;
}
#top_faq .details__content > *:last-child {
  padding-bottom: 16px;
}
#top_faq .details__content p.answer::before {
  display: inline-block;
  content: "A";
  color: #f00;
  font-weight: bold;
  padding-right: 10px;
}
#top_faq .details[open] .details__summary::after {
  transform: rotate(-90deg);
}
#top_faq .nagare_list {
  width: 100%;
  margin: 0 auto;
}
#top_faq dl {
  width: 90%;
  margin: 0 auto;
}
#top_faq dl div {
  position: relative;
  padding: 25px 0 0;
  margin: 15px 0 0;
}
#top_faq dl dt {
  margin: 0 0;
  font-weight: bold;
  font-size: 1.2rem;
  background-color: #583d22;
  border-radius: 50%;
  display: inline-block;
  padding: 15px;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
#top_faq dl dd {
  margin: 0;
}
#top_faq dl dd img {
  width: 50%;
  display: block;
  margin: 0 auto;
}
#top_faq dl dd p {
  font-size: 0.9rem;
  padding: 0 0 15px;
  margin: 0;
}

#under_page {
  background-color: #fffdf1;
  padding: 0 2% 2%;
  width: 92%;
  margin: 2%;
}
#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 dl {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  background-color: #f9f8ef;
  border: 1px solid #583d22;
  width: 100%;
  border-radius: 5px;
}
#under_page dl dt, #under_page dl dd {
  font-size: 0.9rem;
  margin: 3px 0;
  border-bottom: 1px solid #583d22;
}
#under_page dl dt {
  width: 20%;
  color: #333;
  font-weight: bold;
  padding: 10px 2%;
}
#under_page dl dd {
  width: 76%;
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#under_page dl dd span {
  width: 63%;
}
#under_page dl dd a {
  margin-right: 2%;
}
#under_page dl .area_child, #under_page dl .area {
  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_img {
  padding: 2% 0;
  height: 200px;
  object-fit: cover;
}
#under_page #top_slider {
  max-width: 330px;
  margin: 0 auto;
  padding: 20px 0 0;
}
#under_page #top_slider .slick01 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 {
  font-size: 1rem;
  width: 98%;
  background-color: #fffdf1;
  padding: 0 1%;
  margin: 0;
  /* アクティブなタブ */
  /* ラジオボタン非表示 */
}
#under_page #detail h2 {
  font-size: 0.9rem;
  border: 0;
  margin: 0;
  padding: 30px 0 10px;
  position: relative;
}
#under_page #detail h3 {
  text-align: center;
  padding: 0;
  margin: 20px 0 0;
}
#under_page #detail #detail_top {
  display: flex;
  justify-content: space-between;
}
#under_page #detail #detail_top .detail_left {
  width: 49%;
  position: relative;
}
#under_page #detail #detail_top .detail_left .slick_thumbs {
  position: absolute;
  bottom: 10px;
}
#under_page #detail #detail_top .detail_right {
  width: 49%;
}
#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 .before_btn {
  margin: 0 0 10px;
  text-align: right;
}
#under_page .before_btn button {
  display: inline-block;
  font-weight: bold;
  padding: 5px 20px;
  font-size: 0.8em;
  border-radius: 5px;
  text-align: center;
  margin: 5px 0 0;
  background-color: #e47a92;
  color: #fff;
  border: 0;
}
#under_page .before_btn strong {
  color: #f00;
}
#under_page .sns_btn {
  text-align: center;
  margin: 20px auto;
}
#under_page .sns_btn .hp_btn {
  display: inline-block;
  font-weight: bold;
  padding: 10px 10px;
  font-size: 0.8em;
  border-radius: 5px;
  text-align: center;
  margin: 5px 0 0;
  background-color: #0072bd;
  color: #fff;
  border: 2px solid #0072bd;
  width: 48%;
}
#under_page .sns_btn .hp_btn i {
  color: #fff;
}
#under_page .sns_btn .line_btn {
  display: inline-block;
  font-weight: bold;
  padding: 10px 10px;
  font-size: 0.8em;
  border-radius: 5px;
  text-align: center;
  margin: 5px 0 0;
  background-color: #00c400;
  color: #fff;
  border: 2px solid #00c400;
  width: 48%;
}
#under_page .sns_btn .line_btn i {
  color: #fff;
}
#under_page .after_btn {
  margin: 0 0 10px;
}
#under_page .ryokin div {
  padding: 0 10px;
  margin: 15px 0;
}
#under_page .ryokin div h4 {
  text-align: center;
  padding: 5px 0;
  margin: 20px 0 0px;
  font-size: 1.2rem;
  border: 2px solid #583d22;
  border-radius: 5px;
}
#under_page .ryokin div p {
  padding: 10px 0;
  margin: 0;
}

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

/*
.modal-content{
	#top_search{
		padding:0;
		margin:2% 3% 5%;
	}
	section{
		width: 94%;
	}
	div{
			position: sticky;
	    bottom: 0;
	    left: 0;		
		button{
	    width: 100%;
	    margin: 20px auto;
	    display: inline;
		}
	}
}
*/
#profile_list {
  font-size: 1rem;
  width: 98%;
  padding: 0 1%;
  margin: 0;
}
#profile_list li {
  width: 92%;
  margin: 0 auto 20px;
  background-color: #f9f8ef;
  border-radius: 5px;
  padding: 4%;
  box-shadow: 0px 3px 1px #ccc;
  border: 1px solid #583d22;
}
#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: #583d22;
  color: #fff;
  border: 2px solid #583d22;
}
#profile_list .profile_btn .about, #profile_list .profile_btn .mail, #profile_list .profile_btn .price {
  background-color: #fff;
  border: 2px solid #583d22;
  color: #555;
}

.profile_detail_btn {
  display: flex;
  margin: 0px;
  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, #contact {
  font-size: 0.9rem;
}
#profile_mail dt, #about dt, #contact dt {
  margin: 10px 0 3px;
  font-weight: bold;
  font-size: 1.2rem;
  position: relative;
  padding-left: 60px;
}
#profile_mail dd, #about dd, #contact dd {
  margin: 0;
}
#profile_mail dd input[type=text], #about dd input[type=text], #contact dd input[type=text] {
  width: 85%;
  padding: 10px;
}
#profile_mail dd select, #about dd select, #contact dd select {
  padding: 10px;
}
#profile_mail dd textarea, #about dd textarea, #contact dd textarea {
  width: 85%;
  height: 6.5em;
  line-height: 1.3;
  padding: 10px;
  font-size: 1.2rem;
}
#profile_mail button, #about button, #contact button {
  background-color: #583d22;
  border: 0;
  color: #fff;
  font-weight: bold;
  padding: 15px 40px;
  font-size: 1.2em;
  border-radius: 10px;
  display: block;
  margin: 30px auto 50px;
}
#profile_mail a.contact_btn, #about a.contact_btn, #contact a.contact_btn {
  color: #fff;
  background-color: #583d22;
  padding: 10px 10px;
  display: block;
  margin: 20px auto;
  width: 200px;
  text-align: center;
  border-radius: 5px;
}
#profile_mail span.mandatory, #about span.mandatory, #contact span.mandatory {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  border-radius: 5px;
  color: #fff;
  background-color: #c00;
  padding: 0px 10px;
  margin-left: 5px;
  font-size: 0.7rem;
}
#profile_mail span.any, #about span.any, #contact span.any {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  border-radius: 5px;
  color: #fff;
  background-color: #05c;
  padding: 0px 10px;
  margin-left: 5px;
  font-size: 0.7rem;
}
#profile_mail strong, #about strong, #contact strong {
  display: block;
  font-size: 1.2rem;
  text-align: center;
}

#privacy, #kiyaku, #sitemap, #customer_reg {
  margin: 0 auto;
}
#privacy section, #kiyaku section, #sitemap section, #customer_reg section {
  margin: 0 2% 1%;
}
#privacy p, #kiyaku p, #sitemap p, #customer_reg p {
  font-size: 0.8rem;
  margin: 0 0 10px;
}
#privacy p span, #kiyaku p span, #sitemap p span, #customer_reg p span {
  font-weight: bold;
  display: block;
}
#privacy h3, #kiyaku h3, #sitemap h3, #customer_reg h3 {
  font-size: 1.2rem;
}
#privacy ul, #kiyaku ul, #sitemap ul, #customer_reg 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, #customer_reg 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, #customer_reg ul li:before {
  content: "▼";
  /* 以下は自由に装飾... */
  padding-right: 0.5em;
  font-weight: bold;
  color: #9096c5;
}
#privacy ul ul, #kiyaku ul ul, #sitemap ul ul, #customer_reg ul ul {
  padding-left: 1em;
  padding-top: 0;
}
#privacy ul ul li, #kiyaku ul ul li, #sitemap ul ul li, #customer_reg ul ul li {
  position: relative;
  padding-bottom: 0;
}
#privacy ul ul li:before, #kiyaku ul ul li:before, #sitemap ul ul li:before, #customer_reg 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, #customer_reg 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, #customer_reg 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, #customer_reg 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, #customer_reg ol ol {
  padding-left: 1em;
  padding-top: 0.8em;
}
#privacy ol ol li, #kiyaku ol ol li, #sitemap ol ol li, #customer_reg 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, #customer_reg 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, #customer_reg 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, #customer_reg 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, #customer_reg 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 .after_btn, #kiyaku .after_btn, #sitemap .after_btn, #customer_reg .after_btn {
  margin: 0% 2% 2%;
}
#privacy table, #kiyaku table, #sitemap table, #customer_reg table {
  font-size: 0.7rem;
}
#privacy table th, #kiyaku table th, #sitemap table th, #customer_reg table th {
  background-color: #ddd;
}
#privacy table td, #kiyaku table td, #sitemap table td, #customer_reg table td {
  width: 50%;
  background-color: #fffef8;
}
#privacy table td, #privacy table th, #kiyaku table td, #kiyaku table th, #sitemap table td, #sitemap table th, #customer_reg table td, #customer_reg table th {
  border: solid 1px #999;
}

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

#column {
  width: 100%;
  padding: 10px 0%;
  margin: 0 0 5%;
}
#column ul {
  width: 100%;
  background-color: #fffdf1;
  padding: 0 3%;
  border-radius: 20px;
}
#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 a {
  width: 40%;
}
#column ul li a img {
  width: 100%;
  height: auto;
}
#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: 1% 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: 96%;
}
#column_detail section h2 {
  margin: 10px 0 10px 0px;
}
#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;
}

#customer_reg, #login_page {
  width: 945px;
}
#customer_reg h3, #login_page h3 {
  font-size: 1.2rem;
  margin: 0;
  padding: 0;
}
#customer_reg input[type=text], #customer_reg input[type=password], #login_page input[type=text], #login_page input[type=password] {
  width: 96%;
  padding: 10px 2%;
}
#customer_reg .mail, #login_page .mail {
  text-align: center;
}
#customer_reg dl, #login_page dl {
  text-align: left;
}
#customer_reg button, #login_page button {
  background-color: #583d22;
  border: 0;
  color: #fff;
  font-weight: bold;
  font-size: 0.7em;
  border-radius: 10px;
  margin: 15px auto;
  text-align: center;
}
#customer_reg button span, #login_page button span {
  display: block;
  padding: 15px 40px;
}
#customer_reg dt, #login_page dt {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
}
#customer_reg dt strong, #login_page dt strong {
  color: #f00;
  font-size: 0.8rem;
}
#customer_reg dd, #login_page dd {
  margin: 0;
  margin-bottom: 15px;
  font-size: 1rem;
}

#login_page p {
  font-size: 0.9rem;
}
#login_page p a {
  text-decoration: underline;
}
#login_page strong {
  font-size: 0.9rem;
  text-align: center;
}
#login_page dl {
  margin-bottom: 0;
  font-size: 1rem;
}

#mypage h3 {
  font-size: 1.2rem;
  margin: 0;
}
#mypage p {
  padding-left: 20px;
  font-size: 1rem;
  margin: 0;
}
#mypage strong {
  font-size: 0.8rem;
  color: #f00;
  display: block;
  margin: 10px 0;
}
#mypage a.btn {
  background-color: #583d22;
  border: 0;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  font-size: 0.7em;
  border-radius: 10px;
  margin: 20px auto;
  text-align: center;
  display: block;
  width: 120px;
}
#mypage .list {
  display: flex;
}
#mypage .list div {
  width: 30%;
  font-size: 0.8rem;
  margin: 1%;
}
#mypage .list div a {
  display: block;
  width: 100%;
}
#mypage button {
  background-color: #583d22;
  border: 0;
  color: #fff;
  font-weight: bold;
  padding: 15px 20px;
  font-size: 0.7em;
  border-radius: 10px;
  margin: 20px auto;
  text-align: center;
  display: block;
  width: 200px;
}

#corp table {
  font-size: 0.8rem;
  margin: 15px auto;
}
#corp th, #corp td {
  border: 1px solid #583d22;
}
#corp th {
  text-align: left;
  width: 33%;
  background-color: #edeadb;
  color: #583d22;
}
#corp p {
  font-size: 1rem;
}

footer {
  margin: 0 auto;
  border-top: 1px solid #ccc;
  background-color: #d7c7a8;
  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: #d7c7a8;
  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: #583d22;
}
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_soudan {
  width: 100%;
  padding: 1% 0;
}
footer #footer_soudan ul {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
}
footer #footer_soudan ul li {
  margin: 3px 5px;
  font-size: 0.9rem;
  color: #666;
}
footer #footer_under_menu {
  width: 100%;
  background-color: #583d22;
  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: #583d22;
  color: #eee;
}

@media screen and (min-width: 650px) {
  #under_page .ryokin div {
    /*
    				h4 {
    					width:315px;
    				}
    */
  }
  #under_page .ryokin div p {
    padding: 10px 0 10px 7%;
  }
}
@media screen and (min-width: 1200px) {
  .smp {
    display: none;
  }
  .pc {
    display: block;
  }
  i.pink {
    color: #ff3c93;
  }
  i.blue {
    color: #0088e7;
  }
  header #header_inner {
    width: 1025px;
  }
  header h1 img {
    width: 24%;
  }
  #nav-drawer {
    top: 2.4%;
  }
  #top {
    width: 910px;
  }
  section {
    margin: 2% 0% 5%;
  }
  section h2 {
    font-size: 1.3rem;
  }
  #main_img .p_h2 p {
    font-size: 1.6rem;
  }
  #main_img .p_h2 p span {
    color: #ff3c93;
    text-shadow: 0px 0px 0px #fff;
    font-weight: bold;
  }
  #main_img .p_h2 h2 {
    font-size: 1.6rem;
  }
  #main_img .p_h2 .blue {
    color: #005caa;
  }
  #main_img .p_h2 .orange {
    color: #ff7a04;
  }
  #main_img .p_h2 .pink {
    color: #ff3c93;
  }
  #main_img .p_brown {
    text-shadow: 1px 1px 2px #583d22;
  }
  #main_img .p_normal {
    text-shadow: 0px 0px 0px #fff;
    font-weight: bold;
  }
  #main_img .p_blue {
    text-shadow: 0px 0px 4px #0000BB;
    font-weight: bold;
  }
  #main_img2 {
    height: 400px;
  }
  #main_img2 .main_img_text {
    width: 32%;
    top: 75px;
    left: 170px;
  }
  #main_img2 ul {
    top: 200px;
    left: 135px;
  }
  #main_img2 ul li {
    width: 120px;
  }
  .breadcrumb {
    width: 880px;
    margin: 0 auto;
  }
  #privacy, #kiyaku, #sitemap, #about, #corp, #detail_mail, #contact {
    width: 950px;
  }
  #privacy section, #kiyaku section, #sitemap section, #about section, #detail_mail section, #corp section, #contact section {
    margin: 0 0 1%;
  }
  #privacy p, #kiyaku p, #sitemap p, #about p, #detail_mail p, #corp p, #contact p {
    font-size: 1rem;
  }
  #privacy ol, #kiyaku ol, #sitemap ol, #about ol, #detail_mail ol, #corp ol, #contact ol {
    font-size: 1rem;
  }
  #privacy ul, #kiyaku ul, #sitemap ul, #about ul, #detail_mail ul, #corp ul, #contact ul {
    font-size: 1rem;
  }
  table {
    font-size: 1.2rem;
  }
  #privacy table, #kiyaku table {
    font-size: 1rem;
  }
  #privacy h2, #kiyaku h2, #sitemap h2, #column_detail h2, #under_page #column h2, #about h2, #detail_mail h2, #corp h2, #contact 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], #contact dd input[type=text] {
    width: 40%;
  }
  #top_search {
    margin: 2% 0 5%;
    width: 90%;
  }
  #top_search h2 {
    font-size: 1.3rem;
  }
  #top_search #top_search_inner #top_search_soudan ul {
    justify-content: space-between;
  }
  #top_search #top_search_inner #top_search_soudan ul .soudan-label {
    height: 5vh;
    font-size: 1rem;
    letter-spacing: -0.05em;
  }
  #top_search #top_search_inner #top_search_soudan ul li {
    width: 32.6%;
  }
  #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 {
    padding: 5% 5%;
    margin: 2% 0 5%;
    width: 90%;
  }
  #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 a {
    order: 2;
    width: 42%;
  }
  #top_column ul li a img {
    width: 100%;
  }
  #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_nagare {
    width: 90%;
  }
  #top_nagare .nagare_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #top_nagare .nagare_list div {
    width: 31%;
    margin-left: 2%;
  }
  #top_nagare dl dd p {
    font-size: 1rem;
  }
  #top_faq {
    width: 90%;
  }
  #top_faq .details .nagare_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #top_faq .details .nagare_list div {
    width: 31%;
    margin-left: 2%;
  }
  #top_faq .details dl dd p {
    font-size: 1rem;
  }
  #under_page {
    width: 905px;
    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 #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 #top_slider {
    max-width: 1200px;
  }
  #under_page #top_slider .slick_thumbs li {
    margin-right: 14px;
  }
  #under_page #detail h2 {
    font-size: 1.6rem;
    top: 25%;
  }
  #under_page #detail .tab-label {
    font-size: 1.2rem;
  }
  #under_page .before_btn a {
    font-size: 0.9rem;
  }
  #under_page .sns_btn .hp_btn, #under_page .sns_btn .line_btn {
    font-size: 1rem;
  }
  #under_page .profile_detail_btn a {
    font-size: 1rem;
  }
  #under_page #top_slider .next-arrow {
    right: 0.7vw;
  }
  #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 a {
    order: 2;
    width: 42%;
  }
  #under_page #column a img {
    height: auto;
    width: 100%;
  }
  #under_page #column .tag a {
    width: auto;
  }
  #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;
  }
  .modal-content {
    padding: 0 20px;
  }
  .modal-content #top_search {
    margin: 2% auto 5%;
    width: 790px;
  }
  #column_detail {
    padding: 1% 0 2%;
  }
  #column_detail h2 {
    margin: 1% auto;
    padding: 0% 0% 0% 1%;
    width: 830px;
    font-size: 1.4rem;
  }
  #column_detail section {
    margin: 2% auto 5%;
    width: 790px;
    padding: 2% 60px;
  }
  #column_detail section h2 {
    width: auto;
  }
  #column_detail p {
    font-size: 1rem;
    margin: 30px 0;
  }
  #column_detail .column_page {
    font-size: 1rem;
    margin: 70px 0;
  }
  #column_detail #toc_container {
    width: 95%;
    padding: 20px;
  }
  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: 880px;
  }
  footer .accordion-area li {
    width: 45%;
  }
  footer .accordion-area section {
    width: 100%;
    margin: 3% 0;
  }
  footer #footer_soudan ul {
    width: 100%;
  }
  #corp table {
    width: 75%;
    font-size: 1rem;
  }
  #corp p {
    font-size: 1rem;
  }
}