:root {
  --main-color: #1C2952;
  --hover-color: #6071A5;
}

/*====================================
	base
====================================*/
/* page_header */
#page_header {
  width: 100%;
  height: 440px;
  position: relative;
  overflow: hidden;
  background: rgb(0, 0, 0);
}
  #page_header_inner {
    z-index: 3;
    width: 880px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
    #page_header .common_headline.animate {
      animation: 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s 1 normal forwards running slideUp;
    }
    @keyframes slideUp {
      0% { bottom:-30px; }
      100% { opacity:1; bottom:0; }
    }
    #page_header .common_headline {
      opacity: 0;
      position: relative;
      color: rgb(255, 255, 255);
      font-weight: 500;
      line-height: 1.5;
      text-align: center;
    }
  #page_header .overlay {
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    z-index: 2;
    position: absolute;
    top: 0px;
    left: 0px;
  }
  #page_header .bg_image {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 0px;
    left: 0px;
  }

/* bread_crumb */
#bread_crumb {
  position: unset;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}
#bread_crumb span span {
  display: inline-block;
  font-size: 12px;
/*   white-space: nowrap; */
  text-overflow: ellipsis;
  margin-right: 10px;
  margin-left: 10px;
  color: #999;
}
#bread_crumb span span:first-child {
  margin-left: 0;
}
  #bread_crumb span span a {
    color: #000;
  }

/* archive_cont */
.archive_cont {
  padding-top: 50px;
  padding-bottom: 150px;
}
  .archive_cont .cat_area {
    width: 100%;
    margin-bottom: 70px;
  }
    .archive_cont .cat_area ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
      .archive_cont .cat_area ul li {
        width: 25%;
      }

        .archive_cont .cat_area ul li a {
          color: #000;
          display: block;
          height: 60px;
          line-height: 60px;
          text-align: center;
          box-sizing: border-box;
          padding: 0 10px;
          overflow: hidden;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 1;
          border-top: 1px solid #ddd;
          border-bottom: 1px solid #ddd;
          border-right: 1px solid #ddd;
        }
        .archive_cont .cat_area ul li:first-child a {
          border-left: 1px solid #ddd;
        }
        .archive_cont .cat_area ul li a.active {
          background: var(--main-color);
          color: #fff;
          z-index: 2;
          position: relative;
          pointer-events: none;
          border-top: 1px solid var(--main-color);
          border-bottom: 1px solid var(--main-color);
          border-right: 1px solid var(--main-color);
        }
        .archive_cont .cat_area ul li:first-child a.active {
          border-left: 1px solid var(--main-color);
        }
        .archive_cont .cat_area ul li a:hover {
          background: #f2f2f2;
        }

/* archive_list */
.archive_list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  gap: 10px;
}
  .archive_list .item {
    position: relative;
    width: calc((100% - 20px) / 3);
    background: #fff;
    box-sizing: border-box;
    margin-bottom: 10px;
  }
    .archive_list .item .image_link {
      display: block;
      width: 100%;
      height: 234px;
    }
      .archive_list .item .image_link .image_wrap {
        display: block;
        margin: 0 0 15px 0;
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 1;
        overflow: hidden;
      }
        .archive_list .item .image_link .image_wrap .image {
          width: 100%;
          height: 100%;
          display: block;
          overflow: hidden;
          position: relative;
          z-index: 2;
        }
    .archive_list .title {
        font-size: 18px;
        color: #46463c;
        padding: 13px 20px 11px;
        display: block;
        min-height: 58px;
    }
      .archive_list .title h3 {
        font-weight: 600;
        line-height: 1.6;
        max-height: 3.2em;
        overflow: hidden;
        visibility: visible;
        word-wrap: break-word;
        word-break: break-all;
        box-sizing: border-box;
      }
      .archive_list .title span {
        display: -webkit-inline-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
      }
    .archive_list .meta {
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      padding: 18px 20px;
    }
      .archive_list .meta li {
        display: inline;
        font-size: 14px;
        line-height: 1.4;
      }
      .archive_list .meta li.date {
        font-family: Arial;
        color: #999;
        margin-right: 20px;
      }
        .archive_list .meta li a {
          color: #46463c;
        }

/* page_navi */
.page_navi {
  margin-top: 70px;
  z-index: 10;
  position: relative;
}
  .page_navi ul {
    margin: 0;
    font-size: 0;
    text-align: center;
  }
    .page_navi li {
      display: inline-block;
    }
    .page_navi li span {
      color: #fff;
      background: var(--main-color);
      border: 1px solid #ddd;
      font-size: 14px;
      width: 50px;
      height: 50px;
      line-height: 50px;
      display: inline-block;
      text-align: center;
      box-sizing: border-box;
    }
    .page_navi li span.dots {
      background: #fff;
      color: #000;
    }
    .page_navi li a {
      color: #000;
      background: #fff;
      border: 1px solid #ddd;
      font-size: 14px;
      width: 50px;
      height: 50px;
      line-height: 50px;
      display: inline-block;
      text-align: center;
      box-sizing: border-box;
    }
    .page_navi li a:hover {
      background: var(--hover-color);
      color: #fff;
    }

/* main_contents */
#main_contents {
  padding: 80px 0 150px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#main_contents:after {
  position: absolute;
  left: 810px;
  content: '';
  width: 50vw;
  height: calc(100% - 80px);
  background: #eee;
  z-index: 1;
}
  #main_contents #main_col {
      width: 770px;
      z-index: 2;
      position: relative;
  }
    #main_contents #main_col #post_title {
      margin-bottom: 40px;
    }
      #main_contents #main_col #post_title .title {
        font-size: 28px;
      }
      #main_contents #main_col #post_title .meta_top {
        margin: 12px 0 0 0;
      }
        #main_contents #main_col #post_title .meta_top li {
          display: inline;
          font-size: 14px;
          line-height: 1.4;
          margin: 0 15px 0 0;
        }
        #main_contents #main_col #post_title .meta_top li.date {
          position: relative;
          color: #999;
        }
  #main_contents #side_col {
    width: 300px;
    z-index: 2;
    position: relative;
    padding-top: 120px;
  }
    #main_contents #side_col .widget_content {
        margin-bottom: 40px;
    }
    #main_contents #side_col .widget_content .widget-title {
      color: #fff;
      background: var(--main-color);
      height: 60px;
      line-height: 60px;
      font-weight: 600;
      font-size: 16px;
      padding: 0 20px;
      margin: 0;
    }
    #main_contents #side_col .widget_content.widget_text {
      position: relative;
    }
      #main_contents #side_col .widget_content.widget_text .item {
        width: 100%;
        height: 265px;
        position: relative;
      }
        #main_contents #side_col .widget_content.widget_text .item .link {
          display: block;
          width: 100%;
          height: 100%;
          position: relative;
          overflow: hidden;
          background: #fff;
        }
        #main_contents #side_col .widget_content.widget_text .image_wrap {
          display: block;
          width: 100%;
          height: 188px;
          position: relative;
          z-index: 1;
          overflow: hidden;
        }
          #main_contents #side_col .widget_content.widget_text .image_wrap .image {
            width: 100%;
            height: 100%;
            display: block;
            overflow: hidden;
            position: relative;
            z-index: 2;
          }
        #main_contents #side_col .widget_content.widget_text .title_area {
          padding: 0px 20px;
          height: 76px;
          z-index: 3;
          border: 1px solid #ddd;
          border-top: none;
        }
          #main_contents #side_col .widget_content.widget_text .title {
            position: relative;
            top: 17px;
            line-height: 1.5;
            font-size: 14px;
            overflow: hidden;
            max-height: 3em;
            font-weight: 600;
            word-wrap: break-word;
            word-break: break-all;
            transition: color 0.2s ease;
         }
          #main_contents #side_col .widget_content.widget_text .title span {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
          }
    #main_contents #side_col .widget_content.widget_staffblog_recent_posts_widget li,
    #main_contents #side_col .widget_content.widget_staffblog_categories_widget li,
    #main_contents #side_col .widget_content.widget_categories li {
      font-size: 14px;
      margin: 0;
      padding: 0;
      position: relative;
      line-height: 2;
    }
      #main_contents #side_col .widget_content.widget_staffblog_recent_posts_widget li a,
      #main_contents #side_col .widget_content.widget_staffblog_categories_widget li a,
      #main_contents #side_col .widget_content.widget_categories li a {
        display: block;
        background: #fff;
        border: 1px solid #ddd;
        border-top: none;
        padding: 0 20px;
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 60px;
        line-height: 60px;
        box-sizing: border-box;
        transition: all 0.35s ease;
      }
      #main_contents #side_col .widget_content.widget_staffblog_recent_posts_widget li a {
        height: auto;
        line-height: normal;
        padding: 10px 20px;
      }
      #main_contents #side_col .widget_content.widget_staffblog_recent_posts_widget li span {
        display: block;
      }
      #main_contents #side_col .widget_content.widget_staffblog_recent_posts_widget .staffblog-recent .wdate {
        position: relative;
        padding-left: 20px;
        color: #666;
        display: inline-block;
      }
      #main_contents #side_col .widget_content.widget_staffblog_recent_posts_widget .staffblog-recent .wdate::before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f017";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
      }

