@charset "UTF-8";
/*===============================================
 *	ブラウザリセット
===============================================*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"), url("../fonts/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2"), url("../fonts/NotoSansJP-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Robot";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Roboto-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Robot";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Roboto-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Freehand";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Freehand_Signature.woff") format("woff");
  font-display: swap;
}
body {
  font-size: 100%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  letter-spacing: 0.05em;
  height: 100%;
  position: relative;
}

table {
  font-size: inherit;
}

select, input, textarea {
  font: 99% arial, helvetica, clean, sans-serif;
}

pre, code {
  font: 115% monospace;
  font-size: 100%;
}

br {
  letter-spacing: normal;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: normal;
}

address, em {
  font-style: normal;
}

strong, th {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
}

th, td {
  text-align: left;
  border: none;
  font-weight: normal;
}

hr {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: bold;
  letter-spacing: 0.05em;
}

img, fieldset {
  border: 0;
  vertical-align: bottom;
}

li {
  list-style-type: none;
}

ul, ol, dl {
  margin: 0;
  list-style-position: outside;
  list-style-type: none;
}

li, dt, dd {
  font-size: 100%;
}

dt {
  font-weight: normal;
}

a {
  text-decoration: underline;
  outline: none;
}

a:hover {
  text-decoration: none;
}

form, input {
  padding: 0;
  margin: 0;
}

iframe {
  border: none;
}

figure {
  margin: 0;
}

img {
  height: auto;
  width: 100%;
}

p {
  line-height: 1.75;
}

i {
  font-family: "icon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

/* --------------このサイトオリジナル設定--------------- */
a {
  color: #333;
  outline: none;
  text-decoration: none;
}
/*====================== clearFix ======================*/
.clearfix:before, .clearfix:after {
  content: "";
  display: block;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*=============================================== *
	パターン
===============================================*/
.column {
  display: flex;
  flex-direction: column;
}

.row {
  display: flex;
  flex-direction: row;
}

.row-rev {
  display: flex;
  flex-direction: row-reverse;
}

.wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.space-btw {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.js-center {
  justify-content: center;
}

.al-center {
  align-items: center;
}

.al-start {
  align-items: flex-start;
}

.al-end {
  align-items: flex-end;
}

.al-base {
  align-items: baseline;
}

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

 *	common

===============================================*/
html body {
  background: #fff;
  color: #333;
  font-size: 17px;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.05em;
}
html body.overlay::after {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}

em {
  font-weight: bold;
}

a {
  word-break: break-word;
}

.sp {
  display: none;
}

.inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.inner_wide {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.txt_primarycolor {
  color: var(--site-primary);
  font-weight: bold;
}

.txt_keycolor {
  color: var(--site-keycolor);
  font-weight: bold;
}

.txt_white {
  color: #fff;
}

.txt_yellow {
  color: #f4da33;
}

.underline_yellow {
  background: linear-gradient(transparent 85%, #ffd800 0%);
  background-position-y: -4px;
  line-height: 0.7;
}

.underline_red {
  background: linear-gradient(transparent 85%, #f4dade 0%);
  background-position-y: -4px;
  line-height: 0.7;
}

.robot {
  font-family: "Robot";
  font-weight: bold;
}

.en {
  font-family: "Freehand";
  color: #7eb6e3;
  font-weight: normal;
}

.bg_white {
  background-color: #fff;
}

.bg_blue {
  background: var(--site-primary);
}

.bg_deepblue {
  background: var(--site-secondary);
}

.bg_paleblue {
  background: #e7f3fa;
}

.bg_dot {
  background: url(../img/common/bg_dot.png);
}

.lg_inner_space {
  padding: 55px 0 80px;
}

.lg_inner_space02 {
  padding: 68px 0 80px;
}

.md_inner_space {
  padding: 50px 50px;
}

.md_inner_space02 {
  padding: 50px 50px 40px;
}

.md_radius {
  border-radius: 20px;
  overflow: hidden;
}

.sm_radius {
  border-radius: 10px;
  overflow: hidden;
}

.hover_white {
  display: inline-block;
  position: relative;
}

.hover_white::after {
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.hover_white:hover::after {
  opacity: 0.15;
}

.annotation_txt {
  font-size: 14px;
  padding-left: 1em;
  text-indent: -1em;
  color: #9a9a9a;
}

.skew {
  transform: skewX(-10deg) translateX(10px);
}

.sec_ttl {
  font-size: 67px;
  font-size: min(5vw, 67px);
  letter-spacing: 0.03em;
}
.sec_ttl .size_middle {
  font-size: 0.85em;
}
.sec_ttl .size_small {
  font-size: 0.7em;
}

.content_ttl {
  font-size: min(2.8vw, 37px);
}

.shadow {
  box-shadow: 0 0 50px rgba(51, 51, 51, 0.1);
}

.bg_sankaku_right {
  position: relative;
}
.bg_sankaku_right::before {
  content: "";
  background: #d1e8f6;
  height: 30.2vw;
  width: 41.6vw;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 100% 100%, 100% 0);
  z-index: -1;
}

.bg_sankaku_left {
  position: relative;
}
.bg_sankaku_left::after {
  content: "";
  background: #d1e8f6;
  height: 30.2vw;
  width: 41.6vw;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: -1;
}

.bg_sankaku_right.gray::before {
  background: #ebebeb;
}

.bg_sankaku_left.gray::after {
  background: #ebebeb;
}

.overlap_box .photo {
  width: 51.8%;
}
.overlap_box .txt_box {
  width: 51.8%;
  padding: 50px 50px;
  padding: min(4.46%, 50px) min(4.46%, 50px);
  margin-left: -50px;
  position: relative;
  z-index: 5;
}
.overlap_box .content_ttl {
  line-height: 1.45;
  margin-bottom: 15px;
}

.box_wrapper {
  padding: 60px 90px;
  padding: min(5vw, 60px) min(7.5vw, 90px);
}

.ttl_underbar {
  font-size: min(3.5vw, 47px);
  position: relative;
  margin-bottom: 56px;
}
.ttl_underbar::after {
  content: "";
  background: var(--site-primary);
  width: 50px;
  height: 5px;
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
}

.top_intro_box {
  margin-bottom: 60px;
}
.top_intro_box .txt_box {
  position: relative;
  padding: min(4.2%, 42px) min(4.46%, 50px) min(5%, 50px);
}
.top_intro_box .txt_box p {
  position: relative;
  z-index: 1;
}

.ttl_left_border {
  font-size: min(2.0vw, 27px);
  position: relative;
  border-bottom: 2px solid #dde5e7;
  padding: 4px 0 10px 25px;
  margin-bottom: 30px;
}
.ttl_left_border::before {
  content: "";
  background: linear-gradient(180deg, #87c2e8 0%, #87c2e8 50%, #1085d2 50%, #1085d2 100%);
  height: 56%;
  width: 6px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ttl_underline {
  font-size: 27px;
  position: relative;
  border-bottom: 2px solid #dde5e7;
  padding: 4px 0 10px 0;
  margin-bottom: 30px;
}

.txt_outline {
  text-shadow: #fff 2px 0px 0px, #fff 1.75517px 0.958851px 0px, #fff 1.0806px 1.68294px 0px, #fff 0.141474px 1.99499px 0px, #fff -0.832294px 1.81859px 0px, #fff -1.60229px 1.19694px 0px, #fff -1.97998px 0.28224px 0px, #fff -1.87291px -0.701566px 0px, #fff -1.30729px -1.5136px 0px, #fff -0.421592px -1.95506px 0px, #fff 0.567324px -1.91785px 0px, #fff 1.41734px -1.41108px 0px, #fff 1.92034px -0.558831px 0px;
}

.note_box {
  background: #fff9f8;
  border: 4px solid #e69993;
  padding: 3.2% 4.8% 3.5%;
}
.note_box p {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-left: 70px;
}
.note_box p::before {
  content: "";
  background: url(../img/common/icon_attention.png) no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.row_box .txt_box {
  width: 52%;
}
.row_box .photo {
  width: 43%;
}

.border_box {
  border: 4px solid #d2e5f4;
}

.border_link {
  border-bottom: 1px solid #333;
  padding-bottom: 4px;
  position: relative;
}
.border_link::after {
  content: "";
  background: url(../img/common/icon_link.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  right: -25px;
  top: 6px;
}
.border_link:hover {
  color: var(--site-primary);
  border-color: var(--site-primary);
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {pointer-events: none;}
}

@media screen and (max-width: 1300px) {
  .inner_wide {
    width: 94%;
  }
  .overlap_box .txt_box {
    padding: 3% 4% 3.5%;
    margin-top: 25px;
  }
  .top_intro_box .txt_box {
    padding: 3% 4% 3.5%;
  }
}

@media only screen and (max-width: 1024px) {
  html body {
    font-size: 16px;
  }
  .inner {
    margin: 0 auto;
    max-width: initial;
    width: 94%;
  }
  .inner_wide {
    margin: 0 auto;
    max-width: initial;
    width: 94%;
  }
  .content_ttl {
    font-size: 27px;
  }
  .overlap_box {
    align-items: flex-start;
  }
  .overlap_box .txt_box {
    margin-top: 2.5% !important;
  }
  .box_wrapper {
    padding: 4.5vw 3.5vw;
  }
}
@media only screen and (max-width: 960px) {
  html body {
    font-size: 14px;
  }
  .lg_inner_space {
    padding: 5vw 0;
  }
  .lg_inner_space02 {
    padding: 5vw 0;
  }
  .md_inner_space {
    padding: 4vw 4vw;
  }
  .md_inner_space02 {
    padding: 4vw 4vw 3.5vw;
  }
  .annotation_txt {
    font-size: 12px;
  }
  .content_ttl {
    font-size: 22px;
  }
  .ttl_underbar {
    margin-bottom: 35px;
  }
  .ttl_underbar::after {
    bottom: -14px;
  }
  .box_wrapper {
    padding: 4.5vw 5.5vw;
  }
  .top_intro_box {
    margin-bottom: 50px;
  }
  .ttl_left_border {
    font-size: 20px;
  }
  .ttl_underline {
    font-size: 20px;
  }
  .note_box p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 568px) {
  html {
    scroll-padding-top: 65px;
  }
  html body {
    font-size: 15px;
    margin-top: 0;
  }
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
  }
  .inner {
    margin: 0 auto;
    width: 89.4vw;
  }
  .inner_wide {
    margin: 0 auto;
    width: 89.4vw;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .lg_inner_space {
    padding: 32px 0 40px;
  }
  .lg_inner_space02 {
    padding: 32px 0 40px;
  }
  .md_inner_space {
    padding: 20px 5.3vw;
  }
  .md_inner_space02 {
    padding: 20px 5.3vw;
  }
  .md_radius {
    border-radius: 10px;
  }
  .sm_radius {
    border-radius: 10px;
  }
  .sp_side_margin {
    margin: 0 -5.3vw;
  }
  .sp_center {
    text-align: center;
  }
  .annotation_txt {
    font-size: 12px;
  }
  .underline_yellow {
    border-width: 5px;
  }
  .shadow {
    box-shadow: 0 0 25px rgba(51, 51, 51, 0.1);
  }
  .sec_ttl {
    font-size: 34px;
    line-height: 1.25;
  }
  .sec_ttl .size_small {
    font-size: 0.59em;
  }
  .skew {
    transform: skew(-10deg) translateX(5px);
  }
  .content_ttl {
    font-size: 24px;
  }
  .bg_sankaku_right::before {
    width: 52vw;
    height: 36vw;
  }
  .bg_sankaku_left::before {
    width: 52vw;
    height: 37.6vw;
  }
  .bg_sankaku_right_sp {
    position: relative;
  }
  .bg_sankaku_right_sp::before {
    content: "";
    background: #d1e8f6;
    width: 52vw;
    height: 36vw;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
            clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: -1;
  }
  .overlap_box {
    flex-direction: column;
  }
  .overlap_box .photo {
    width: 100%;
  }
  .overlap_box .txt_box {
    width: calc(100% - 40px) !important;
    margin: -20px auto 0 !important;
    padding: 20px 20px !important;
  }
  .overlap_box .txt_box p {
    position: relative;
    z-index: 1;
  }
  .overlap_box .content_ttl {
    text-align: center;
    margin-bottom: 8px;
  }
  .box_wrapper {
    width: 100%;
    padding: 20px 5.3vw;
  }
  .top_intro_box {
    margin: 0 -5.3vw 35px;
    width: initial;
    padding: 25px 5.3vw 30px;
  }
  .top_intro_box .content_ttl {
    margin-bottom: 10px;
  }
  .ttl_underbar {
    font-size: 29px;
    line-height: 1.25;
    padding-bottom: 6px;
    margin-bottom: 32px;
  }
  .ttl_underbar::after {
    width: 35px;
    height: 4px;
    bottom: -12px;
  }
  .ttl_left_border {
    font-size: 21px;
    padding: 4px 0 8px 17px;
    margin-bottom: 20px;
  }
  .ttl_underline {
    font-size: 21px;
    padding: 4px 0 8px 0;
    margin-bottom: 18px;
  }
  .note_box {
    padding: 15px 20px 17px;
  }
  .note_box p {
    padding: 0;
  }
  .note_box p::before {
    width: 40px;
    height: 40px;
    position: relative;
    top: 8px;
    left: initial;
    float: left;
    margin: 0 15px 10px 0;
    transform: none;
  }
  .row_box {
    flex-direction: column-reverse;
  }
  .row_box .txt_box {
    width: 100%;
  }
  .row_box .photo {
    width: 100%;
  }
  .border_link::after {
    right: -20px;
    top: 4px;
  }
}
/*===============================================
 *	br
===============================================*/
@media screen and (min-width: 1025px) {
  .br-pc {
    display: block;
  }
  .br-tb {
    display: none;
  }
  .br-sp {
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1024px) {
  .br-pc {
    display: none;
  }
  .br-tb {
    display: block;
  }
  .br-sp {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .br-pc {
    display: none;
  }
  .br-tb {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
/*===============================================
 *	ボタン
===============================================*/
.btn_wrapper {
  margin-top: 50px;
  position: relative;
  z-index: 10;
}

.btn_orange {
  max-width: 500px;
  margin: 0 auto;
  background: #ff8811;
  position: relative;
  z-index: 1;
}

.btn_orange a {
  font-size: 22px;
  display: block;
  padding: 16px 0 20px;
  position: relative;
  background-size: 20px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.btn_orange a::before {
  content: "";
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.btn_orange a:hover::before {
  opacity: 1;
}

.btn_orange a::after {
  content: "";
  background: url(../img/common/icon_arrow-right-white.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  width: 22px;
  height: 10px;
  top: 50%;
  right: 30px;
  transform: translate(0px, -50%);
}

.btn_border {
  background: #fff;
  border: 2px solid #4c99d4;
  position: relative;
  z-index: 1;
}

.btn_border a {
  font-size: 20px;
  font-weight: bold;
  display: block;
  text-align: center;
  padding: 12px 0 13px;
  position: relative;
}

.btn_border a::after {
  content: "";
  background: url(../img/common/icon_arrow-right_blue02.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  width: 22px;
  height: 10px;
  top: 50%;
  right: 30px;
  transform: translate(0px, -50%);
}

.btn_border:hover {
  background: #d0eeff;
}

@media only screen and (max-width: 960px) {
  .btn_wrapper {
    margin-top: 5vw;
  }
  .btn_orange {
    width: 54%;
  }
  .btn_orange a {
    font-size: 18px;
  }
  .btn_border a {
    font-size: 16px;
    padding: 1.2vw 0 1.4vw;
  }
}
@media only screen and (max-width: 568px) {
  .btn_wrapper {
    margin-top: 25px;
  }
  .btn_orange {
    width: 74.6vw;
  }
  .btn_orange a {
    font-size: 17px;
    padding: 12px 5% 14px;
  }
  .btn_orange a::after {
    width: 20px;
    height: 10px;
    right: 16px;
    top: 50%;
  }
  .btn_border a {
    padding: 10px 0 12px;
  }
  .btn_border a::after {
    width: 20px;
    height: 10px;
    right: 15px;
    top: 50%;
  }
}
/*===============================================
 *	header・スマホメニュー
===============================================*/
.header {
  width: 100%;
}
.header.under_page {
  position: relative;
}
.header.under_page .nav_item > a {
  color: #333;
}
.header.under_page .service_nav_btn > a::after {
  background: url(../img/common/icon_arrow-down-blue.svg) no-repeat;
  background-size: contain;
}
.header.under_page .service_nav_btn.open > a {
  color: #fff;
}
.header.under_page .service_nav_btn.open > a::after {
  background: url(../img/common/icon_arrow-down-white.svg) no-repeat;
  background-size: contain;
}
.header:not(.under_page) .nav_item > a {
  position: relative;
}
.header:not(.under_page) .nav_item > a:hover {
  color: #fff;
  background: var(--site-primary);
}

.hd_inner {
  padding: 0 0 0 40px;
}

.hd_logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 20%;
  padding: 15px 0 14px;
}

.hd_btn img {
  width: 100px;
}

.hd_mail {
  margin-left: 20px;
  margin-left: min(1.0vw, 20px);
  position: relative;
  z-index: 1;
}

.hd_line {
  margin-left: 5px;
  position: relative;
  z-index: 1;
}
.global_nav{
  width: 80%;
  justify-content:flex-end;
}
.global_nav .navi-list{
  width: 40%;
}
.global_nav .navi-phonebox .phone-num,
.global_nav .navi-phonebox .phone-txt{
  color: #222;
}
.global_nav > ul {
  gap: 0 6px;
  margin-right: 1em;
}
.global_nav > ul .nav_item {
  font-size: min(1.1vw, 16px);
  font-weight: bold;
  display: flex;
  align-items: center;
  z-index: 100;
}
.global_nav > ul .nav_item > a {
  color: #222;
  padding: 2px 9px 4px;
}
.global_nav > ul .nav_item > a:hover {
  color: var(--site-primary);
}
.global_nav > ul .service_nav_btn {
  z-index: 150;
}
.global_nav > ul .service_nav_btn > a::after {
  content: "";
  background: url(../img/common/icon_arrow-down-blue.svg) no-repeat;
  background-size: contain;
  width: 10px;
  height: 8px;
  display: inline-block;
  margin-left: 8px;
}
.global_nav > ul .service_nav_btn > a:hover {
  color: #fff;
}
.global_nav > ul .service_nav_btn.open > a {
  background: var(--site-primary);
}

.nav_item_sub {
  position: absolute;
  width: 100%;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.nav_item_sub.open {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
.nav_item_sub > .row {
  height: min(26vw, 400px);
}
.nav_item_sub .nav_img {
  width: 31.25%;
  height: 100%;
}
.nav_item_sub .nav_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.nav_item_sub .nav_ttl {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 30px;
}
.nav_item_sub .nav_ttl p {
  font-size: min(3.0vw, 47px);
  font-weight: bold;
  display: inline-block;
}
.nav_item_sub .nav_ttl p::after {
  content: "";
  background: url(../img/common/service_txt.png) no-repeat;
  background-size: contain;
  width: 189px;
  width: min(13vw, 189px);
  height: 64px;
  display: block;
  margin: 5px 0 0 6.5%;
  transform: skewX(10deg);
}
.nav_item_sub .service_nav {
  align-self: center;
  width: 43.75%;
  gap: 0 12%;
}
.nav_item_sub .service_nav_top {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 20px;
  width: 100%;
}
.nav_item_sub .service_nav_top a {
  padding-left: 16px;
  position: relative;
}
.nav_item_sub .service_nav_top a::before {
  content: "";
  background: url(../img/common/icon_circle_arrow.svg) no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  left: -6px;
  top: 7px;
}
.nav_item_sub .service_nav_top a:hover {
  color: var(--site-primary);
}
.nav_item_sub ul:nth-last-of-type(1) li:first-child {
  margin: -2px 0 10px;
}
.nav_item_sub ul:nth-last-of-type(1) li:first-child a {
  line-height: 1.7;
}
.nav_item_sub li {
  margin-bottom: 7px;
  font-size: min(1.2vw, 17px);
  text-indent: -1em;
  padding-left: 1em;
}
.nav_item_sub li a {
  color: #333;
  position: relative;
  padding-left: 16px;
}
.nav_item_sub li a::before {
  content: "";
  background: url(../img/common/icon_arrow_right_blue03.svg) no-repeat;
  width: 7px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 8px;
}
.nav_item_sub li a:hover {
  color: var(--site-primary);
}

.menu_box {
  display: none;
  width: 60px;
  height: 60px;
  background: #00639e;
  margin-left: auto;
}
.menu_box .menu_btn {
  position: relative;
  height: 22px;
  top: 19px;
}
.menu_box .menu_btn span:not(.txt) {
  width: 25px;
}
.menu_box .menu_btn span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  background-color: #fff;
  transition: all 0.4s;
}
.menu_box .menu_btn span:nth-child(1) {
  top: 0;
}
.menu_box .menu_btn span:nth-child(2) {
  top: 10px;
}
.menu_box .menu_btn span:nth-child(3) {
  bottom: 0;
}
.menu_box.active span:nth-child(1) {
  transform: translate(-12px, 10px) rotate(-45deg);
}
.menu_box.active span:nth-child(2) {
  opacity: 0;
}
.menu_box.active span:nth-child(3) {
  transform: translate(-12px, -9px) rotate(45deg);
}

.sp_menu {
  display: none;
}

@media screen and (max-width: 1400px) {
  .hd_inner {
    padding-left: 2vw;
  }
  .hd_btn img {
    width: 6.5vw;
  }
  .hd_mail {
    margin-left: 0;
  }
  .global_nav .navi-list{
    width: 46%;
  }
  .global_nav li {
    font-size: max(1.0vw, 12px);
  }
  .nav_item_sub {
    top: 4.2vw;
  }
  .global_nav .navi-phonebox .phone-num {
    background-size: 30px;
    font-size: max(1.0vw, 24px);
  }
  .global_nav .navi-phonebox .phone-txt {
    letter-spacing: 0;
  }
  .global_nav .navi-phonebox .phone-txt span {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 1024px) {
  .hd_logo {
    padding: 10px 0;
  }
  .global_nav .navi-phonebox .phone-num {
    font-size: max(1.0vw, 22px);
  }
  .global_nav .navi-phonebox .phone-txt {
    font-size: max(1.0vw, 12px);
  }
  .global_nav .navi-phonebox .phone-txt span {
    font-size: max(1.0vw, 12px);
  }
}
@media screen and (max-width: 960px) {
  .hd_mail {
    margin-left: 1vw;
  }
  .global_nav .navi-list {
    width: 54%;
  }
  .global_nav ul {
    gap: 0 1.2vw;
  }
  .global_nav li {
    font-size: 11px;
  }
  .navi-phonebox {
    width: 35%;
  }
  .global_nav .navi-phonebox .phone-num {
    background-size: 25px;
    font-size: max(1.0vw, 16px);
  }
  .global_nav .navi-phonebox .phone-txt {
    font-size: max(1.0vw, 9px);
  }
  .global_nav .navi-phonebox .phone-txt span {
    font-size: max(1.0vw, 9px);
    padding: 2px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    z-index: 100;
  }
  .header.open {
    background: #fff;
  }
  .header.under_page {
    position: fixed;
    background: #fff;
    top: 0;
  }
  .global_nav {
    display: none;
  }
  .hd_logo {
    width: 32vw;
  }
  .menu_box {
    display: block;
  }
  .sp_menu {
    display: block;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 200;
    transition: all 0.5s;
    top: 60px;
    padding-bottom: 60px;
    overflow: scroll;
    visibility: hidden;
    opacity: 0;
  }
  .sp_menu.open {
    visibility: visible;
    opacity: 1;
  }
  .sp_menu > ul {
    background: #fff;
    border-top: 1px solid #e2e2e2;
  }
  .sp_menu > ul li {
    width: 100%;
  }
  .sp_menu > ul li a {
    font-size: 16px;
    font-weight: bold;
    display: block;
    position: relative;
    padding: 18px 0 18px 3%;
    border-bottom: 1px solid #e2e2e2;
  }
  .sp_menu > ul li a::after {
    content: "";
    background: url(../img/common/icon_arrow_right_blue03.svg) no-repeat;
    width: 10px;
    height: 16px;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
  }
  .sp_menu .cv_box {
    background: var(--site-secondary);
    padding: 15px 50px 0;
  }
  .sp_menu .cv_box .tel {
    margin: 0 auto 0 0;
    width: 51.75%;
  }
  .sp_menu .cv_box .mail {
    width: 45%;
    /* margin-left: auto; */
  }
  .sp_menu .cv_box .line {
    width: 45%;
    margin-left: 15px !important;
  }
}
@media screen and (max-width: 568px) {
  .hd_inner {
    padding-left: 10px;
  }
  .hd_logo {
    width: 290px;
    position: relative;
  }
  .hd_logo img {
    margin-top: 3px;
  }
  .sp_menu > ul li a {
    padding: 11px 0 11px 5.3vw;
  }
  .sp_menu > ul li a::after {
    width: 9px;
    height: 13px;
    right: 5.3vw;
  }
  .sp_menu .cv_box {
    padding: 15px 2.6vw 15px;
  }
  .sp_menu .cv_box .line {
    margin-left: 5px;
  }
  .sp_menu .navi-txt {
    background: var(--site-secondary);
    display: block;
    font-size: 15px;
  }
}
/*===============================================
 *	main_visual
===============================================*/
.main_visual {
  background: url(../img/common/mv_bg.jpg) no-repeat right top;
  background-size: auto 100%;
}
.main_visual .mv_inner {
  padding: min(11vw, 190px) 0 0;
}
.main_visual .achievement_box {
  background: rgba(0, 34, 55, 0.8);
  position: relative;
  padding: 15px 0;
}
.main_visual .achievement_box ul {
  gap: 0 30px;
}

.mv_copy_area {
  margin: 0 0 min(5.8vw, 120px) min(2.5vw, 120px);
}
.mv_copy_area .copy_txt {
  max-width: 582px;
  width: 30vw;
}
.mv_copy_area .sub_txt {
  font-size: min(1.3vw, 23px);
  font-weight: bold;
  margin-top: 10px;
}
.mv_copy_area .sub_txt span {
  padding: 9px 0 11px;
  line-height: 2.7;
  background: #fff;
}
.mv_copy_area .sub_txt span:nth-of-type(1) {
  padding-left: 26px;
}
.mv_copy_area .sub_txt span:nth-of-type(2) {
  padding-right: 26px;
}

@media screen and (max-width: 1400px) {
  .mv_copy_area {
    margin-left: 2vw;
  }
  .mv_copy_area .sub_txt {
    font-size: min(1.2vw, 23px);
  }
  .mv_copy_area .sub_txt span {
    padding: 9px 0 11px;
  }
}
@media screen and (max-width: 960px) {
  .mv_copy_area .copy_txt {
    width: 28vw;
  }
}
@media screen and (max-width: 568px) {
  .main_visual {
    background: none;
  }
  .main_visual .mv_inner {
    padding-top: 80px;
    background: url(../img/common/mv_bg_sp.jpg) no-repeat;
    background-size: cover;
  }
  .main_visual .achievement_box {
    padding: 8px 0;
    background: #282828;
  }
  .main_visual .achievement_box ul {
    flex-direction: column;
    width: 89.4vw;
    margin: 0 auto;
  }
  .main_visual .achievement_box ul li {
    padding: 10px 0;
  }
  .main_visual .achievement_box ul li:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .main_visual .achievement_box .medal {
    width: 47.8%;
    bottom: initial;
    top: -27%;
    right: 0;
  }
  .mv_copy_area {
    width: 89.4vw;
    padding-bottom: 60vw;
    margin-bottom: 0;
    margin-left: 5.3vw;
  }
  .mv_copy_area .copy_txt {
    width: 82.7%;
  }
  .mv_copy_area .sub_txt {
    font-size: 17px;
    margin-top: 3px;
    letter-spacing: 0.1em;
  }
  .mv_copy_area .sub_txt span {
    line-height: 2.15;
    padding: 2px 4% 4px !important;
  }
}
/*===============================================
 *	MV直下見出し・ポイント6つ
===============================================*/
.site_ttl_box {
  padding: 13px 0 16px;
}
.site_ttl_box .ttl {
  font-size: 25px;
  position: relative;
  z-index: 1;
}
.site_ttl_box .ttl span {
  background: var(--site-secondary);
  padding: 0 25px;
}
.site_ttl_box .ttl::before {
  content: "";
  background: rgba(255, 255, 255, 0.15);
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.point_box {
  padding: 28px 0;
}
.point_box li {
  background: #fff;
  border: 4px solid #dcc4a4;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 15.7%;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0;
  padding: 18px 0 14px;
  position: relative;
  z-index: 1;
}
.point_box li img {
  width: 64px;
  margin-bottom: 5px;
}
.point_box li::before {
  content: "";
  background: #faf7f2;
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: -1;
}

@media screen and (max-width: 1400px) {
  .point_box li {
    font-size: min(1.5vw, 21px);
  }
}
@media screen and (max-width: 960px) {
  .site_ttl_box .ttl {
    font-size: 21px;
  }
  .point_box {
    padding: 2.5% 0;
  }
  .point_box li {
    font-size: 13px;
    padding: 10px 0 8px;
  }
  .point_box li img {
    width: 45px;
  }
}
@media screen and (max-width: 568px) {
  .site_ttl_box {
    padding: 10px 0 12px;
  }
  .site_ttl_box .ttl {
    font-size: 18px;
  }
  .site_ttl_box .ttl::before {
    content: none;
  }
  .site_ttl_box .ttl span {
    padding: 0;
  }
  .point_box {
    padding: 25px 0;
  }
  .point_box ul {
    flex-wrap: wrap;
    gap: 10px 0;
  }
  .point_box li {
    width: 48.5%;
    font-size: 15px;
    padding: 12px 0 8px;
  }
  .point_box li img {
    width: 41px;
    margin-bottom: 3px;
  }
}
/*===============================================
 *	TOPキャンペーンバナーエリア
===============================================*/
.top_content_wrap {
  padding: 60px 0;
}
.invoice_bnr {
  max-width: 1120px;
  height: auto;
  display: block;
  margin: 60px auto 0 auto;
}
.invoice_bnr a:hover img {
  opacity: 0.85;
}
.camp_bnr_box {
  padding: 0 0 35px;
}

.camp_bnr_box img {
  margin-bottom: 14px;
}

.camp_bnr_box .annotation_txt {
  padding: 0;
  text-indent: 0;
}

.credit_box .ttl {
  background: #b98a4a;
  font-size: min(2.0vw, 27px);
  font-weight: bold;
  padding: 12px 0 14px;
}
.credit_box .box_inner {
  padding: 20px 25px;
  border: 8px solid #b98a4a;
  border-top: none;
}
.credit_box ul {
  width: 56%;
}
.credit_box ul li {
  width: 32%;
  display: flex;
  align-items: center;
  gap: 0 8px;
  border: 4px solid #dcc4a4;
  padding: 15px 5px 15px 6px;
  font-size: min(1.8vw, 20px);
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.credit_box ul li::before {
  content: "";
  background: #faf7f2;
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: -1;
}
.credit_box ul li img {
  width: 50px;
}
.credit_box .card-image {
  width: 42%;
}

@media screen and (max-width: 1024px) {
  .camp_bnr_box {
    padding: 0 0 3.5vw;
  }
}
@media screen and (max-width: 960px) {
  .top_content_wrap {
    padding: 5vw 0;
  }
  .invoice_bnr {
    margin-bottom: 3.5vw;
  }
  .camp_bnr_box img {
    margin-bottom: 8px;
  }
  .credit_box .ttl {
    font-size: 18px;
  }
  .credit_box ul li img {
    width: 35px;
  }
}
@media screen and (max-width: 568px) {
  .top_content_wrap {
    padding: 40px 0;
  }
  .invoice_bnr {
    margin: 30px auto 0 auto;
    width: 89.4vw;
  }
  .camp_bnr_box {
    padding: 0 0 20px;
  }
  .camp_bnr_box.top_bnr {
    padding-bottom: 20px;
  }
  .credit_box .ttl {
    padding: 10px 0 12px;
  }
  .credit_box .box_inner {
    flex-direction: column;
    border-width: 4px;
    padding: 17px 17px 10px;
  }
  .credit_box ul {
    width: 100%;
  }
  .credit_box ul li {
    flex-direction: column;
    font-size: 13px;
    text-align: center;
    padding: 10px 0 10px;
    border-width: 3px;
    line-height: 1.4;
  }
  .credit_box ul li img {
    margin-bottom: 5px;
  }
  .credit_box .card-image {
    width: 100%;
    margin-top: 10px;
  }
}
/*===============================================
 *	メディア掲載
===============================================*/
.sec_media {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.sec_media .sec_ttl_box {
  padding: 12px 0 25px;
  margin-top: -12px;
  position: relative;
  background: url(../img/common/bg_town03.png) no-repeat bottom center;
  background-size: 88% auto;
}
.sec_media .sec_ttl_box::before {
  content: "";
  background: url(../img/common/media_ttl_illust01.png) no-repeat;
  background-size: contain;
  width: 224px;
  height: 145px;
  position: absolute;
  left: 10%;
  bottom: 0;
}
.sec_media .sec_ttl_box::after {
  content: "";
  background: url(../img/common/media_ttl_illust02.png) no-repeat;
  background-size: contain;
  width: 184px;
  height: 144px;
  position: absolute;
  right: 11%;
  bottom: 0;
}

.media_intro {
  padding: 60px 60px;
}
.media_intro .photo {
  width: 48.3%;
}
.media_intro .txt_box {
  width: 48.3%;
}
.media_intro .content_ttl {
  margin: -15px 0 10px;
}
.media_intro .sub_box {
  background: #f5f5f5;
  padding: 23px 40px 26px;
  margin-top: 28px;
}
.media_intro .sub_box .ttl {
  font-size: 22px;
  position: relative;
  padding-left: 23px;
  margin-bottom: 12px;
}
.media_intro .sub_box .ttl::before {
  content: "";
  background: #e69993;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 15px;
}

.media_list {
  margin: 0 auto;
  /*width: 900px;*/
  width: 1120px;
}


/*.media_list .media01 .slide-content {
  background: var(--site-secondary) url(../img/common/num_freehand01.png) no-repeat right 30px bottom 30px;
}
.media_list .media02 .slide-content {
  background: var(--site-secondary) url(../img/common/num_freehand02.png) no-repeat right 30px bottom 30px;
}
.media_list .media03 .slide-content {
  background: var(--site-secondary) url(../img/common/num_freehand03.png) no-repeat right 30px bottom 30px;
}
.media_list .media04 .slide-content {
  background: var(--site-secondary) url(../img/common/num_freehand04.png) no-repeat right 30px bottom 30px;
}
.media_list .media05 .slide-content {
  background: var(--site-secondary) url(../img/common/num_freehand05.png) no-repeat right 30px bottom 30px;
}
.media_list .media06 .slide-content {
  background: var(--site-secondary) url(../img/common/num_freehand06.png) no-repeat right 30px bottom 30px;
}
.media_list .swiper {
  overflow: visible;
}
.media_list .swiper-slide {
  opacity: 0.75;
  transform: scale(0.8);
  transition: 0.4s;
}
.media_list .swiper-slide.swiper-slide-active, .media_list .swiper-slide.swiper-slide-next {
  opacity: 1;
  transform: scale(1);
}
.media_list .slide-content {
  color: #fff;
  padding: 25px 40px 32px;
  position: relative;
}
.media_list .slide-title {
  font-size: 27px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.media_list .slide-title.single_row {
  padding: 20px 0 21px;
}
.media_list .slide-title a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 8px;
}
.media_list .slide-title a:hover {
  text-decoration: none;
}
.media_list .swiper-button-prev, .media_list .swiper-button-next {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.media_list .swiper-button-prev:hover::after, .media_list .swiper-button-next:hover::after {
  content: "";
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.media_list .swiper-button-prev {
  background: url(../img/common/swiper-nav-prev.png) no-repeat;
  background-size: cover;
  left: -72px;
}
.media_list .swiper-button-next {
  background: url(../img/common/swiper-nav-next.png) no-repeat;
  background-size: cover;
  right: -72px;
}
.media_list .swiper-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.media_list .swiper-pagination-bullet {
  height: 5px;
  background: #ccc;
  width: 15.5%;
  transition: 0.3s;
}
.media_list .swiper-pagination-bullet-active {
  background: var(--site-primary);
  transition: 0.3s;
}

@media only screen and (max-width: 1024px) {
  .sec_media .sec_ttl_box::before {
    width: 168px;
    height: 108.75px;
  }
  .sec_media .sec_ttl_box::after {
    width: 138px;
    height: 108px;
  }
  .media_intro {
    padding: 4vw 4vw;
  }
  .media_intro .sub_box {
    padding: 5% 8% 6%;
    margin-top: 6%;
  }
  .media_list .slide-content {
    padding: 3% 6% 6.5%;
    background-size: 25% auto !important;
    background-position: right 15px bottom 20px !important;
  }
  .media_list .slide-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .media_list .slide-title.single_row {
    padding: 17px 0 19px;
  }
  .media_list .swiper-button-prev {
    left: -3%;
  }
  .media_list .swiper-button-next {
    right: -3%;
  }
}
@media only screen and (max-width: 960px) {
  .sec_media .sec_ttl_box::before {
    width: 145.6px;
    height: 94.25px;
    left: 7%;
  }
  .sec_media .sec_ttl_box::after {
    width: 119.6px;
    height: 93.6px;
    right: 7%;
  }
  .media_intro .content_ttl {
    margin: -8px 0 10px;
  }
  .media_intro .sub_box .ttl {
    font-size: 19px;
    margin-bottom: 7px;
  }
  .media_list {
    width: 85%;
  }
  .media_list .slide-title {
    font-size: 19px;
  }
  .media_list .slide-title.single_row {
    padding: 15px 0 14px;
  }
  .media_list .swiper-button-prev, .media_list .swiper-button-next {
    width: 45px;
    height: 45px;
  }
}*/

@media only screen and (max-width: 1024px) {
  .sec_media .sec_ttl_box::before {
    width: 168px;
    height: 108.75px;
  }
  .sec_media .sec_ttl_box::after {
    width: 138px;
    height: 108px;
  }
}
@media only screen and (max-width: 960px) {
  .sec_media .sec_ttl_box::before {
    width: 145.6px;
    height: 94.25px;
    left: 7%;
  }
  .sec_media .sec_ttl_box::after {
    width: 119.6px;
    height: 93.6px;
    right: 7%;
  }
}
@media only screen and (max-width: 568px) {
  .sec_media .sec_ttl_box {
    padding-bottom: 16px;
    background: none;
  }
  .sec_media .sec_ttl_box::before {
    background: url(../img/common/media_ttl_illust01_sp.png) no-repeat;
    background-size: contain;
    width: 100px;
    height: 92px;
    left: -3%;
  }
  .sec_media .sec_ttl_box::after {
    background: url(../img/common/media_ttl_illust02_sp.png) no-repeat;
    background-size: contain;
    width: 81px;
    height: 92px;
    right: 0;
  }
  .media_intro {
    margin: 0 -5.3vw;
    flex-direction: column;
    padding: 25px 5.3vw;
  }
  .media_intro .photo {
    width: 100%;
  }
  .media_intro .txt_box {
    width: 100%;
  }
  .media_intro .content_ttl {
    margin: 14px 0 8px;
  }
  .media_intro .sub_box {
    margin-top: 20px;
    padding: 15px 20px 15px;
  }
  .media_intro .sub_box .ttl {
    line-height: 1.4;
    padding-left: 19px;
  }
  .media_intro .sub_box .ttl::before {
    top: 10px;
  }
  .media_intro .sub_box p {
    font-size: 14px;
  }
  .media_list {
    width: 89.4vw;
    margin: 35px auto 0;
  }
  /*
  .media_list .slide-content {
    background-size: 33% auto !important;
    background-position: right 10px bottom 10px !important;
  }
  .media_list .swiper-pagination, .media_list .swiper-button-prev, .media_list .swiper-button-next {
    display: none;
  }
  .media_list .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px 0;
  }
  .media_list .swiper {
    width: 100%;
  }
  .media_list .swiper-slide {
    opacity: 1;
    width: 47.8%;
    transform: scale(1);
  }
  .media_list .slide-content {
    padding: 16px 18px;
  }
  .media_list .slide-content p {
    font-size: 13px;
  }
  .media_list .slide-title {
    font-size: 14px;
    margin: 0 -15px 12px;
  }
  .media_list .slide-title.single_row {
    padding: 10px 0 12px;
  }
  .media_list .slide-title.double_row_sp {
    padding: 0;
  }
  .media_list .slide-title a {
    text-underline-offset: 5px;
  }*/
}
/*===============================================
 *	20240529追記
===============================================*/
.media-slide{
  background: var(--site-primary);
  padding: 30px;
}
.slide-title{
  background: #fff;
  padding:40px 30px 20px;
  width: 55%;
  position: relative;
  text-align: center;
}
.media-slide .news p::before{
  content: '';
  background: url(../img/common/icon_cm.png)no-repeat;
  background-size: contain;
  width: 75px;
  height: 52px;
  position: absolute;
  left: 20px;
  top: 20px;
}
.media-slide .magazine p::before{
  content: '';
  background: url(../img/common/icon-magazine.png)no-repeat;
  background-size: contain;
  width: 69px;
  height: 52px;
  position: absolute;
  left: 20px;
  top: 20px;
}
.media-slide .news-paper p::before{
  content: '';
  background: url(../img/common/icon-news.png)no-repeat;
  background-size: contain;
  width: 56px;
  height: 48px;
  position: absolute;
  left: 20px;
  top: 20px;
}
.media-slide .book p::before{
  content: '';
  background: url(../img/common/icon_book.png)no-repeat;
  background-size: contain;
  width: 48px;
  height: 57px;
  position: absolute;
  left: 20px;
  top: 20px;
}
.media-slide .book{
  padding: 50px 30px 20px;
}
.media-slide .no-link p{
  padding-top: 30px;
  padding:45px 30px 0!important;
  line-height: 1.5!important;
}
.slide-title p{
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}
.slide-title p span{
  font-size: 30px;
  color: #0077C2;
}
.slide-title a{
  max-width: 200px;
  margin: 20px auto 0;
  display: block;
}
.slide-title a img{
  width: 100%;
  max-width: 200px;
}
.slide-title a.slide-link{
  max-width: 100%;
  display: inline-block;
  margin: 0 auto 5px;
}
.slide-title a.slide-link span{
  border-bottom: 3px solid #17a5d3;
  line-height: 1.4;
}
.slide-title a.slide-link:hover span{
  border-bottom: none;
}
.slick-slide .slide-img{
  max-width: 487px;
  width: 45%;
}
.slick-slide .slide-img img{
  max-width: 487px;
  width: 100%;
}
#thumbs{
  margin-top: 25px;
}

.slide-arrow{
  width: 40px;
  height: 40px;
}
.slick-slider .prev-arrow{
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  z-index: 10;
}
.slick-slider .next-arrow{
  position: absolute;
  right: -70px;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  z-index: 10;
}
#slider .slick-list,
#slider .slick-track{
  height: 281px;
}
#thumbs .slick-slide,
#thumbs .slick-track{
  /* height: 101px; */
}
#thumbs .slick-slide {
  margin-right: 10px;
}
#thumbs .slick-center{
  position: relative;
}
#thumbs .slick-center::before {
  position: absolute;
  content: '';
  width: 100%;
  height:100% ;
  left: 0;
  top: 0;
  background-color: rgba(255,255,255,.5);
  z-index: 1;
  }
  @media only screen and (max-width: 1024px) {
    .media_list{
      width: 94%;
    }
    .slide-title{
      padding: 50px 30px 20px;
    }
    .media-slide .book{
      padding: 30px 30px 20px;
    }
    .slide-title p span{
      font-size: 28px;
    }
    #thumbs .slick-slide,
    #thumbs .slick-track{
      height: 84px;
    }
  
  }
  @media only screen and (max-width: 768px) {
      .slide-title p{
          font-size: 18px;
      }
      .slide-title p span{
          font-size: 22px;
      }
      .slide-title a img{
          max-width: 150px;
      }
      .slide-title a{
          max-width: 150px;
          margin: 10px auto 0;
      }
      .media-slide .news p::before{
          width: 55px;
          height: 32px;
      }
      .l-inner .media-slide{
          max-width: 86%;
          margin: 30px auto;
      }
      .slide-title{
          padding: 40px 15px 10px;
      }
      #thumbs{
          margin-top: 0;
      }
      #slider .slick-list,
      #slider .slick-track{
        height: 31vw;
      }
      #thumbs .slick-list,
      #thumbs .slick-track{
        height: 7.6vw;
      }
      .book{padding: 23px 15px 10px;}
      .book p::before {
        width: 40px;
      }
  }
  @media only screen and (max-width: 568px) {
    #media-sec{
      margin-bottom: 30px;
    }
    .slick-slide .slide-img{ 
      width: 100%;
    }
    .slick-slide img{
      width: 100%;
    }
    .media-slide{
      padding: 20px;
      /*margin: 20px 0;*/
      margin: 0 auto;
    }
    .media_list {
      width: 100%;
    }
    .slick-slide .row-rev{
        flex-direction: column;
    }
    .l-inner .media-slide{
        max-width: 75%;
    }
    .slide-title{
        width: 100%;
    }
    .l-inner .media-slide{
        padding: 20px;
        margin: 20px auto;
    }
    #slider .slick-list,
    #slider .slick-track{
      height: 98vw;
    }
    #thumbs .slick-list,
    #thumbs .slick-track{
      height: auto;
    }
    #thumbs{
        margin-top: 10px;
    }
    #thumbs .slick-center::before {
        height: 100%;
        width: 100%;
    }
    #thumbs .slick-slide{
      height: auto;
    }
    .slide-title{
        padding: 30px 0 20px;
        min-height: 155px;
    }
    .slide-title p span {
      font-size: 20px;
    }
    .slide-arrow{
        width: 25px;
        height: 25px;
    }
    .slick-slider .prev-arrow{
        top:51%;
        left: -20px;
    }
    .slick-slider .next-arrow{
        top:51%;
        right: -45px;
    }
    .media-slide .news p::before {
      width: 40px;
    }
    .media-slide .news-paper p::before{
        width: 40px;
        height: 39px;
    }
    .media-slide .magazine p::before{
        width: 40px;
        height: 37px;
    }
    .media-slide .book p::before{
        width: 32px;
        height: 45px;
    }
    .media-slide .book{
        padding: 20px 0 15px;
    }
    .media-slide .book p{
      font-size: 16px;
    }
    .media-slide .book p span{
      font-size: 18px;
    }
    .media-slide .no-link p{
      padding: 28px 20px 25px !important;
    }
}

/*===============================================
 *	対応地域
===============================================*/
.sec_area-list .sec_ttl .skew {
  display: inline-block;
}
.sec_area-list .sec_ttl .size_middle {
  position: relative;
  margin-left: 1em;
}
.sec_area-list .sec_ttl .size_middle::before {
  content: "";
  background: url(../img/common/icon_pin.png) no-repeat;
  background-size: contain;
  width: 56px;
  height: 61px;
  position: absolute;
  left: -76px;
  top: 16%;
  transform: skew(10deg);
}
.sec_area-list .txt {
  font-size: 19px;
  line-height: 1.8;
  margin: 12px 0 32px;
}
.sec_area-list.under_page {
  position: relative;
  z-index: 1;
}
.sec_area-list.under_page .area_block .ttl {
  font-size: min(2.8vw, 37px);
  padding-right: min(10vw, 150px);
}
.sec_area-list.under_page .area_block .ttl .en {
  font-size: 2.7em;
  line-height: 0;
  position: relative;
  top: min(1.3vw, 20px);
  margin-right: 38px;
  display: inline-block;
  transform: skewX(-10deg);
}

.area_block {
  margin-top: 20px;
}
.area_block .ttl {
  font-size: 30px;
  padding: 16px 0 18px;
}
.area_block .hokkaido-touhoku .area_label {
  background: #4c99d4;
}
.area_block .kantou .area_label {
  background: #00aca8;
}
.area_block .chubu .area_label {
  background: #8dc33e;
}
.area_block .kansai .area_label {
  background: #f29600;
}
.area_block .chugoku .area_label {
  background: #8d80bb;
}
.area_block .kyusyu .area_label {
  background: #dc689b;
}
.area_block .map_image {
  width: 33.3%;
  max-width: 339px;
}

.area_block .area_content {
  align-items: flex-start;
}

.area_block .area_wrapper {
  width: 67%;
}

.area_block .area_label {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 4px 0 5px;
  min-width: 150px;
  box-sizing: border-box;
  margin-right: 15px;
}

.area_block .area_wrapper > ul > li {
  font-size: 17px;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin-bottom: 15px;
  width: auto;
}

.area_block .area_wrapper .area_items {
  gap: 5px 0;
}

.area_block .area_wrapper .area_items li {
  margin: 0 5px 5px 0;
}

.area_block .area_wrapper .area_items li::after {
  content: "/";
  margin-left: 5px;
}

.area_block .area_wrapper .area_items li a {
  padding: 0 0 4px;
  border-bottom: 1px solid #333;
}

.area_block .area_wrapper .area_items li a:hover {
  color: var(--site-primary);
  border-bottom: 1px solid var(--site-primary);
}

.area_block .area_wrapper .area_items li a.disabled {
  pointer-events: none;
  border: none;
}

.area_block .annotation_txt {
  font-size: 15px;
  margin: 35px 0 -10px;
}

@media only screen and (max-width: 1024px) {
  .sec_area-list.under_page .txt {
    font-size: 16px;
  }
  .area_block .ttl {
    font-size: 27px;
  }
  .area_block .area_label {
    font-size: 16px;
    min-width: 125px;
  }
}
@media only screen and (max-width: 960px) {
  .area_block .ttl {
    font-size: 24px;
    padding: 10px 0 13px;
  }
  .sec_area-list .sec_ttl .size_middle::before {
    width: 44px;
    height: 48px;
    left: -60px;
    top: 0;
  }
}
@media only screen and (max-width: 568px) {
  .sec_area-list .sec_ttl .size_middle {
    margin-left: 0;
  }
  .sec_area-list .sec_ttl .size_middle::before {
    width: 32px;
    height: 35px;
    left: -43px;
    top: 5px;
  }
  .sec_area-list .area_block {
    margin: 16px -5.3vw 0;
  }
  .sec_area-list .area_block .ttl {
    font-size: 20px;
    text-align: left;
    background: var(--site-primary) url(../img/common/area_badge.png) no-repeat;
    background-size: 88px auto;
    background-position: left 5.25vw top 50%;
    padding: 18px 0 18px 120px;
  }
  .sec_area-list.under_page .area_block .ttl {
    background: var(--site-primary);
    font-size: 23px;
    padding: 10px 88px 13px 0;
    text-align: center;
  }
  .sec_area-list.under_page .area_block .ttl .en {
    font-size: 55px;
    top: 10px;
    margin-right: 18px;
  }
  .sec_area-list.under_page .txt {
    font-size: 17px;
    margin: 18px 0 26px;
  }
  .sec_area-list .area_content {
    background: #fff url(../img/common/area_map_sp.png) no-repeat center top 35px;
    background-size: 89.4% auto;
    padding-top: 25px;
  }
  .sec_area-list .area_wrapper {
    width: 88%;
    margin: 0 auto;
  }
  .sec_area-list .area_wrapper > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px 20px;
  }
  .sec_area-list .area_wrapper > ul > li {
    flex-direction: column;
    width: 120px;
    margin-bottom: 25px;
  }
  .sec_area-list .area_label {
    font-size: 13px;
    width: 100%;
    margin: 0;
    min-width: initial;
    padding: 5px 0;
  }
  .sec_area-list .area_wrapper .area_items {
    gap: 0;
    border-bottom: 2px solid #d8d8d8;
  }
  .sec_area-list .area_wrapper .area_items li {
    font-size: 12px;
    width: 50%;
    margin: 0;
    border-bottom: 1px solid #e2e2e2;
  }
  .sec_area-list .area_wrapper .area_items li:nth-child(odd) {
    border-right: 1px solid #e2e2e2;
  }
  .sec_area-list .area_wrapper .area_items li:nth-last-child(1) {
    border-bottom: 0;
  }
  .sec_area-list .area_wrapper .area_items li:nth-last-child(2):not(:nth-child(even)) {
    border-bottom: 0;
  }
  .sec_area-list .area_wrapper .area_items li::after {
    content: none;
  }
  .sec_area-list .area_wrapper .area_items li a {
    display: block;
    border: none;
    position: relative;
    padding: 3px 0 4px 5px;
  }
  .sec_area-list .area_wrapper .area_items li a::after {
    content: "";
    width: 5px;
    height: 8px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
  }
  .sec_area-list .area_wrapper .area_items {
    width: 100%;
    background: #f5f5f5;
  }
  .sec_area-list .map_image {
    display: none;
  }
  .sec_area-list .hokkaido-touhoku {
    order: 2;
  }
  .sec_area-list .area_wrapper .hokkaido-touhoku {
    margin-bottom: 20px;
  }
  .sec_area-list .hokkaido-touhoku a::after {
    background: url(../img/common/map_arrow-blue.png) no-repeat;
    background-size: contain;
  }
  .sec_area-list .kantou {
    order: 4;
    margin-top: -25px;
  }
  .sec_area-list .kantou a::after {
    background: url(../img/common/map_arrow-green.png) no-repeat;
    background-size: contain;
  }
  .sec_area-list .chubu {
    order: 1;
    margin-left: auto;
    position: relative;
    top: 30px;
  }
  .sec_area-list .chubu a::after {
    background: url(../img/common/map_arrow-lightgreen.png) no-repeat;
    background-size: contain;
  }
  .sec_area-list .kansai {
    order: 6;
    margin-right: auto;
  }
  .sec_area-list .kansai a::after {
    background: url(../img/common/map_arrow-orange.png) no-repeat;
    background-size: contain;
  }
  .sec_area-list .chugoku {
    order: 3;
    position: relative;
    top: 32px;
  }
  .sec_area-list .chugoku a::after {
    background: url(../img/common/map_arrow-purple.png) no-repeat;
    background-size: contain;
  }
  .sec_area-list .kyusyu {
    order: 5;
  }
  .sec_area-list .kyusyu a::after {
    background: url(../img/common/map_arrow-pink.png) no-repeat;
    background-size: contain;
  }
  .sec_area-list .annotation_txt {
    font-size: 12px;
    line-height: 1.5;
    margin: 18px 0 3px -8%;
  }
}
/*===============================================
 *	TOP導入セクション
===============================================*/
.sec_top-intro {
  position: relative;
  z-index: 1;
}
.sec_top-intro.bg_sankaku_right::before {
  background: #e5f2fa;
}
.sec_top-intro .sec_ttl_box {
  margin-top: -25px;
}
.sec_top-intro .sec_ttl {
  display: inline-block;
  position: relative;
}
.sec_top-intro .sec_ttl::before, .sec_top-intro .sec_ttl::after {
  content: "";
  width: 40px;
  height: 122px;
  position: absolute;
  bottom: 38px;
  transform: skewX(10deg);
}
.sec_top-intro .sec_ttl::before {
  background: url(../img/common/leaf_left.svg) no-repeat center top;
  background-size: contain;
  left: -70px;
}
.sec_top-intro .sec_ttl::after {
  background: url(../img/common/leaf_right.svg) no-repeat center top;
  background-size: contain;
  right: -55px;
}
.sec_top-intro .sec_ttl .no-1 {
  font-size: 1.3em;
  position: relative;
  top: 3px;
  margin-left: 10px;
}
.sec_top-intro .sec_ttl .no-1::after {
  content: "";
  background: url(../img/common/icon_crawn.svg) no-repeat center top;
  background-size: contain;
  width: 40px;
  height: 27px;
  transform: skew(10deg);
  position: absolute;
  left: 32%;
  top: 2px;
}
.sec_top-intro .sec_ttl .num {
  font-size: 1.38em;
  margin-left: -10px;
  margin-right: -5px;
}
.sec_top-intro .main_box {
  width: 48.5%;
}
.sec_top-intro .main_box .content_ttl {
  margin: 16px 0 13px;
}
.sec_top-intro .photo_large {
  width: 48.5%;
  position: relative;
}
.sec_top-intro .photo_large::after {
  content: "";
  background: url(../img/common/txt_removal-recycling.png) no-repeat;
  background-size: contain;
  width: 481px;
  height: 78px;
  position: absolute;
  right: 12%;
  bottom: -15%;
}
.sec_top-intro .point {
  gap: 0 5px;
}
.sec_top-intro .point li {
  background: #4c99d4;
  font-size: 22px;
  font-size: min(2.0vw, 22px);
  font-weight: bold;
  display: block;
  padding: 7px 2.2% 9px;
}
.sec_top-intro .point li span {
  font-size: 0.54em;
}
.sec_top-intro .small_images {
  margin-top: 40px;
}
.sec_top-intro .small_images li {
  width: 48.4%;
}
.sec_top-intro .small_images li:nth-child(2) {
  margin-top: 50px;
}

@media only screen and (max-width: 1300px) {
  .sec_top-intro .sec_ttl::before, .sec_top-intro .sec_ttl::after {
    width: 8%;
    bottom: 13%;
  }
  .sec_top-intro .sec_ttl .no-1::after {
    width: 20%;
  }
  .sec_top-intro .photo_large::after {
    width: 75%;
    bottom: -18%;
  }
}
@media only screen and (max-width: 960px) {
  .sec_top-intro .sec_ttl::before, .sec_top-intro .sec_ttl::after {
    width: 26px;
    height: 79.3px;
    bottom: 13%;
  }
  .sec_top-intro .sec_ttl::before {
    left: -47px;
  }
  .sec_top-intro .sec_ttl::after {
    right: -38px;
  }
  .sec_top-intro .sec_ttl .no-1::after {
    left: 36%;
  }
  .sec_top-intro .photo_large::after {
    width: 312.65px;
    height: 50.7px;
    right: 4%;
  }
}
@media only screen and (max-width: 568px) {
  .sec_top-intro {
    background: url(../img/common/bg_intro.jpg) no-repeat top center;
    background-size: 100% auto;
    padding-bottom: 25px;
  }
  .sec_top-intro .sec_ttl_box {
    margin: 10px 0 10px;
  }
  .sec_top-intro .sec_ttl {
    display: block;
    transform: skewX(-10deg) translateX(0);
  }
  .sec_top-intro .sec_ttl .txt01 {
    display: block;
    margin-bottom: -12px;
    margin-left: -10px;
  }
  .sec_top-intro .sec_ttl .txt02 {
    font-size: 34px;
  }
  .sec_top-intro .sec_ttl .no-1 {
    font-size: 1.28em;
    margin-left: 0;
  }
  .sec_top-intro .sec_ttl::before, .sec_top-intro .sec_ttl::after {
    width: 31px;
    height: 95px;
    bottom: 7%;
  }
  .sec_top-intro .sec_ttl::before {
    left: 0;
  }
  .sec_top-intro .sec_ttl::after {
    right: 0;
  }
  .sec_top-intro .intro_content {
    flex-direction: column;
    padding-bottom: 60px;
    background: url(../img/common/txt_removal-recycling.png) no-repeat bottom center;
    background-size: 88% auto;
  }
  .sec_top-intro .main_box {
    width: 100%;
  }
  .sec_top-intro .main_box .content_ttl {
    margin: 12px 0 10px;
  }
  .sec_top-intro .point {
    gap: 0;
  }
  .sec_top-intro .point li {
    font-size: 15px;
    line-height: 1.3;
    text-align: center;
    padding: 5px 0 7px;
  }
  .sec_top-intro .point li:first-child {
    width: 34.8%;
  }
  .sec_top-intro .point li:nth-child(2) {
    width: 63.7%;
  }
  .sec_top-intro .photo_large img {
    display: none;
  }
  .sec_top-intro .photo_large::after {
    content: none;
  }
  .sec_top-intro .small_images {
    justify-content: center;
    gap: 0 3%;
    margin-top: 28px;
  }
  .sec_top-intro .small_images li {
    width: 45.5%;
  }
  .sec_top-intro .small_images li:nth-child(2) {
    margin-top: 25px;
  }
}
/*===============================================
 *	CVエリア
===============================================*/
.cv_ttl_box {
  background: var(--site-secondary);
}

.cv_ttl_box .cv_ttl {
  color: #fff;
  font-size: 57px;
  font-size: min(4.2vw, 57px);
  padding: 14px 0 16px;
}

.cv_ttl_box .cv_ttl .size_small {
  font-size: 0.614em;
  padding: 6px 4.25% 8px;
  position: relative;
  top: -10px;
  margin-right: 2.5%;
}
.cv_ttl_box .cv_ttl .size_small::after {
  content: "";
  border: 2px solid #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: skewX(10deg) translate(-50%, -50%);
}

.cv_ttl_box .cv_ttl .txt_yellow span {
  font-size: 0.88em;
}

.cv_content {
  background: url(../img/common/bg_cv-area.jpg) no-repeat center top;
  background-size: cover;
  padding: 40px 0 60px;
  position: relative;
  z-index: 1;
}

.cv_content .camp {
  width: 100%;
  position: relative;
}
.cv_content .camp::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* ①疑似要素のボックスを影色で塗りつぶし */
  background: rgba(153, 153, 153, 0.6);
  /* ②ブラーフィルターでぼかす */
  filter: blur(25px);
  /* ③位置やサイズを調整 */
  transform: scale(1.01, 1.1);
  /* ④乗算で重ねる */
  mix-blend-mode: multiply;
}

.cv_content .camp dt {
  color: #fff;
  width: 32.3%;
  position: relative;
}
.cv_content .camp dt::before {
  content: "";
  background: url(../img/common/camp_illust01.png) no-repeat center bottom;
  background-size: contain;
  width: 129px;
  width: min(31%, 129px);
  height: 142px;
  position: absolute;
  left: 10%;
  bottom: 0;
  z-index: 5;
}

.cv_content .camp dt div {
  background: url(../img/common/bg_camp-ttl.png) no-repeat center;
  background-size: cover;
  -webkit-clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
          clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
  padding: 16px 9.5% 20px 0;
}

.cv_content .camp dt p {
  font-size: 22px;
  font-size: min(1.8vw, 22px);
  font-weight: bold;
  line-height: 1.35;
  margin-left: auto;
  letter-spacing: 0.05em;
}

.cv_content .camp dt p span {
  font-size: 1.91em;
}

.cv_content .camp dd {
  background: #fff;
  width: 67.7%;
  justify-content: center;
  align-items: center;
  -webkit-clip-path: polygon(calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 0);
          clip-path: polygon(calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 0);
}

.cv_content .camp dd p {
  font-size: 27px;
  font-size: min(2.0vw, 27px);
  font-weight: bold;
  letter-spacing: 0.05em;
}

.cv_content .camp dd .txt_keycolor {
  font-size: 1.52em;
  background: linear-gradient(transparent 85%, #f4dade 0%);
  background-position-y: -5px;
}

.cv_content .cv_box {
  background: url(../img/common/bg_cv-box.jpg) no-repeat center;
  margin-top: 30px;
  padding: 40px 50px;
  position: relative;
}

.cv_content .cv_box::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* ①疑似要素のボックスを影色で塗りつぶし */
  background: rgba(153, 153, 153, 0.6);
  /* ②ブラーフィルターでぼかす */
  filter: blur(25px);
  /* ③位置やサイズを調整 */
  transform: scale(1.01, 1.03);
  /* ④乗算で重ねる */
  mix-blend-mode: multiply;
}

.cv_content .cv_box > p {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  background: #4c99d4;
  border-radius: 5px;
  padding: 5px 10px 8px;
}

.cv_content .cv_box::after {
  content: "";
  background: url(../img/common/cv_staff.png) no-repeat center bottom;
  background-size: contain;
  width: 332px;
  width: min(26%, 332px);
  height: 330px;
  position: absolute;
  right: 4.5%;
  bottom: 0;
}

.cv_content .btn_box_wrapper {
  display: flex;
  position: relative;
}

.cv_content .btn_box_wrapper .btn_box {
  width: 67.4%;
  max-width: 808px;
  margin: 24px auto 0 0;
}

.cv_content .btn_box_wrapper .btn_box a{
  display: block;
}
.cv_content .btn_box_wrapper .btn_box .tel {
  margin-bottom: 30px;
}
.cv_content .btn_box_wrapper .btn_box a.btn_contact {
	background: #fe5d26;
  border-radius: 0.3rem;
	border-bottom: 7px solid #8a2605;
	color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-weight: bold;
	padding: 1.5rem 4rem;
  width: 100%;
}
.cv_content .btn_box_wrapper .btn_box a.btn_contact span{
  position: relative;
  padding-left: 2em;
}
.cv_content .btn_box_wrapper .btn_box a.btn_contact span:before {
  content: '';
  position: absolute;
  background: url("../img/common/icon_mail.png") no-repeat top left;
  background-size: contain;
  width: 30px;
  height: 21px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.cv_content .btn_box_wrapper .btn_box a.btn_contact:hover {
	margin-top: 6px;
	border-bottom: 1px solid #fe5d26;
	color: #fff;
}
@media only screen and (max-width: 1024px) {
  .cv_ttl_box .cv_ttl {
    font-size: 40px;
  }
  .cv_content .cv_box > p {
    font-size: 26px;
  }
  .cv_content .cv_box::after {
    width: 265.6px;
    height: 264px;
  }
  .cv_content .camp dt::before {
    left: 6%;
  }
}
@media only screen and (max-width: 960px) {
  .cv_ttl_box .cv_ttl {
    font-size: 32px;
  }
  .cv_ttl_box .cv_ttl .size_small {
    top: -5px;
  }
  .cv_content {
    padding: 25px 0 40px;
  }
  .cv_content .camp dt::before {
    left: 4%;
  }
  .cv_content .camp dt p {
    font-size: 15px;
  }
  .cv_content .camp dd p {
    font-size: 20px;
    line-height: 1.35;
  }
  .cv_content .camp dd::after {
    width: 59px;
    height: 52px;
    right: 19%;
    top: -45px;
  }
  .cv_content .cv_box {
    padding: 3vw 4vw;
    margin-top: 25px;
  }
  .cv_content .cv_box > p {
    font-size: 21px;
  }
  .cv_content .cv_box::after {
    width: 215.8px;
    height: 214.5px;
    right: 2.5%;
  }
}
@media only screen and (max-width: 568px) {
  .cv_ttl_box {
    background: url(../img/common/bg_cv-ttl.jpg) no-repeat center;
    background-size: cover;
    position: relative;
  }
  .cv_ttl_box::after {
    content: "";
    background: url(../img/common/cv_staff_sp.png) no-repeat;
    background-size: contain;
    width: 122px;
    height: 137px;
    position: absolute;
    bottom: 0;
    right: 18px;
    z-index: 1;
  }
  .cv_ttl_box .cv_ttl {
    font-size: 24px;
    line-height: 1.3;
    padding: 27px 0 22px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-shadow: #00324f 2px 2px 0px;
    margin-left: -2px;
  }
  .cv_ttl_box .cv_ttl .size_small {
    font-size: 17px;
    padding: 4px 26px 5px;
    top: 0;
    margin-bottom: 12px;
    text-shadow: none;
  }
  .cv_ttl_box .cv_ttl .txt_yellow {
    margin-left: -5px;
    transform: translateX(5px);
    letter-spacing: 0.02em;
  }
  .cv_content {
    background: url(../img/common/bg_cv-area_sp.jpg) no-repeat center top;
    background-size: cover;
    padding: 20px 0 30px;
  }
  .cv_content .camp {
    flex-direction: column;
  }
  .cv_content .camp::before {
    filter: blur(10px);
    transform: scale(1.03, 1.06);
  }
  .cv_content .camp dt {
    width: 100%;
  }
  .cv_content .camp dt::before {
    width: 78px;
    height: 86px;
    left: -2%;
  }
  .cv_content .camp dt div {
    -webkit-clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% 100%, 0 100%, 0% 10px);
            clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% 100%, 0 100%, 0% 10px);
    padding: 8px 0 9px;
    justify-content: center;
  }
  .cv_content .camp dt p {
    font-size: 22px;
    margin: 0 0 0 5%;
    text-align: center;
  }
  .cv_content .camp dt p span {
    font-size: 1em;
  }
  .cv_content .camp dd {
    padding: 15px 0px 17px;
    -webkit-clip-path: polygon(100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0 0);
            clip-path: polygon(100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0 0);
    width: 100%;
  }
  .cv_content .camp dd p {
    font-size: 17px;
    line-height: 1.3;
    transform: skewX(-10deg) translateX(6px);
    letter-spacing: 0.02em;
  }
  .cv_content .camp dd .txt_keycolor {
    font-size: 1.18em;
    background: linear-gradient(transparent 76%, #f4dade 0%);
    background-position-y: -3px;
  }
  .cv_content .camp dd::after {
    content: none;
  }
  .cv_content .cv_box {
    margin-top: 20px;
    padding: 12px 20px 20px 20px;
    background: #fff;
  }
  .cv_content .cv_box > p::before {
    /* filter: blur(0px); */
    display: block;
    content: '';
    position: absolute;
    background: url(../img/common/line_left_blue.png) no-repeat top center;
    width: 45px;
    height: 54px;
    left: 0;
    top: 5px;
    /* transform: scale(1.03, 1.03); */
  }
  .cv_content .cv_box > p::after {
    content: '';
    display: block;
    position: absolute;
    background: url(../img/common/line_right_blue.png) no-repeat top center;
    width: 45px;
    height: 54px;
    right: 0;
    top: 5px;
  }
  .cv_content .cv_box > p {
    position: relative;
    font-size: 22px;
    line-height: 1.45;
    padding: 0;
    background: #ffffff;
    color: #1085d2;
  }
  .cv_content .cv_box .btn_box_wrapper .btn_box {
    width: 100%;
    max-width: initial;
    margin: 15px 0 0 0;
  }
  .cv_content .btn_box_wrapper .btn_box .tel {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 5px 0 #ccc;
    border-radius: 0.3rem;
  }
  .cv_content .btn_box_wrapper .btn_box .tel:hover {
    box-shadow: 0 1px 0 #ccc;
  }
  .cv_content .btn_box_wrapper .btn_box a.btn_contact {
    border-bottom: 5px solid #8a2605;
    font-size: 20px;
    padding: 1rem 0;
  }
  .cv_content .cv_box .btn_box_wrapper .btn_box div a:first-child {
    margin-bottom: 10px;
  }
  .cv_content .cv_box::after {
    content: none;
  }
}
/*===============================================
 *	こんなお悩みありませんか
===============================================*/
.sec_problem {
  background: url(../img/common/bg_problem.jpg) no-repeat top center;
  background-size: cover;
}
.sec_problem .sec_ttl_box {
  position: relative;
  margin-top: 15px;
  padding-bottom: 28px;
}
.sec_problem .sec_ttl_box::after {
  content: "";
  background: url(../img/common/problem_illust.png) no-repeat bottom center;
  background-size: contain;
  width: 243px;
  width: min(24%, 243px);
  height: 196px;
  position: absolute;
  right: 10px;
  bottom: -15px;
}
.sec_problem .sec_ttl {
  font-size: 57px;
  font-size: min(4.8vw, 57px);
}
.sec_problem .sec_ttl .size_small {
  font-size: 0.65em;
  transform: skewX(10deg) translateX(-10px);
  position: relative;
  margin-left: 4%;
}
.sec_problem .sec_ttl .size_small::before, .sec_problem .sec_ttl .size_small::after {
  content: "";
  width: 28px;
  height: 38px;
  position: absolute;
  bottom: 10px;
}
.sec_problem .sec_ttl .size_small::before {
  background: url(../img/common/sideline_red-left.svg) no-repeat;
  background-size: contain;
  left: -45px;
}
.sec_problem .sec_ttl .size_small::after {
  background: url(../img/common/sideline_red-right.svg) no-repeat;
  background-size: contain;
  right: -45px;
}
.sec_problem .problem_content .content_inner {
  position: relative;
}
.sec_problem .problem_content .content_inner::after {
  content: "";
  background: url(../img/common/staff_problem.png) no-repeat left bottom;
  background-size: contain;
  width: 140px;
  width: min(13%, 140px);
  height: 206px;
  position: absolute;
  bottom: 0;
  left: 9%;
}
.sec_problem .problem_content ul {
  margin-top: -20px;
}
.sec_problem .problem_content li {
  font-size: 21px;
  font-weight: bold;
  width: 48%;
  background: url(../img/common/icon_check.svg) no-repeat left center;
  background-size: 30px 30px;
  padding: 18px 0 22px 45px;
  position: relative;
}
.sec_problem .problem_content li::after {
  content: "";
  background: url(../img/common/line_dot.png) repeat-x;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.sec_problem .problem_content li:last-child::after, .sec_problem .problem_content li:nth-last-child(2)::after {
  content: none;
}
.sec_problem .problem_content .txt_box {
  border-radius: 5px;
  overflow: hidden;
  margin-top: 18px;
}
.sec_problem .problem_content .txt_box p {
  font-weight: bold;
}
.sec_problem .problem_content .txt_box .txt_white {
  font-size: 25px;
  padding: 9px 0 10px;
}
.sec_problem .problem_content .txt_box .size_large {
  font-size: 32px;
  padding: 15px 0 17px 6%;
}
.sec_problem .btn_area {
  background: url(../img/common/bg_dot02.png);
  padding: 20px 0;
  border: 5px solid #fff;
  border-top: none;
}
.sec_problem.area_page .sec_ttl_box {
  margin-top: 0;
}
.sec_problem.area_page .sec_ttl .size_small {
  text-align: center;
  line-height: 1.4;
}
.sec_problem.area_page .sec_ttl .size_small::before, .sec_problem.area_page .sec_ttl .size_small::after {
  bottom: 8px;
}
.sec_problem.area_page .sec_ttl .size_more-small {
  font-size: 0.75em;
}

@media only screen and (max-width: 1024px) {
  .sec_problem .problem_content .txt_box .txt_white {
    font-size: 23px;
  }
  .sec_problem .problem_content .txt_box .size_large {
    font-size: 26px;
  }
}
@media only screen and (max-width: 960px) {
  .sec_problem .sec_ttl .size_small::before, .sec_problem .sec_ttl .size_small::after {
    width: 21px;
    height: 29px;
    bottom: 5px;
  }
  .sec_problem .sec_ttl .size_small::before {
    left: -30px;
  }
  .sec_problem .sec_ttl .size_small::after {
    right: -28px;
  }
  .sec_problem .problem_content .content_inner::after {
    left: 3%;
  }
  .sec_problem .problem_content li {
    font-size: 18px;
    background-size: 25px 25px;
    padding: 14px 0 14px 36px;
  }
  .sec_problem .problem_content .txt_box .txt_white {
    font-size: 21px;
  }
  .sec_problem .problem_content .txt_box .size_large {
    font-size: 24px;
  }
}
@media only screen and (max-width: 568px) {
  .sec_problem {
    background: url(../img/common/bg_problem_sp.jpg) no-repeat top center;
    background-size: cover;
  }
  .sec_problem .sec_ttl_box {
    display: block;
    margin-top: 5px;
    padding-bottom: 16px;
  }
  .sec_problem .sec_ttl_box::after {
    width: 124px;
    height: 89px;
    right: -15px;
    bottom: -8px;
  }
  .sec_problem .sec_ttl {
    font-size: 30px;
    align-items: flex-start;
  }
  .sec_problem .sec_ttl .size_small {
    font-size: 0.66em;
    margin: 0 auto 12px;
  }
  .sec_problem .sec_ttl .size_small::before, .sec_problem .sec_ttl .size_small::after {
    width: 16px;
    height: 21px;
    bottom: 3px;
  }
  .sec_problem .sec_ttl .size_large {
    text-indent: -0.25em;
  }
  .sec_problem .problem_content {
    margin: 0 -5.3vw;
  }
  .sec_problem .problem_content .content_inner::after {
    content: none;
  }
  .sec_problem .problem_content ul {
    flex-direction: column;
    margin-top: -12px;
  }
  .sec_problem .problem_content li {
    width: 100%;
    font-size: 16px;
    line-height: 1.45;
    padding: 14px 0 16px 36px;
  }
  .sec_problem .problem_content li:nth-child(1) {
    order: 1;
  }
  .sec_problem .problem_content li:nth-child(2) {
    order: 3;
    background-position: top 32% left;
  }
  .sec_problem .problem_content li:nth-child(3) {
    order: 2;
    background-position: top 32% left;
  }
  .sec_problem .problem_content li:nth-child(3)::after {
    content: "";
  }
  .sec_problem .problem_content li:nth-child(4) {
    order: 4;
  }
  .sec_problem .problem_content .txt_box {
    position: relative;
    margin-top: 10px;
  }
  .sec_problem .problem_content .txt_box::before {
    content: "";
    background: url(../img/common/staff_problem_sp.png) no-repeat left bottom;
    background-size: contain;
    width: 76px;
    height: 104px;
    position: absolute;
    bottom: 0;
    left: 9%;
  }
  .sec_problem .problem_content .txt_box .txt_white {
    font-size: 19px;
    padding: 8px 0 9px;
  }
  .sec_problem .problem_content .txt_box .size_large {
    font-size: 21px;
    line-height: 1.5;
    text-align: left;
    margin-left: 36%;
    text-indent: -0.5em;
    padding: 9px 0 11px;
  }
  .sec_problem .problem_content .txt_box .size_large .txt_primarycolor {
    display: inline-block;
    text-indent: -0.3em;
  }
  .sec_problem .btn_area {
    border: none;
    border-top: 5px solid #fff;
    border-bottom: 25px solid #fff;
    padding: 15px 0;
  }
  .sec_problem.area_page .sec_ttl .size_small::before, .sec_problem.area_page .sec_ttl .size_small::after {
    bottom: 3px;
  }
  .sec_problem.area_page .sec_ttl .size_more-small {
    font-size: 0.85em;
  }
}
/*===============================================
 *	選ばれる理由
===============================================*/
.sec_reasons {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.sec_reasons .top_txt {
  position: relative;
}
.sec_reasons .top_txt p {
  font-size: min(3.5vw, 47px);
  font-weight: bold;
  padding: 18px 0 22px;
  margin: 0 2vw;
}
.sec_reasons .top_txt::after {
  content: "";
  background: var(--site-primary);
  width: 40px;
  height: 24px;
  position: absolute;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.sec_reasons .sec_ttl_box {
  background: url(../img/common/bg_town03.png) no-repeat bottom center;
  background-size: 100% auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0 20px;
  padding: min(3vw, 40px) 0 0;
}
.sec_reasons .sec_ttl_box::before {
  content: "";
  background: url(../img/common/reasons_illust.png) no-repeat center bottom;
  background-size: contain;
  width: 265px;
  width: min(19vw, 265px);
  height: 206px;
  height: 206.17px;
  height: min(15.5vw, calc(265px * 0.778));
  display: block;
}
.sec_reasons .sec_ttl {
  line-height: 1.3;
  text-indent: -0.2em;
  letter-spacing: 0.01em;
  margin-bottom: 2.4%;
}
.sec_reasons .btn_area {
  background: #c9e1ef;
  margin: 0 calc(50% - 50vw);
  padding: 50px calc(50vw - 50%);
  position: relative;
  z-index: 1;
}
.sec_reasons .btn_area ul {
  gap: 20px 0;
}
.sec_reasons .btn_area li {
  width: 32.3%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sec_reasons .btn_area li::before {
  content: "";
  background: url(../img/common/icon_arrow-down-white02.svg) no-repeat;
  background-size: contain;
  width: 10px;
  height: 22px;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.sec_reasons .btn_area li span {
  z-index: 1;
}
.sec_reasons .btn_area li a {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 25px 0 27px;
  position: relative;
}
.sec_reasons .btn_area li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.2s;
}
.sec_reasons .btn_area li a::after {
  content: "";
  background: rgba(0, 60, 95, 0.35);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: 0.2s;
}
.sec_reasons .btn_area li a:hover::before {
  transform: scale(1.15);
}
.sec_reasons .btn_area li a:hover::after {
  opacity: 1;
}
.sec_reasons .btn_area li:nth-child(1) a::before {
  background: url(../img/common/reason_btn01.jpg) no-repeat center;
  background-size: cover;
}
.sec_reasons .btn_area li:nth-child(2) a::before {
  background: url(../img/common/reason_btn02.jpg) no-repeat center;
  background-size: cover;
}
.sec_reasons .btn_area li:nth-child(3) a::before {
  background: url(../img/common/reason_btn03.jpg) no-repeat center;
  background-size: cover;
}
.sec_reasons .btn_area li:nth-child(4) a::before {
  background: url(../img/common/reason_btn04.jpg) no-repeat center;
  background-size: cover;
}
.sec_reasons .btn_area li:nth-child(5) a::before {
  background: url(../img/common/reason_btn05.jpg) no-repeat center;
  background-size: cover;
}
.sec_reasons .btn_area li:nth-child(6) a::before {
  background: url(../img/common/reason_btn06.jpg) no-repeat center;
  background-size: cover;
}
.sec_reasons .reason_list {
  gap: 60px 0;
  margin-top: 35px;
}
.sec_reasons .reason_list li {
  position: relative;
}
.sec_reasons .reason_list li::before {
  font-family: "Robot";
  font-size: 100px;
  font-weight: bold;
  line-height: 1;
  color: var(--site-primary);
  position: absolute;
  top: -43px;
  left: 28px;
  transform: skewX(-10deg);
  z-index: 10;
}
.sec_reasons .reason_list li .txt_box {
  width: 62.5%;
  padding: min(4.46%, 50px) min(4.61%, 60px);
  margin-left: -5.38%;
}
.sec_reasons .reason_list li:nth-child(even) {
  flex-direction: row-reverse;
}
.sec_reasons .reason_list li:nth-child(even)::before {
  left: initial;
  right: 28px;
}
.sec_reasons .reason_list li:nth-child(even) .txt_box {
  margin-right: -5.38%;
  margin-left: 0;
}
.sec_reasons .reason_list li:nth-child(1)::before {
  content: "01";
}
.sec_reasons .reason_list li:nth-child(1) .txt_box {
  background: #fff url(../img/common/reason_txt01.png) no-repeat right 30px bottom 30px;
}
.sec_reasons .reason_list li:nth-child(2)::before {
  content: "02";
}
.sec_reasons .reason_list li:nth-child(2) .txt_box {
  background: #fff url(../img/common/reason_txt02.png) no-repeat right 30px bottom 30px;
}
.sec_reasons .reason_list li:nth-child(3)::before {
  content: "03";
}
.sec_reasons .reason_list li:nth-child(3) .txt_box {
  background: #fff url(../img/common/reason_txt03.png) no-repeat right 30px bottom 30px;
}
.sec_reasons .reason_list li:nth-child(4)::before {
  content: "04";
}
.sec_reasons .reason_list li:nth-child(4) .txt_box {
  background: #fff url(../img/common/reason_txt04.png) no-repeat right 30px bottom 30px;
}
.sec_reasons .reason_list li:nth-child(5)::before {
  content: "05";
}
.sec_reasons .reason_list li:nth-child(5) .txt_box {
  background: #fff url(../img/common/reason_txt05.png) no-repeat right 30px bottom 30px;
}
.sec_reasons .reason_list li:nth-child(6)::before {
  content: "06";
}
.sec_reasons .reason_list li:nth-child(6) .txt_box {
  background: #fff url(../img/common/reason_txt06.png) no-repeat right 30px bottom 30px;
}

@media only screen and (max-width: 1300px) {
  .sec_reasons .reason_list li .txt_box {
    padding: 3% 4% 3.5%;
  }
}
@media only screen and (max-width: 960px) {
  .sec_reasons .reason_list {
    gap: 50px 0;
  }
  .sec_reasons .reason_list li::before {
    font-size: 80px;
  }
}
@media only screen and (max-width: 568px) {
  .sec_reasons.bg_sankaku_left::after {
    content: none;
  }
  .sec_reasons .top_txt p {
    font-size: 24px;
    line-height: 1.45;
    padding: 13px 0 14px;
    margin-left: -2%;
  }
  .sec_reasons .top_txt::after {
    width: 20px;
    height: 12px;
    bottom: -11px;
  }
  .sec_reasons .sec_ttl_box {
    background: none;
    gap: 0;
    position: relative;
    padding-top: 15px;
  }
  .sec_reasons .sec_ttl_box::before {
    background: url(../img/common/reasons_illust_sp.png) no-repeat;
    background-size: contain;
    width: 142px;
    height: 98px;
    position: absolute;
    left: -5px;
    bottom: 0;
  }
  .sec_reasons .sec_ttl {
    margin: 0 7px 15px auto;
    line-height: 1.2;
  }
  .sec_reasons .btn_area {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .sec_reasons .btn_area ul {
    gap: 15px 0;
  }
  .sec_reasons .btn_area li {
    width: 47.8%;
  }
  .sec_reasons .btn_area li::before {
    width: 9px;
    height: 20px;
    right: initial;
    top: initial;
    left: 50%;
    bottom: 10px;
    transform: translate(-50%, 0);
  }
  .sec_reasons .btn_area li a {
    font-size: 16px;
    line-height: 1.5;
  }
  .sec_reasons .btn_area li a span {
    transform: translateY(-10px);
  }
  .sec_reasons .btn_area li:nth-child(1) {
    background: url(../img/common/reason_btn01_sp.jpg) no-repeat;
    background-size: cover;
  }
  .sec_reasons .btn_area li:nth-child(2) {
    background: url(../img/common/reason_btn02_sp.jpg) no-repeat;
    background-size: cover;
  }
  .sec_reasons .btn_area li:nth-child(3) {
    background: url(../img/common/reason_btn03_sp.jpg) no-repeat;
    background-size: cover;
  }
  .sec_reasons .btn_area li:nth-child(4) {
    background: url(../img/common/reason_btn04_sp.jpg) no-repeat;
    background-size: cover;
  }
  .sec_reasons .btn_area li:nth-child(4) span {
    transform: translateY(-5px);
  }
  .sec_reasons .btn_area li:nth-child(5) {
    background: url(../img/common/reason_btn05_sp.jpg) no-repeat;
    background-size: cover;
  }
  .sec_reasons .btn_area li:nth-child(5) span {
    transform: translateY(-5px);
  }
  .sec_reasons .btn_area li:nth-child(6) {
    background: url(../img/common/reason_btn06_sp.jpg) no-repeat;
    background-size: cover;
  }
  .sec_reasons .reason_list {
    gap: 35px 0;
    margin-top: 5px;
  }
  .sec_reasons .reason_list li {
    flex-direction: column;
  }
  .sec_reasons .reason_list li::before {
    font-size: 55px;
    top: -25px;
    left: 12px;
  }
  .sec_reasons .reason_list li:nth-child(even) {
    flex-direction: column;
  }
  .sec_reasons .reason_list li:nth-child(even)::before {
    right: 12px;
  }
  .sec_reasons .reason_list li .txt_box {
    background-position: right 14px bottom 17px !important;
  }
  .sec_reasons .reason_list li:nth-child(1) .txt_box {
    background-size: 46% auto;
  }
  .sec_reasons .reason_list li:nth-child(2) .txt_box {
    background-size: 42.3% auto;
  }
  .sec_reasons .reason_list li:nth-child(3) .txt_box {
    background-size: 49.5% auto;
  }
  .sec_reasons .reason_list li:nth-child(4) .txt_box {
    background-size: 67.3% auto;
  }
  .sec_reasons .reason_list li:nth-child(5) .txt_box {
    background-size: 33% auto;
  }
  .sec_reasons .reason_list li:nth-child(6) .txt_box {
    background-size: 83.9% auto;
  }
}
/*===============================================
 *	他社との比較
===============================================*/
.sec_compare {
  overflow: hidden;
}
.sec_compare .sec_ttl_box {
  position: relative;
  padding-bottom: 2%;
}
.sec_compare .sec_ttl_box::before {
  content: "";
  background: url(../img/common/compare_illust.png) no-repeat center bottom;
  background-size: contain;
  width: 170px;
  width: min(13.5vw, 170px);
  height: 144px;
  position: absolute;
  left: 14.5%;
  bottom: 0;
}
.sec_compare .compare_box {
  position: relative;
}
.sec_compare .compare_box .content_ttl {
  padding: 1.8% 0 2%;
}
.sec_compare .compare_box::after {
  content: "";
  background: url(../img/common/compare_txt.png) no-repeat;
  background-size: contain;
  width: 318px;
  height: 90px;
  position: absolute;
  right: -8%;
  bottom: -58px;
}

.compare_table {
  width: 100%;
  table-layout: fixed;
  margin-top: -10px;
}

.compare_table .none {
  background: rgba(255, 255, 255, 0);
  width: 240px;
}

.compare_table .color {
  color: var(--site-primary);
  font-weight: bold;
}

.compare_table .on {
  border: 4px solid var(--site-primary);
}

.compare_table th, .compare_table td {
  text-align: center;
  background: #fff;
}

.compare_table thead {
  font-size: 20px;
  color: #fff;
}

.compare_table thead th.color {
  background: var(--site-primary);
  padding: 16px 5px 20px;
}

.compare_table thead th.color img {
  max-width: 221px;
}

.compare_table thead th.gray {
  vertical-align: bottom;
  background: rgba(255, 255, 255, 0);
}

.compare_table thead th.gray div {
  background: #999;
  font-weight: bold;
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #ccc;
}

.compare_table tbody th {
  font-size: 20px;
  background: #f5f5f5;
  font-weight: bold;
  border: 1px solid #ccc;
}

.compare_table tbody td {
  font-size: 17px;
  padding: 18px 0 20px;
  border: 1px solid #ccc;
  line-height: 1.45;
}

.compare_table tbody td.color {
  font-size: 20px;
}

@media only screen and (max-width: 1024px) {
  .sec_compare .compare_box::after {
    width: 238.5px;
    height: 67.5px;
    right: 0;
    bottom: -40px;
  }
  .compare_table .none {
    width: 200px;
  }
  .compare_table thead th.color {
    font-size: 23px;
  }
}
@media only screen and (max-width: 960px) {
  .sec_compare .compare_box::after {
    width: 190.8px;
    height: 54px;
    bottom: -32px;
  }
  .compare_table {
    margin-top: -5px;
  }
  .compare_table .none {
    width: 150px;
  }
  .compare_table tbody td.color {
    font-size: 18px;
  }
  .compare_table tbody th {
    font-size: 18px;
  }
}
@media only screen and (max-width: 568px) {
  .sec_compare .sec_ttl_box {
    padding-bottom: 15px;
  }
  .sec_compare .sec_ttl_box::before {
    width: 80px;
    height: 71px;
    left: 0;
  }
  .sec_compare .sec_ttl {
    margin-left: 16%;
  }
  .sec_compare .compare_box {
    margin: 0 -5.3vw;
  }
  .sec_compare .compare_box .content_ttl {
    font-size: 23px;
    padding: 7px 0 9px;
  }
  .sec_compare .compare_box::after {
    width: 159px;
    height: 45px;
    right: 5.3vw;
    bottom: -30px;
  }
  .compare_table {
    margin: 0;
  }
  .compare_table .on {
    border-width: 2px;
  }
  .compare_table .none {
    width: 24.7%;
  }
  .compare_table thead th.color {
    padding: 14px 0 14px;
  }
  .compare_table thead th.color span {
    font-size: 13px;
    line-height: 1.3;
    color: #fff;
  }
  .compare_table thead th.gray {
    font-size: 16px;
  }
  .compare_table thead th.gray div {
    padding: 14px 0;
  }
  .compare_table tbody th {
    font-size: 13px;
    line-height: 1.4;
  }
  .compare_table tbody td {
    font-size: 12px;
    line-height: 1.4;
    padding: 0 !important;
    height: 54px;
  }
  .compare_table tbody td.color {
    font-size: 13px;
  }
}
/*===============================================
 *	お客様の声
===============================================*/
.sec_voice {
  position: relative;
  z-index: 1;
}
.sec_voice.lg_inner_space {
  padding-top: 0;
}
.sec_voice.bg_sankaku_right::before {
  top: min(25vw, 350px);
}
.sec_voice .voice_top_img {
  height: min(25vw, 350px);
}
.sec_voice .voice_top_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sec_voice .box_wrapper {
  margin-top: max(-5.5%, -80px);
}
.sec_voice .sec_ttl_box {
  background: url(../img/common/bg_town04.png) no-repeat center bottom;
  background-size: contain;
  padding-bottom: 2.8%;
  margin-top: -1.5%;
}
.sec_voice .sec_ttl {
  line-height: 1.45;
}
.sec_voice .sec_ttl .txt_primarycolor {
  position: relative;
  padding-left: min(10%, 92px);
}
.sec_voice .sec_ttl .txt_primarycolor::before {
  content: "";
  background: url(../img/common/icon_voice.png) no-repeat center top;
  background-size: contain;
  width: 77px;
  width: min(18%, 77px);
  height: 72px;
  position: absolute;
  left: 0;
  top: 16%;
  transform: skew(10deg);
}
.sec_voice .voice_box .ttl {
  font-size: min(2vw, 27px);
  margin-bottom: 25px;
}
.sec_voice .voice_box .ttl .voice_name {
  font-size: 0.67em;
  background: #fff;
  border: 1px solid var(--site-primary);
  padding: 5px 40px 7px;
  border-radius: 3px;
  margin-right: 20px;
}
.sec_voice .voice_box .bg_white {
  padding: 40px 40px;
}
.sec_voice .voice_box ul {
  margin-bottom: 30px;
  position: relative;
}
.sec_voice .voice_box ul::after {
  content: "";
  background: url(../img/common/icon_sankaku_right_orange.svg) no-repeat;
  width: 25px;
  height: 41px;
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
}
.sec_voice .voice_box li {
  width: 47.8%;
  position: relative;
}
.sec_voice .voice_box li:first-child::before {
  content: "";
  background: url(../img/common/label_before.svg) no-repeat;
  width: 134px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.sec_voice .voice_box li:nth-child(2)::before {
  content: "";
  background: url(../img/common/label_after.svg) no-repeat;
  width: 134px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.sec_voice .voice_box li:nth-child(2)::after {
  content: "";
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 4px solid var(--site-keycolor);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.sec_voice .voice_box .customer_box img {
  width: 130px;
  float: left;
  margin-right: 30px;
}
.sec_voice .voice01 .bg_white {
  background: #fff url(../img/common/voice_txt01.png) no-repeat bottom 32px right 30px;
}
.sec_voice .voice02 {
  margin-top: 20px;
}
.sec_voice .voice02 .bg_white {
  background: #fff url(../img/common/voice_txt02.png) no-repeat bottom 32px right 30px;
}
.sec_voice .survey_box {
  margin-top: 55px;
}
.sec_voice .survey_box .ttl_box {
  position: relative;
  margin-bottom: 40px;
}
.sec_voice .survey_box .ttl_box img {
  width: 274px;
  width: min(25%, 274px);
  position: absolute;
  right: 3.6%;
  top: 50%;
  transform: translateY(-50%);
}
.sec_voice .survey_box .content_ttl {
  padding: 1.7% 3.3% 2%;
  position: relative;
}
.sec_voice .survey_box .content_ttl::after {
  content: '';
  background: url(../img/common/icon_medal02.png) no-repeat;
  background-size: contain;
  width: 100px;
  height: 120px;
  position: absolute;
  right: 6%;
  top: 13px;
}
.sec_voice .survey_box .txt_box {
  width: 53.2%;
}
.sec_voice .survey_box .ttl {
  font-size: 27px;
  margin: 0 0 15px;
  background: #e7f3fa;
  color: var(--site-primary);
  padding: 12px 20px;
  text-align: center;
}
.sec_voice .survey_box .sub_box {
  padding: 23px 40px 26px;
  margin-top: min(6%, 31px);
}
.sec_voice .survey_box .sub_ttl {
  font-size: 22px;
  padding-left: 50px;
  margin-bottom: 15px;
  position: relative;
}
/* .sec_voice .survey_box .sub_ttl::before {
  content: "";
  background: #7bbce6;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 15px;
} */
.sec_voice .survey_box .sub_ttl::before {
  content: "";
  background: url(../img/common/icon_medal.png) no-repeat;
  background-size: cover;
  width: 40px;
  height: 51px;
  position: absolute;
  left: 0;
  top: -9px;
}
.sec_voice .survey_box .image_box {
  width: 43.3%;
}
.sec_voice .survey_box .image_box li {
  width: 47.8%;
  background: #f5f5f5;
  padding: 3.2% 3.2% 2.2%;
  text-align: center;
}
.sec_voice .survey_box .image_box a {
  display: block;
  border: 2px solid #dfdfdf;
  margin-bottom: 6px;
  position: relative;
}
.sec_voice .survey_box .image_box a::after {
  content: "";
  background: url(../img/common/icon_zoom.svg) no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.sec_voice .survey_box .image_box span {
  font-weight: bold;
  font-size: 18px;
}

@media only screen and (max-width: 1300px) {
  .sec_voice .survey_box .ttl_box img {
    right: -5%;
  }
}
@media only screen and (max-width: 1024px) {
  .sec_voice .survey_box .ttl_box {
    margin-bottom: 30px;
  }
  .sec_voice .survey_box .ttl {
    font-size: 22px;
  }
  .sec_voice .survey_box .sub_box {
    padding: 5% 5% 6%;
    margin-top: 6%;
  }
  .sec_voice .survey_box .content_ttl::after {
    width: 70px;
    height: 84px;
  }
}
@media only screen and (max-width: 960px) {
  .sec_voice .voice_box .ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .sec_voice .voice_box .ttl .voice_name {
    padding: 5px 28px 7px;
  }
  .sec_voice .voice_box .bg_white {
    padding: 5% 5%;
    background-size: 25% auto;
  }
  .sec_voice .voice_box ul::after {
    width: 15px;
    height: 25px;
  }
  .sec_voice .voice_box li:first-child::before {
    width: 100.5px;
    height: 30px;
  }
  .sec_voice .voice_box li:nth-child(2)::before {
    width: 100.5px;
    height: 30px;
  }
  .sec_voice .voice_box .customer_box img {
    width: 100px;
    margin-right: 15px;
  }
  .sec_voice .survey_box {
    margin-top: 40px;
  }
  .sec_voice .survey_box .ttl_box {
    margin-bottom: 25px;
  }
  .sec_voice .survey_box .ttl {
    font-size: 21px;
  }
  .sec_voice .survey_box .image_box span {
    font-size: 15px;
  }
  .sec_voice .survey_box .content_ttl::after{
    width: 53px;
    height: 64px;
    right: 4%;
  }
}
@media only screen and (max-width: 568px) {
  .sec_voice .voice_top_img {
    height: 46.6vw;
  }
  .sec_voice .box_wrapper {
    margin: 0;
  }
  .sec_voice .sec_ttl_box {
    background: none;
    padding-bottom: 16px;
    margin: 0;
  }
  .sec_voice .sec_ttl {
    line-height: 1.35;
    margin-left: -18px;
  }
  .sec_voice .sec_ttl .txt_primarycolor {
    padding-left: 10px;
  }
  .sec_voice .sec_ttl .txt_primarycolor::before {
    width: 38px;
    height: 36px;
    left: -38px;
    top: 12%;
  }
  .sec_voice .voice_box .ttl {
    font-size: 19px;
    gap: 0 15px;
    margin-bottom: 18px;
  }
  .sec_voice .voice_box .ttl .voice_name {
    font-size: 16px;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sec_voice .voice_box .ttl .voice_ttl {
    width: calc(100% - 65px);
  }
  .sec_voice .voice_box .bg_white {
    padding: 17px 17px;
    background-position: right 15px bottom 15px;
    background-size: 38%;
    margin-bottom: 5px;
  }
  .sec_voice .voice_box ul {
    flex-direction: column;
    gap: 30px 0;
    margin-bottom: 20px;
  }
  .sec_voice .voice_box ul::after {
    background: url(../img/common/icon_sankaku_down_orange.svg) no-repeat;
    width: 38px;
    height: 20px;
    top: initial;
    right: initial;
    bottom: 47%;
    left: 50%;
    transform: translateX(-50%);
  }
  .sec_voice .voice_box li {
    width: 100%;
  }
  .sec_voice .voice_box .customer_box img {
    width: 85px;
  }
  .sec_voice .voice_box .customer_box p {
    margin-top: -5px;
  }
  .sec_voice .voice02 {
    margin-top: 10px;
  }
  .sec_voice .survey_box {
    margin: 30px -5.3vw 0;
  }
  .sec_voice .survey_box .content_ttl {
    font-size: 23px;
    padding: 8px 5.3vw 10px;
    text-align: left;
  }
  .sec_voice .survey_box .ttl_box img {
    width: 137px;
    transform: none;
    top: initial;
    bottom: -21px;
    right: 25px;
  }
  .sec_voice .survey_box > .row {
    flex-direction: column-reverse;
    padding: 0 20px;
  }
  .sec_voice .survey_box .txt_box {
    width: 100%;
  }
  .sec_voice .survey_box .ttl {
    margin: 22px 0 10px;
    padding: 8px 0;
  }
  .sec_voice .survey_box .image_box {
    width: 100%;
  }
  .sec_voice .survey_box .image_box li {
    padding: 10px 10px 8px;
  }
  .sec_voice .survey_box .image_box a {
    margin-bottom: 5px;
  }
  .sec_voice .survey_box .image_box a::after {
    width: 30px;
    height: 30px;
  }
  .sec_voice .survey_box .sub_box {
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 16px 20px 20px;
  }
  .sec_voice .survey_box .sub_box p {
    font-size: 14px;
  }
  .sec_voice .survey_box .sub_ttl {
    font-size: 19px;
    line-height: 1.4;
    padding-left: 50px;
    margin-bottom: 6px;
  }
  .sec_voice .survey_box .sub_ttl::before {
    top: 0px;
  }
  .sec_voice .survey_box .content_ttl::after {
    width: 70px;
    height: 84px;
    right: 4%;
    top: 37px;
    z-index: 10;
  }

}
/*===============================================
 *	サービス紹介
===============================================*/
.sec_services .sec_ttl_box {
  background: url(../img/common/bg_town03.png) no-repeat bottom center;
  background-size: 100% auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0 20px;
  padding: 0 6.5% 0 0;
}
.sec_services .sec_ttl_box::before {
  content: "";
  background: url(../img/common/service_illust.png) no-repeat center bottom;
  background-size: contain;
  width: 374px;
  width: min(27vw, 374px);
  height: 184px;
  height: 184.008px;
  height: min(14.5vw, calc(374px * 0.492));
  display: block;
}
.sec_services .sec_ttl {
  line-height: 1.3;
  text-indent: -0.2em;
  letter-spacing: 0.01em;
  margin-bottom: 2.4%;
}
.sec_services .top_intro_box .txt_box::after {
  content: "";
  background: url(../img/common/service_txt.png) no-repeat;
  background-size: contain;
  width: 231px;
  height: 77px;
  position: absolute;
  bottom: -55px;
  right: -61px;
}
.sec_services .main_service {
  margin-top: -14px;
}
.sec_services .main_service ul {
  gap: 30px 0;
}
.sec_services .main_service li {
  width: 31.8%;
  background: #f5f5f5;
}
.sec_services .main_service li .ttl {
  font-size: min(2.2vw, 27px);
  padding: 13px 0 15px;
}
.sec_services .main_service li .image {
  position: relative;
  overflow: hidden;
}
.sec_services .main_service li .image::before {
  content: "";
  background: rgba(16, 133, 210, 0.2);
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0;
  z-index: 1;
  transition: all 0.2s;
}
.sec_services .main_service li .image img {
  transition: all 0.2s;
}
.sec_services .main_service li .txt_box {
  padding: 22px 40px 45px;
  position: relative;
}
.sec_services .main_service li .txt_box::after {
  content: "";
  background: url(../img/common/icon_sankaku_rightdown_blue.svg) no-repeat;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.sec_services .main_service li a {
  display: block;
}
.sec_services .main_service li a:hover .image::before {
  opacity: 1;
}
.sec_services .main_service li a:hover .image img {
  transform: scale(1.05);
}
.sec_services .other_service {
  margin-top: 50px;
}
.sec_services .other_service .content_ttl {
  margin-bottom: 20px;
}
.sec_services .other_service .content_ttl .btn {
  display: none;
}

.small_service_list {
  gap: 37px 2.3%;
}
.small_service_list li {
  width: 31.8%;
}
.small_service_list li a {
  position: relative;
  display: block;
}
.small_service_list li a .row {
  background: #fff;
  align-items: center;
}
.small_service_list li a .image {
  width: 100px;
  position: relative;
  overflow: hidden;
}
.small_service_list li a .image::after {
  content: "";
  background: rgba(16, 133, 210, 0.2);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.2s;
}
.small_service_list li a .image img {
  transition: all 0.2s;
}
.small_service_list li a span {
  font-size: 22px;
  font-size: min(1.5vw, 22px);
  font-weight: bold;
  padding-left: 7.8%;
}
.small_service_list li a::before {
  content: "";
  background: url(../img/common/icon_sankaku_rightdown_blue.svg) no-repeat;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 5px;
  bottom: 5px;
}
.small_service_list li a:hover .image::after {
  opacity: 1;
}
.small_service_list li a:hover .image img {
  transform: scale(1.05);
}
.small_service_list li p {
  margin-top: 16px;
}
.small_service_list li:nth-child(9) span {
  font-size: min(1.5vw, 20px);
}
.small_service_list.border {
  gap: 15px 2.13%;
  margin-top: 30px;
}
.small_service_list.border li {
  width: 23.4%;
  border: 2px solid var(--site-primary);
}
.small_service_list.border li a {
  width: 100%;
  background: #fff;
  font-size: min(1.4vw, 19px);
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
  height: min(6vw, 86px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.small_service_list.border li a:hover {
  background: #d0eeff;
}

@media only screen and (max-width: 960px) {
  .sec_services .main_service li .txt_box {
    padding: 7% 9.5% 10%;
  }
  .sec_services .other_service {
    margin-top: 40px;
  }
  .small_service_list li a .image {
    width: 70px;
  }
  .small_service_list li a span {
    padding-left: 5.8%;
  }
  .small_service_list li p {
    font-size: 13px;
    margin-top: 12px;
  }
}
@media only screen and (max-width: 568px) {
  .sec_services .sec_ttl_box {
    background: none;
    position: relative;
    padding: 0 10px 0 0;
    margin-top: -10px;
  }
  .sec_services .sec_ttl_box::before {
    width: 156px;
    height: 78px;
    position: absolute;
    left: -28px;
    bottom: 0;
  }
  .sec_services .sec_ttl {
    margin: 0 0 13px auto;
    line-height: 1.2;
    text-shadow: rgb(255, 255, 255) 5px 0px 0px, rgb(255, 255, 255) 4.90033px 0.993347px 0px, rgb(255, 255, 255) 4.60531px 1.94709px 0px, rgb(255, 255, 255) 4.12668px 2.82321px 0px, rgb(255, 255, 255) 3.48353px 3.58678px 0px, rgb(255, 255, 255) 2.70151px 4.20736px 0px, rgb(255, 255, 255) 1.81179px 4.6602px 0px, rgb(255, 255, 255) 0.849836px 4.92725px 0px, rgb(255, 255, 255) -0.145998px 4.99787px 0px, rgb(255, 255, 255) -1.13601px 4.86924px 0px, rgb(255, 255, 255) -2.08073px 4.54649px 0px, rgb(255, 255, 255) -2.94251px 4.04248px 0px, rgb(255, 255, 255) -3.68697px 3.37732px 0px, rgb(255, 255, 255) -4.28444px 2.57751px 0px, rgb(255, 255, 255) -4.71111px 1.67494px 0px, rgb(255, 255, 255) -4.94996px 0.7056px 0px, rgb(255, 255, 255) -4.99147px -0.291871px 0px, rgb(255, 255, 255) -4.83399px -1.27771px 0px, rgb(255, 255, 255) -4.48379px -2.2126px 0px, rgb(255, 255, 255) -3.95484px -3.05929px 0px, rgb(255, 255, 255) -3.26822px -3.78401px 0px, rgb(255, 255, 255) -2.4513px -4.35788px 0px, rgb(255, 255, 255) -1.53666px -4.75801px 0px, rgb(255, 255, 255) -0.560763px -4.96845px 0px, rgb(255, 255, 255) 0.437495px -4.98082px 0px, rgb(255, 255, 255) 1.41831px -4.79462px 0px, rgb(255, 255, 255) 2.34258px -4.41727px 0px, rgb(255, 255, 255) 3.17346px -3.86382px 0px, rgb(255, 255, 255) 3.87783px -3.15633px 0px, rgb(255, 255, 255) 4.4276px -2.32301px 0px, rgb(255, 255, 255) 4.80085px -1.39708px 0px, rgb(255, 255, 255) 4.98271px -0.415447px 0px;
  }
  .sec_services .top_intro_box .txt_box::after {
    width: 125px;
    height: 42px;
    bottom: -14px;
    right: -20px;
  }
  .sec_services .main_service {
    margin-top: -10px;
  }
  .sec_services .main_service ul {
    flex-direction: column;
    gap: 20px 0;
  }
  .sec_services .main_service li {
    width: 100%;
  }
  .sec_services .main_service li .ttl {
    font-size: 23px;
    padding: 10px 0 12px;
  }
  .sec_services .main_service li .txt_box {
    padding: 14px 20px 20px;
  }
  .sec_services .other_service {
    margin-top: 22px;
  }
  .sec_services .other_service .content_ttl {
    font-size: 26px;
    margin-bottom: -5px;
  }
  .sec_services .other_service .content_ttl span {
    position: relative;
  }
  .sec_services .other_service .content_ttl .btn {
    width: 20px;
    display: inline-block;
    margin-left: 7px;
    margin-top: 2px;
  }
  .sec_services .other_service .content_ttl .btn img {
    vertical-align: baseline;
  }
  .sec_services .other_service .content_ttl .btn::after {
    content: "";
    width: 20px;
    height: 3px;
    background: url(../img/common/icon_minus.png);
    position: absolute;
    left: 0;
    top: 20px;
    opacity: 0;
  }
  .sec_services .other_service .content_ttl .btn.open img {
    opacity: 0;
  }
  .sec_services .other_service .content_ttl .btn.open::after {
    opacity: 1;
  }
  .sec_services .other_service .other_content {
    display: none;
    margin: 0 -5.3vw;
    width: auto;
    padding: 25px 0 0;
  }
  .small_service_list {
    flex-direction: column;
    gap: 20px 0;
  }
  .small_service_list li {
    width: 100%;
  }
  .small_service_list li a span {
    font-size: 19px;
    line-height: 1.4;
    padding-left: 20px;
  }
  .small_service_list li a::before {
    width: 18px;
    height: 18px;
  }
  .small_service_list li:nth-child(9) span {
    font-size: 17px;
  }
  .small_service_list li p {
    font-size: 14px;
    margin-top: 10px;
  }
  .small_service_list.border {
    gap: 10px 4.4%;
    flex-direction: row;
    margin-top: 20px;
  }
  .small_service_list.border li {
    width: 47.8%;
  }
  .small_service_list.border li a {
    font-size: 16px;
    height: 80px;
  }
  .small_service_list.border li a.size_small {
    font-size: 14px;
  }
}
/*===============================================
 *	リサイクルについて
===============================================*/
.sec_recycle {
  position: relative;
  z-index: 1;
}
.sec_recycle .sec_ttl {
  margin-bottom: 20px;
}
.sec_recycle .sec_ttl .size_small {
  position: relative;
  padding-left: 78px;
}
.sec_recycle .sec_ttl .size_small::before {
  content: "";
  background: url(../img/common/icon_recycle.png) no-repeat;
  background-size: contain;
  width: 59px;
  height: 51px;
  position: absolute;
  left: 0;
  top: 16%;
  transform: skewX(10deg);
}
.sec_recycle .top_intro_box .txt_box::after {
  content: "";
  background: url(../img/common/recycle_txt.png) no-repeat;
  background-size: contain;
  width: 273px;
  height: 95px;
  position: absolute;
  bottom: -40px;
  right: -61px;
}
.sec_recycle .content_01 {
  position: relative;
}
.sec_recycle .content_01 .content_box {
  display: grid;
  grid-template-columns: 25% 68%;
  grid-template-rows: auto auto;
  -moz-column-gap: 7%;
       column-gap: 7%;
}
.sec_recycle .content_01 .recycle_persent {
  max-width: 252px;
  margin-top: 10px;
  margin-left: 14%;
  grid-column: 1;
  grid-row: 1/-1;
}
.sec_recycle .content_01 .ttl {
  font-size: min(2.6vw, 32px);
  margin: -10px 0 15px;
  grid-column: 2;
  grid-row: 1;
}
.sec_recycle .content_01 .txt {
  grid-column: 2;
  grid-row: 2;
}
.sec_recycle .content_01::after {
  content: "";
  background: url(../img/common/icon_sankaku_down_orange.svg) no-repeat;
  background-size: contain;
  width: 55px;
  height: 34px;
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
}
.sec_recycle .recycle_list {
  padding-top: 42px;
  margin-top: 35px;
  position: relative;
}
.sec_recycle .recycle_list::before {
  content: "";
  background: url(../img/common/line_dot.png) repeat-x;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 0;
}
.sec_recycle .recycle_list li {
  width: 14.7%;
  background: #fff;
  border: 3px solid #4c99d4;
  display: flex;
  flex-direction: column;
}
.sec_recycle .recycle_list li div {
  padding: 21px 0;
  text-align: center;
  position: relative;
  height: 102px;
}
.sec_recycle .recycle_list li div::before {
  content: "";
  background: #f7f7f7;
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 1;
}
.sec_recycle .recycle_list li img {
  width: 70px;
  position: relative;
  z-index: 2;
}
.sec_recycle .recycle_list li p {
  background: #4c99d4;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  padding: 11px 0 11px;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}
.sec_recycle .recycle_list li:nth-child(4) img {
  width: 65px;
}
.sec_recycle .recycle_list li:nth-child(6) img {
  width: 60px;
}
.sec_recycle .content_02 {
  margin-top: 45px;
}
.sec_recycle .content_02 .content_ttl {
  padding: 1.3% 0 1.7%;
}
.sec_recycle .content_02 .content_box {
  padding: 40px 50px 50px;
}
.sec_recycle .content_02 .content_box .txt_box {
  width: 53%;
}
.sec_recycle .content_02 .content_box .ttl {
  font-size: 32px;
  font-size: min(2.6vw, 32px);
  margin: -10px 0 15px;
}
.sec_recycle .content_02 .content_box img {
  width: 43.1%;
}

@media only screen and (max-width: 1024px) {
  .sec_recycle .sec_ttl .size_small::before {
    top: 4%;
  }
}
@media only screen and (max-width: 960px) {
  .sec_recycle .sec_ttl .size_small {
    padding-left: 53px;
  }
  .sec_recycle .sec_ttl .size_small::before {
    width: 41.3px;
    height: 35.7px;
    top: 4%;
  }
  .sec_recycle .top_intro_box .txt_box::after {
    width: 191.1px;
    height: 66.5px;
  }
  .sec_recycle .recycle_list {
    padding-top: 30px;
    margin-top: 25px;
  }
  .sec_recycle .recycle_list li div {
    height: 90px;
  }
  .sec_recycle .recycle_list li img {
    width: 50px !important;
  }
  .sec_recycle .recycle_list li p {
    font-size: 15px;
  }
  .sec_recycle .content_02 .content_box {
    padding: 3.5vw 4vw 4vw;
  }
}
@media only screen and (max-width: 568px) {
  .sec_recycle .top_intro_box {
    margin-bottom: 20px;
  }
  .sec_recycle .sec_ttl {
    line-height: 1.35;
    margin: -3px 0 16px;
  }
  .sec_recycle .sec_ttl .size_small {
    padding-left: 55px;
    font-size: 29px;
  }
  .sec_recycle .sec_ttl .size_small::before {
    width: 40px;
    height: 36px;
    top: 3px;
    left: 3px;
  }
  .sec_recycle .top_intro_box .txt_box::after {
    width: 149px;
    height: 52px;
    bottom: 16px;
    right: -25px;
  }
  .sec_recycle .ttl_underbar {
    line-height: 1.45;
  }
  .sec_recycle .content_01 .content_box {
    grid-template-columns: 47.4% 43.7%;
    grid-template-rows: auto auto;
    -moz-column-gap: 9.1%;
         column-gap: 9.1%;
  }
  .sec_recycle .content_01 .recycle_persent {
    grid-column: 1;
    grid-row: 1;
    margin: 5px 0 0 10px;
  }
  .sec_recycle .content_01 .ttl {
    grid-column: 2;
    grid-row: 1;
    font-size: 19px;
    margin: 3px 0 0;
  }
  .sec_recycle .content_01 .txt {
    grid-column: 1/-1;
    grid-row: 2;
    font-size: 14px;
    margin-top: 18px;
  }
  .sec_recycle .content_01::after {
    width: 35px;
    height: 20px;
    bottom: -20px;
  }
  .sec_recycle .recycle_list {
    flex-wrap: wrap;
    gap: 15px 0;
    padding-top: 22px;
    margin: 16px 0 5px;
  }
  .sec_recycle .recycle_list li {
    width: 47.4%;
  }
  .sec_recycle .recycle_list li div {
    padding: 13px 0;
    height: initial;
  }
  .sec_recycle .recycle_list li img {
    width: 50px;
  }
  .sec_recycle .recycle_list li p {
    font-size: 16px;
    min-height: 60px;
    padding: 0;
  }
  .sec_recycle .content_02 {
    margin-top: 25px;
  }
  .sec_recycle .content_02 .content_ttl {
    font-size: 23px;
    padding: 8px 0 10px;
  }
  .sec_recycle .content_02 .content_box {
    padding: 20px 20px;
    flex-direction: column-reverse;
  }
  .sec_recycle .content_02 .content_box .txt_box {
    width: 100%;
  }
  .sec_recycle .content_02 .content_box .ttl {
    font-size: 21px;
    margin: 13px 0 10px;
    text-align: center;
  }
  .sec_recycle .content_02 .content_box img {
    width: 100%;
  }
}
/*===============================================
 *	ボランティア活動・環境保全活動
===============================================*/
.sec_volunteer {
  position: relative;
  z-index: 1;
  padding-top: 0;
}
.sec_volunteer.bg_sankaku_right::before {
  top: min(25vw, 350px);
}
.sec_volunteer .volunteer_top_img {
  height: min(25vw, 350px);
}
.sec_volunteer .volunteer_top_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_volunteer .bg_sankaku_right::before {
  top: min(25vw, 350px);
}
.sec_volunteer .box_wrapper {
  margin-top: max(-5.5%, -80px);
}
.sec_volunteer .sec_ttl_box {
  background: url(../img/common/bg_town04.png) no-repeat center bottom;
  background-size: contain;
  padding-bottom: 2.8%;
  margin-top: -1.5%;
}
.sec_volunteer .sec_ttl {
  letter-spacing: 0.01em;
  font-size: min(4.5vw, 60px);
  line-height: 1.45;
  text-shadow: rgb(255, 255, 255) 5px 0px 0px, rgb(255, 255, 255) 4.90033px 0.993347px 0px, rgb(255, 255, 255) 4.60531px 1.94709px 0px, rgb(255, 255, 255) 4.12668px 2.82321px 0px, rgb(255, 255, 255) 3.48353px 3.58678px 0px, rgb(255, 255, 255) 2.70151px 4.20736px 0px, rgb(255, 255, 255) 1.81179px 4.6602px 0px, rgb(255, 255, 255) 0.849836px 4.92725px 0px, rgb(255, 255, 255) -0.145998px 4.99787px 0px, rgb(255, 255, 255) -1.13601px 4.86924px 0px, rgb(255, 255, 255) -2.08073px 4.54649px 0px, rgb(255, 255, 255) -2.94251px 4.04248px 0px, rgb(255, 255, 255) -3.68697px 3.37732px 0px, rgb(255, 255, 255) -4.28444px 2.57751px 0px, rgb(255, 255, 255) -4.71111px 1.67494px 0px, rgb(255, 255, 255) -4.94996px 0.7056px 0px, rgb(255, 255, 255) -4.99147px -0.291871px 0px, rgb(255, 255, 255) -4.83399px -1.27771px 0px, rgb(255, 255, 255) -4.48379px -2.2126px 0px, rgb(255, 255, 255) -3.95484px -3.05929px 0px, rgb(255, 255, 255) -3.26822px -3.78401px 0px, rgb(255, 255, 255) -2.4513px -4.35788px 0px, rgb(255, 255, 255) -1.53666px -4.75801px 0px, rgb(255, 255, 255) -0.560763px -4.96845px 0px, rgb(255, 255, 255) 0.437495px -4.98082px 0px, rgb(255, 255, 255) 1.41831px -4.79462px 0px, rgb(255, 255, 255) 2.34258px -4.41727px 0px, rgb(255, 255, 255) 3.17346px -3.86382px 0px, rgb(255, 255, 255) 3.87783px -3.15633px 0px, rgb(255, 255, 255) 4.4276px -2.32301px 0px, rgb(255, 255, 255) 4.80085px -1.39708px 0px, rgb(255, 255, 255) 4.98271px -0.415447px 0px;
}
.sec_volunteer .sec_ttl .size_small {
  font-size: 0.78em;
}
.sec_volunteer .sec_ttl .txt_primarycolor .size_small {
  font-size: 0.83em;
}
.sec_volunteer .top_intro_box .txt_box {
  position: relative;
  width: 56.8%;
  margin-left: -90px;
}
.sec_volunteer .top_intro_box .txt_box::after {
  content: "";
  background: url(../img/common/volunteer_txt.png) no-repeat;
  background-size: contain;
  width: 261px;
  height: 79px;
  position: absolute;
  bottom: -42px;
  right: -20px;
}
.sec_volunteer .btn_area {
  background: url(../img/common/bg_dot02.png);
  padding: 25px 0;
}

.volunteer_content_wrap .content_ttl {
  padding: 1.3% 0 1.7%;
}
.volunteer_content_wrap .content_box {
  padding: 40px 0;
}
.volunteer_content_wrap .txt_box {
  width: 48.2%;
}
.volunteer_content_wrap .txt_box .ttl {
  font-size: min(2.6vw, 32px);
  margin: -10px 0 15px;
}
.volunteer_content_wrap .txt_box ul {
  margin-top: 20px;
}
.volunteer_content_wrap .txt_box ul li {
  width: 47.8%;
}
.volunteer_content_wrap .photo {
  width: 48.2%;
}
.volunteer_content_wrap .sub_content_box {
  padding: 25px 40px 26px;
  margin-bottom: 40px;
}
.volunteer_content_wrap .sub_content_box .ttl {
  font-size: 22px;
  padding-left: 22px;
  margin-bottom: 8px;
  position: relative;
}
.volunteer_content_wrap .sub_content_box .ttl::before {
  content: "";
  background: #7bbce6;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 15px;
}
.volunteer_content_wrap .sub_content_box ul {
  gap: 0 1.5%;
  margin: 20px 0 0;
}
.reference_link {
  margin-top: 35px;
}
.reference_link dt {
  font-size: min(1.5vw, 20px);
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  padding: 0 20px;
  margin-right: 20px;
}
.reference_link dd p {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.5;
  margin: -8px 0 3px;
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.reference_link dd p::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #7bbce6;
  display: inline-block;
  margin: 0 15px 3px 0;
}
.reference_link dd a {
  position: relative;
}
.reference_link dd a::after {
  content: "";
  background: url(../img/common/icon_link.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  right: -25px;
  top: 6px;
}
.reference_link dd a:hover {
  color: var(--site-primary);
}

@media only screen and (max-width: 1024px) {
  .reference_link dt {
    padding: 0px 10px;
    margin-right: 14px;
  }
}
@media only screen and (max-width: 960px) {
  .sec_volunteer .top_intro_box .txt_box::after {
    width: 182.7px;
    height: 55.3px;
  }
  .volunteer_content_wrap .content_box {
    padding: 30px 0;
  }
  .volunteer_content_wrap .txt_box .ttl {
    margin: -5px 0 15px;
  }
  .volunteer_content_wrap .sub_content_box {
    padding: 3% 5% 4%;
    margin-bottom: 25px;
  }
  .volunteer_content_wrap .sub_content_box .ttl {
    font-size: 19px;
  }
  .volunteer_content_wrap .sub_content_box .ttl::before {
    top: 12px;
  }
  .reference_link {
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .reference_link dt {
    font-size: 13px;
    padding: 11px 15px 12px;
    margin: 0 0 8px;
  }
  .reference_link dd p {
    font-size: 15px;
    margin: 0;
  }
  .reference_link dd p::before {
    margin: 0 7px 0 0;
  }
  .reference_link dd a::after {
    right: -20px;
    top: 4px;
  }
}
@media only screen and (max-width: 568px) {
  .sec_volunteer {
    overflow: hidden;
  }
  .sec_volunteer .volunteer_top_img {
    height: 46.6vw;
  }
  .sec_volunteer .box_wrapper {
    margin: 0;
    padding-bottom: 30px;
  }
  .sec_volunteer .sec_ttl_box {
    background: url(../img/common/bg_town04_sp.png) no-repeat center bottom;
    background-size: contain;
    margin: 0 -5.3vw;
    padding-bottom: 16px;
  }
  .sec_volunteer .sec_ttl {
    font-size: 29px;
    line-height: 1.3;
    text-align: center;
    letter-spacing: 0.03em;
  }
  .sec_volunteer .sec_ttl .size_small {
    font-size: 0.7em;
    margin-bottom: 3px;
  }
  .sec_volunteer .top_intro_box {
    margin-bottom: 0;
  }
  .sec_volunteer .top_intro_box .txt_box::after {
    width: 143px;
    height: 43px;
    bottom: -15px;
    right: -26px;
  }
  .sec_volunteer .btn_area {
    padding: 20px 0;
  }
  .volunteer_content_wrap {
    margin: 0 -5.3vw;
  }
  .volunteer_content_wrap .content_ttl {
    font-size: 23px;
    padding: 8px 0 10px;
  }
  .volunteer_content_wrap .content_box {
    padding: 20px 5.3vw;
    flex-direction: column-reverse;
  }
  .volunteer_content_wrap .txt_box {
    width: 100%;
  }
  .volunteer_content_wrap .txt_box .ttl {
    font-size: 21px;
    margin: 13px 0 10px;
    text-align: center;
  }
  .volunteer_content_wrap .txt_box ul {
    flex-direction: column;
    align-items: center;
    gap: 12px 0;
    margin-top: 15px;
  }
  .volunteer_content_wrap .txt_box ul li {
    width: 64%;
  }
  .volunteer_content_wrap .sub_content_box {
    padding: 16px 20px 20px;
    margin: 5px 5.3vw 20px;
  }
  .volunteer_content_wrap .sub_content_box .ttl {
    margin-bottom: 8px;
  }
  .volunteer_content_wrap .sub_content_box ul {
    margin-top: 15px;
    flex-direction: column;
    align-items: center;
    gap: 12px 0;
  }
  .volunteer_content_wrap .sub_content_box ul li {
    width: 72.5%;
  }
  .volunteer_content_wrap .photo {
    width: 100%;
  }
  .reference_link {
    margin: 18px 0 10px;
  }
  .reference_link dt {
    font-size: 17px;
  }
  .reference_link dd p {
    font-size: 16px;
  }
}
/*===============================================
 *	料金について
===============================================*/
.sec_price .sec_ttl_box {
  position: relative;
  background: url(../img/common/bg_town03.png) no-repeat bottom center;
  background-size: 100% auto;
}
.sec_price .sec_ttl_box::before {
  content: "";
  background: url(../img/common/price_illust01.png) no-repeat center bottom;
  background-size: contain;
  width: 218px;
  width: min(16vw, 218px);
  height: 187px;
  position: absolute;
  left: 5%;
  bottom: 0;
}
.sec_price .sec_ttl_box::after {
  content: "";
  background: url(../img/common/price_illust02.png) no-repeat center bottom;
  background-size: contain;
  width: 224px;
  width: min(16.2vw, 224px);
  height: 172px;
  position: absolute;
  right: 5%;
  bottom: 0;
}
.sec_price .sec_ttl {
  line-height: 1.38;
  padding-bottom: 2.8%;
  margin-top: 1.15%;
}
.sec_price .sec_ttl .size_small {
  position: relative;
}
.sec_price .sec_ttl .size_small::before {
  content: "";
  background: url(../img/common/icon_items.png) no-repeat center top;
  background-size: contain;
  width: 101px;
  width: min(42%, 101px);
  height: 93px;
  position: absolute;
  left: -49%;
  top: -33%;
  transform: skewX(10deg);
}
.sec_price .top_intro_box {
  margin-bottom: 0;
}
.sec_price .top_intro_box .txt_box::after {
  content: "";
  background: url(../img/common/price_txt.png) no-repeat;
  background-size: contain;
  width: 161px;
  height: 80px;
  position: absolute;
  bottom: -55px;
  right: -20px;
}
.sec_price .camp_bnr_box {
  padding-top: 60px;
}
.sec_price .price_box {
  margin-top: 10px;
}
.sec_price .price_box .content_ttl {
  padding: 1.3% 0 1.7%;
}
.sec_price .price_box .price_content {
  padding: 26px 50px 50px;
}
.sec_price .price_box .cate_box img {
  width: 35%;
  max-width: 356px;
}
.sec_price .price_box .cate_box .price_list {
  width: 61.2%;
  max-width: 625px;
  margin-top: -8px;
}
.sec_price .price_box .cate_box dl {
  margin-bottom: 16px;
}
.sec_price .price_box .cate_box dt {
  font-size: 22px;
  font-weight: bold;
  position: relative;
  margin-bottom: 10px;
}
.sec_price .price_box .cate_box dt::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #7bbce6;
  display: inline-block;
  margin: 0 15px 3px 0;
}
.sec_price .price_box .cate_box dt .txt_keycolor {
  margin-left: 23px;
}
.sec_price .price_box .cate_box dt .yen {
  font-size: 0.77em;
}
.sec_price .price_box .cate_box dd {
  line-height: 1.8;
}
.sec_price .price_box .note_box {
  margin: 18px 0 30px;
}
.sec_price .price_box .btn_area {
  margin: 20px 0 30px;
}
.sec_price .price_box .btn_area .ttl {
  font-size: 26px;
  padding: 14px 0 16px;
  background: #4c99d4;
}
.sec_price .price_box .btn_area .ttl span {
  position: relative;
}
.sec_price .price_box .btn_area .ttl span::before {
  content: "";
  background: url(../img/common/icon_cost.png) no-repeat;
  background-size: contain;
  width: 42px;
  height: 40px;
  position: absolute;
  left: -58px;
  top: 1px;
}
.sec_price .price_box .btn_area ul {
  gap: 0 1.9%;
  padding: 30px 0;
}
.sec_price .price_box .btn_area ul li {
  width: 29.4%;
  margin: 0;
}

@media only screen and (max-width: 960px) {
  .sec_price .top_intro_box .txt_box::after {
    width: 112.7px;
    height: 56px;
    bottom: -30px;
  }
  .sec_price .camp_bnr_box {
    padding-top: 40px;
  }
  .sec_price .price_box .price_content {
    padding: 3vw 4vw 4vw;
  }
  .sec_price .price_box .cate_box dt {
    font-size: 18px;
  }
  .sec_price .price_box .btn_area .ttl {
    font-size: 20px;
    padding: 10px 0 11px;
  }
  .sec_price .price_box .btn_area .ttl span::before {
    width: 36px;
    height: 34px;
    left: -50px;
  }
  .sec_price .price_box .btn_area ul {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 568px) {
  .sec_price .sec_ttl_box {
    background: none;
  }
  .sec_price .sec_ttl_box::before {
    content: none;
  }
  .sec_price .sec_ttl_box::after {
    width: 115px;
    height: 90px;
    z-index: -1;
    right: -3px;
  }
  .sec_price .sec_ttl {
    font-size: 29px;
    line-height: 1.33;
    padding-bottom: 16px;
    position: relative;
    top: 2px;
  }
  .sec_price .sec_ttl .size_small {
    font-size: 20px;
    margin-left: -15px;
  }
  .sec_price .sec_ttl .size_small::before {
    width: 51px;
    height: 47px;
    left: -62px;
    top: -16px;
  }
  .sec_price .top_intro_box .txt_box::after {
    width: 88px;
    height: 44px;
    right: -26px;
    bottom: -15px;
  }
  .sec_price .price_box {
    margin: 0 -5.3vw;
    width: auto;
  }
  .sec_price .price_box .content_ttl {
    font-size: 23px;
    padding: 9px 0 12px;
  }
  .sec_price .price_box .price_content {
    padding: 16px 5.3vw 16px;
  }
  .sec_price .price_box .cate_box > div {
    flex-direction: column;
  }
  .sec_price .price_box .cate_box img {
    width: 100%;
  }
  .sec_price .price_box .cate_box .price_list {
    width: 100%;
    margin-top: 15px;
  }
  .sec_price .price_box .cate_box dl {
    margin-bottom: 14px;
  }
  .sec_price .price_box .cate_box dt {
    font-size: 19px;
    margin-bottom: 2px;
  }
  .sec_price .price_box .cate_box dt::before {
    margin: 0px 10px 2px 0;
  }
  .sec_price .price_box .cate_box dt .txt_keycolor {
    margin-left: 13px;
  }
  .sec_price .price_box .note_box {
    margin: 6px 0 25px;
  }
  .sec_price .price_box .btn_area {
    margin: 10px 0 25px;
  }
  .sec_price .price_box .btn_area .ttl {
    font-size: 19px;
  }
  .sec_price .price_box .btn_area .ttl span::before {
    width: 29px;
    height: 27px;
  }
  .sec_price .price_box .btn_area ul {
    flex-direction: column;
    align-items: center;
    gap: 15px 0;
  }
  .sec_price .price_box .btn_area ul li {
    width: 83.6%;
  }
  .sec_price .camp_bnr_box {
    padding-top: 30px;
  }
}
/*===============================================
 *	パック料金
===============================================*/
.sec_pack-plan {
  border-top: 1px solid #dde5e7;
  margin-top: -30px;
}
.sec_pack-plan .sec_ttl_box {
  background: url(../img/common/bg_town04-2.png) no-repeat bottom center;
  background-size: 100% auto;
  padding-bottom: 2.8%;
  margin-top: -20px;
}
.sec_pack-plan .sec_ttl_box p {
  font-size: 19px;
  margin-top: 15px;
}
.sec_pack-plan .sec_ttl {
  font-size: min(5vw, 60px);
}
.sec_pack-plan .sec_ttl .txt_primarycolor {
  position: relative;
}
.sec_pack-plan .sec_ttl .txt_primarycolor::before {
  content: "";
  background: url(../img/common/icon_track.png) no-repeat;
  background-size: contain;
  width: min(32%, 101px);
  height: 93px;
  position: absolute;
  left: -40%;
  top: 1%;
  transform: skewX(10deg);
}
.sec_pack-plan .note_box {
  padding: 3% 6.4% 3.2%;
}
.sec_pack-plan .note_box p {
  padding-left: 80px;
}

.pack_list {
  gap: 30px 0;
  margin-bottom: 40px;
}
.pack_list li {
  width: 31.8%;
}
.pack_list .ttl {
  font-size: min(1.8vw, 25px);
  padding: 4% 0 5%;
}
.pack_list .txt_box {
  padding: 8.4% 10px 10px;
}
.pack_list .txt {
  background: #fff;
  font-size: min(1.5vw, 20px);
  font-weight: bold;
  line-height: 1.5;
  padding: 15px 0;
}
.pack_list dl {
  margin: 0 0 4.5% 6%;
}
.pack_list dt {
  width: 85px;
  font-size: min(1.4vw, 18px);
  font-weight: bold;
  background: #4c99d4;
  color: #fff;
  text-align: center;
  margin-bottom: 5px;
  padding: 5px 0 7px;
}
.pack_list dt.cost {
  background: var(--site-keycolor);
}
.pack_list dd {
  width: calc(100% - 85px);
  font-size: min(1.5vw, 20px);
  padding-left: 15px;
  margin-bottom: 10px;
  line-height: 1;
}
.pack_list dd.cost {
  color: var(--site-keycolor);
  font-size: min(1.9vw, 28px);
  font-weight: bold;
}
.pack_list dd.cost .yen {
  font-size: 0.63em;
}

@media only screen and (max-width: 960px) {
  .sec_pack-plan {
    margin-top: 0;
  }
  .sec_pack-plan .sec_ttl_box {
    margin-top: -10px;
  }
  .sec_pack-plan .sec_ttl_box p {
    font-size: 16px;
  }
  .pack_list {
    gap: 25px 0;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 568px) {
  .sec_pack-plan {
    margin-top: -15px;
    padding-bottom: 0;
  }
  .sec_pack-plan .sec_ttl_box {
    background: none;
    padding-bottom: 20px;
    margin-top: -3px;
  }
  .sec_pack-plan .sec_ttl_box p {
    padding: 0 20px;
  }
  .sec_pack-plan .sec_ttl {
    font-size: 29px;
    padding-left: 38px;
  }
  .sec_pack-plan .sec_ttl .txt_primarycolor::before {
    width: 51px;
    height: 47px;
  }
  .sec_pack-plan .box_wrapper {
    margin: 0 -5.3vw;
    width: auto;
    padding: 25px 5.3vw 30px;
  }
  .sec_pack-plan .note_box {
    padding: 15px 20px 17px;
  }
  .sec_pack-plan .note_box p {
    padding: 0;
  }
  .pack_list {
    flex-direction: column;
    gap: 20px 0;
    margin-bottom: 25px;
  }
  .pack_list li {
    width: 100%;
  }
  .pack_list .ttl {
    font-size: 21px;
    padding: 8px 0 10px;
  }
  .pack_list .txt_box {
    padding-top: 20px;
  }
  .pack_list dl {
    margin: 0 0 10px 15px;
  }
  .pack_list dt {
    font-size: 17px;
    width: 80px;
    padding: 3px 0 5px;
  }
  .pack_list dd {
    font-size: 17px;
    padding-left: 15px;
    margin-bottom: 6px;
  }
  .pack_list dd.cost {
    font-size: 24px;
  }
  .pack_list .txt {
    font-size: 19px;
    padding: 10px 0;
  }
}
/*===============================================
 *	料金プランの特徴
===============================================*/
.sec_price-feature {
  position: relative;
  z-index: 1;
}
.sec_price-feature .sec_ttl_box {
  background: url(../img/common/bg_town04.png) no-repeat center bottom;
  background-size: contain;
  padding-bottom: 2.8%;
  margin-top: -1.5%;
  position: relative;
  padding: 1.2% 0 2.8%;
}
.sec_price-feature .sec_ttl_box::before {
  content: "";
  background: url(../img/common/price_illust01.png) no-repeat center bottom;
  background-size: contain;
  width: 218px;
  width: min(16vw, 218px);
  height: 187px;
  position: absolute;
  left: 3.4%;
  bottom: 0;
}
.sec_price-feature .sec_ttl_box::after {
  content: "";
  background: url(../img/common/price_illust02.png) no-repeat center bottom;
  background-size: contain;
  width: 224px;
  width: min(16.2vw, 224px);
  height: 172px;
  position: absolute;
  right: 3.4%;
  bottom: 0;
}
.sec_price-feature .sec_ttl {
  line-height: 1.3;
}
.sec_price-feature .feature_content ul {
  margin-top: -30px;
}
.sec_price-feature .feature_content li {
  padding: 40px 0;
  border-bottom: 1px solid #dde5e7;
  position: relative;
}
.sec_price-feature .feature_content li .content_ttl {
  line-height: 1.3;
  margin: -8px 0 17px;
  display: flex;
  align-items: flex-start;
  gap: 0 14px;
}
.sec_price-feature .feature_content li .content_ttl .robot {
  font-size: 1.35em;
  letter-spacing: 0;
  position: relative;
  top: 1px;
  line-height: 1;
}
.sec_price-feature .feature_content li::after {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 0;
}
.sec_price-feature .feature_content li .txt_box {
  position: relative;
  z-index: 1;
}
.sec_price-feature .feature_content li:nth-child(even) {
  flex-direction: row-reverse;
}
.sec_price-feature .feature_content li:nth-child(1)::after {
  background: url(../img/common/price_feature_txt01-2.png) no-repeat;
  background-size: contain;
  width: 281px;
  height: 80px;
  right: 49%;
}
.sec_price-feature .feature_content li:nth-child(2)::after {
  background: url(../img/common/price_feature_txt02.png) no-repeat;
  background-size: contain;
  width: 275px;
  height: 67px;
}
.sec_price-feature .feature_content li:nth-child(3)::after {
  background: url(../img/common/price_feature_txt03.png) no-repeat;
  background-size: contain;
  width: 194px;
  height: 72px;
  right: 47%;
}
.sec_price-feature .feature_content li:nth-child(4) {
  border-bottom: none;
}
.sec_price-feature .feature_content li:nth-child(4)::after {
  background: url(../img/common/price_feature_txt04.png) no-repeat;
  background-size: contain;
  width: 276px;
  height: 83px;
}
.sec_price-feature .pay_box {
  margin: 20px 0 10px;
}
.sec_price-feature .pay_box .box_ttl {
  font-size: min(2.8vw, 35px);
  padding: 1.1% 0 1.35%;
  margin-bottom: 30px;
}
.sec_price-feature .pay_box .txt_box {
  width: 48%;
}
.sec_price-feature .pay_box .txt_box .ttl {
  font-size: min(2.5vw, 30px);
  margin: -10px 0 15px;
}
.sec_price-feature .pay_box .photo {
  width: 48%;
}

@media only screen and (max-width: 960px) {
  .sec_price-feature .feature_content ul {
    margin-top: -15px;
  }
  .sec_price-feature .feature_content li {
    padding: 25px 0;
  }
  .sec_price-feature .feature_content li .content_ttl {
    margin: -10px 0 12px;
  }
  .sec_price-feature .pay_box .box_ttl {
    margin-bottom: 22px;
  }
  .sec_price-feature .pay_box .txt_box .ttl {
    margin: -5px 0 10px;
  }
}
@media only screen and (max-width: 568px) {
  .sec_price-feature .sec_ttl_box {
    background: none;
    margin: -10px 0 0 -10px;
    padding-bottom: 17px;
  }
  .sec_price-feature .sec_ttl_box::before {
    content: none;
  }
  .sec_price-feature .sec_ttl_box::after {
    width: 111px;
    height: 89px;
    z-index: -1;
    right: 0;
  }
  .sec_price-feature .sec_ttl {
    font-size: 29px;
    text-shadow: #fff 2px 0px 0px, #fff 1.75517px 0.958851px 0px, #fff 1.0806px 1.68294px 0px, #fff 0.141474px 1.99499px 0px, #fff -0.832294px 1.81859px 0px, #fff -1.60229px 1.19694px 0px, #fff -1.97998px 0.28224px 0px, #fff -1.87291px -0.701566px 0px, #fff -1.30729px -1.5136px 0px, #fff -0.421592px -1.95506px 0px, #fff 0.567324px -1.91785px 0px, #fff 1.41734px -1.41108px 0px, #fff 1.92034px -0.558831px 0px;
  }
  .sec_price-feature .sec_ttl .size_small {
    font-size: 20px;
  }
  .sec_price-feature .feature_content ul {
    margin-top: -20px;
  }
  .sec_price-feature .feature_content li {
    padding: 25px 0 20px;
  }
  .sec_price-feature .feature_content li:nth-child(even) {
    flex-direction: column-reverse;
  }
  .sec_price-feature .feature_content li::after {
    right: 0 !important;
    bottom: 26px;
  }
  .sec_price-feature .feature_content li .content_ttl {
    line-height: 1.48;
    justify-content: center;
    margin: 15px 0 12px -0.25em;
    gap: 0 7px;
  }
  .sec_price-feature .feature_content li .content_ttl .robot {
    top: 3px;
  }
  .sec_price-feature .feature_content li:nth-child(1)::after {
    width: 154px;
    height: 44px;
  }
  .sec_price-feature .feature_content li:nth-child(2)::after {
    width: 153px;
    height: 37px;
  }
  .sec_price-feature .feature_content li:nth-child(3)::after {
    width: 108px;
    height: 40px;
  }
  .sec_price-feature .feature_content li:nth-child(4)::after {
    width: 153px;
    height: 46px;
  }
  .sec_price-feature .pay_box {
    margin: 3px 0 5px;
  }
  .sec_price-feature .pay_box .box_ttl {
    font-size: 23px;
    padding: 9px 0 11px;
    margin: 0 -5.3vw 15px;
  }
  .sec_price-feature .pay_box .row {
    flex-direction: column;
  }
  .sec_price-feature .pay_box .txt_box {
    width: 100%;
  }
  .sec_price-feature .pay_box .txt_box .ttl {
    font-size: 21px;
    text-align: center;
    margin: 0 0 8px;
  }
  .sec_price-feature .pay_box .photo {
    width: 100%;
    margin-top: 20px;
  }
}
/*===============================================
 *	買取について
===============================================*/
.sec_purchase {
  position: relative;
  z-index: 1;
}
.sec_purchase .sec_ttl {
  margin-bottom: 25px;
}
.sec_purchase .sec_ttl .size_small {
  position: relative;
  padding-left: 77px;
}
.sec_purchase .sec_ttl .size_small::before {
  content: "";
  background: url(../img/common/icon_purchase.png) no-repeat;
  background-size: contain;
  width: 58px;
  height: 56px;
  position: absolute;
  left: 0;
  top: 7px;
  transform: skewX(10deg);
}
.sec_purchase .top_intro_box .txt_box::after {
  content: "";
  background: url(../img/common/purchase_txt.png) no-repeat;
  background-size: contain;
  width: 287px;
  height: 80px;
  position: absolute;
  bottom: -51px;
  right: -61px;
}
.sec_purchase .content_box {
  margin-bottom: 30px;
}
.sec_purchase .content_box .box_ttl {
  font-size: min(2.8vw, 35px);
  padding: 1.1% 0 1.35%;
}
.sec_purchase .content_box .row_box {
  margin-top: -10px;
}
.sec_purchase .content_box .txt_box .ttl {
  font-size: min(2.5vw, 30px);
  margin: -10px 0 15px;
}
.sec_purchase .content_box.box_03 {
  margin: 0;
}
.sec_purchase .border_box {
  margin-top: 70px;
}
.sec_purchase .purchase_items {
  margin-top: -12px;
}
.sec_purchase .item_list {
  gap: 38px 0;
}
.sec_purchase .item_list li {
  width: 18%;
}
.sec_purchase .item_list li .image_box {
  position: relative;
  background: #e7f3fa;
  text-align: center;
  padding: 28px 0;
}
.sec_purchase .item_list li .image_box img {
  width: 75px;
  position: relative;
  z-index: 2;
}
.sec_purchase .item_list li .image_box::before {
  content: "";
  background: #daedf9;
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 1;
}
.sec_purchase .item_list li .ttl {
  font-size: min(1.6vw, 21px);
  background: #4c99d4;
  padding: 7.6% 0 7.8%;
}
.sec_purchase .item_list li p {
  font-size: 16px;
  margin-top: 10px;
  padding: 0 12px;
}
.sec_purchase .example_items {
  margin: 46px 0 12px;
  padding-top: 35px;
  position: relative;
}
.sec_purchase .example_items::before {
  content: "";
  background: url(../img/common/line_dot.png) repeat-x;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 0;
}
.sec_purchase .example_list li {
  width: 31%;
  background: #f5f5f5;
}
.sec_purchase .example_list li .txt_box {
  padding: 22px 9.5% 9.5%;
}
.sec_purchase .example_list li .ttl {
  font-size: min(1.5vw, 20px);
  line-height: 1.5;
  margin-bottom: 9%;
}
.sec_purchase .example_list li dt {
  background: var(--site-keycolor);
  color: #fff;
  font-size: min(1.4vw, 18px);
  font-weight: bold;
  padding: 6px 10px 8px;
  margin-right: 18px;
}
.sec_purchase .example_list li dd {
  font-size: min(2.0vw, 28px);
  font-weight: bold;
  line-height: 1;
  position: relative;
  top: -3px;
}
.sec_purchase .example_list li dd .yen {
  font-size: 0.75em;
}

@media only screen and (max-width: 1024px) {
  .sec_purchase .sec_ttl .size_small::before {
    top: 0;
  }
}
@media only screen and (max-width: 960px) {
  .sec_purchase .sec_ttl .size_small {
    padding-left: 55px;
  }
  .sec_purchase .sec_ttl .size_small::before {
    width: 40.6px;
    height: 39.2px;
    top: 0;
  }
  .sec_purchase .top_intro_box .txt_box::after {
    width: 200.9px;
    height: 56px;
    bottom: -25px;
  }
  .sec_purchase .content_box .row_box {
    margin: 0;
  }
  .sec_purchase .border_box {
    margin-top: 50px;
  }
  .sec_purchase .purchase_items {
    margin: 0;
  }
  .sec_purchase .item_list {
    gap: 25px 0;
  }
  .sec_purchase .item_list li .image_box {
    padding: 20px 0;
  }
  .sec_purchase .item_list li .image_box img {
    width: 60px;
  }
  .sec_purchase .item_list li p {
    font-size: 14px;
    margin-top: 6px;
    padding: 0 5px;
  }
  .sec_purchase .example_items {
    margin: 35px 0 0;
    padding-top: 25px;
  }
}
@media only screen and (max-width: 568px) {
  .sec_purchase .sec_ttl {
    line-height: 1.35;
    margin: -5px 0 16px;
  }
  .sec_purchase .sec_ttl .size_small {
    font-size: 29px;
    padding-left: 52px;
  }
  .sec_purchase .sec_ttl .size_small::before {
    width: 40px;
    height: 38px;
    top: 4px;
  }
  .sec_purchase .top_intro_box {
    margin-bottom: 25px;
  }
  .sec_purchase .top_intro_box .txt_box::after {
    width: 157px;
    height: 44px;
    right: -26px;
    bottom: 15px;
  }
  .sec_purchase .content_box {
    margin-bottom: 20px;
  }
  .sec_purchase .content_box .box_ttl {
    font-size: 23px;
    padding: 9px 0 12px;
  }
  .sec_purchase .content_box .box_ttl.ttl_row {
    padding: 6px 0 8px;
  }
  .sec_purchase .content_box .txt_box .ttl {
    font-size: 21px;
    text-align: center;
    margin: 14px 0 10px;
  }
  .sec_purchase .border_box {
    margin: 35px -5.3vw 0;
    border-right: 0;
    border-left: 0;
  }
  .sec_purchase .purchase_items {
    margin-top: 2px;
  }
  .sec_purchase .item_list {
    gap: 16px 0;
  }
  .sec_purchase .item_list li {
    width: 47.8%;
  }
  .sec_purchase .item_list li .ttl {
    font-size: 16px;
    padding: 8px 0 9px;
  }
  .sec_purchase .item_list li p {
    margin-top: 9px;
    padding: 0 9px;
  }
  .sec_purchase .example_items {
    margin: 20px 0 10px;
    padding-top: 20px;
  }
  .sec_purchase .example_list {
    flex-direction: column;
    gap: 20px 0;
  }
  .sec_purchase .example_list li {
    width: 100%;
  }
  .sec_purchase .example_list li .txt_box {
    padding: 16px 9.5% 25px;
  }
  .sec_purchase .example_list li .ttl {
    font-size: 19px;
    margin-bottom: 18px;
  }
  .sec_purchase .example_list li dt {
    font-size: 17px;
    padding: 4px 14px 6px;
  }
  .sec_purchase .example_list li dd {
    font-size: 30px;
  }
  .sec_purchase .example_list li dd .yen {
    font-size: 21px;
  }
}
/*===============================================
 *	作業事例
===============================================*/
.sec_case .sec_ttl {
  margin-bottom: 25px;
}
.sec_case .sec_ttl .size_small {
  position: relative;
}
.sec_case .sec_ttl .size_small::before {
  content: "";
  background: url(../img/common/icon_case.png) no-repeat;
  background-size: contain;
  width: 59px;
  height: 60px;
  position: absolute;
  left: -82px;
  top: 7px;
  transform: skewX(10deg);
}
.sec_case .case_box {
  background: #f5f5f5;
  margin-bottom: 30px;
}
.sec_case .case_box .content_ttl {
  padding: 1.4% 0 1.7%;
  position: relative;
}
.sec_case .case_box .content_ttl::before {
  content: "";
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}
.sec_case .case_box.case_01 .content_ttl::before {
  background: url(../img/common/case_txt01.png) no-repeat center;
  background-size: contain;
  width: 152px;
  width: min(14%, 152px);
  height: 48px;
}
.sec_case .case_box.case_02 .content_ttl::before {
  background: url(../img/common/case_txt02.png) no-repeat center;
  background-size: contain;
  width: 158px;
  width: min(14%, 158px);
  height: 48px;
}
.sec_case .case_box.case_03 {
  margin: 0;
}
.sec_case .case_box.case_03 .content_ttl::before {
  background: url(../img/common/case_txt03.png) no-repeat center;
  background-size: contain;
  width: 161px;
  width: min(14%, 161px);
  height: 49px;
}
.sec_case .case_box .main_box {
  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: auto auto;
  -moz-column-gap: 4%;
       column-gap: 4%;
  margin-top: -8px;
}
.sec_case .case_box .main_box .ttl {
  font-size: min(2.5vw, 30px);
  grid-column: 2;
  grid-row: 1;
  margin: -10px 0 20px;
}
.sec_case .case_box .main_box .ttl span {
  font-size: 0.66em;
  margin-left: 18px;
}
.sec_case .case_box .main_box .photo_set {
  grid-column: 1;
  grid-row: 1/-1;
}
.sec_case .case_box .main_box dl {
  grid-column: 1;
  grid-row: 2;
  margin-top: 15px;
}
.sec_case .case_box .main_box dl dt {
  width: 25%;
  font-weight: bold;
  padding: 12px 0 14px;
  background: #4c99d4;
}
.sec_case .case_box .main_box dl dd {
  width: 25%;
  padding: 12px 0 14px;
}
.sec_case .case_box .main_box .case_cost {
  grid-column: 2;
  grid-row: 2;
}
.sec_case .case_box .main_box .case_cost li {
  margin-bottom: 15px;
}
.sec_case .case_box .main_box .case_cost li .cost_ttl {
  font-size: min(1.5vw, 20px);
  font-weight: bold;
  width: 45%;
  text-align: center;
  padding: 9px 3.1% 11px;
}
.sec_case .case_box .main_box .case_cost li .cost_ttl .item {
  font-size: 0.75em;
  display: block;
  text-align: center;
  background: #fff;
  color: #333;
  padding: 5px 0 6px;
  margin-top: 10px;
}
.sec_case .case_box .main_box .case_cost li .cost_price {
  font-size: min(2.5vw, 30px);
  font-weight: bold;
  text-align: right;
  width: 55%;
}
.sec_case .case_box .main_box .case_cost li .cost_price .yen {
  font-size: 0.73em;
}
.sec_case .case_box .main_box .case_cost li:nth-child(1) .cost_ttl {
  background: #4c99d4;
}
.sec_case .case_box .main_box .case_cost li:nth-child(2) .cost_ttl {
  background: #b98a4a;
}
.sec_case .case_box .main_box .case_cost li:nth-child(3) {
  border-top: 2px solid #dde5e7;
  padding-top: 15px;
  margin-bottom: 0;
}
.sec_case .case_box .main_box .case_cost li:nth-child(3) .cost_ttl {
  font-size: min(1.6vw, 22px);
  background: var(--site-keycolor);
  padding: 12px 15px 14px;
}
.sec_case .case_box .customer_box {
  background: #d7eaf6;
  padding: 30px 40px 20px;
  margin: 40px 0 20px;
}
.sec_case .case_box .customer_box .txt {
  margin-top: 5px;
}
.sec_case .case_box .customer_box .customer_img {
  width: 130px;
  float: left;
  margin-right: 40px;
}
.sec_case .case_box .customer_box .customer_img p {
  font-size: 15px;
  font-weight: bold;
  margin-top: 5px;
}
.sec_case .case_box .staff_box {
  padding: 40px 40px;
}
.sec_case .case_box .staff_box .ttl {
  font-size: 22px;
  position: relative;
  margin: -7px 0 12px;
}
.sec_case .case_box .staff_box .ttl::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #7bbce6;
  display: inline-block;
  margin: 0 15px 3px 0;
}
.sec_case .case_box .staff_box img {
  float: right;
  width: 260px;
  margin: -40px 0 0 30px;
}
.sec_case .case_box .annotation_txt {
  margin: 10px 0 -10px;
}
.sec_case .other_case {
  margin-top: 40px;
}
.sec_case .other_case .content_ttl {
  margin-bottom: 20px;
}
.sec_case .other_case .annotation_txt {
  font-size: 15px;
  color: #999;
  margin-top: 23px;
}
.sec_case .camp_bnr_box {
  padding: 50px 0 0;
}

.case_list {
  gap: 35px 3.125%;
}
.case_list li {
  background: #f5f5f5;
  width: 31.25%;
}
.case_list li a {
  height: 100%;
}
.case_list li .ttl {
  font-size: min(1.5vw, 19px);
  line-height: 1.5;
  padding: 4% 9% 5%;
}
.case_list li .photo img {
  aspect-ratio: 1.618/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.case_list li .txt_box {
  padding: 4.8% 8.5% 9%;
}
.case_list li .date {
  font-size: min(1.2vw, 16px);
  font-weight: bold;
  margin-bottom: 6px;
}
.case_list li .date::before {
  content: "";
  background: url(../img/common/icon_time.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.case_list li .area {
  font-size: min(1.2vw, 16px);
  font-weight: bold;
}
.case_list li .area::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #7bbce6;
  display: inline-block;
  margin: 0 10px 1px 0;
}
.case_list li .work_name {
  font-size: min(1.4vw, 18px);
  font-weight: bold;
  text-align: center;
  padding: 1.3% 0 2%;
  margin-top: 15px;
}
.case_list li a::before {
  content: "";
  background: url(../img/common/icon_sankaku_rightdown_blue.svg) no-repeat;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.case_list dl {
  background: #fff;
  margin-top: 10px;
}
.case_list dl dt, .case_list dl dd {
  width: 25%;
  font-size: min(1.1vw, 15px);
  padding: 2.5% 0 3%;
}
.case_list dl dt {
  width: 22.4%;
  background: var(--site-primary);
  font-weight: bold;
}
.case_list dl dt:nth-of-type(2) {
  width: 27.6%;
}
.case_list dl dd {
  width: 25%;
}
.case_list .total_price {
  font-size: min(2.2vw, 28px);
  font-weight: bold;
  margin-top: 20px;
}
.case_list .total_price .label {
  color: #fff;
  background: var(--site-keycolor);
  width: 50px;
  height: 50px;
  font-size: 14px;
  text-align: center;
  line-height: 50px;
  border-radius: 50px;
  margin-right: 8px;
}
.case_list .total_price .yen {
  font-size: 0.6em;
}
.case_list + .annotation_txt {
  font-size: 15px;
  color: #999;
  margin-top: 23px;
}

.work_huyou {
  background: #4c99d4;
}

.work_tokusyu {
  background: #5dc595;
}

.work_gomi {
  background: #d1a76b;
}

.work_ihin {
  background: #9d73bb;
}

@media only screen and (max-width: 1300px) {
  .sec_case .case_box .content_ttl {
    font-size: min(2.4vw, 32px);
  }
  .sec_case .case_box .main_box .ttl {
    font-size: min(2.2vw, 28px);
  }
  .sec_case .case_box .main_box .case_cost li .cost_price {
    font-size: min(2.2vw, 28px);
  }
}
@media only screen and (max-width: 1024px) {
  .sec_case .sec_ttl .size_small::before {
    top: 0;
  }
  .sec_case .case_box .main_box .case_cost li {
    margin-bottom: 10px;
  }
  .sec_case .case_box .main_box dl dt {
    font-size: 15px;
  }
  .sec_case .case_box .main_box dl dd {
    font-size: 15px;
  }
  .sec_case .case_box .customer_box {
    margin-top: 30px;
  }
  .sec_case .camp_bnr_box {
    width: 100%;
  }
}
@media only screen and (max-width: 960px) {
  .sec_case .sec_ttl .size_small::before {
    width: 41.3px;
    height: 42px;
    left: -60px;
    top: 0;
  }
  .sec_case .case_box {
    margin-bottom: 25px;
  }
  .sec_case .case_box .main_box {
    margin-top: 0;
  }
  .sec_case .case_box .main_box .ttl {
    margin: -5px 0 10px;
  }
  .sec_case .case_box .main_box .case_cost li .cost_ttl {
    font-size: 14px;
    padding: 6px 3% 7px;
    width: 38%;
  }
  .sec_case .case_box .main_box .case_cost li .cost_price {
    font-size: 19px;
    width: 62%;
  }
  .sec_case .case_box .main_box .case_cost li:nth-child(3) {
    padding-top: 8px;
  }
  .sec_case .case_box .main_box dl dt, .sec_case .case_box .main_box dl dd {
    font-size: 13px;
    padding: 8px 0;
  }
  .sec_case .case_box .customer_box {
    padding: 3% 4%;
    margin-top: 20px;
  }
  .sec_case .case_box .customer_box .customer_img {
    width: 100px;
    margin-right: 20px;
  }
  .sec_case .case_box .staff_box {
    padding: 3.5% 4%;
  }
  .sec_case .case_box .staff_box img {
    width: 190px;
    margin: -30px 0 0 20px;
  }
  .sec_case .case_box .staff_box .ttl {
    font-size: 16px;
    margin: 0 0 10px;
  }
  .sec_case .other_case .annotation_txt {
    font-size: 12px;
    margin-top: 15px;
  }
  .sec_case .camp_bnr_box {
    padding: 30px 0 0;
  }
  .case_list li .date::before {
    width: 15px;
    height: 15px;
    margin-right: 5px;
  }
  .case_list li .work_name {
    margin-top: 8px;
  }
  .case_list .total_price {
    margin-top: 12px;
  }
  .case_list .total_price .label {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
  }
  .case_list + .annotation_txt {
    font-size: 12px;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 568px) {
  .sec_case.bg_sankaku_left::after {
    content: none;
  }
  .sec_case .sec_ttl {
    line-height: 1.35;
    margin: -5px 0 13px;
  }
  .sec_case .sec_ttl .size_small {
    font-size: 29px;
    margin-left: 29px;
  }
  .sec_case .sec_ttl .size_small::before {
    width: 36px;
    height: 36px;
    top: 5px;
    left: -47px;
  }
  .sec_case .box_wrapper {
    margin: 0 -5.3vw;
    width: auto;
    padding: 0 0 30px;
  }
  .sec_case .case_box {
    margin-bottom: 0;
  }
  .sec_case .case_box .md_inner_space {
    padding-bottom: 30px;
  }
  .sec_case .case_box .content_ttl {
    font-size: 23px;
    line-height: 1.45;
    padding: 2.6% 0 3%;
    display: flex;
    align-items: center;
    gap: 0 15px;
    text-align: left;
  }
  .sec_case .case_box .content_ttl::before {
    position: relative;
    left: initial;
    top: initial;
    transform: none;
    margin-left: 5.3vw;
  }
  .sec_case .case_box.case_01 .content_ttl::before {
    width: 98px;
    height: 31px;
  }
  .sec_case .case_box.case_02 .content_ttl::before {
    width: 101px;
    height: 31px;
  }
  .sec_case .case_box.case_03 .content_ttl::before {
    width: 104px;
    height: 31px;
  }
  .sec_case .case_box .main_box {
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
  }
  .sec_case .case_box .main_box .ttl {
    grid-column: 1;
    grid-row: 1;
    font-size: 21px;
    line-height: 1.18;
    margin: -2px 0 15px;
  }
  .sec_case .case_box .main_box .ttl span {
    font-size: 16px;
    margin: 0;
  }
  .sec_case .case_box .main_box dl {
    margin-top: 10px;
  }
  .sec_case .case_box .main_box dl dt, .sec_case .case_box .main_box dl dd {
    font-size: 14px;
    padding: 5px 0;
  }
  .sec_case .case_box .main_box dl dt {
    width: 28.4%;
  }
  .sec_case .case_box .main_box dl dd {
    width: 21.6%;
  }
  .sec_case .case_box .main_box .photo_set {
    grid-column: 1;
    grid-row: 2;
  }
  .sec_case .case_box .main_box .case_cost {
    grid-column: 1;
    grid-row: 3;
    margin-top: 15px;
  }
  .sec_case .case_box .main_box .case_cost li {
    margin-bottom: 5px;
  }
  .sec_case .case_box .main_box .case_cost li .cost_ttl {
    font-size: 15px;
    width: 47.8%;
    padding: 5px 5px 7px;
  }
  .sec_case .case_box .main_box .case_cost li .cost_ttl .item {
    font-size: 10px;
    margin-top: 5px;
    padding: 4px 0 5px;
  }
  .sec_case .case_box .main_box .case_cost li .cost_price {
    font-size: 20px;
  }
  .sec_case .case_box .main_box .case_cost li .cost_price {
    width: 52.2%;
  }
  .sec_case .case_box .main_box .case_cost li:nth-child(2) {
    margin-bottom: 10px;
  }
  .sec_case .case_box .main_box .case_cost li:nth-child(3) {
    padding-top: 10px;
  }
  .sec_case .case_box .main_box .case_cost li:nth-child(3) .cost_ttl {
    padding: 4px 0 6px;
    font-size: 16px;
  }
  .sec_case .case_box .customer_box {
    padding: 20px 20px;
    margin: 20px 0 10px;
  }
  .sec_case .case_box .customer_box .customer_img {
    margin-right: 5px;
  }
  .sec_case .case_box .customer_box .customer_img p {
    font-size: 14px;
  }
  .sec_case .case_box .customer_box img {
    width: 90px;
  }
  .sec_case .case_box .customer_box .txt {
    margin: -5px 0 0;
    line-height: 1.8;
  }
  .sec_case .case_box .staff_box {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
    padding: 20px 20px;
  }
  .sec_case .case_box .staff_box img {
    width: 47.4%;
    margin: 0 0 0 5%;
    grid-column: 1;
    grid-row: 2;
  }
  .sec_case .case_box .staff_box .ttl {
    grid-column: 1;
    grid-row: 1;
    font-size: 19px;
    margin: -4px 0 14px;
  }
  .sec_case .case_box .staff_box .ttl::before {
    margin: 0 10px 2px 0;
  }
  .sec_case .case_box .staff_box p {
    grid-column: 1;
    grid-row: 2;
    line-height: 1.8;
    margin-top: -7px;
  }
  .sec_case .case_box .annotation_txt {
    margin: 8px 0 -5px;
  }
  .sec_case .other_case {
    padding: 0 5.3vw;
    margin-top: 23px;
  }
  .sec_case .other_case .content_ttl {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .sec_case .other_case .annotation_txt {
    margin-top: 10px;
  }
  .sec_case .camp_bnr_box {
    padding: 28px 5.3vw 0;
  }
  .case_list {
    flex-direction: column;
    gap: 20px 0;
  }
  .case_list li {
    width: 100%;
  }
  .case_list li .ttl {
    font-size: 19px;
    padding: 11px 20px 13px;
  }
  .case_list li .txt_box {
    padding: 15px 20px 20px;
  }
  .case_list li .date {
    font-size: 14px;
    margin-bottom: 3px;
  }
  .case_list li .date::before {
    width: 20px;
    height: 20px;
    margin-right: 7px;
  }
  .case_list li .area {
    font-size: 14px;
    margin-bottom: 9px;
  }
  .case_list li .area::before {
    margin: 0 8px 0 0;
  }
  .case_list li .work_name {
    font-size: 18px;
    padding: 2px 0 4px;
  }
  .case_list li dl dt, .case_list li dl dd {
    font-size: 14px;
    padding: 4px 0 4px;
  }
  .case_list li .total_price {
    font-size: 30px;
    margin-top: 8px;
  }
  .case_list li .total_price .label {
    font-size: 14px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    position: relative;
    top: 3px;
  }
  .case_list li .total_price .yen {
    font-size: 21px;
  }
  .case_list + .annotation_txt {
    margin-top: 10px;
  }
}
/*===============================================
 *	サービスの流れ
===============================================*/
.sec_flow {
  position: relative;
  z-index: 1;
}
.sec_flow .sec_ttl {
  margin-bottom: 25px;
}
.sec_flow .sec_ttl .size_small {
  position: relative;
}
.sec_flow .sec_ttl .size_small::before {
  content: "";
  background: url(../img/common/icon_track02.png) no-repeat;
  background-size: contain;
  width: 80px;
  height: 43px;
  position: absolute;
  left: -97px;
  top: 17px;
  transform: skewX(10deg);
}
.sec_flow .box_wrapper {
  position: relative;
}
.sec_flow .box_wrapper::after {
  content: "";
  background: url(../img/common/flow_txt.png) no-repeat;
  background-size: contain;
  width: 141px;
  height: 84px;
  position: absolute;
  bottom: -53px;
  right: 30px;
}
.sec_flow .flow_list {
  margin: -35px 0 -10px;
}
.sec_flow .flow_list li {
  width: 18.6%;
}
.sec_flow .flow_list li .flow_label {
  display: flex;
  justify-content: center;
  padding: 17px 0;
  position: relative;
  margin: 0 -5%;
}
.sec_flow .flow_list li .flow_label::before {
  content: "";
  background: #7cbce6;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.sec_flow .flow_list li .flow_label picture {
  width: 54px;
  position: relative;
  z-index: 2;
}
.sec_flow .flow_list li .txt_box {
  background: #f5f5f5;
  padding: 9% 14.4% 11%;
}
.sec_flow .flow_list li .ttl {
  font-size: min(1.6vw, 21px);
  margin: 0 -10px 8px;
}
.sec_flow .flow_list li:first-child .flow_label::before {
  background: linear-gradient(90deg, rgba(124, 188, 230, 0) 0%, rgba(124, 188, 230, 0) 50%, #7cbce6 50%, #7cbce6 100%);
}
.sec_flow .flow_list li:last-child .flow_label::before {
  background: linear-gradient(90deg, #7cbce6 0%, #7cbce6 50%, rgba(124, 188, 230, 0) 50%, rgba(124, 188, 230, 0) 100%);
}

.caution_box {
  margin-top: 60px;
  position: relative;
}
.caution_box::after {
  content: "";
  background: #e69993;
  width: 110px;
  height: 46px;
  position: absolute;
  bottom: -46px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.caution_box .content_ttl {
  background: url(../img/common/bg_stripe-red.png);
  padding: 1.3% 0 1.6% 2%;
}
.caution_box .content_ttl span {
  position: relative;
}
.caution_box .content_ttl span::before {
  content: "";
  background: url(../img/common/icon_alert.png) no-repeat;
  background-size: contain;
  width: 50px;
  height: 44px;
  position: absolute;
  left: -70px;
  top: 5px;
}
.caution_box .content {
  padding: 0 54px;
  border: 4px solid #e69993;
  border-top: none;
}
.caution_box li {
  padding: 40px 0;
  border-bottom: 1px solid #dde5e7;
}
.caution_box li .txt_box {
  width: 64.3%;
}
.caution_box li .txt_box .ttl {
  font-size: min(2.4vw, 32px);
  gap: 0 14px;
  margin: -16px 0 8px;
}
.caution_box li .txt_box .ttl .robot {
  font-size: 1.25em;
  letter-spacing: 0;
  margin-top: 2px;
}
.caution_box li img {
  width: 31.7%;
}
.caution_box li:last-child {
  border: none;
}

.trust_box {
  margin-top: 55px;
}
.trust_box .content_ttl {
  padding: 1.3% 0 1.6%;
}
.trust_box .md_inner_space {
  margin-top: -10px;
}
.trust_box .txt_box {
  width: 53%;
}
.trust_box .ttl {
  font-size: min(2.4vw, 32px);
  margin: -12px 0 16px;
}
.trust_box .photo {
  width: 43.5%;
}

@media only screen and (max-width: 1024px) {
  .sec_flow .sec_ttl .size_small::before {
    top: 6px;
  }
  .caution_box .content_ttl span::before {
    width: 35px;
    height: 30.8px;
    left: -50px;
    top: 7px;
  }
  .caution_box .content {
    padding: 0 4.5vw;
  }
}
@media only screen and (max-width: 960px) {
  .sec_flow .sec_ttl .size_small::before {
    width: 56px;
    height: 30.1px;
    left: -68px;
  }
  .sec_flow .box_wrapper::after {
    width: 98.7px;
    height: 58.8px;
    bottom: -36px;
    right: 23px;
  }
  .sec_flow .flow_list {
    margin: -20px -20px 0;
  }
  .sec_flow .flow_list li .flow_label picture {
    width: 35px;
  }
  .sec_flow .flow_list li .ttl {
    font-size: 16px;
  }
  .sec_flow .flow_list li .txt_box {
    padding: 9% 9% 13%;
  }
  .caution_box {
    margin-top: 50px;
  }
  .caution_box .content_ttl span::before {
    top: 2px;
    left: -45px;
  }
  .caution_box li {
    padding: 4.5% 0;
  }
  .caution_box li .txt_box .ttl {
    margin: -8px 0 5px;
  }
  .trust_box .md_inner_space {
    margin-top: 0;
  }
  .trust_box .ttl {
    margin: -7px 0 10px;
  }
}
@media only screen and (max-width: 568px) {
  .sec_flow .sec_ttl {
    padding-left: 42px;
    margin-bottom: 17px;
  }
  .sec_flow .sec_ttl .size_small {
    font-size: 29px;
  }
  .sec_flow .sec_ttl .size_small::before {
    width: 50px;
    height: 27px;
    top: 11px;
    left: -57px;
  }
  .sec_flow .box_wrapper {
    margin: 0 -5.3vw;
    width: auto;
  }
  .sec_flow .box_wrapper::after {
    width: 78px;
    height: 46px;
    bottom: -21px;
    right: 17px;
  }
  .sec_flow .flow_list {
    flex-direction: column;
    margin: 5px 0 10px;
    gap: 20px 0;
  }
  .sec_flow .flow_list li {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .sec_flow .flow_list li .flow_label {
    margin: -15px 0;
    padding: 0;
  }
  .sec_flow .flow_list li .flow_label::before {
    height: 100%;
    width: 4px;
    top: initial;
    left: 50%;
    transform: translateX(-50%);
  }
  .sec_flow .flow_list li .flow_label picture {
    display: flex;
    width: 40px;
    margin-top: -44vw;
  }
  .sec_flow .flow_list li:first-child .flow_label {
    margin-top: 0;
  }
  .sec_flow .flow_list li:first-child .flow_label::before {
    background: linear-gradient(180deg, rgba(124, 188, 230, 0) 0%, rgba(124, 188, 230, 0) 25%, #7cbce6 25%, #7cbce6 100%);
  }
  .sec_flow .flow_list li:last-child .flow_label {
    margin-bottom: 0;
  }
  .sec_flow .flow_list li:last-child .flow_label::before {
    background: linear-gradient(0deg, rgba(124, 188, 230, 0) 0%, rgba(124, 188, 230, 0) 75%, #7cbce6 75%, #7cbce6 100%);
  }
  .sec_flow .flow_list li:last-child .flow_label picture {
    margin-top: -40vw;
  }
  .sec_flow .flow_list li .list_box {
    width: 82%;
  }
  .sec_flow .flow_list li .ttl {
    font-size: 21px;
  }
  .sec_flow .flow_list li .txt_box {
    padding: 14px 20px 20px;
  }
  .caution_box {
    margin-top: 35px;
  }
  .caution_box::after {
    width: 83px;
    height: 33px;
    bottom: -32px;
  }
  .caution_box .content_ttl {
    font-size: 23px;
    padding: 8px 0 10px;
  }
  .caution_box .content_ttl span::before {
    width: 25px;
    height: 22px;
    top: 7px;
    left: -36px;
  }
  .caution_box li {
    flex-direction: column-reverse;
    padding: 20px 0;
  }
  .caution_box li .txt_box {
    width: 100%;
  }
  .caution_box li .txt_box .ttl {
    font-size: 21px;
    justify-content: center;
    align-items: flex-start;
    margin: 15px 0 8px;
  }
  .caution_box li .txt_box .ttl .robot {
    font-size: 27px;
    margin-top: -4px;
  }
  .caution_box li img {
    width: 100%;
  }
  .trust_box {
    margin: 40px -5.3vw 0;
  }
  .trust_box .content_ttl {
    font-size: 23px;
    padding: 7px 0 10px;
  }
  .trust_box .row {
    flex-direction: column-reverse;
  }
  .trust_box .txt_box {
    width: 100%;
  }
  .trust_box .ttl {
    font-size: 21px;
    text-align: center;
    margin: 14px 0 8px;
  }
  .trust_box .photo {
    width: 100%;
  }
}
/*===============================================
 *	よくあるご質問
===============================================*/
.sec_faq .sec_ttl {
  margin-bottom: 25px;
}
.sec_faq .sec_ttl .size_small {
  position: relative;
}
.sec_faq .sec_ttl .size_small::before {
  content: "";
  background: url(../img/common/icon_faq.png) no-repeat;
  background-size: contain;
  width: 70px;
  height: 63px;
  position: absolute;
  left: -90px;
  top: -2px;
  transform: skewX(10deg);
}
.sec_faq .box_wrapper {
  position: relative;
}
.sec_faq .box_wrapper::after {
  content: "";
  background: url(../img/common/questions_txt.png) no-repeat;
  background-size: contain;
  width: 292px;
  height: 90px;
  position: absolute;
  right: 30px;
  bottom: -60px;
}
.sec_faq dl {
  background: #f5f5f5;
  padding: 35px 50px 40px;
  margin-bottom: 20px;
}
.sec_faq dl:nth-last-of-type(1) {
  margin: 0;
}
.sec_faq dl dt {
  font-size: min(1.8vw, 25px);
  font-weight: bold;
  margin-bottom: 30px;
  gap: 0 10px;
}
.sec_faq dl dt .robot {
  font-size: 1.52em;
  line-height: 1;
}
.sec_faq dl dd {
  padding: 37px 40px;
}

@media only screen and (max-width: 960px) {
  .sec_faq .sec_ttl .size_small::before {
    width: 49px;
    height: 44.1px;
    left: -64px;
  }
  .sec_faq .box_wrapper::after {
    width: 204.4px;
    height: 63px;
    right: 20px;
    bottom: -40px;
  }
  .sec_faq dl {
    padding: 4% 5% 4%;
  }
  .sec_faq dl dt {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .sec_faq dl dd {
    padding: 3.5% 4%;
  }
}
@media only screen and (max-width: 568px) {
  .sec_faq .sec_ttl {
    line-height: 1.4;
    margin-bottom: 14px;
  }
  .sec_faq .sec_ttl .size_small {
    font-size: 29px;
    margin-left: 50px;
  }
  .sec_faq .sec_ttl .size_small::before {
    width: 39px;
    height: 36px;
    left: -50px;
    top: 4px;
  }
  .sec_faq .box_wrapper {
    margin: 0 -5.3vw;
    width: auto;
  }
  .sec_faq .box_wrapper::after {
    width: 133px;
    height: 41px;
    right: 20px;
    bottom: -21px;
  }
  .sec_faq dl {
    padding: 18px 20px 20px;
    margin-bottom: 15px;
  }
  .sec_faq dl dt {
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .sec_faq dl dd {
    font-size: 14px;
    line-height: 1.7;
    padding: 15px 20px 20px;
  }
  .sec_faq dl:nth-of-type(1) {
    margin-top: 5px;
  }
  .sec_faq dl:nth-last-of-type(1) {
    margin-bottom: 5px;
  }
}
/*===============================================
 *	企業情報
===============================================*/
.sec_company {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.sec_company.lg_inner_space {
  padding-top: 0;
}
.sec_company .company_top_img {
  height: min(25vw, 350px);
}
.sec_company .company_top_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sec_company .sec_ttl_box {
  background: url(../img/common/bg_town04.png) no-repeat center bottom;
  background-size: contain;
  padding-bottom: 2.8%;
  margin-top: -1.5%;
}
.sec_company .sec_ttl {
  line-height: 1.35;
}
.sec_company .sec_ttl .txt_primarycolor {
  position: relative;
}
.sec_company .sec_ttl .txt_primarycolor::before {
  content: "";
  background: url(../img/common/icon_memo.png) no-repeat center top;
  background-size: contain;
  width: min(37%, 101px);
  height: 93px;
  position: absolute;
  left: -43%;
  top: 5%;
  transform: skew(10deg);
}
.sec_company .box_wrapper {
  margin-top: max(-5.5%, -80px);
}
.sec_company .info_box .ttl {
  font-size: min(3.0vw, 40px);
  padding: 1.3% 0 1.5%;
}
.sec_company .info_box table {
  width: 100%;
  background: #fff;
}
.sec_company .info_box table th {
  width: 29.4%;
  background: #f5f5f5;
  font-size: 19px;
  font-weight: bold;
  border: 1px solid #ccc;
  padding: 19px 0 21px;
}
.sec_company .info_box table td {
  border: 1px solid #ccc;
  padding: 19px 30px 21px;
}
.sec_company .info_box table td li {
  margin-bottom: 5px;
}
.sec_company .info_box table td li a {
  display: inline-block;
  margin-bottom: 2px;
}
.sec_company .greeting_box {
  margin-top: 44px;
}
.sec_company .greeting_box .txt_box {
  margin-top: 20px;
  position: relative;
}
.sec_company .greeting_box .txt_box::after {
  content: "";
  background: url(../img/common/greeting_txt.png) no-repeat;
  background-size: contain;
  width: 309px;
  width: min(25vw, 309px);
  height: 97px;
  position: absolute;
  left: -71%;
  bottom: 24px;
}
.sec_company .book_box {
  border: 4px solid #d2e5f4;
  margin-top: 30px;
}
.sec_company .book_box .box_ttl {
  font-size: min(2.8vw, 35px);
  padding: 1.3% 0 1.5%;
  gap: 0 20px;
  padding-right: 24%;
}
.sec_company .book_box .content {
  display: grid;
  grid-template-columns: 137px auto;
  grid-template-rows: auto 1fr;
  -moz-column-gap: 4.3%;
       column-gap: 4.3%;
  padding: 40px 50px;
}
.sec_company .book_box .content img {
  grid-column: 1;
  grid-row: 1/-1;
  border: 2px solid #dfdfdf;
}
.sec_company .book_box .content .ttl {
  font-size: min(2.3vw, 30px);
  margin: -8px 0 15px;
  grid-column: 2;
  grid-row: 1;
  text-indent: -17px;
}
.sec_company .book_box .content .ttl span {
  font-size: 0.75em;
  margin-left: -12px;
}
.sec_company .book_box .content p {
  grid-column: 2;
  grid-row: 2;
}

@media only screen and (max-width: 1024px) {
  .sec_company .book_box .box_ttl {
    padding-right: 12%;
  }
  .sec_company .book_box .box_ttl picture {
    width: 20%;
  }
  .sec_company .book_box .box_ttl img {
    vertical-align: middle;
  }
  .sec_company .book_box .content {
    padding: 4% 5%;
  }
}
@media only screen and (max-width: 960px) {
  .sec_company .info_box table th {
    font-size: 16px;
  }
}
@media only screen and (max-width: 568px) {
  .sec_company .company_top_img {
    height: initial;
  }
  .sec_company .sec_ttl_box {
    background: url(../img/common/bg_town04_sp.png) no-repeat center bottom;
    background-size: contain;
    margin: 0 -5.3vw;
    padding-bottom: 16px;
  }
  .sec_company .box_wrapper {
    margin: 0;
  }
  .sec_company .bg_paleblue {
    margin: 0 -5.3vw 10px;
    padding-bottom: 25px;
  }
  .sec_company .info_box {
    margin-top: 5px;
  }
  .sec_company .info_box .ttl {
    font-size: 25px;
    padding: 8px 0 11px;
  }
  .sec_company .info_box table {
    border-bottom: 1px solid #ccc;
  }
  .sec_company .info_box table th {
    width: 100%;
    display: block;
    font-size: 17px;
    padding: 8px 0 9px;
  }
  .sec_company .info_box table td {
    width: 100%;
    display: block;
    font-size: 15px;
    padding: 9px 20px 10px;
    border-top: none;
    border-bottom: none;
  }
  .sec_company .info_box table td li {
    margin-bottom: 8px;
  }
  .sec_company .greeting_box {
    margin-top: 30px;
  }
  .sec_company .greeting_box .txt_box {
    box-shadow: 0 0 25px rgba(51, 51, 51, 0.1);
  }
  .sec_company .greeting_box .txt_box::after {
    width: 168px;
    height: 52px;
    left: initial;
    right: -25px;
    bottom: 15px;
  }
  .sec_company .book_box {
    margin-top: 25px;
  }
  .sec_company .book_box .box_ttl {
    font-size: 23px;
    flex-direction: column;
    padding: 6px 0 8px;
  }
  .sec_company .book_box .box_ttl picture {
    width: 69.5%;
  }
  .sec_company .book_box .content {
    grid-template-columns: 32% auto;
    grid-template-rows: auto auto;
    -moz-column-gap: 5%;
         column-gap: 5%;
    padding: 20px 20px;
  }
  .sec_company .book_box .content img {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 14px 10px;
  }
  .sec_company .book_box .content .ttl {
    grid-column: 2;
    grid-row: 1;
    font-size: 21px;
    align-self: center;
    margin: -10px 0 0 11%;
    text-indent: -13px;
  }
  .sec_company .book_box .content p {
    grid-column: 1/-1;
    grid-row: 2;
  }
}
/*===============================================
 *	SNS
===============================================*/
.sec_sns {
  background: url(../img/common/bg_town05.png) repeat-x center bottom;
}
.sec_sns .sec_ttl_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 2.2%;
  margin-top: -10px;
}
.sec_sns .sec_ttl_box::before {
  content: "";
  background: url(../img/common/sns_illust.png) no-repeat center bottom;
  background-size: contain;
  width: min(27vw, 262px);
  height: min(14.5vw, 134.93px);
  display: block;
}
.sec_sns .sec_ttl .robot {
  font-size: 1.19em;
  position: relative;
  top: 3px;
}
.sec_sns .box .txt {
  gap: 0 60px;
  margin-top: -10px;
}
.sec_sns .box .txt img {
  width: 209px;
}
.sec_sns .box .txt p {
  font-size: min(1.8vw, 25px);
  line-height: 1.5;
  font-weight: bold;
}
.sec_sns .box ul {
  gap: 20px;
  margin-top: 20px;
  width: auto;
}
.sec_sns .box li {
  width: 48%;
}
.sec_sns .box li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--site-primary);
  gap: 0 20px;
  padding: 16px 0 17px;
  position: relative;
  height: 100%;
}
.sec_sns .box li a::before {
  content: "";
  background: url(../img/common/icon_link.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 15px;
  bottom: 12px;
}
.sec_sns .box li a:hover {
  background: #e7f3fa;
  color: #333;
}
.sec_sns .box li span {
  font-size: 22px;
  font-weight: bold;
}
.sec_sns .box li:nth-child(1) img {
  width: 34px;
}
.sec_sns .box li:nth-child(2) img {
  width: 40px;
}
.sec_sns .box li:nth-child(3) img {
  width: 34px;
}
.sec_sns .box li:nth-child(4) img {
  width: 30px;
}

@media only screen and (max-width: 960px) {
  .sec_sns .box .txt img {
    width: 22%;
  }
}
@media only screen and (max-width: 568px) {
  .sec_sns {
    background: url(../img/common/bg_town05-2.png) no-repeat left bottom;
    background-size: auto 78px;
  }
  .sec_sns .sec_ttl_box {
    flex-direction: column;
    margin-top: -2px;
  }
  .sec_sns .sec_ttl_box::before {
    background: url(../img/common/sns_illust_sp.png) no-repeat;
    background-size: contain;
    width: 189px;
    height: 82px;
    margin-left: 15px;
  }
  .sec_sns .sec_ttl {
    line-height: 1.1;
    margin: -22px 0 15px;
  }
  .sec_sns .sec_ttl .size_small {
    font-size: 29px;
  }
  .sec_sns .sec_ttl .robot {
    font-size: 1.26em;
  }
  .sec_sns .box {
    margin: 0 -5.3vw;
  }
  .sec_sns .box .txt {
    gap: 0 8%;
    margin: 0;
  }
  .sec_sns .box .txt img {
    width: 31.2%;
  }
  .sec_sns .box .txt p {
    font-size: 17px;
  }
  .sec_sns .box ul {
    gap: 15px 0;
    margin-bottom: 10px;
  }
  .sec_sns .box li {
    width: 100%;
    height: 50px;
  }
  .sec_sns .box li a {
    gap: 0 14px;
    padding: 0 35px 0 0;
  }
  .sec_sns .box li a::before {
    right: 7px;
    bottom: 7px;
  }
  .sec_sns .box li img {
    margin-top: 2px;
  }
  .sec_sns .box li span {
    font-size: 17px;
  }
  .sec_sns .box li:nth-child(1) img {
    width: 29px;
  }
  .sec_sns .box li:nth-child(2) a {
    padding-right: 44px;
  }
  .sec_sns .box li:nth-child(2) img {
    width: 35px;
  }
  .sec_sns .box li:nth-child(3) img {
    width: 30px;
  }
  .sec_sns .box li:nth-child(4) img {
    width: 25px;
  }
  .sec_sns .box li:nth-child(4) a {
    padding-right: 0;
  }
}
/*===============================================
 *	お役立ちコラム（TOP）
===============================================*/
.sec_column {
  position: relative;
  z-index: 1;
}
.sec_column .sec_ttl {
  margin-bottom: 25px;
}
.sec_column .sec_ttl .size_small {
  position: relative;
}
.sec_column .sec_ttl .size_small::before {
  content: "";
  background: url(../img/common/icon_write.png) no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  position: absolute;
  left: -80px;
  top: -2px;
  transform: skewX(10deg);
}
.sec_column ul {
  gap: 30px 3.125%;
}
.sec_column li {
  width: 31.25%;
  background: #f5f5f5;
  position: relative;
}
.sec_column li::after {
  content: "";
  background: url(../img/common/icon_sankaku_rightdown_blue.svg) no-repeat;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.sec_column li a:hover .image::before {
  opacity: 1;
}
.sec_column li a:hover .image img {
  transform: scale(1.05);
}
.sec_column li .list_content {
  position: relative;
}
.sec_column li .list_content .category_name {
  font-weight: bold;
  background: #b98a4a;
  padding: 6px 18px 8px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.sec_column li .image {
  position: relative;
  overflow: hidden;
}
.sec_column li .image::before {
  content: "";
  background: rgba(16, 133, 210, 0.2);
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0;
  z-index: 1;
  transition: all 0.2s;
}
.sec_column li .image img {
  transition: all 0.2s;
  aspect-ratio: 1.618/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_column li .txt_box {
  padding: 5.7% 8.57% 10%;
}
.sec_column li .post_date {
  font-size: min(1.5vw, 16px);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0 9px;
  margin-bottom: 10px;
}
.sec_column li .post_date::before {
  content: "";
  background: url(../img/common/icon_time.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
}
.sec_column li .ttl {
  font-size: min(1.5vw, 20px);
  line-height: 1.7;
}

@media only screen and (max-width: 1024px) {
  .sec_column li .list_content .category_name {
    font-size: 14px;
    padding: 3px 12px 5px;
  }
}
@media only screen and (max-width: 960px) {
  .sec_column .sec_ttl .size_small::before {
    width: 42px;
    height: 42px;
    left: -58px;
  }
  .sec_column li .list_content .category_name {
    font-size: 13px;
  }
}
@media only screen and (max-width: 568px) {
  .sec_column .sec_ttl {
    margin-bottom: 16px;
  }
  .sec_column .sec_ttl .size_small {
    font-size: 29px;
    margin-left: 26px;
  }
  .sec_column .sec_ttl .size_small::before {
    width: 36px;
    height: 36px;
    left: -46px;
    top: 2px;
  }
  .sec_column .box_wrapper {
    margin: 0 -5.3vw;
    width: auto;
  }
  .sec_column ul {
    gap: 15px 4.4%;
    margin: 5px 0;
  }
  .sec_column li {
    width: 47.8%;
  }
  .sec_column li::after {
    width: 18px;
    height: 18px;
    right: 5px;
    bottom: 5px;
  }
  .sec_column li .list_content .category_name {
    font-size: 11px;
    padding: 2px 7px 3px;
  }
  .sec_column li .txt_box {
    padding: 8px 16px 22px;
  }
  .sec_column li .post_date {
    font-size: 14px;
    gap: 0 7px;
    margin-bottom: 5px;
  }
  .sec_column li .ttl {
    font-size: 15px;
    line-height: 1.5;
  }
}
/*===============================================
 *	フッター
===============================================*/
.ft_inner {
  display: grid;
  grid-template-columns: 30.7% auto;
  grid-template-rows: auto 1fr;
  -moz-column-gap: 5.2%;
       column-gap: 5.2%;
}
.ft_inner .logo {
  grid-column: 1;
  grid-row: 1;
  max-width: 372px;
  margin-bottom: 30px;
}
.ft_inner .company_info {
  grid-column: 1;
  grid-row: 2;
  background: #f5f5f5;
  padding: 5.8% 10%;
  align-self: flex-start;
}
.ft_inner .company_info .name {
  font-size: min(1.5vw, 20px);
  font-weight: bold;
}
.ft_inner .company_info .address {
  font-size: min(1.3vw, 16px);
  margin: 12px 0 17px;
}
.ft_inner .company_info li {
  font-size: min(1.3vw, 16px);
  margin-bottom: 4px;
}
.ft_inner .company_info li a {
  display: inline-block;
  margin-bottom: 2px;
}
.ft_inner .ft_menu {
  grid-column: 2;
  grid-row: 1/-1;
  margin-top: 6px;
}
.ft_inner .ft_menu .menu_top {
  font-size: min(1.4vw, 18px);
  font-weight: bold;
  margin-bottom: 8px;
}
.ft_inner .ft_menu .menu_top::before {
  content: "";
  background: var(--site-primary);
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 10px;
  margin-right: 10px;
}
.ft_inner .ft_menu li {
  font-size: min(1.2vw, 15px);
  margin: 0 0 7px 25px;
  text-indent: -1em;
  padding-left: 1em;
}
.ft_inner .ft_menu li a {
  padding-left: 16px;
  position: relative;
}
.ft_inner .ft_menu li a::before {
  content: "";
  background: url(../img/common/icon_arrow_right_blue03.svg) no-repeat;
  width: 7px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 8px;
}
.ft_inner .ft_menu li a:hover {
  color: var(--site-primary);
}
.ft_inner .ft_menu .service_menu ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: min(30vw, 363px);
  gap: 0 10px;
}
.ft_inner .home_link {
  font-size: 19px;
  font-weight: bold;
  background: url(../img/common/icon_home.png) no-repeat center left;
  background-size: 19px 19px;
  padding-left: 31px;
  margin-bottom: 15px;
}

.footer {
  margin-bottom: 20px;
}

.footer .bnr_links {
  margin: 64px auto 60px;
}
.footer .bnr_links .ttl_links {
  margin-bottom: 7px;
  position: relative;
}
.footer .bnr_links .ttl_links::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #7bbce6;
  display: inline-block;
  margin: 0 10px 1px 0;
}
.footer .bnr_links .related_service {
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px 0;
}
.footer .bnr_links li {
  width: 24.4%;
  max-width:317px;
  height:auto;
}
.footer .bnr_links ul::after{
  content:"";
  display: block;
  width:49%;
}
.footer .copy {
  font-size: 15px;
  padding: 23px 0;
}
.footer .copy a {
  color: #fff;
}
.footer .pagetop {
  position: fixed;
  bottom: 133px;
  right: 30px;
  z-index: 100;
  cursor: pointer;
  display: none;
}
.footer .pagetop a {
  display: block;
  background-color: #333;
  text-align: center;
  width: 60px;
  height: 60px;
}
.footer .pagetop img {
  width: 10px;
  position: relative;
  top: 14px;
  left: 3px;
}
.footer .pagetop:hover a {
  background: #5c5c5c;
}

.fixed_footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--site-secondary);
  z-index: 100;
  padding: 15px 0;
  display: none;
}
.fixed_footer .logo {
  width: 25.8%;
  max-width: 335px;
}
.fixed_footer .tel {
  width: 21.4%;
  max-width: 277px;
  margin-left: auto;
}
.fixed_footer .mail {
  width: 12.4%;
  max-width: 160px;
  margin-right: -630px;
}
.fixed_footer .line {
  width: 12.4%;
  max-width: 160px;
  margin-left: 10px;
}

@media only screen and (max-width: 960px) {
  .ft_inner .company_info .name {
    font-size: 15px;
  }
  .ft_inner .company_info .address {
    font-size: 13px;
  }
  .ft_inner .company_info li {
    font-size: 13px;
  }
  .ft_inner .ft_menu {
    margin-top: 5px;
  }
  .ft_inner .ft_menu .menu_top {
    font-size: 15px;
  }
  .ft_inner .ft_menu li {
    font-size: 13px;
  }
  .ft_inner .ft_menu .service_menu ul {
    height: initial;
  }
  .footer {
    margin-bottom: 3.8vw;
  }

  .footer .copy {
    font-size: 12px;
  }
}
@media only screen and (max-width: 568px) {
  .ft_inner {
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
  }
  .ft_inner .logo {
    width: 79.8%;
    display: block;
    margin: -7px auto 10px;
    position: relative;
    left: -7px;
  }
  .ft_inner .company_info {
    grid-column: 1;
    grid-row: 3;
    margin-top: 25px;
    padding: 12px 20px 20px;
  }
  .ft_inner .company_info .name {
    font-size: 19px;
  }
  .ft_inner .company_info .address {
    font-size: 14px;
    margin: 0 0 12px;
  }
  .ft_inner .company_info li {
    font-size: 14px;
    margin-bottom: 7px;
  }
  .ft_inner .company_info li a::after {
    right: -20px;
    top: 4px;
  }
  .ft_inner .ft_menu {
    grid-column: 1;
    grid-row: 2;
  }
  .ft_inner .ft_menu .menu_wrapper {
    flex-direction: column;
    margin: 0 -5.3vw;
  }
  .ft_inner .ft_menu .menu_content ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid #e2e2e2;
  }
  .ft_inner .ft_menu .menu_top {
    font-size: 20px;
    color: #fff;
    background: var(--site-primary);
    text-align: center;
    padding: 8px 0 10px;
    margin: 0;
  }
  .ft_inner .ft_menu .menu_top::before {
    content: none;
  }
  .ft_inner .ft_menu li {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
    width: 50%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e2e2e2;
    text-indent: 0;
  }
  .ft_inner .ft_menu li:nth-child(odd) {
    border-right: 1px solid #e2e2e2;
  }
  .ft_inner .ft_menu li:nth-last-of-type(1), .ft_inner .ft_menu li:nth-child(odd):nth-last-of-type(2) {
    border-bottom: none;
  }
  .ft_inner .ft_menu li a {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 16px;
  }
  .ft_inner .ft_menu li a::before {
    width: 8px;
    height: 12px;
    position: absolute;
    left: initial;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .footer {
    margin-bottom: 45px;
    padding: 32px 0 60px;
  }

  .footer .bnr_links {
    margin: 25px 5.3vw 30px;
    /* padding: 0 20px; */
  }
  .footer .bnr_links ul {
    flex-direction: row;
    gap: 15px 0;
    width: 100%;
  }
  .footer .bnr_links li {
    width: 48%;
  }
  .footer .copy {
    font-size: 11px;
    padding: 13px 0;
  }
  .footer .pagetop {
    position: static;
    display: block;
  }
  .footer .pagetop a {
    width: 100%;
    height: auto;
    padding: 12px 0;
  }
  .footer .pagetop img {
    top: 0;
  }
}

/*===============================================
 *	下層ページ ページヘッダー
===============================================*/
.page_ttl_area {
  overflow: hidden;
}
.page_ttl_area.basic {
  background: url(../img/common/bg_page-ttl.jpg) no-repeat center top;
  background-size: cover;
  padding: 75px 0 63px;
}
.page_ttl_area.basic .page_ttl {
  font-size: min(4.5vw, 60px);
  line-height: 1.08;
}
.page_ttl_area .page_ttl {
  text-indent: -0.1em;
}
.page_ttl_area .page_ttl .en {
  font-family: "Freehand";
  font-weight: normal;
  color: #f4da33;
}
.page_ttl_area.photo_on .ttl_box {
  background: url(../img/common/bg_pattern01.jpg);
  width: 100%;
  margin-left: calc(50% - 50vw);
  padding: min(8.2vw, 110px) 0 min(8.2vw, 110px) calc(50vw - 50%);
}
.page_ttl_area.photo_on .page_ttl {
  font-size: min(5.0vw, 72px);
  line-height: 1.15;
  margin-left: -10px;
}
.page_ttl_area.photo_on .page_ttl .en {
  font-size: 1.11em;
}
.page_ttl_area.photo_on .photo {
  width: 100%;
  margin-right: calc(50% - 50vw);
}
.page_ttl_area.photo_on .photo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 960px) {
  .page_ttl_area.basic {
    padding: 7% 0 7%;
  }
}
@media only screen and (max-width: 768px) {
  .page_ttl_area {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 568px) {
  .page_ttl_area.basic {
    padding: 7.5% 0 5%;
    background: url(../img/common/bg_page-ttl_sp.jpg) no-repeat center;
    background-size: cover;
  }
  .page_ttl_area.basic .page_ttl {
    font-size: 34px;
    line-height: 1.2;
    margin-left: -15px;
    letter-spacing: 0;
  }
  .page_ttl_area .page_ttl .en {
    font-size: 40px;
    letter-spacing: 0.05em;
  }
  .page_ttl_area.photo_on .inner_wide {
    flex-direction: column-reverse;
    width: 100%;
  }
  .page_ttl_area.photo_on .ttl_box {
    margin: 0;
    padding: 5% 0 1%;
  }
  .page_ttl_area.photo_on .page_ttl {
    font-size: 34px;
    line-height: 1.2;
    text-align: center;
  }
  .page_ttl_area.photo_on .page_ttl .en {
    font-size: 40px;
  }
}
/*===============================================
 *	パンくず
===============================================*/
@font-face {
  font-family: "icon";
  src: url("../fonts/icon.eot?n1r1w2");
  src: url("../fonts/icon.eot?n1r1w2#iefix") format("embedded-opentype"), url("../fonts/icon.ttf?n1r1w2") format("truetype"), url("../fonts/icon.woff?n1r1w2") format("woff"), url("../fonts/icon.svg?n1r1w2#icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.breadcrumbs_box .bg_white {
  border-radius: 5px;
  padding: 20px 50px 24px;
  position: relative;
  top: -35px;
}

.breadcrumbs_box i {
  font-size: 12px;
  padding: 0 10px;
}

.iconarrow_right:before {
  content: "\e900";
  color: var(--site-primary);
}

.breadcrumbs_box span {
  font-size: 16px;
}

.breadcrumbs_box a {
  color: var(--site-primary);
  font-weight: bold;
}

.breadcrumbs_box + .lg_inner_space {
  margin-top: -30px;
}

@media only screen and (max-width: 1024px) {
  .breadcrumbs_box + .lg_inner_space {
    margin-top: -40px;
  }
}
@media only screen and (max-width: 960px) {
  .breadcrumbs_box + .lg_inner_space {
    margin-top: -40px;
  }
  .breadcrumbs_box .bg_white {
    padding: 20px 3% 24px;
  }
  .breadcrumbs_box span {
    font-size: 13px;
  }
}
@media only screen and (max-width: 568px) {
  .breadcrumbs_box + .lg_inner_space {
    margin: 0;
    padding-top: 40px;
  }
  .breadcrumbs_box {
    display: none;
  }
}
/*===============================================
 *	下層ページ イントロセクション
===============================================*/
.sec_page_intro {
  position: relative;
  z-index: 1;
}

.page_intro_block.box_wrapper {
  padding-top: 1.2%;
}
.page_intro_block .ttl_box {
  background: url(../img/common/bg_town04.png) no-repeat center bottom;
  background-size: contain;
  padding-left: 4.5%;
  gap: 0 20px;
  position: relative;
}
.page_intro_block .ttl_box::before {
  content: "";
}
.page_intro_block.service_page .ttl_box::before {
  content: "";
  background: url(../img/common/reasons_illust.png) no-repeat center bottom;
  background-size: contain;
  width: min(19vw, 265px);
  height: min(15.5vw, calc(265px * 0.778));
  display: block;
}
.page_intro_block .intro_ttl {
  font-size: min(4.3vw, 57px);
  line-height: 1.3;
  text-indent: -0.2em;
  letter-spacing: 0.01em;
  margin-bottom: 3%;
  text-shadow: rgb(255, 255, 255) 5px 0px 0px, rgb(255, 255, 255) 4.90033px 0.993347px 0px, rgb(255, 255, 255) 4.60531px 1.94709px 0px, rgb(255, 255, 255) 4.12668px 2.82321px 0px, rgb(255, 255, 255) 3.48353px 3.58678px 0px, rgb(255, 255, 255) 2.70151px 4.20736px 0px, rgb(255, 255, 255) 1.81179px 4.6602px 0px, rgb(255, 255, 255) 0.849836px 4.92725px 0px, rgb(255, 255, 255) -0.145998px 4.99787px 0px, rgb(255, 255, 255) -1.13601px 4.86924px 0px, rgb(255, 255, 255) -2.08073px 4.54649px 0px, rgb(255, 255, 255) -2.94251px 4.04248px 0px, rgb(255, 255, 255) -3.68697px 3.37732px 0px, rgb(255, 255, 255) -4.28444px 2.57751px 0px, rgb(255, 255, 255) -4.71111px 1.67494px 0px, rgb(255, 255, 255) -4.94996px 0.7056px 0px, rgb(255, 255, 255) -4.99147px -0.291871px 0px, rgb(255, 255, 255) -4.83399px -1.27771px 0px, rgb(255, 255, 255) -4.48379px -2.2126px 0px, rgb(255, 255, 255) -3.95484px -3.05929px 0px, rgb(255, 255, 255) -3.26822px -3.78401px 0px, rgb(255, 255, 255) -2.4513px -4.35788px 0px, rgb(255, 255, 255) -1.53666px -4.75801px 0px, rgb(255, 255, 255) -0.560763px -4.96845px 0px, rgb(255, 255, 255) 0.437495px -4.98082px 0px, rgb(255, 255, 255) 1.41831px -4.79462px 0px, rgb(255, 255, 255) 2.34258px -4.41727px 0px, rgb(255, 255, 255) 3.17346px -3.86382px 0px, rgb(255, 255, 255) 3.87783px -3.15633px 0px, rgb(255, 255, 255) 4.4276px -2.32301px 0px, rgb(255, 255, 255) 4.80085px -1.39708px 0px, rgb(255, 255, 255) 4.98271px -0.415447px 0px;
}
.page_intro_block .intro_ttl .size_small {
  font-size: 0.65em;
}
.page_intro_block .overlap_box .txt_box {
  width: 56.9%;
  margin-top: 30px;
  margin-left: -8.8%;
  padding-top: min(4.1%, 42px);
}
.page_intro_block .overlap_box .txt_box::after {
  content: "";
  background: url(../img/common/txt_greetings.png) no-repeat top left;
  background-size: contain;
  width: min(20vw, 309px);
  height: 97px;
  position: absolute;
  left: -65%;
  bottom: -22%;
}

@media only screen and (max-width: 960px) {
  .sec_page_intro .box_wrapper {
    padding: 1.2% 2.5vw 4.5vw;
  }
  .sec_page_intro .overlap_box .txt_box::after {
    bottom: 3%;
  }
}
@media only screen and (max-width: 568px) {
  .sec_page_intro .lg_inner_space {
    padding-top: 0;
  }
  .sec_page_intro .box_wrapper {
    padding: 30px 0 0;
  }
  .sec_page_intro .overlap_box .txt_box::after {
    width: 169px;
    height: 53px;
    bottom: -15px;
    left: initial;
    right: -26px;
  }
  .page_intro_block .inner {
    width: 100%;
  }
  .page_intro_block .ttl_box {
    flex-direction: column;
    align-items: center;
    background: url(../img/common/bg_town04_sp.png) no-repeat top 38px center;
    background-size: 375px 70px;
    padding: 0;
  }
  .page_intro_block .ttl_box .intro_ttl {
    font-size: 32px;
    text-align: center;
    line-height: 1.25;
    margin: 4px 0 18px;
  }
  .page_intro_block.service_page .ttl_box::before {
    width: 148px;
    height: 108px;
    background: url(../img/common/reasons_illust_sp02.png) no-repeat;
    background-size: contain;
  }
  .page_intro_block .content {
    padding: 25px 5.3vw 30px;
  }
}
/*===============================================
 *	下層（サービス）ページ こんなお悩み～解決いたします
===============================================*/
.sec_problem.under_page {
  background: url(../img/common/bg_problem_02.jpg) no-repeat top center;
  background-size: cover;
  padding-bottom: 60px;
}
.sec_problem.under_page .problem_content .content_inner {
  padding-bottom: 30px;
}
.sec_problem.under_page .problem_content .content_inner::after {
  content: none;
}
.sec_problem.under_page .problem_content li {
  background-position: 0 !important;
}

.sec_resolution {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.sec_resolution .lg_inner_space {
  padding-top: 0;
}
.sec_resolution .top_txt {
  position: relative;
}
.sec_resolution .top_txt p {
  font-size: min(3.5vw, 47px);
  font-weight: bold;
  padding: 18px 0 22px;
  margin: 0 2vw;
}
.sec_resolution .top_txt::after {
  content: "";
  background: var(--site-primary);
  width: 40px;
  height: 24px;
  position: absolute;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.sec_resolution .sec_ttl_box {
  background: url(../img/common/bg_town03.png) no-repeat bottom center;
  background-size: 100% auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: min(1.7vw, 28px) 0 0 0;
}
.sec_resolution .sec_ttl_box::before, .sec_resolution .sec_ttl_box::after {
  content: "";
  display: block;
  width: min(17vw, 206px);
  height: min(13vw, 190px);
}
.sec_resolution .sec_ttl_box::before {
  background: url(../img/common/staff_resolution01.png) no-repeat center bottom;
  background-size: contain;
}
.sec_resolution .sec_ttl_box::after {
  background: url(../img/common/staff_resolution02.png) no-repeat center bottom;
  background-size: contain;
  margin-left: 19px;
}
.sec_resolution .sec_ttl_box .sec_ttl {
  font-size: min(4.5vw, 60px);
  line-height: 1.3;
  text-indent: -0.2em;
  letter-spacing: 0.015em;
  margin: 0 0 2.4% 8.8%;
}
.sec_resolution .sec_ttl_box .sec_ttl .size_small {
  font-size: 0.62em;
}
.sec_resolution .sec_ttl_box .sec_ttl .txt_primarycolor {
  position: relative;
}
.sec_resolution .sec_ttl_box .sec_ttl .txt_primarycolor::before {
  content: "";
  background: url(../img/common/fukidashi_onayami.png) no-repeat;
  background-size: contain;
  width: 101px;
  height: 93px;
  position: absolute;
  left: -125px;
  bottom: 15px;
  transform: skewX(10deg);
}
.sec_resolution .resolution_list {
  gap: 30px 0;
}
.sec_resolution .resolution_list li {
  width: 31.8%;
  position: relative;
  background: #f5f5f5;
}
.sec_resolution .resolution_list li::before {
  content: "";
  background: url(../img/common/label_num01.svg) no-repeat;
  background-size: contain;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
}
.sec_resolution .resolution_list li:nth-child(2)::before {
  background: url(../img/common/label_num02.svg) no-repeat;
  background-size: contain;
}
.sec_resolution .resolution_list li:nth-child(3)::before {
  background: url(../img/common/label_num03.svg) no-repeat;
  background-size: contain;
}
.sec_resolution .resolution_list li:nth-child(4)::before {
  background: url(../img/common/label_num04.svg) no-repeat;
  background-size: contain;
}
.sec_resolution .resolution_list li:nth-child(5)::before {
  background: url(../img/common/label_num05.svg) no-repeat;
  background-size: contain;
}
.sec_resolution .resolution_list li:nth-child(6)::before {
  background: url(../img/common/label_num06.svg) no-repeat;
  background-size: contain;
}
.sec_resolution .resolution_list .txt_box {
  padding: 9.1% 11.2% 13%;
}
.sec_resolution .resolution_list .ttl {
  font-size: min(1.8vw, 25px);
  margin: 0 -10px 20px;
}
.sec_resolution .sub_content {
  margin-top: 50px;
  background: #f5f5f5;
}
.sec_resolution .sub_content .content_ttl {
  padding: 1.4% 0 1.5%;
  margin-bottom: -18px;
}
.sec_resolution .sub_content .content_box {
  display: grid;
  grid-template-columns: 31.4% auto;
  grid-template-rows: auto 1fr;
  -moz-column-gap: 4%;
       column-gap: 4%;
  position: relative;
}
.sec_resolution .sub_content .content_box::after {
  content: "";
  position: absolute;
}
.sec_resolution .sub_content .content_box p {
  grid-column: 2;
  grid-row: 2;
  padding-right: min(7.8%, 50px);
  position: relative;
  z-index: 1;
  padding-bottom: 25px;
}
.sec_resolution .sub_content .content_box.box01 {
  margin: 35px 0 20px;
}
.sec_resolution .sub_content .content_box.box01::after {
  background: url(../img/common/txt_clear-costs.png) no-repeat top right;
  background-size: contain;
  width: min(26%, 263px);
  height: 66px;
  right: 30px;
  bottom: 15%;
}
.sec_resolution .sub_content .content_box.box02 {
  grid-template-columns: auto 31.4%;
}
.sec_resolution .sub_content .content_box.box02 .photo {
  grid-column: 2;
  grid-row: 1/-1;
}
.sec_resolution .sub_content .content_box.box02 .box_ttl {
  grid-column: 1;
  grid-row: 1;
  padding: 0 min(7.8%, 50px);
}
.sec_resolution .sub_content .content_box.box02 p {
  grid-column: 1;
  grid-row: 2;
  padding: 0 min(7.8%, 50px) 25px;
}
.sec_resolution .sub_content .content_box.box02::after {
  background: url(../img/common/txt_high-purchase.png) no-repeat top left;
  background-size: contain;
  width: min(36%, 360px);
  height: 81px;
  left: 30%;
  bottom: 13%;
}
.sec_resolution .sub_content .photo {
  grid-column: 1;
  grid-row: 1/-1;
}
.sec_resolution .sub_content .photo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_resolution .sub_content .box_ttl {
  font-size: min(2.0vw, 27px);
  grid-column: 2;
  grid-row: 1;
  margin: min(5%, 30px) 0 min(2.5%, 15px);
  position: relative;
  z-index: 1;
}
.sec_resolution .sub_content .btn_area {
  background: url(../img/common/bg_dot02.png);
  padding: 25px 0;
  border: 10px solid #f5f5f5;
  border-top: none;
  margin-top: -10px;
}

@media only screen and (max-width: 960px) {
  .sec_problem.under_page {
    padding-bottom: 5vw;
  }
  .sec_problem.under_page .problem_content .content_inner {
    padding-bottom: 15px;
  }
  .sec_resolution .sec_ttl_box .sec_ttl .txt_primarycolor::before {
    width: 70.7px;
    height: 65.1px;
    left: -85px;
    bottom: 5px;
  }
  .sec_resolution .resolution_list li::before {
    width: 56px;
    height: 56px;
  }
  .sec_resolution .resolution_list .ttl {
    font-size: 17px;
  }
  .sec_resolution .sub_content .content_box.box01 {
    margin: 20px 0;
  }
  .sec_resolution .sub_content .content_box.box01::after {
    bottom: -5%;
  }
  .sec_resolution .sub_content .content_box.box02::after {
    bottom: -12%;
  }
}
@media only screen and (max-width: 568px) {
  .sec_problem.under_page {
    background: url(../img/common/bg_problem_sp02.jpg) no-repeat;
    background-size: cover;
    padding-bottom: 40px;
  }
  .sec_problem.under_page .problem_content .content_inner {
    padding-bottom: 10px;
  }
  .sec_problem.under_page .problem_content li {
    padding: 15px 0 18px 36px;
  }
  .sec_problem.under_page .problem_content li:nth-child(1) {
    order: 1;
  }
  .sec_problem.under_page .problem_content li:nth-child(2) {
    order: 4;
  }
  .sec_problem.under_page .problem_content li:nth-child(3) {
    order: 2;
  }
  .sec_problem.under_page .problem_content li:nth-child(4) {
    order: 5;
  }
  .sec_problem.under_page .problem_content li:nth-child(5) {
    order: 3;
  }
  .sec_problem.under_page .problem_content li:nth-child(5)::after {
    content: "";
  }
  .sec_problem.under_page .problem_content li:nth-child(6) {
    order: 6;
  }
  .sec_resolution.bg_sankaku_left::after {
    content: none;
  }
  .sec_resolution .top_txt p {
    font-size: 24px;
    line-height: 1.45;
    padding: 13px 0 14px;
    margin: 0 0 0 -10px;
  }
  .sec_resolution .top_txt::after {
    width: 20px;
    height: 12px;
    bottom: -11px;
  }
  .sec_resolution .inner_wide {
    width: 100%;
  }
  .sec_resolution .sec_ttl_box {
    flex-direction: column;
    align-items: center;
    padding-top: 14px;
    background: url(../img/common/bg_town04_sp.png) no-repeat top 45px center;
    background-size: auto 71px;
  }
  .sec_resolution .sec_ttl_box::before {
    background: url(../img/common/staff_resolution_sp.png) no-repeat;
    background-size: contain;
    width: 185px;
    height: 102px;
  }
  .sec_resolution .sec_ttl_box::after {
    content: none;
  }
  .sec_resolution .sec_ttl_box .sec_ttl {
    font-size: 29px;
    margin: 7px 0 18px 50px;
  }
  .sec_resolution .sec_ttl_box .sec_ttl .size_small {
    font-size: 20px;
  }
  .sec_resolution .sec_ttl_box .sec_ttl .txt_primarycolor::before {
    width: 65px;
    height: 60px;
    left: -80px;
  }
  .sec_resolution .box_wrapper {
    padding: 25px 5.3vw 30px;
  }
  .sec_resolution .resolution_list {
    gap: 20px 0;
  }
  .sec_resolution .resolution_list li {
    width: 100%;
  }
  .sec_resolution .resolution_list li::before {
    width: 70px;
    height: 70px;
  }
  .sec_resolution .resolution_list .ttl {
    font-size: 21px;
    margin-bottom: 8px;
  }
  .sec_resolution .resolution_list .txt_box {
    padding: 14px 20px 20px;
  }
  .sec_resolution .sub_content {
    margin-top: 30px;
  }
  .sec_resolution .sub_content .content_ttl {
    font-size: 23px;
    line-height: 1.45;
    padding: 8px 0 10px;
    margin-bottom: -4px;
  }
  .sec_resolution .sub_content .sub_top_txt {
    text-align: left;
  }
  .sec_resolution .sub_content .content_box {
    grid-template-columns: 50% 50% !important;
    grid-template-rows: 1fr auto;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .sec_resolution .sub_content .content_box p {
    grid-column: 1/-1 !important;
    grid-row: 2 !important;
    font-size: 14px;
    padding: 14px 20px 20px !important;
  }
  .sec_resolution .sub_content .content_box.box01 {
    margin: 20px 0 15px;
  }
  .sec_resolution .sub_content .content_box.box02 .photo {
    grid-column: 2;
    grid-row: 1;
  }
  .sec_resolution .sub_content .content_box.box02 .box_ttl {
    grid-column: 1;
    grid-row: 1;
    margin-top: 7px;
  }
  .sec_resolution .sub_content .content_box::after {
    content: none !important;
  }
  .sec_resolution .sub_content .photo {
    grid-column: 1;
    grid-row: 1;
  }
  .sec_resolution .sub_content .box_ttl {
    grid-column: 2;
    grid-row: 1;
    font-size: 17px;
    line-height: 1.3;
    margin: 0;
    padding: 0 20px !important;
    align-self: center;
  }
  .sec_resolution .sub_content .btn_area {
    margin-top: 5px;
    padding: 15px 0;
    border-width: 5px;
  }
}
/*===============================================
 *	下層（サービス）ページ 作業事例・よくあるご質問・サービス一覧
===============================================*/
.sec_case.under_page .box_wrapper {
  position: relative;
}
.sec_case.under_page .box_wrapper::after {
  content: "";
  background: url(../img/common/txt_example.png) no-repeat top left;
  background-size: contain;
  width: 263px;
  width: min(19vw, 263px);
  height: 103px;
  position: absolute;
  right: 30px;
  bottom: -73px;
}
.sec_case.under_page .case_box .content_ttl::before {
  content: none !important;
}

.sec_faq.under_page {
  position: relative;
  z-index: 1;
}
.sec_faq.under_page.bg_sankaku_right::before {
  top: min(25vw, 350px);
}
.sec_faq.under_page .faq_top_img {
  height: min(25vw, 350px);
}
.sec_faq.under_page .faq_top_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_faq.under_page .box_wrapper::after {
  content: none;
}

.sec_service-list {
  background: url(../img/common/bg_services.jpg) no-repeat center top;
  background-size: cover;
}
.sec_service-list .box_wrapper {
  padding-top: 0;
  padding-bottom: 0;
}
.sec_service-list .small_service_list {
  gap: 20px 2.3%;
}
.sec_service-list .small_service_list.border {
  gap: 15px 2.13%;
}

@media only screen and (max-width: 568px) {
  .sec_service-list .small_service_list.border {
    gap: 15px 4.13%;
  }
  .sec_case.under_page.bg_sankaku_left::after {
    content: "";
  }
  .sec_case.under_page .box_wrapper {
    padding: 0;
    box-shadow: none;
  }
  .sec_case.under_page .box_wrapper::after {
    width: 120px;
    height: 47px;
    right: 15px;
    bottom: -21px;
  }
  .sec_case.under_page .case_box .content_ttl {
    justify-content: center;
    text-align: center;
  }
  .sec_faq.under_page .faq_top_img {
    height: 46.6vw;
  }
  .sec_faq.under_page.bg_sankaku_right::before {
    top: 46.6vw;
  }
  .sec_service-list {
    background: url(../img/common/bg_services_sp.jpg) no-repeat top center;
    background-size: cover;
  }
  .sec_service-list .box_wrapper {
    padding: 0;
  }
  .sec_service-list .small_service_list {
    gap: 10px 0;
  }
}
/*===============================================
 *	ページネーション
===============================================*/
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: min(4vw, 50px) 0 0;
  position: relative;
  font-size: 20px;
  gap: 0 5px;
}

.pagination span, .pagination a {
  font-family: "Robot";
  font-weight: normal;
  color: var(--site-secondary);
  display: block;
  border: 2px solid var(--site-secondary);
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 46px;
  width: 50px;
}

.pagination img {
  width: 10px;
  height: 16px;
  vertical-align: middle;
}

/* ホバー時 & 現在のページ */
.pagination a:hover,
.pagination .current {
  color: #fff;
  font-weight: bold;
  border-color: var(--site-secondary);
  background-color: var(--site-secondary);
}

/* Page x / y */
.pagination span.page_num {
  display: none;
}

@media only screen and (max-width: 568px) {
  .pagination {
    font-size: 17px;
    margin-top: 30px;
    gap: 10px;
  }
  .pagination span, .pagination a {
    line-height: 36px;
    width: 40px;
  }
}
/*===============================================
 *	買取事例一覧
===============================================*/
.card_list {
  gap: 35px 3.125%;
  margin-top: 10px;
}
.card_list li {
  width: 31.25%;
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
}
.card_list .list_ttl {
  font-size: min(1.5vw, 20px);
  padding: 5.5% 0 5.4%;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}
.card_list .list_content .photo img {
  aspect-ratio: 1.618/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.card_list .list_content .txt {
  padding: 4% 11.4% 10%;
}
.card_list .list_content .price {
  font-size: min(1.4vw, 18px);
  font-weight: bold;
  margin-bottom: 15px;
}
.card_list .list_content .price .txt_keycolor {
  font-size: 1.55em;
  position: relative;
  top: 2px;
}
.card_list .list_content .price .txt_keycolor .yen {
  font-size: 0.61em;
}

@media only screen and (max-width: 568px) {
  .sec_example-list.bg_sankaku_right::before {
    content: none;
  }
  .card_list {
    gap: 20px 0;
  }
  .card_list li {
    width: 100%;
  }
  .card_list .list_ttl {
    font-size: 19px;
    padding: 3.3% 0 3.3%;
  }
  .card_list .list_content .txt {
    padding: 2px 20px 20px;
  }
  .card_list .list_content .price {
    font-size: 17px;
    margin-bottom: 5px;
  }
  .card_list .list_content .price .txt_keycolor {
    font-size: 30px;
  }
  .card_list .list_content .price .txt_keycolor .yen {
    font-size: 21px;
  }
}
/*===============================================
 *	投稿シングルページ ページ送り
===============================================*/
.post_under_nav {
  margin-top: 50px;
}
.post_under_nav ul {
  gap: 0 20px;
}
.post_under_nav li {
  font-size: min(1.7vw, 18px);
  font-weight: bold;
  text-align: center;
}
.post_under_nav li a {
  display: block;
  padding: 14px 0;
  position: relative;
}
.post_under_nav .nav-left a, .post_under_nav .nav-right a {
  width: 150px;
  background: #fff;
  border: 2px solid var(--site-secondary);
  color: var(--site-secondary);
}
.post_under_nav .nav-left a:hover::after, .post_under_nav .nav-right a:hover::after {
  content: "";
  background: rgba(255, 255, 255, 0.2);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  position: absolute;
  top: -2px;
  left: -2px;
}
.post_under_nav .nav-left span, .post_under_nav .nav-right span {
  position: relative;
}
.post_under_nav .nav-left span::before {
  content: "";
  background: url(../img/common/icon_pager-left02.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 12px;
  position: absolute;
  left: -40px;
  top: 10px;
}
.post_under_nav .nav-right span::before {
  content: "";
  background: url(../img/common/icon_pager-right02.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 12px;
  position: absolute;
  right: -40px;
  top: 10px;
}
.post_under_nav .nav-center {
  width: 200px;
  background: var(--site-secondary);
  border: 2px solid var(--site-secondary);
}
.post_under_nav .nav-center a {
  color: #fff;
}
.post_under_nav .nav-center a:hover::after {
  content: "";
  background: rgba(255, 255, 255, 0.2);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  position: absolute;
  top: -2px;
  left: -2px;
}

@media only screen and (max-width: 960px) {
  .post_under_nav {
    margin-top: 30px;
  }
  .post_under_nav .nav-right span::before, .post_under_nav .nav-left span::before {
    top: 5px;
  }
}
@media only screen and (max-width: 568px) {
  .post_under_nav {
    margin-top: 25px;
  }
  .post_under_nav ul {
    flex-wrap: wrap;
    gap: 15px 5.4%;
    width: 74.6%;
    margin: 0 auto;
  }
  .post_under_nav .nav-left, .post_under_nav .nav-right {
    width: 47.3%;
  }
  .post_under_nav .nav-left a, .post_under_nav .nav-right a {
    width: initial;
    font-size: 16px;
    padding: 7px 0 8px;
  }
  .post_under_nav .nav-left span::before, .post_under_nav .nav-right span::before {
    height: 7px;
    width: 16px;
    top: 9px;
  }
  .post_under_nav .nav-left {
    order: 2;
  }
  .post_under_nav .nav-left span::before {
    left: -36px;
  }
  .post_under_nav .nav-right {
    order: 3;
  }
  .post_under_nav .nav-right span::before {
    right: -36px;
  }
  .post_under_nav .nav-center {
    order: 1;
    width: 100%;
  }
  .post_under_nav .nav-center a {
    font-size: 17px;
    padding: 7px 0 8px;
  }
}
/*===============================================
 *	cv-btn
===============================================*/
.cv-btn_box{width: 65%;max-width: 808px;margin: 24px auto 0 0;display: flex;flex-wrap: wrap;justify-content: space-between;}
.cv-btn_box > li:nth-child(1){margin: 0 0 40px;width: 100%;}
.cv-btn_box > li:nth-child(n+2){width: 49%;}
.cv-phonebox a{width: 100%;}
.cv-phonebox img {max-width: 150px;margin-right: 25px;}
.cv-phonebox .phone-num{background: url("../img/common/cv-icon_freedial.png") left no-repeat;background-size: 110px;border-bottom: 1px #ccc dashed;font-size: 68px;font-weight: bold;line-height: 1;padding: 0 0 15px 1.75em;margin: 0 0 15px 0;letter-spacing: 2px;}
.cv-phonebox .phone-txt li{font-size: 30px;font-weight: bold;letter-spacing: 2px;}
.cv-phonebox .phone-txt li:nth-child(n+2){background: #fff2f2;border: #f0c1be 2px solid;border-radius: 3px;color: #ce3328;padding: 2px 10px;font-size: 25px;}
.cv-contactbox{background: #fe5d26;box-shadow: 0 5px 0 #7c2507;}
.cv-linebox{background: #06c755;box-shadow: 0 5px 0 #0f7d3c;}
.cv-contactbox ,.cv-linebox {border-radius: 3px;position: relative;width: 100%;}
.cv-contactbox a,.cv-linebox a{color: #fff;display: block;padding: 1.85rem 0 1.0rem;}
.cv-balloon{box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);font-size: 18px;font-weight: bold;border-radius: 4px;background: #fff;letter-spacing: 0;padding: .1rem 1em;position: absolute;top: -1.25rem;left: 50%;transform: translateX(-50%);text-align: center;display: inline-block;word-break: keep-all;}
.cv-balloon span{font-size: 20px;}
.cv-txt{font-size: 21px;font-weight: bold;text-align: center;position: relative;}
.cv-txt span{position: relative;padding-left: 2em;}
.cv-contactbox .cv-txt span:before{content: '';position: absolute;background: url("../img/common/icon_mail.png") no-repeat top left;background-size: contain;width: 30px;height: 21px;left: 0;top: 50%;transform: translate(0, -50%);}
.cv-linebox .cv-txt span:before {content: '';position: absolute;background: url("../img/common/icon_line.png") no-repeat top left;background-size: contain;width: 30px;height: 30px;left: 0;top: 50%;transform: translate(0, -50%);}
.cv-contactbox .cv-balloon {color: #fe5d26;border: 2px solid #f87a50;}
.cv-linebox .cv-balloon {color: #32b16c;border: 2px solid #32b16c;}
.cv-contactbox:hover,.cv-linebox:hover {transform: translate(0, 3px);color: #fff;box-shadow: 0 0 0 rgba(0, 0, 0, 0);}
@media only screen and (max-width: 1024px) {
.cv-btn_box {width: 72%;}
.cv-phonebox img {max-width: 110px;}
.cv-phonebox .phone-num {background-size: 76px;font-size: 52px;}
.cv-phonebox .phone-txt li {font-size: 20px;}
.cv-phonebox .phone-txt li:nth-child(n+2) {font-size: 18px;}
}
@media screen and (max-width: 960px) {
.cv-btn_box {width: 72%;}
.cv-phonebox img {max-width: 90px;margin-right: 20px;}
.cv-btn_box > li:nth-child(2) {margin: 0 0 40px;}
.cv-btn_box > li:nth-child(n+2){width: 100%;}
.cv-phonebox .phone-num {background-size: 65px;font-size: 40px;padding: 0 0 10px 1.75em;margin: 0 0 10px 0;}
.cv-phonebox .phone-txt li {font-size: 16px;}
.cv-phonebox .phone-txt li:nth-child(n+2) {font-size: 14px;}
.cv-balloon {font-size: 15px;}
.cv-balloon span {font-size: 17px;}
.cv-txt {font-size: 17px;}
}
@media screen and (max-width: 768px) {
.cv-phonebox .phone-num {font-size: 37px;}
}
@media screen and (max-width: 568px) {
.cv-btn_box {margin: 10px auto 0;width: 100%;}
.cv-btn_box > li:nth-child(1){margin: 0 0 35px;}
.cv-btn_box > li:nth-child(2) {margin: 0 0 35px;}
.cv-phonebox img{display:block;margin: 0 5px 0 0;width: 13vw;}
.cv-phonebox{border:#d7d7d7 2px solid;background: linear-gradient(to bottom,  #f9f9f9 0%,#e6e1e2 50%,#d5d0d1 100%);border-radius: 3px;box-shadow: 0 5px 0 #4b4a49;}
.cv-phonebox .phone-num {background-size: 40px;font-size: 6.4vw;padding: 0 0 5px 1.5em;margin: 0 0 5px 0;}
.cv-phonebox a{padding: 10px;}
.cv-phonebox .phone-txt li {font-size: 12px;letter-spacing: 0;}
.cv-phonebox .phone-txt ul{width: 100%;}
.cv-phonebox .phone-txt li:nth-child(n+2) {border: #ECACB3 1px solid;padding: 1% 2%;font-size: 11px;}
.cv-txt {font-size: 17px;letter-spacing: 0;}
.cv-contactbox a,.cv-linebox a{padding: 1.5rem 0 1.0rem;}
.cv-contactbox .cv-txt span:before {width: 25px;height: 16px;}
}
@media screen and (max-width: 390px) {
.cv-phonebox .phone-txt li:nth-child(n+2) {font-size: 11px;padding: 1%;word-break: keep-all;}
}
@media screen and (max-width: 375px) {
.cv-phonebox .phone-num {background-size: 30px;padding: 0 0 5px 1.25em;}
.cv-phonebox .phone-txt li:nth-child(n+2) {font-size: 10px;}
.cv-txt {font-size: 16px;}
.cv-balloon {font-size: 13px;}
.cv-balloon span {font-size: 16px;}
}
/*----------------------------------------------
 *	fixed footer
----------------------------------------------*/
#fixed-footer_wrap{display: none;background: var(--site-secondary);;position: fixed;bottom: 0;padding: 25px 0 15px;z-index: 999;width: 100%;}
#fixed-footer_wrap .fixed-ft_contents {max-width: 1300px;margin: 0 auto;width: 100%;transition: all .7s;}
#fixed-footer_wrap .navi-txt{display: none;}
#fixed-footer_wrap .logo{width: 25.8%;max-width: 335px;}
@media only screen and (max-width: 1024px) {
#fixed-footer_wrap {padding: 20px 2% 15px;}
#fixed-footer_wrap .logo {margin: 0 1% 0 0;}
}
@media only screen and (max-width: 960px) {
#fixed-footer_wrap {padding: 3% 2% 2%;}
}
@media only screen and (max-width: 568px) {
#fixed-footer_wrap{display: block;padding: 0;position: fixed;left:0;bottom:0;z-index:30;}
#fixed-footer_wrap .fixed-ft_contents {width: 100%;display: flex;}
#fixed-footer_wrap .logo {display: none;}
#fixed-footer_wrap .navi-txt{background: var(--site-secondary);display: block;font-size: 15px;}
}
/*===============================================
 *	header CV , fixed CV
===============================================*/
.flag-campaign{margin-right: 7%;max-width: 110px;}
.navi-cv_box {max-width: 800px;width: 100%;}
.navi-phonebox {max-width: 285px;width: 100%;}
.navi-phonebox img {max-width: 54px;margin-right: 10px;}
.navi-phonebox .phone-num{background: url("../img/common/cv-icon_freedial.png") left no-repeat;background-size: 46px;border-bottom: 1px #ccc solid;color: #fff;font-size: 26px;font-weight: bold;line-height: 1;padding: 0 0 5px 1.75em;margin: 0 0 3px 0;letter-spacing: 0;}
.navi-phonebox .phone-txt{color: #fff;font-size: 13px;font-weight: bold;letter-spacing: 1px;}
.navi-phonebox .phone-txt span{background: #fff2f2;border: #f0c1be 2px solid;border-radius: 4px;color: #ce3328;font-size: 13px;font-weight: bold;padding: 2px 5px;letter-spacing: 2px;}
.navi-contactbox{background: url("../img/common/icon_mail.png") 13px 25px no-repeat #fe5d26;box-shadow: 0 5px 0 #7c2507;}
.navi-linebox{background: url("../img/common/icon_line.png") 13px 20px no-repeat #06c755;box-shadow: 0 5px 0 #0a4422;}
.navi-contactbox,
.navi-linebox{border-radius: 3px;background-size: 24px;font-size: 15px;max-width: 240px;position: relative;width: 100%;text-align: center;}
.navi-contactbox span,
.navi-linebox span{font-size: 18px;}
.navi-contactbox a,
.navi-linebox a{color: #fff;font-weight: bold;display: block;padding: 1.25rem 0 .75rem 2.5rem;}
.navi-contactbox div,
.navi-linebox div{font-weight: bold;}
.navi-contactbox p,
.navi-linebox p{box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);font-size: 14px;font-weight: bold;border-radius: 3px;background: #fff;letter-spacing: 0;padding: .1rem 0;position: absolute;top: -1.05rem;left: 50%;transform: translateX(-50%);text-align: center;width: 180px;}
.navi-contactbox p {color: #e56600;border: 2px solid #e56600;}
.navi-linebox p {color: #06c755;border: 2px solid #06c755;}
.navi-contactbox p::before,
.navi-contactbox p::after {position: absolute;left: calc(50% - 10px);content: "";}
.navi-linebox p::before,
.navi-linebox p::after {position: absolute;left: calc(50% - 10px);content: "";}
.navi-contactbox p::before,
.navi-linebox p::before {bottom: -10px;border-width: 5px 5px 0 5px;border-style: solid;}
.navi-contactbox p::before{border-color: #e56600 transparent transparent transparent;}
.navi-contactbox p::after,
.navi-linebox p::after{bottom: -7px;border-width: 7px 5px 0 5px;border-style: solid;border-color: #fff transparent transparent transparent;}
.navi-contactbox:hover,
.navi-linebox:hover  {transform: translate(0, 3px);color: #fff;box-shadow: 0 0 0 rgba(0, 0, 0, 0);}
@media only screen and (max-width: 1024px) {
.navi-cv_box {max-width: 680px;}
.flag-campaign {margin-right: 2%;width: 110px;}
.navi-phonebox img {display: none;}
.navi-phonebox {width: auto;max-width: initial;white-space: nowrap;}
.navi-contactbox, .navi-linebox {max-width: 220px;}
.navi-contactbox span, .navi-linebox span {font-size: 16px;}
}
@media only screen and (max-width: 960px) {
.navi-cv_box {max-width: 650px;}
.navi-contactbox, .navi-linebox {background-size: 18px;max-width: 210px;letter-spacing: 0;}
.navi-contactbox p,.navi-linebox p {font-size: 11px;top: -1.0rem;}
.navi-contactbox span {font-size: 15px;}
}
@media only screen and (max-width: 568px) {
  .fixed_footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
  .navi-cv_box {
    background: var(--site-primary);
  }
  .navi-cv_box ul {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #fff;
  }
  .navi-cv_box ul li {
    flex: 1;
    text-align: center;
    border-radius: 0;
    margin: 0;
  }
  .navi-contactbox p::before,
  .navi-linebox p::before  {
      content: none;
  }
  .navi-contactbox p::after,
  .navi-linebox p::after {
      content: none;
  }
  .navi-phonebox,
  .navi-contactbox,
  .navi-linebox {
    max-width: none;
    width: 100%;
    border: none;
    box-shadow: none;
  }
  .navi-txt {
    display: block;
    color: #f4da33;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    position: relative;
    padding: 5px 0;
  }
  .navi-txt::before,
  .navi-txt::after {
    content: '';
    position: absolute;
    top: 5px;
    width: 1px;
    height: 20px;
    background-color: #f4da33;
  }
  .navi-txt::before {
    border-left: solid 1px;
    left: 16%;
    transform: rotate(-35deg);
  }
  .navi-txt::after {
    border-right: solid 1px;
    right: 16%;
    transform: rotate(35deg);
  }
  .navi-phonebox a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 6px;
    color: #222;
    text-decoration: none;
  }
  .navi-phonebox .phone-num {
    background: url("../img/common/cv-icon_freedial.png") left no-repeat;
    background-size: 24px;
    font-size: min(7vw, 24px);
    white-space: nowrap;
    font-weight: bold;
    line-height: 1;
    padding: 0 0 5px 1.15em;
    margin-bottom: 5px;
    border-bottom: 1px #ccc solid;
    letter-spacing: 1px;
    color: #222;
  }
  .navi-phonebox .phone-txt {
    color: #222;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .navi-phonebox .phone-txt span {
    background: none;
    font-size: 12px;
    padding: 0;
  }
  .navi-contactbox,
  .navi-linebox {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    white-space: normal;
    background: #fe5d26; /* contact: orange */
  }
  .navi-linebox {
    background: #06c755; /* LINE green */
  }
  .navi-contactbox a,
  .navi-linebox a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 5px 5px;
    height: 100%;
    text-align: center;
    text-decoration: none;
  }
  .navi-contactbox p,
  .navi-linebox p {
    font-size: 13px;
    line-height: 1.4;
  }
  .navi-contactbox p,
  .navi-linebox p {
    box-shadow: none;
    font-size: 13px;
    border: none;
    color: #fff;
    border-radius: initial;
    background: none;
    padding: 0;
    position: static;
    transform: none;
    width: 100%;
    line-height: 1.4;
  }
  .navi-contactbox::before,
  .navi-linebox::before {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
  }
  .navi-contactbox::before {
    background-image: url("../img/common/icon_mail.png");
  }
  .navi-linebox::before {
    background-image: url("../img/common/icon_line.png");
  }
  .ft-logo,
  .flag-campaign {
    display: none;
  }
  .navi-contactbox:hover,
  .navi-linebox:hover  {transform: none;}
}
@media only screen and (max-width: 390px) {
  .navi-contactbox a {
    padding: 22px 8px 8px;
  }
  .navi-contactbox p, .navi-linebox p{
    font-size: 12px;
  }
}
@media only screen and (max-width: 375px) {
  .navi-contactbox a {
    padding: 20px 4px 6px;
  }
}

/*===============================================
 *	POPUP LINE 2025/06/27 add
===============================================*/
.popup_line {position: fixed;top: 0;left: 0;display: none;align-items: center;justify-content: center;width: 100%;height: 100%;background-color: rgba(0, 0, 0, 0.75);z-index: 999;}
.popup-banner {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);font-family: "GenEiMGothic";max-width: 600px;width: 100%;}
.popup-banner ul{background: #e06057;border-radius: 20px 20px 0 0;display: flex;justify-content: space-between;align-items: center;padding: 20px 40px;}
.popup-banner li{color: #fff;font-size: 23px;font-weight: bold;font-family: -apple-system, BlinkMacSystemFont,'Noto Sans JP', 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;padding: 0 0 0 2.5em;line-height: 1.2;position: relative;}
.popup-banner li::before{content: "";display: block;background: url("../img/common/popup/icon_chk.png") left no-repeat;background-size: contain;width: 46px;height: 46px;position: absolute;left: 0;top: 50%;transform: translateY(-50%);}
.popup_btn_box{background: #fff;background-size: cover;border-radius: 0 0 20px 20px;padding: 30px;}
.popup_btn_box a:hover{opacity: .8;}
.popup-close {display: block;position: absolute;width: 70px;height: 70px;border-radius: 50%;background: #000;right: -40px;top: -40px;cursor: pointer;}
.popup-close:hover {opacity: .8;}
.popup-close::before, .popup-close::after {content: "";position: absolute;top: 50%;left: 50%;width: 4px;height: 40px;background: #fff;}
.popup-close::before {transform: translate(-50%,-50%) rotate(45deg);}
.popup-close::after {transform: translate(-50%,-50%) rotate(-45deg);}
.popup_line.active {display: block;}
.popup_line.hidden {display: none;}
@media only screen and (max-width: 568px) {
.popup-banner {width: 90%;}
.popup-banner ul {border-radius: 10px 10px 0 0;padding: 15px;}
.popup-banner li {font-size: 13px;padding: 0 0 0 2em;letter-spacing: 0;}
.popup-banner li::before {width: 18px;height: 18px;}
.popup_btn_box {border-radius: 0 0 10px 10px;padding: 15px;}
.popup-close {width: 35px;height: 35px;right: -15px;top: -15px;}
.popup-close::before, .popup-close::after {width: 3px;height: 20px;}
}
/*# sourceMappingURL=common.css.map */