/* page_contents_inner */
#page_contents_inner {
  max-width: 880px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* post_content */
  .post_content {
    word-wrap: break-word;
  }
    .post_content img {
      height: auto;
      max-width: 100%;
      display: block;
    }
    .post_content img.aligncenter {
      margin: 0 auto;
    }
    .post_content .thumb {
      position: relative;
      margin-bottom: 40px;
    }
    .post_content .thumb img {
      width: 100%;
      object-fit: cover;
      aspect-ratio: 16/9;
    }
    .post_content hr {
      margin-bottom: 40px;
    }
    .post_content .btn {
      margin: 0 auto 30px;
    }
    .post_content h1, .post_content h2, .post_content h3, .post_content h4, .post_content h5, .post_content h6 {
        line-height: 1.4;
        margin: 0 0 15px 0;
        padding: 0;
        font-weight: 600;
    }
    .post_content h2 {
      font-size: 24px;
      /* color: #ba9e00; */
    }
    .post_content h3 {
      font-size: 22px;
    }
    .post_content h4 {
      font-size: 20px;
    }
    .post_content p {
      line-height: 1.8;
      margin-bottom: 30px;
    }
    .post_content a:hover {
      color: #b4a858;
    }
    .post_content ul {
      margin-bottom: 24px;
    }
      .post_content ul>li {
        position: relative;
      }
      .post_content ul li {
          position: relative;
          line-height: 2.2;
          padding-left: 1.5em;
      }
      .post_content ul li::before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f00c";
        position: absolute;
        left: 0;
        top: 0.2em;
        color: #000;
      }
    .post_content table {
      table-layout: fixed;
      margin-bottom: 20px;
      border-spacing: 0;
      width: 100%;
      max-width: 100%;
      border-collapse: collapse;
    }
      .post_content td, .post_content th {
        border: 1px solid #ddd;
        padding: 16px;
        line-height: 2.2;
        background: #fff;
        box-sizing: border-box;
        border-style: solid;
        text-align: left;
        vertical-align: top;
        overflow-wrap: anywhere;
        word-break: normal;
      }
    .mark {
      background-color: transparent;
      font-style: normal;
      background-image: linear-gradient(transparent 60%, rgba(247, 252, 0, 0.5) 60%);
    }


/* recent */
#recent {
  margin-top: 70px;
}
  #recent .headline {
    font-size: 22px;
    text-align: center;
    margin-bottom: 35px;
  }
    #recent .post_list .item a {
      height: 70px;
      border: 1px solid #ddd;
      margin: 0 0 -1px 0;
      position: relative;
      padding: 0 30px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }
      #recent .post_list .date {
        width: 93px;
        font-size: 14px;
        color: #999;
        font-family: Arial;
      }
      #recent .post_list .title {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.6;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        visibility: visible;
        word-wrap: break-word;
        word-break: break-all;
        flex: 1 1 0%;
        transition: color 0.2s ease;
    }

/* toc_container */
#toc_container {
  background: #f9f9f9;
  border: 1px solid #aaa;
  padding: 10px;
  margin-bottom: 40px;
}
  #toc_container p.toc_title {
    text-align: center;
    font-weight: 700;
    margin: 0;
    padding: 0;
  }
  #toc_container ul li::before {
    content: none;
  }

/* faq */
.faq-category-inner {
  padding: 10px 0;
}
  .faq-title {
    background: #f9f9f9;
    padding: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: .3s;
  }
  .faq-title:hover {
    color: var(--hover-color);
  }
      .faq-title .icon {
        margin-right: 10px;
        font-size: 16px;
      }
  .faq-post {
    display: none;
    text-align: left;
    padding: 10px 25px 10px 55px;
  }
  .faq-post.open {
    /* display: block; */
  }


/* form_area */
#form_area {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  margin-top: 100px;
  margin-bottom: 100px;
}
  #form_area h3 {
    font-size: 36px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 30px;
  }
    #form_area h3 span {
      display: block;
      font-size: 16px;
      font-weight: 400;
    }

  #form_area h4 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
  }

  #form_area .txt {
    font-size: 13px;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  #form_area .caution {
    border: 1px solid #696d54;
    padding: 15px;
    position: relative;
    background: #f8f8f8;
    margin-bottom: 40px;
  }
    #form_area .caution p {
      color: #515151;
      font-size: 13px;
      margin-bottom: 0;
    }

  #form_area .booking_area {
    border: 1px solid #eee;
    padding: 25px;
  }
    #form_area .booking_area .note {
      font-size: 12px;
      line-height: 1.8;
      margin-bottom: 30px;
    }
      #form_area .booking_area .note .red {
        color: #ff0000;
      }
      #form_area .booking_area .note .yasumi {
        color: #FFD5D5;
      }
    #form_area .booking_area .sub_area {
      text-align: center;
      padding: 25px;
      background-color: #F5F9FF;
    }
      #form_area .booking_area .sub_area p {
        font-size: 14px;
        line-height: 2;
        font-weight: 700;
      }
      #form_area .booking_area .sub_area .btn {
        margin-top: 0;
      }

/* wpcf */
.wpcf7 {
  width: 100%;
  margin-bottom: 35px;
  padding: 0;
  border: 1px solid #ddd;
  background: #fafafa;
  font-size: 14px;
}
  .wpcf7 .font12 {
    font-size: 12px;
    line-height: 1.6;
    display: inline-block;
  }
  .wpcf7 .red {
    color: #db7400;
    font-weight: 700;
  }
  .wpcf7 th {
    font-weight: bold;
    width: 30%;
    border-width: 0;
    background: transparent;
    padding: 16px;
    line-height: 2.2;
    box-sizing: border-box;
    border-style: solid;
    text-align: left;
    vertical-align: top;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .wpcf7 td {
    border-width: 0;
    background: transparent;
    padding: 16px;
    line-height: 2.2;
    box-sizing: border-box;
    border-style: solid;
    text-align: left;
    vertical-align: top;
    overflow-wrap: anywhere;
    word-break: normal;
  }
    .wpcf7 p {
      font-size: 14px;
      margin-bottom: 15px;
    }
    .wpcf7 p:last-child {
      margin-bottom: 0;
    }
    .wpcf7 p.privacy-style {
      font-size: 14px;
      font-weight: normal;
      color: #46463c;
    }
    .wpcf7 p.submit-style {
      font-size: 14px;
      font-weight: normal;
      text-align: center;
      color: #46463c;
    }
    .wpcf7 .wpcf7-list-item {
        display: block;
    }
    .wpcf7 .wpcf7-radio .wpcf7-list-item {
      margin-left: 0;
    }
    .wpcf7 .hissu {
      color: #fff;
      background: #c8a628;
      display: inline-block;
      padding: 3px 5px;
      margin-left: 5px;
      line-height: 1.3;
      border-radius: 3px;
    }
    .wpcf7 .nini {
      color: #fff;
      font-size: 12px;
      background: #ddd;
      display: inline-block;
      padding: 3px 5px;
      margin-left: 5px;
      line-height: 1.3;
      border-radius: 3px;
    }
    .wpcf7 select, .wpcf7 .wpcf7-list-item-label {
      font-size: 14px;
      line-height: 1.2;
    }
    .wpcf7 select, .wpcf7 input[type=checkbox], .wpcf7 input[type=radio] {
      width: auto;
      max-width: 97%;
      padding: 8px;
      border: 1px solid #ccc;
      font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    }
    .wpcf7 input[type=radio] {
      margin-top: 0;
    }
    .wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"] {
      height: 56px;
    }
    .wpcf7 select {
      height: 56px;
      border-radius: 4px;
      appearance: none;
    }
    .wpcf7 input, .wpcf7 textarea {
      box-sizing: border-box;
      width: 100%;
      padding: 8px;
      border: 1px solid #ccc;
      line-height: 1.2;
      font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    }
    .wpcf7 textarea {
      resize: none;
    }
    .wpcf7 .wpcf7-submit, .wpcf7 .wpcf7-previous {
      box-sizing: border-box;
      display: block;
      position: relative;
      width: 225px;
      height: 48px;
      margin: 30px auto 0;
      border: none !important;
      outline: none;
      background-color: #333333;
      color: #fff;
      line-height: 1.5;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      transition: all .3s;
      font-size: 18px;
      font-weight: 700;
      width: 100%;
      height: 80px;
  }

/* booking */
#form_area #booking-package_inputFormPanel .required:after,
#form_area #addCustomFormFieldPanel .required:after {
    top: 0px;
    content: '必須';
    font-size: 12px;
    color: #c8a628;
}
#form_area #booking-package_inputFormPanel .description {
    font-size: 12px;
}

/* next_prev_post */
#next_prev_post {
  margin-top: 40px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
  #next_prev_post .item {
    height: 122px;
    width: 50%;
    position: relative;
    border: 1px solid #ddd;
    box-sizing: border-box;
  }
    #next_prev_post a {
      display: block;
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background: none;
    }
      #next_prev_post .title_area {
        display: block;
        width: 100%;
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
      }
      #next_prev_post .title {
        position: relative;
        padding: 0 40px 0 70px;
        font-weight: 600;
        font-size: 16px;
        line-height: 1.6;
        max-height: 3.2em;
        overflow: hidden;
        visibility: visible;
        box-sizing: border-box;
        word-wrap: break-word;
        word-break: break-all;
        transition: color 0.2s ease;
      }
      #next_prev_post .next_post .title {
        padding: 0 70px 0 40px;
      }
      #next_prev_post .title:after {
        z-index: 10;
        position: absolute;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
        font-family: 'design_plus';
        color: #000;
        font-size: 14px;
        font-weight: 500;
        display: block;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        transition: all 0.2s ease;
      }
      #next_prev_post .prev_post .title:after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f104";
      }
      #next_prev_post .next_post .title:after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f105"; 
        left: auto;
        right: 30px;
      }
        #next_prev_post .title span {
          display: -webkit-inline-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 2;
        }

/* bnr_area */
  .bnr_area {
    display: flex;
    justify-content: space-between;
  }
    .bnr_area .item {
      width: calc((100% - 30px) / 2);
      display: block;
    }
      .bnr_area .item img {
        width: 100%;
        object-fit: cover;
      }


/*====================================
	page_event
====================================*/
.page_event #page_header .bg_image {
  background:url(../img/event-title.png) no-repeat center top;
  background-size: cover;
}


/*====================================
	page_event single
====================================*/
.page_event #gaiyou_area {
  margin-bottom: 100px;
}
  .page_event #gaiyou_area .gaiyou_cont, 
  .page_event #gaiyou_area table {
    margin-bottom: 80px;
  }
    .page_event #gaiyou_area tr:first-child td {
      border-top: 1px solid #000;
    }
    .page_event #gaiyou_area td {
      border-width: 1px 0 0;
      color: #58592a;
    }
    .page_event #gaiyou_area td + td {
      width: 75%;
    }
    .page_event #gaiyou_area td .bikou {
      font-size: 14px;
    }
    .page_event #gaiyou_area td .gmap {
      height: 0;
      overflow: hidden;
      padding-bottom: 42%;
      position: relative;
    }
      .page_event #gaiyou_area td .gmap iframe {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
      }
.page_event #gaiyou_area .btn {
  margin-top: 0;
  padding-bottom: 100px;
}

/* .page_event #form_area {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  margin-top: 100px;
  margin-bottom: 100px;
}
  .page_event #form_area h3 {
    font-size: 36px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 30px;
  }
    .page_event #form_area h3 span {
      display: block;
      font-size: 16px;
      font-weight: 400;
    }

  .page_event #form_area h4 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
  }

  .page_event #form_area .txt {
    font-size: 13px;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .page_event #form_area .caution {
    border: 1px solid #696d54;
    padding: 15px;
    position: relative;
    background: #f8f8f8;
    margin-bottom: 40px;
  }
    .page_event #form_area .caution p {
      color: #515151;
      font-size: 13px;
      margin-bottom: 0;
    } */

  .page_event #form_area .status_table {
    margin-bottom: 100px;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .page_event #form_area .status_table .table_wrap {
    width: 770px;
  }
    .page_event #form_area .status_table table {
      background: #f9f9f9;
      margin-bottom: 0;  
      /* width: auto; */
      min-width: 770px;
      table-layout: auto;
    }
      .page_event #form_area .status_table table td {
        border-width: 5px;
        border-color: #fff;
        text-align: center;
        background: #f9f9f9;
        min-width: 90px;  
      }
      .page_event #form_area .status_table table td.time {
        text-align: left;
      }

/*====================================
	page_works
====================================*/
.page_works #page_header .bg_image {
  background:url(../img/works-title.png) no-repeat center top;
  background-size: cover;
}
  .page_works .archive_list .title {
    color: #fff;
    background: var(--main-color);
    font-size: 16px;
  }
  .page_works .archive_list .meta {
    display: none;
  }

  
/*====================================
	page_works single
====================================*/
.page_works #main_contents {
  max-width: 900px;
}
.page_works #main_contents:after {
  content: none;
}
.page_works #main_contents #main_col {
  width: 100%;
}
  .page_works #main_contents #main_col #post_title {
    text-align: center;
  }

  .page_works #main_contents #main_col .post_content .imglist {
    margin-bottom: 40px;
    text-align: center;
  }
  .page_works #main_contents #main_col .post_content .design_list {
    padding-top: 20px;
    padding-bottom: 20px;
  }
    .page_works #main_contents #main_col .post_content .design_list tr:nth-child(odd) {
      background: #eee !important;
    }
      .page_works #main_contents #main_col .post_content .design_list th {
        padding: 30px 20px;
        width: 35%;
        border: none;
        border-right: 2px solid #fff;
        background: none;
        text-align: left;
      }
      .page_works #main_contents #main_col .post_content .design_list td {
        width: 65%;
        padding: 30px 20px;
        border: none;
        background: none;
      }

  .page_works #main_contents #main_col .next-back-box {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    font-size: 14px;
    justify-content: space-between;
    margin-bottom: 30px;
  }
    .page_works #main_contents #main_col .next-back-box .back-box {
      width: 300px;
    }
    .page_works #main_contents #main_col .next-back-box .next-box {
       width: 300px;
      text-align: right;
    }
    .page_works #main_contents #main_col .next-back-box img {
      width: 100%;
      height: 185px;
    }

  .page_works #main_contents #main_col .works_cate_box {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
    .page_works #main_contents #main_col .works_cate_box a .works_cate {
      margin: 5px;
      text-align: center;
      font-size: 14px;
      padding: 10px;
      border: 1px solid #000;
      background-color: white;
      display: block;
    }
    .page_works #main_contents #main_col .works_cate_box a:hover .works_cate {
      background-color: #FCF9E1;
    }


/*====================================
	page_interview
====================================*/
.page_interview #page_header .bg_image {
  background:url(../img/interview-title.png) no-repeat center top;
  background-size: cover;
}
  .page_interview .archive_list .meta {
    display: none;
  }
  .page_interview #interview_archive {
    max-width: 900px;
  }
  .page_interview .archive_title {
    margin-bottom: 30px;
  }
    .page_interview .archive_title h2 {
      font-size: 30px;
      text-align: center;
      margin-bottom: 15px;
    }
    .page_interview .archive_title p {
      line-height: 1.8;
    }
  .page_interview .archive_list {
    gap: 25px;
  }
    .page_interview .archive_list .item {
      position: relative;
      width: calc((100% - 25px) / 2);
      background: #fff;
      box-sizing: border-box;
      padding: 25px;
      box-shadow: 0 0 35px 0 #0000001a;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .page_interview .archive_list .item .thumb {
      width: 100%;
      margin-bottom: 40px;
    }
      .page_interview .archive_list .item .thumb img {
        width: 100%;
        display: block;
        aspect-ratio: 3/2;
      }
      .page_interview .archive_list .item h3 {
        font-size: 18px;
        margin-bottom: 40px;
      }
      .page_interview .archive_list .item p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 40px;
      }
      .page_interview .archive_list .item .btn {
        margin: 0 auto 40px;
        width: 270px;
      }
        .page_interview .archive_list .item .btn a {
          height: 70px;
          line-height: 70px;
          background-color: var(--main-color);
        }
        .page_interview .archive_list .item .btn a::after {
          content: none;
        }
        .page_interview .archive_list .item .btn a:hover {
          color: var(--main-color);
          background: #b4a858;
        }
  

/*====================================
	page_interview single
====================================*/
.page_interview #main_contents {
  max-width: 900px;
}
.page_interview #main_contents:after {
  content: none;
}
.page_interview #main_contents #main_col {
  width: 100%;
}
  .page_interview #main_contents #main_col #post_title {
    margin-bottom: 15px;
  }
  .page_interview #main_contents #main_col .address {
    text-align: right;
    margin-bottom: 30px;
    font-size: 14px;
  }
  .page_interview #main_contents #main_col .post_content .thumb {
    margin-bottom: 60px;
  }
  .page_interview #main_contents #main_col .post_content .concept {
    border-left: 8px solid #ff6e3b;
    background-color: #fff;
    box-shadow: 1px 2px 6px #0000001a;
    padding: 8px 24px;
    margin-bottom: 60px;
  }
  .page_interview #main_contents #main_col .post_content .interview_item {
    margin-bottom: 60px;
  }
  .page_interview #main_contents #main_col .post_content .interview_item .img_list {
    margin-bottom: 60px;
  }
    .page_interview #main_contents #main_col .post_content .interview_item .img_list .img {
      text-align: center;
      margin: 0 auto 20px;
    }
  .page_interview #main_contents #main_col .post_content .interview_item .question {
    background-color: #eaeaea;
    padding: 20px 35px;
  }
  .page_interview #main_contents #main_col .post_content .interview_item .staff {
    background-color: #fffcee;
    padding: 20px 35px;
    margin-bottom: 0;
  }
.page_interview #main_contents #main_col .post_content .btn {
  margin-top: 60px;
  width: 270px;
}
  .page_interview #main_contents #main_col .post_content .btn a {
    height: 70px;
    line-height: 70px;
    background-color: var(--main-color);
  }
  .page_interview #main_contents #main_col .post_content .btn a::after {
    content: none;
  }
  .page_interview #main_contents #main_col .post_content .btn a:hover {
    color: var(--main-color);
    background: #b4a858;
  }

/*====================================
	page_staffblog
====================================*/
.page_staffblog #page_header .bg_image {
  background:url(../img/staffblog-title.png) no-repeat center top;
  background-size: cover;
}

.page_staffblog .archive_list .item {
    width: calc((100% - 10px) / 2);
    background: var(--main-color);
    height: 180px;
}
.page_staffblog .archive_list .link {
  color: #fff;
  width: 100%;
  height: 100%;
  background: none;
  display: flex;
  flex-wrap: wrap;
}
  .page_staffblog .archive_list .link .content {
    width: calc(100% - 285px);
    height: 100%;
    position: relative;
  }
    .page_staffblog .archive_list .link .content .content_inner {
      padding: 0 30px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      box-sizing: border-box;
    }
    .page_staffblog .archive_list .link .content .content_inner .cat {
      margin-bottom: 8px;
      transition: all 0.35s ease;
      background: #FFD217;
      display: inline-block;
      font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
      padding: 7px 7px 5px 7px;
      font-size: 80%;
      color: #000;
    }
      .page_staffblog .archive_list .link .content .content_inner .cat li {
        display: inline;
        margin-right: 0;
        font-size: 14px;
        line-height: 1.4;
      }
    .page_staffblog .archive_list .link .content .content_inner .title {
      color: #fff;
      padding: 0;
      min-height: initial;
      font-weight: 600;
      line-height: 1.6;
      max-height: 3.2em;
      overflow: hidden;
      visibility: visible;
      word-wrap: break-word;
      word-break: break-all;
      box-sizing: border-box;
      transition: all 0.35s ease;
    }
    .page_staffblog .archive_list .link .content .content_inner .date {
      font-size: 14px;
      font-family: Arial;
      color: #999;
      margin-top: 5px;
    }

  .page_staffblog .archive_list .link .image_wrap {
    display: block;
    width: 285px;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #fff;
  }
    .page_staffblog .archive_list .link .image_wrap .image {
      width: 100%;
      height: 100%;
      display: block;
      overflow: hidden;
      position: relative;
      z-index: 2;
    }


/*====================================
	faq
====================================*/
.page_faq #page_header .bg_image {
  background:url(../img/faq-title.png) no-repeat center top;
  background-size: cover;
}

.page_faq #page_contents_inner {
  max-width: 880px;
}
.page_faq .faq-category {
  margin-bottom: 35px;
}
  .page_faq .faq-category-title {
      border-bottom: 1px solid #000;
      margin-bottom: 10px;
  }
    .page_faq .faq-category-title h3 {
      color: #545527;
      font-size: 16px;
    }
.page_faq .btn {
  margin-top: 20px;
}

/*====================================
	concept
====================================*/
.page_concept #page_header .bg_image {
  background:url(../img/concept-title.png) no-repeat center top;
  background-size: cover;
}

.page_concept #page_contents_inner {
  max-width: 1000px;
}
.page_concept .msg_area {
  text-align: center;
  margin-bottom: 40px;
}
  .page_concept .msg_area .msg {
    margin-bottom: 20px;
  }
  .page_concept .msg_area .ttl h3 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 40px;
  }
    .page_concept .msg_area .ttl h3 span {
      font-size: 20px;
    }
  .page_concept .msg_area .ttl p {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .page_concept .msg_area h4 {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 40px;
  }
    .page_concept .msg_area h4 span {
      font-size: 20px;
    }
.page_concept .pic_area {
  margin-bottom: 20px;
  width: 100%;
  position: relative;
}
  .page_concept .pic_area img {
    width: 100%;
    object-fit: cover;
  }
  .page_concept .pic_area .over {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, .3);
  }
    .page_concept .pic_area .over h3 {
      text-align: center;
      font-size: 44px;
      color: #fff;
      font-weight: 700;
    }

.page_concept .kodawari_area {
  width: 100%;
  margin-bottom: 80px;
}
  .page_concept .kodawari_area .item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #000;
    padding: 40px 25px;
    justify-content: space-between;
  }
  .page_concept .kodawari_area .item .txt {
    width: 63%;
  }
    .page_concept .kodawari_area .item .txt h4 {
      font-size: 24px;
      margin-bottom: 15px;
      color: var(--main-color);
    }
    .page_concept .kodawari_area .item .txt h4 span {
      font-size: 55px;
      display: inline-block;
      padding-right: 10px;
    }
    .page_concept .kodawari_area .item .txt p {
      line-height: 1.8;
    }
      .page_concept .kodawari_area .item .txt .mark {
        font-weight: 700;
      }
  .page_concept .kodawari_area .item .thumb {
    width: 31%;
  }
  .page_concept .kodawari_area .item .thumb img {
    width: 100%;
    object-fit: cover;
  }


/*====================================
	company
====================================*/
.page_company #page_header .bg_image {
  background:url(../img/company-title.png) no-repeat center top;
  background-size: cover;
}

.page_company #page_contents_inner {
  max-width: 800px;
}
.page_company .block {
  margin-bottom: 80px;
}
  .page_company .block .ttl {
    margin-bottom: 100px;
    text-align: center;
  }
    .page_company .block .ttl h3 {
      font-size: 32px;
    }
    .page_company .block .ttl span {
      font-size: 16px;
      display: block;
    }
  .page_company .block .gaiyou {
    margin-bottom: 25px;
  }
    .page_company .block .gaiyou table {
      table-layout: fixed;
      max-width: 100%;
      border-collapse: collapse;
      width: 100%;
    }
      .page_company .block .gaiyou table td {
        border-top: 1px solid #ddd;
        box-sizing: border-box;
        min-width: auto;
        word-break: normal;
        line-height: 2.2;
        padding: 15px;
        text-align: left;
      }
      .page_company .block .gaiyou table td:first-child {
        width: 25%;
      }
      .page_company .block .gaiyou table tr:last-child td {
        border-bottom: 1px solid #ddd;
      }
            .page_company .block .gaiyou table td img {
              width: auto;
              max-width: 100%;
              display: block;
              margin-top: 10px;
            }


  .page_company .block.jirei .ttl {
    margin-bottom: 15px;
  }
  .works-slider .card{
    display: block;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
  }
    .works-slider .card .image_wrap {
      aspect-ratio: 4 / 3;
      width: 100%;
      overflow: hidden;
    }
      .works-slider .card .image_wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
    .works-slider .card .meta {
      padding: 15px;
      background-color: #eee;
    }
    .works-slider .card .meta .w-title {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
    }

    .works-slider .slick-list{ margin:0 -18px; }
    .works-slider .slick-slide{ padding:0 18px; }

    .works-slider .slick-arrow{
      position: absolute;
      top: 50%;
      transform:translateY(-50%);
      width: 40px;
      height:44px;
      z-index: 2;
      cursor: pointer;
    }
    .works-slider .slick-prev{ left:0; }
    .works-slider .slick-next{ right:0; }
    .works-slider .slick-arrow::before{
      content: "";
      display: block;
      width: 12px;
      height: 12px;
      margin: auto;
      border-right: 2px solid #fff;
      border-bottom: 2px solid #fff;
      transform: rotate(-45deg);
    }
    .works-slider .slick-prev::before{
      transform:rotate(135deg);
    }

    .works-slider .slick-dots{
      position: static;
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-top: 30px;
    }
    .works-slider .slick-dots li{ width:auto; height:auto; }
    .works-slider .slick-dots button{
      width:10px; height:10px;
      padding:0; border:0; border-radius:50%;
      background:#222; opacity:.25;
      text-indent:-9999px;
    }
    .works-slider .slick-dots .slick-active button{ opacity:1; }

/*====================================
	staff
====================================*/
.page_staff #page_header .bg_image {
  background:url(../img/staff-title.png) no-repeat center top;
  background-size: cover;
}

.page_staff #page_contents_inner {
  max-width: 900px;
}
.page_staff .yakuin {
  margin-bottom: 80px;
}
  .page_staff .block .ttl {
    margin-bottom: 15px;
    text-align: center;
  }
    .page_staff .block .ttl h3 {
      font-size: 32px;
      line-height: 3;
    }
    .page_staff .block .item .item_name {
      text-align: center;
      margin-bottom: 30px;
    }
      .page_staff .block .item .item_name span {
        display: block;
      }
      .page_staff .block .item .item_name span.name {
        font-size: 28px;
        margin-bottom: 5px;
      }
      .page_staff .block .item .item_name span.name_en {
        font-size: 13px;
      }

  .page_staff .yakuin .item {
    padding-top: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid #000;
  }
    .page_staff .yakuin .item .item_inner {
      display: flex;
      justify-content: space-between;
      margin-bottom: 40px;
    }
      .page_staff .yakuin .item .item_inner .thumb {
        width: 32%;
      }
        .page_staff .yakuin .item .item_inner .thumb img {
          display: block;
          width: 100%;
        }
      .page_staff .yakuin .item .item_inner .txt {
        width: 64%;
      }
        .page_staff .yakuin .item .item_inner .txt p {
          line-height: 1.8;
        }


  .page_staff .staff .ttl {
    margin-bottom: 75px;
  }
  .page_staff .staff .staff_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
    .page_staff .staff .staff_list .item {
      width: 45%;
      background-color: #fff;
      box-shadow: 0 0 15px #ddd;
      margin-bottom: 100px;
    }
      .page_staff .staff .staff_list .item .thumb {
        width: 100%;
      }
        .page_staff .staff .staff_list .item .thumb img {
          width: 100%;
          display: block;
          align-self: 1.49;
        }
      .page_staff .staff .staff_list .item .txt_inner {
        padding: 40px 15px;
      }
      .page_staff .staff .staff_list .item .txt {
        width: 100%;
      }
        .page_staff .staff .staff_list .item .txt p {
          font-size: 14px;
          line-height: 1.8;
        }

/*====================================
	flow
====================================*/
.page_flow #page_header .bg_image {
  background:url(../img/flow-title.png) no-repeat center top;
  background-size: cover;
}

.page_flow #page_contents_inner {
  max-width: 800px;
}

.page_flow .ttl {
  text-align: center;
  margin-bottom: 15px;
}
  .page_flow .ttl h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
  }

.page_flow .flow_area .item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #ccc;
}
  .page_flow .flow_area .item .thumb {
    width: 25%;
  }
    .page_flow .flow_area .item .thumb img {
      width: 100%;
      display: block;
      border-radius: 50%;
    }
  .page_flow .flow_area .item .txt {
    width: 67%;
  }
    .page_flow .flow_area .item .txt .step {
      color: #c3b870;
      line-height: 1;
    }
      .page_flow .flow_area .item .txt .step span {
        font-size: 13px;
        display: block;
      }
      .page_flow .flow_area .item .txt .step span.num {
        font-size: 36px;
      }
    .page_flow .flow_area .item .txt h4 {
      font-size: 24px;
      line-height: 1.8;
      margin-bottom: 15px;
    }
    .page_flow .flow_area .item .txt p {
      line-height: 1.8;
    }
      .page_flow .flow_area .item .txt p .meyasu {
        width: 100%;
        margin-top: 30px;
        display: block;
        border: 1px solid #c0c0c0;
        background-color: #fcf9e1;
        text-align: center;
        padding: 25px;
      }

/*====================================
	sw
====================================*/
.page_sw #page_header .bg_image {
  background:url(../img/sw-title-pc.jpg) no-repeat center top;
  background-size: cover;
}

.page_sw .ttl {
  text-align: center;
  margin-bottom: 50px;
}
  .page_sw .ttl h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
  }
    .page_sw .ttl h3 span {
      font-size: 54px;
    }
  .page_sw .ttl .komidashi {
    margin: 0 auto 20px;
    width: 250px;
    display: flex;
    font-size: 14px;
  }
    .page_sw .ttl .komidashi .txt {
      background: #9fa0a0;
      color: #fff;
      text-align: center;
      width: 110px;
      height: 30px;
      line-height: 30px;
    }
    .page_sw .ttl .komidashi .txt:last-child {
      border-top: 1px solid #9fa0a0;
      border-right: 1px solid #9fa0a0;
      border-bottom: 1px solid #9fa0a0;
      background-color: #fff;
      color: #9fa0a0;
    }
    .page_sw .ttl .komidashi .batsu {
      width: 28px;
    }
      .page_sw .ttl .komidashi .batsu img {
        width: 100%;
      }

.page_sw .cont {
  margin-bottom: 100px;
}

  .page_sw .cont p {
    line-height: 1.8;
    margin-bottom: 30px;
  }
  .page_sw .cont p.text_c {
    text-align: center;
  }
  .page_sw .cont p.midashi {
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
  }
  .page_sw .cont p.but {
    font-size: 20px;
  }

  .page_sw .cont .font_l {
    font-size: 20px;
  }
  .page_sw .cont .font_l2 {
    font-size: 32px;
    font-weight: 700;
  }
  .page_sw .cont .font_c_y {
    color: #c8a628;
  }

  .page_sw .cont .pic {
    width: 100%;
    margin: 0 auto 20px;
  }
    .page_sw .cont .pic img{
      width: 100%;
      max-width: 100%;
      object-fit: cover;
      display: block;
    }
  .page_sw .about .cont .pic {
    width: 78%;
    margin-bottom: 60px;
  }
  .page_sw .monosashi .cont .pic.ondo {
    width: 35%;
  }
  .page_sw .monosashi .cont .pic.seinou {
    width: 68%;
  }
  .page_sw .monosashi .cont .pic.kijyun {
    width: 75%;
  }
  .page_sw .monosashi .cont .pic.suisou {
    width: 54%;
  }
  .page_sw .monosashi .cont .pic.hikaku {
    width: 85%;
  }
  .page_sw .cost .cont .pic.cost_hikaku {
    width: 68%;
  }

  .page_sw .cont .fl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
  }
    .page_sw .cont .fl .txt {
      width: 48%;
    }
        .page_sw .cont .fl .txt p {
          margin-bottom: 0;
        }
    .page_sw .cont .fl .thumb {
      width: 48%;
    }
      .page_sw .cont .fl .thumb img {
        display: block;
        width: 100%;
        object-fit: cover;
      }

  .page_sw .cont .fl.bg {
    background-color: #edefdf;
    padding: 25px;
  }
    .page_sw .cont .fl.bg .txt {
      width: 67%;
    }
    .page_sw .cont .fl.bg .thumb {
      width: 32%;
    }
      .page_sw .cont .fl.bg .thumb img {
        width: 53%;
        margin: 0 auto;
      }

  .page_sw .cont .bg_g {
    background-color: #eee;
    padding: 40px;
    margin-bottom: 20px;
  }

  .page_sw .cont .bg_y {
    background-color: rgba(200, 166, 40, 0.2);;
    padding: 25px;
    margin-bottom: 40px;
  }
    .page_sw .cont .bg_y p {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.8;
      color: #c8a628;
      margin-bottom: 0;
    }

  .page_sw .cont .box {
    border: 5px solid #eee;
    padding: 25px;
    margin-bottom: 20px;
  }
    .page_sw .cont .box h4 {
      font-size: 21px;
      text-align: center;
      margin-bottom: 30px;
    }
      .page_sw .cont .box h4 span {
        font-size: 28px;
      }
    .page_sw .cont .box .spec_l {
      font-size: 32px;
    }
    .page_sw .cont .box .spec_m {
      font-size: 24px;
    }
    .page_sw .cont .box .spec_s {
      font-size: 20px;
    }
    .page_sw .cont .box.kimitsu .fl {
      margin-bottom: 40px;
    } 
    .page_sw .cont .box.kimitsu .fl .thumb img {
      width: 57%;
      margin: 0 auto;
    }

    .page_sw .voice .cont .voice_box {
      background-color: #edefdf;
      padding: 25px;
      margin-bottom: 20px;
    }
      .page_sw .voice .cont .voice_box .ttl_area {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
      }
        .page_sw .voice .cont .voice_box .txt {
          width: 66%;
          text-align: left;
        }
          .page_sw .voice .cont .voice_box .txt .report {
            background-color: #fff;
            font-size: 13px;
            display: inline-block;
            margin-bottom: 30px;
          }
          .page_sw .voice .cont .voice_box .txt .ttl {
            font-size: 28px;
            text-align: left;
            margin-bottom: 0;
          }
          .page_sw .voice .cont .voice_box .txt .addres {
            font-size: 16px;
          }
        .page_sw .voice .cont .voice_box .thumb {
          width: 200px;
        }
          .page_sw .voice .cont .voice_box .thumb img {
            border-radius: 50%;
          }
      .page_sw .voice .cont .voice_box .pic_area {
        width: 100%;
      }
        .page_sw .voice .cont .voice_box .pic_area .item + .item {
          margin-bottom: 30px;
        }
          .page_sw .voice .cont .voice_box .pic_area .pic {
            margin-bottom: 15px;
          }
            .page_sw .voice .cont .voice_box .pic_area .pic.fl img {
              width: 48%;
            }

/*====================================
	quality
====================================*/
.page_quality #page_header .bg_image {
  background:url(../img/quality-title.png) no-repeat center top;
  background-size: cover;
}

.page_quality .ttl {
  text-align: center;
  margin-bottom: 30px;
  background-color: #6071A5;
  padding: 20px 40px;
}
  .page_quality .ttl h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.6;
    color: #fff;
  }
  .page_quality .ttl span {
    font-size: 20px;
    line-height: 1;
    color: #fff;
    background-image: linear-gradient(transparent 60%, rgba(252, 185, 0, 0.5) 60%);
  }

.page_quality .cont {
  margin-bottom: 70px;
}

  .page_quality .cont p {
    line-height: 1.8;
    margin-bottom: 30px;
  }
  .page_quality .cont p.text_c {
    text-align: center;
  }
  .page_quality .cont p.bg {
    background-color: #edefdf;
    padding: 20px 40px;
  }
    .page_quality .cont p.bg strong {
      font-size: 18px;
    }
    .page_quality .cont p.bg img {
      /* width: 150px; */
      width: 200px;
      margin-bottom: 10px;
      display: block;
    }

  .page_quality .cont .pic {
    width: 100%;
    margin: 0 auto 20px;
    position: relative;
  }
  .page_quality .egao .cont .pic:after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    -moz-box-shadow: inset 0px 0px 15px 15px #fff;
    -webkit-box-shadow: inset 0px 0px 15px 15px #fff;
    box-shadow: inset 0px 0px 15px 15px #fff;
    content: " ";
  }
    .page_quality .cont .pic img {
      width: 100%;
      max-width: 100%;
      object-fit: cover;
      display: block;
    }

  .page_quality .zeh .cont .pic {
    width: 70%;
    padding-top: 30px;
  }

  .page_quality .cont .fl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
    .page_quality .cont .fl .txt {
      width: 48%;
    }
        .page_quality .cont .fl .txt p {
          margin-bottom: 0;
        }
    .page_quality .cont .fl .thumb {
      width: 48%;
    }
      .page_quality .cont .fl .thumb img {
        display: block;
        width: 100%;
        object-fit: cover;
      }

  .page_quality .cont .btn {
    width: 400px;
    margin: 0 auto;
  }
    .page_quality .cont .btn a {
      display: block;
      background-color: #535353;
      color: #fff;
      height: 70px;
      line-height: 70px;
      padding: 0 30px;
    }

  .page_quality .cont .box {
    border: 1px solid #000;
    padding: 10px;
  }
    .page_quality .cont .box p {
      text-align: center;
      font-size: 28px;
      margin-bottom: 0;
    }

/*====================================
	consultation
====================================*/
.page_consultation #page_header .bg_image {
  background:url(../img/consultation-title.png) no-repeat center top;
  background-size: cover;
}

.page_consultation .cont {
  margin-bottom: 100px;
  text-align: center;
}
  .page_consultation .cont .pic {
    width: 100%;
    margin-bottom: 70px;
  }
    .page_consultation .cont .pic img {
      width: 100%;
      display: block;
      object-fit: cover;
    }
  .page_consultation .cont h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #c3b870;
  }
  .page_consultation .cont p {
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 2.6;
  }
    .page_consultation .cont p span {
      font-size: 22px;
      background-image: linear-gradient(transparent 60%, rgba(195, 184, 112, 0.5) 60%);
    }
  .page_consultation .cont table {
    table-layout: fixed;
    margin-bottom: 20px;
    border-spacing: 0;
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
  }
    .page_consultation .cont td, 
    .page_consultation .cont th {
      border: 1px solid #ddd;
      padding: 16px;
      line-height: 2.2;
      background: #fff;
      box-sizing: border-box;
      border-style: solid;
      text-align: left;
      vertical-align: top;
      overflow-wrap: anywhere;
      word-break: normal;
    }
    .page_consultation .cont td {
      border-width: 1px 0 0;
    }
    .page_consultation .cont tr:first-child td {
      border-top: 1px solid #000;
    }
    .page_consultation .cont td + td {
      width: 75%;
    }
      .page_consultation .cont td .btn {
        width: 260px;
        margin-top: 10px;
        margin-left: 0;
      }
        .page_consultation .cont td .btn a {
          width: 100%;
          background-color: var(--main-color);
          color: #fff;
          height: 70px;
          line-height: 70px;
          font-size: 16px;
          padding: 0 20px;
        }

.page_consultation #form_area .caution {
  border-color: #d07d7d;
  background-color: #faf3f3;
}
  .page_consultation #form_area .caution p {
    color: #c96161;
  }
  .page_consultation #form_area .mark {
    background-image: linear-gradient(transparent 60%, rgba(252, 185, 0, 0.5) 60%)
  }

/*====================================
	catalog
====================================*/
.page_catalog #page_header .bg_image {
  background:url(../img/catalog-title.png) no-repeat center top;
  background-size: cover;
}

.page_catalog .block {
  margin-bottom: 50px;
  text-align: center;
}
  .page_catalog #form_area h3,
  .page_catalog .block h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
    font-family: yu-mincho-pr6n, sans-serif;;
  }
  .page_catalog .block .pic {
    width: 100%;
    margin-bottom: 40px;
  }
    .page_catalog .block .pic img {
      width: 100%;
      display: block;
      object-fit: cover;
    }

  .page_catalog .cont h2 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 60px;
  }
  .page_catalog .cont .otodoke {
    background-color: #fcf9e1;
    display: block;
    text-align: center;
    padding: 20px;
    width: 450px;
    margin: 0 auto 30px;
    font-size: 24px;
  }
  .page_catalog .cont .btn {
    margin: 0 auto 100px;
  }
  .page_catalog .cont a {
    background-color: var(--main-color);
  }
  .page_catalog .cont .osusume {
    display: flex;
    padding: 30px 30px 0;
    background-color: #fcf9e1;
    position: relative;
    justify-content: space-between;
  }
    .page_catalog .cont .circle {
      position: absolute;
      left: -10px;
      top: -50px;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: #FFD217;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      z-index: 1;
    } 
    .page_catalog .cont .osusume .thumb {
      width: 32%;
      padding-top: 50px;
    }
      .page_catalog .cont .osusume .thumb img {
        width: 100%;
        display: block;
        object-fit: cover;
      }
    .page_catalog .cont .osusume .txt {
      width: 66%;
    }
      .page_catalog .cont .osusume .txt li {
        text-align: left;
        padding: 15px 15px 15px 40px;
        position: relative;
        margin-bottom: 15px;
        background: #fff url(../img/icon_check.png) no-repeat;
        background-position: 10px 20px;
        background-size: 16px;
      }


  .page_catalog .faq .faq-title {
    justify-content: space-between;
    text-align: left;
  }
    .page_catalog .faq .faq-title h4 {
      font-size: 16px;
    }
    .page_catalog .faq .faq-title .icon {
      margin-right: 0;
    }
  .page_catalog .faq .faq-post {
    padding: 10px 20px;
    font-size: 16px;
  }
    .page_catalog .faq .faq-post span {
      background-image: linear-gradient(transparent 60%, rgba(247, 252, 0, 0.5) 60%);
    }
  .page_catalog .faq .pic img {
    width: 160px;
    max-width: 100%;
    margin: 80px auto 40px;
  }

.page_catalog #form_area .caution {
  border-color: #d07d7d;
  background-color: #faf3f3;
}
  .page_catalog #form_area .caution p {
    color: #c96161;
  }
  .page_catalog #form_area .mark {
    background-image: linear-gradient(transparent 60%, rgba(252, 185, 0, 0.5) 60%)
  }

/*====================================
	thanks
====================================*/
.page_thanks {
  padding-top: 100px;
  padding-bottom: 100px;
}
  .page_thanks h1 {
    text-align: center;
    font-size: 72px;
    margin-bottom: 30px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  }
  .page_thanks .cont {
    line-height: 1.8;
  }
    .page_thanks .cont span {
      font-size: 13px;
    }
  .page_thanks .btn a {
    width: 100%;
    background-color: var(--main-color);
    color: #fff;
    height: 70px;
    line-height: 70px;
  }

/*====================================
	privacy-policy
====================================*/
.page_privacy-policy {
  padding-top: 50px;
  padding-bottom: 50px;
}
  .page_privacy-policy h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 50px;
  }
    .page_privacy-policy h1 span {
      display: inline-block;
      background-image: linear-gradient(transparent 60%, rgba(171, 184, 195, 0.5) 60%);
    }
    .page_privacy-policy h1 span.en {
      background-image: none;
      font-size: 20px;
    }
  .page_privacy-policy p {
    line-height: 1.8;
    margin-bottom: 30px;
  }
  .page_privacy-policy h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .page_privacy-policy h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .page_privacy-policy .box {
    background-color: #eeeeee;
    padding: 25px;
    margin-bottom: 40px;
  }
    .page_privacy-policy .box p {
      margin-bottom: 0;
    }

/*====================================
	404
====================================*/
.page_404 {
  padding-top: 100px;
  padding-bottom: 100px;
}
  .page_404 h1 {
    text-align: center;
    font-size: 72px;
    margin-bottom: 30px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  }
  .page_404 .cont {
    line-height: 1.8;
    text-align: center;
  }
  .page_404 .btn a {
    width: 100%;
    background-color: var(--main-color);
    color: #fff;
    height: 70px;
    line-height: 70px;
  }


@media only screen and (max-width: 1200px) {
/*====================================
	base
====================================*/
/* page_header */
#page_header {
  height: 350px;
}
  #page_header_inner {
    width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
  }

/* bread_crumb */
#bread_crumb {
  padding: 10px 0;
/*   padding: 10px 20px; */
}
#bread_crumb span span {
  margin-right: 5px;
  margin-left: 5px;
}

/* archive_cont */
.archive_cont {
  padding-top: 20px;
  padding-bottom: 70px;
}
  .archive_cont .cat_area ul li a {
    font-size: 12px;
  }

/* main_contents */
#main_contents {
  padding: 80px 20px 0;
  display: block;
  margin: 0 auto;
}
#main_contents:after {
  content: none;
}
  #main_contents #main_col {
    width: auto;
    margin: 0 auto;
    padding: 0;
  }
    #main_contents #article {
      max-width: 770px;
      margin: 0 auto;
    }
  #main_contents #side_col {
    width: auto;
    max-width: 770px;
    margin: 70px auto 0;
    position: relative;
    z-index: 2;
    padding: 70px 0;
    display: flex;
    flex-wrap: wrap;
  }
  #main_contents #side_col:after {
    position: absolute;
    top: 0px;
    content: '';
    width: calc(100vw + 100px);
    height: 100%;
    background: #eee;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
  }
    #main_contents #side_col .widget_content {
      width: calc(50% - 20px);
      margin: 0 40px 40px 0;
      padding: 0;
      border: none;
      z-index: 2;
      position: relative;
    }
    #main_contents #side_col .widget_content:nth-child(2n) {
      margin-right: 0;
    }
      

}

@media only screen and (max-width: 950px) {
/*====================================
	base
====================================*/

/* archive_list */
.archive_list {
  gap: 6px;
}
  .archive_list .item {
    width: calc((100% - 6px) / 2);
    margin-bottom: 6px;
  }

/* main_contents */
  #main_contents #main_col {
    margin-bottom: 40px;
  }
  #main_contents #side_col {
    width: auto;
    margin: 0 auto;
    display: block;
    max-width: 365px;
  }
    #main_contents #side_col .widget_content {
      width: auto;
      margin: 0 0 40px 0;
    }
    #main_contents #side_col .widget_content:nth-child(2n) {
      width: auto;
      margin: 0 0 40px 0;

}

/*====================================
	page_staffblog
====================================*/
.page_staffblog .archive_list .item {
    width: 100%;
}
  .page_staffblog .archive_list .link .content {
    width: 50%;
  }
    .page_staffblog .archive_list .link .content .content_inner .cat {
      display: none;
    }
  .page_staffblog .archive_list .link .image_wrap {
    width: 50%;
  }


}

@media only screen and (max-width: 767px) {
/*====================================
	base
====================================*/
/* page_header */
#page_header {
  height: 250px;
}
  #page_header_inner {
    padding: 0 45px;
  }

/* archive_list */
.archive_list .item .image_link {
  height: 110px;
}
.archive_list .title {
  font-size: 14px;
  padding: 12px 10px 4px;
  min-height: 77px;
}
 .archive_list .title h3 {
  max-height: 4.8em;
 }
  .archive_list .title span {
    -webkit-line-clamp: 3;
  }
.archive_list .meta {
  padding: 15px 10px;
}
  .archive_list .meta li {
    font-size: 12px;
  }

/* page_navi */
.page_navi {
  margin-top: 40px;
}
  .page_navi li span {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
  .page_navi li a {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }

/* main_contents */
    #main_contents #main_col #post_title {
      margin-bottom: 20px;
    }
      #main_contents #main_col #post_title .title {
        font-size: 18px;
      }
      #main_contents #main_col #post_title .meta_top {
        margin: 10px 0 0 0;
      }
        #main_contents #main_col #post_title .meta_top li {
          font-size: 12px;
          margin: 0 10px 0 0;
        }
  #main_contents #side_col {
    display: none;
  }

/* page_contents_inner */
#page_contents_inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* post_content */
    .post_content h2 {
      font-size: 20px;
    }
    .post_content h3 {
      font-size: 18px;
    }
    .post_content p {
      margin-bottom: 20px;
    }
    .post_content ul {
      margin-bottom: 20px;
    }
      .post_content ul li {
          line-height: 1.8;
      }

/* recent */
#recent {
  margin-top: 40px;
}
    #recent .post_list .item a {
      height: auto;
      padding: 14px 20px 8px;
      display: block;
    }
      #recent .post_list .date {
        font-size: 12px;
        margin: 0 0 5px 0;
      }
      #recent .post_list .title {
        font-size: 14px;
        text-overflow: clip;
        white-space: normal;
        overflow: visible;
    }

/* faq */
.faq-title {
  padding: 15px;
}
.faq-post{
  display: none;
  padding: 10px 15px 10px 40px;
}


/* form_area */
  #form_area h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
    #form_area h3 span {
      font-size: 14px;
    }

  #form_area h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  #form_area .txt {
    font-size: 12px;
    margin-bottom: 20px;
  }

  #form_area .caution {
    padding: 10px;
    margin-bottom: 20px;
  }
    #form_area .caution p {
      font-size: 12px;
    }

  #form_area .booking_area {
    padding: 10px;
  }
    #form_area .booking_area .note {
      line-height: 1.6;
      margin-bottom: 20px;
    }
    #form_area .booking_area .sub_area {
      padding: 10px;
    }
      #form_area .booking_area .sub_area p {
        line-height: 1.8;
      }
      #form_area .booking_area .sub_area .btn {
        width: 100%;
      }

/* wpcf */
  .wpcf7 th {
    width: 100%;
    display: block;
  }
  .wpcf7 td {
    width: 100%;
    display: block;
    padding-top: 0;
  }

/* next_prev_post */
  #next_prev_post .item {
    height: 52px;
  }
    #next_prev_post a {
      height: 50px;
      line-height: 50px;
      position: relative;
      box-sizing: border-box;
    }
      #next_prev_post .title_area {
        position: relative;
        bottom: auto;
        left: auto;
        color: #000;
        padding: 0px;
      }
      #next_prev_post .title {
        display: block;
        text-align: center;
        padding: 0;
        font-size: 14px;
      }
      #next_prev_post .next_post .title {
        padding: 0;
      }
      #next_prev_post .title:after {
        left: 20px;
        font-size: 11px;
      }
      #next_prev_post .next_post .title:after {
        right: 20px;
      }

/* bnr_area */
  .bnr_area {
    flex-wrap: wrap;
  }
    .bnr_area .item {
      width: 100%;
    }
    .bnr_area .item:first-child {
      margin-bottom: 20px;
    }


/*====================================
	page_event
====================================*/


/*====================================
	page_event single
====================================*/
    .page_event #gaiyou_area tr:first-child td+td {
      border-top: none;
    }
    .page_event #gaiyou_area td {
      border-width: 1px 0 0;
      width: 100%;
      display: block;
    }
    .page_event #gaiyou_area td + td {
      width: 100%;
      border-width: 0;
      padding-top: 0;
    }
    .page_event #gaiyou_area td .gmap {
      padding-bottom: 72%;
    }
  /* .page_event #form_area h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
    .page_event #form_area h3 span {
      font-size: 14px;
    }

  .page_event #form_area h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .page_event #form_area .txt {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .page_event #form_area .caution {
    padding: 10px;
    margin-bottom: 20px;
  }
    .page_event #form_area .caution p {
      font-size: 12px;
    } */


/*====================================
	page_works
====================================*/
  .page_works .archive_list .title {
    font-size: 14px;
  }


/*====================================
	page_works single
====================================*/
    .page_works #main_contents #main_col .next-back-box .back-box {
      width: 150px;
    }
    .page_works #main_contents #main_col .next-back-box .next-box {
       width: 150px;
    }
    .page_works #main_contents #main_col .next-back-box img {
      height: 100px;
    }


/*====================================
	page_interview
====================================*/
    .page_interview .archive_list .item {
      width: 100%;
      padding: 15px;
    }
      .page_interview .archive_list .item .btn {
        width: 240px;
      }
        .page_interview .archive_list .item .btn a {
          height: 50px;
          line-height: 50px;
        }


/*====================================
	page_interview single
====================================*/
.page_interview #main_contents #main_col .post_content .concept {
  border-left: 6px solid #ff6e3b;
  padding: 8px 20px;
}
  .page_interview #main_contents #main_col .post_content .interview_item .question {
    padding: 15px 15px;
  }
  .page_interview #main_contents #main_col .post_content .interview_item .staff {
    padding: 15px 15px;
  }
  .page_interview #main_contents #main_col .post_content .btn {
  margin-bottom: 60px;
  width: 274px;
}

/*====================================
	page_staffblog
====================================*/
.page_staffblog .archive_list .item {
  height: 114px;
}
.page_staffblog .archive_list .link .content .content_inner {
  padding: 0 20px;
}
.page_staffblog .archive_list .link .content .content_inner .date {
  font-size: 12px;
}


/*====================================
	faq
====================================*/
.page_faq .faq-category {
  margin-bottom: 25px;
}
.page_faq .btn {
  margin-top: 20px;
  width: 80%;
}



/*====================================
	concept
====================================*/
  .page_concept .msg_area .ttl h3 {
    font-size: 20px;
  }
    .page_concept .msg_area .ttl h3 span {
      font-size: 16px;
    }
  .page_concept .msg_area .ttl p {
    font-size: 16px;
  }
  .page_concept .msg_area p {
    font-size: 16px;
  }
  .page_concept .msg_area h4 {
    font-size: 18px;
  }
    .page_concept .msg_area h4 span {
      font-size: 16px;
    }

    .page_concept .pic_area .over h3 {
      font-size: 24px;
    }

  .page_concept .kodawari_area .item {
    flex-wrap: wrap;
    padding: 30px 20px;
    /* margin-bottom: 40px; */
  }
  .page_concept .kodawari_area .item .txt {
    width: 100%;
    margin-bottom: 30px;
  }
    .page_concept .kodawari_area .item .txt h4 {
      font-size: 20px;
    }
      .page_concept .kodawari_area .item .txt h4 span {
        font-size: 24px;
      }
    .page_concept .kodawari_area .item .txt p {
      line-height: 1.6;
    }
  .page_concept .kodawari_area .item .thumb {
    width: 100%;
  }
  .page_concept .kodawari_area .item .thumb img {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
  }


/*====================================
	company
====================================*/
.page_company .block {
  margin-bottom: 50px;
}
  .page_company .block .ttl {
    margin-bottom: 50px;
  }
    .page_company .block .ttl h3 {
      font-size: 22px;
    }
    .page_company .block .ttl span {
      font-size: 14px;
    }
      .page_company .block .gaiyou table td {
        width: 100%;
        display: block;
        line-height: 1.6;
        word-break: break-all;
      }
      .page_company .block .gaiyou table td:last-child {
        border-top: none;
        padding-top: 0;
      }
      .page_company .block .gaiyou table tr:last-child td:first-child {
        border-bottom: none;
      }
      .page_company .block .gaiyou table td:first-child {
        width: 100%;
      }

    .works-slider .slick-arrow{ width:40px; height:40px; }
    .works-slider .slick-list{ margin:0 -10px; }
    .works-slider .slick-slide{ padding:0 10px; }

    .works-slider .slick-dots{
      margin-top: 20px;
    }

/*====================================
	staff
====================================*/
.page_staff .yakuin {
  margin-bottom: 40px;
}
    .page_staff .block .ttl h3 {
      font-size: 22px;
      line-height: 2;
    }
      .page_staff .block .item .item_name span {
        display: block;
      }
      .page_staff .block .item .item_name span.name {
        font-size: 28px;
        margin-bottom: 5px;
      }
      .page_staff .block .item .item_name span.name_en {
        font-size: 13px;
      }

  .page_staff .yakuin .item {
    padding-top: 40px;
    padding-bottom: 40px;
  }
    .page_staff .yakuin .item .item_inner {
      flex-wrap: wrap;
    }
      .page_staff .yakuin .item .item_inner .thumb {
        width: 80%;
        margin: 0 auto 20px;
      }
      .page_staff .yakuin .item .item_inner .txt {
        width: 100%;
      }
        .page_staff .yakuin .item .item_inner .txt p {
          line-height: 1.6;
        }


  .page_staff .staff .ttl {
    margin-bottom: 55px;
  }
    .page_staff .staff .staff_list .item {
      width: 100%;
      margin-bottom: 50px;
    }
      .page_staff .staff .staff_list .item .txt_inner {
        padding: 30px 15px;
      }
        .page_staff .staff .staff_list .item .txt p {
          font-size: 14px;
          line-height: 1.6;
        }

/*====================================
	flow
====================================*/
  .page_flow .ttl h3 {
    font-size: 22px;
  }

.page_flow .flow_area .item {
  padding-top: 40px;
  padding-bottom: 40px;
}
  .page_flow .flow_area .item .thumb {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .page_flow .flow_area .item .txt {
    width: 100%;
  }
      .page_flow .flow_area .item .txt .step span.num {
        font-size: 22px;
        margin-bottom: 5px;
      }
    .page_flow .flow_area .item .txt h4 {
      font-size: 18px;
      line-height: 1.6;
    }
    .page_flow .flow_area .item .txt p{
      line-height: 1.6;
    }


/*====================================
	sw
====================================*/
.page_sw #page_header .bg_image {
  background:url(../img/sw-title-sp.jpg) no-repeat center top;
  background-size: cover;
}

.page_sw .ttl {
  margin-bottom: 40px;
}
  .page_sw .ttl h3 {
    font-size: 22px;
  }
    .page_sw .ttl h3 span {
      font-size: 28px;
    }

.page_sw .cont {
  margin-bottom: 50px;
}

  .page_sw .cont p {
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .page_sw .cont p.midashi {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .page_sw .cont p.but {
    font-size: 18px;
  }

  .page_sw .cont .font_l {
    font-size: 18px;
  }
  .page_sw .cont .font_l2 {
    font-size: 28px;
  }

  .page_sw .about .cont .pic {
    width: 100%;
  }
  .page_sw .monosashi .cont .pic.ondo {
    width: 50%;
  }
  .page_sw .monosashi .cont .pic.seinou {
    width: 100%;
  }
  .page_sw .monosashi .cont .pic.kijyun {
    width: 100%;
  }
  .page_sw .monosashi .cont .pic.suisou {
    width: 100%;
  }
  .page_sw .monosashi .cont .pic.hikaku {
    width: 100%;
  }
  .page_sw .cost .cont .pic.cost_hikaku {
    width: 100%;
  }

  .page_sw .cont .fl {
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
    .page_sw .cont .fl .txt {
      width: 100%;
      margin-bottom: 20px;
    }
    .page_sw .cont .fl .thumb {
      width: 100%;
    }
    .page_sw .cont .fl .thumb + .thumb {
      margin-top: 30px;
    }
      .page_sw .cont .fl .thumb img {
        width: auto;
        max-width: 100%;
        margin: 0 auto;
      }

  .page_sw .cont .fl.bg {
    padding: 20px;
  }
    .page_sw .cont .fl.bg .txt {
      width: 100%;
      margin-bottom: 0;
    }
    .page_sw .cont .fl.bg .thumb {
      width: 100%;
      margin-bottom: 20px;
    }

  .page_sw .cont .bg_g {
    padding: 20px;
  }

  .page_sw .cont .bg_y {
    padding: 20px;
  }
    .page_sw .cont .bg_y p {
      font-size: 18px;
      line-height: 1.6;
    }

  .page_sw .cont .box {
    padding: 20px;
  }
    .page_sw .cont .box h4 {
      font-size: 18px;
      margin-bottom: 20px;
    }
      .page_sw .cont .box h4 span {
        font-size: 22px;
      }
    .page_sw .cont .box .spec_l {
      font-size: 28px;
    }
    .page_sw .cont .box .spec_m {
      font-size: 20px;
    }
    .page_sw .cont .box .spec_s {
      font-size: 16px;
    }
    .page_sw .cont .box.kimitsu .fl {
      margin-bottom: 20px;
    } 

    .page_sw .voice .cont .voice_box {
      padding: 20px;
    }
      .page_sw .voice .cont .voice_box .ttl_area {
        flex-wrap: wrap;
      }
        .page_sw .voice .cont .voice_box .txt {
          width: 100%;
        }
          .page_sw .voice .cont .voice_box .txt .report {
            margin-bottom: 20px;
          }
          .page_sw .voice .cont .voice_box .txt .ttl {
            font-size: 24px;
          }
        .page_sw .voice .cont .voice_box .thumb {
          margin: 0 auto;
        }

        .page_sw .voice .cont .voice_box .pic_area .item + .item {
          margin-bottom: 20px;
        }
          .page_sw .voice .cont .voice_box .pic_area .pic {
            margin-bottom: 15px;
          }
            .page_sw .voice .cont .voice_box .pic_area .pic.fl img {
              width: 100%;
            }
            .page_sw .voice .cont .voice_box .pic_area .pic.fl img + img  {
              width: 100%;
              margin-top: 20px;
            }

/*====================================
	quality
====================================*/
.page_quality .ttl {
  margin-bottom: 20px;
  padding: 20px;
}
  .page_quality .ttl h3 {
    font-size: 22px;
  }
  .page_quality .ttl span {
    font-size: 16px;
  }

.page_quality .cont {
  margin-bottom: 40px;
}

  .page_quality .cont p {
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .page_quality .cont p.bg {
    background-color: #edefdf;
    padding: 20px;
  }
    .page_quality .cont p.bg strong {
      font-size: 16px;
    }

  .page_quality .zeh .cont .pic {
    width: auto;
    max-width: 100%;
    padding-top: 20px;
    margin: 0 auto;
  }

  .page_quality .cont .fl {
    flex-wrap: wrap;
  }
    .page_quality .cont .fl .txt {
      width: 100%;
      margin-bottom: 20px;
    }
    .page_quality .cont .fl .thumb {
      width: 100%;
    }
      .page_quality .cont .fl .thumb img {
        width: auto;
        max-width: 100%;
        margin: 0 auto;
      }

  .page_quality .cont .btn {
    width: 300px;
  }
    .page_quality .cont .btn a {
      height: 60px;
      line-height: 60px;
      padding: 0 10px;
      font-size: 14px;
    }

    .page_quality .cont .box p {
      font-size: 18px;
      text-align: left;
    }

/*====================================
	consultation
====================================*/
.page_consultation .cont {
  margin-bottom: 40px;
}
  .page_consultation .cont .pic {
    margin-bottom: 40px;
  }

  .page_consultation .cont h2 {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .page_consultation .cont p {
    line-height: 2.0;
  }
    .page_consultation .cont p span {
      font-size: 18px;
    }
    .page_consultation .cont td, 
    .page_consultation .cont th {
      line-height: 1.8;
    }
    .page_consultation .cont td {
      width: 100%;
      display: block;
    }
    .page_consultation .cont tr:first-child td {
      border-top: 1px solid #000;
    }
    .page_consultation .cont td + td {
      width: 100%;
      border-width: 0;
      padding-top: 0;
    }
    .page_consultation .cont tr:first-child td + td {
      border-top: none;
    }
      .page_consultation .cont td .btn {
        width: 240px;
      }
        .page_consultation .cont td .btn a {
          height: 50px;
          line-height: 50px;
          font-size: 14px;
          padding: 0 15px;
        }

/*====================================
	catalog
====================================*/
.page_catalog .block {
  margin-bottom: 40px;
}
  .page_catalog #form_area h3,
  .page_catalog .block h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .page_catalog .block .pic {
    margin-bottom: 30px;
  }

  .page_catalog .cont h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }
  .page_catalog .cont .otodoke {
    width: 300px;
    font-size: 18px;
  }
  .page_catalog .cont .btn {
    margin: 0 auto 80px;
  }
  .page_catalog .cont .osusume {
    padding: 20px 20px 0;
    flex-wrap: wrap;
  }
    .page_catalog .cont .circle {
      width: 100px;
      height: 100px;
      font-size: 16px;
    } 
    .page_catalog .cont .osusume .thumb {
      width: 100%;
      padding-top: 30px;
    }
      .page_catalog .cont .osusume .thumb img {
        width: auto;
        max-width: 100%;
        margin: 0 auto 20px;
      }
    .page_catalog .cont .osusume .txt {
      width: 100%;
    }
      .page_catalog .cont .osusume .txt li {
        padding: 15px 15px 15px 40px;
        background: #fff url(../img/icon_check.png) no-repeat;
        background-position: 10px 20px;
        background-size: 16px;
      }

  .page_catalog .faq .pic img {
    margin: 40px auto 40px;
  }

  .page_catalog #form_area {
    margin-top: 0;
  }

/*====================================
	thanks
====================================*/
.page_thanks {
  padding-top: 70px;
  padding-bottom: 70px;
}
  .page_thanks h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .page_thanks .cont {
    line-height: 1.6;
  }
  .page_thanks .btn {
    width: 250px;
  }
  .page_thanks .btn a {
    height: 50px;
    line-height: 50px;
  }

/*====================================
	privacy-policy
====================================*/
  .page_privacy-policy p {
    line-height: 1.6;
  }

/*====================================
	thanks
====================================*/
.page_404 {
  padding-top: 70px;
  padding-bottom: 70px;
}
  .page_404 h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .page_404 .cont {
    line-height: 1.6;
  }
  .page_404 .btn {
    width: 250px;
  }
  .page_404 .btn a {
    height: 50px;
    line-height: 50px;
  }

}