@charset "UTF-8";
/*
Theme Name: eftcle-house
Author: Catwork Co., Ltd.
Version: 1.0.0
*/

/* サイトの基本カラーに合わせて変更 */
:root {
  --main-color: #06aa5f;
  --main-light-color: #e9fbf3;
  --main-dark-color: #333;
}

/* Reset
----------------------------------------------------------- */
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
code,
del,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strong,
sub,
sup,
u,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo,
    sans-serif;
  /*font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
  font-size: 16px;
  line-height: 2;
  color: #1d1d1d;
}

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

a:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

strong {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

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

input[type="text"],
input[type="email"],
textarea {
  border-radius: 0;
  -webkit-appearance: none;
  line-height: normal;
  color: var(--main-font-color, #333);
}

textarea {
  overflow: auto;
}

::placeholder {
  color: #999;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.wrap {
  width: 100%;
  overflow-x: hidden;
}

.inner {
  width: 1200px;
  margin: 0 auto;
}

/* フェードアニメーション css
----------------------------------------------------------*/

/*ふわっと出る*/
.mv01_on {
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0, 0, 0);
  -o-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0);
  opacity: 0;
}

.mv01_off {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0, 0, 0);
  -o-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

/*下から*/
.mv02_on {
  -webkit-transition: all 1s ease-out 0.2s;
  -moz-transition: all 1s ease-out 0.2s;
  -ms-transition: all 1s ease-out 0.2s;
  -o-transition: all 1s ease-out 0.2s;
  transition: all 0.8s ease-out;
  -webkit-transform: scale(1, 1) translate3d(0, 45px, 0);
  -moz-transform: scale(1, 1) translate3d(0, 45px, 0);
  -ms-transform: scale(1, 1) translate3d(0, 45px, 0);
  -o-transform: scale(1, 1) translate3d(0, 45px, 0);
  transform: scale(1, 1) translate3d(0, 45px, 0);
  opacity: 0;
}

.mv02_off {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0, 0, 0);
  -o-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

/*右から*/
.mv03_on {
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  -webkit-transform: scale(1, 1) translate3d(100px, 0, 0);
  -moz-transform: scale(1, 1) translate3d(100px, 0, 0);
  -ms-transform: scale(1, 1) translate3d(100px, 0, 0);
  -o-transform: scale(1, 1) translate3d(100px, 0, 0);
  transform: scale(1, 1) translate3d(100px, 0, 0);
  opacity: 0;
}

.mv03_off {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0, 0, 0);
  -o-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

/*左から*/
.mv04_on {
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  -webkit-transform: scale(1, 1) translate3d(-100px, 0, 0);
  -moz-transform: scale(1, 1) translate3d(-100px, 0, 0);
  -ms-transform: scale(1, 1) translate3d(-100px, 0, 0);
  -o-transform: scale(1, 1) translate3d(-100px, 0, 0);
  transform: scale(1, 1) translate3d(-100px, 0, 0);
  opacity: 0;
}

.mv04_off {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0, 0, 0);
  -o-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

/*===============================================
横幅1200px以下
===============================================*/
@media screen and (max-width: 1240px) and (min-width: 441px) {

  html,
  body,
  .wrap {
    width: 1240px;
  }
}

/*===============================================
横幅441px以上
===============================================*/
@media screen and (min-width: 441px) {
  /* a {
    transition: all 0.5s;
  } */

  a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    transition: all 0.5s;
  }

  .sp {
    display: none;
  }

  /* header
------------------------------------------------------------------------*/
  header {
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 10000;
    position: relative;
  }

  header h1 {
    position: absolute;
    top: 152px;
    right: 50%;
    transform: translateX(600px);
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    z-index: 0;
  }

  header .header_box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 150px;
    box-sizing: border-box;
    transition: margin-top .5s;
  }

  header .header_box.active01 {
    margin-top: -150px;
  }

  header .header_box.active02 {
    position: fixed;
    margin-top: 0;

    /* z-index:10000; */
  }

  header .header_box::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 100vw;
    height: 83px;
    z-index: -1;
    background: var(--main-light-color);
  }

  header .header_box.active02::before {
    height: 130px;
  }

  @media screen and (max-width: 1240px) {
    header .header_box::before {
      width: 1240px;
    }

    header .header_box::after {
      width: 1240px;
    }
  }

  header .header_box .logo a {
    position: absolute;
    top: 20px;
    left: 0;
    display: block;
    width: 227px;
    height: 51px;
    background: url("img/header_logo.png") no-repeat;
    background-size: 100%;
    padding: 45px 0 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  header .header_box.active02 .logo a {
    top: 10px;
  }

  header .header_box .text01 {
    text-align: center;
    position: absolute;
    top: 20px;
    left: 251px;
    font-size: 15px;
    line-height: 1.125;
    width: 257px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    letter-spacing: 0.07em;
  }

  header .header_box.active02 .text01 {
    top: 10px;
  }

  header .header_box .text01::before {
    content: "";
    position: absolute;
    border-left: solid 1px #000;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    height: 100%;
    width: 8px;
    top: 50%;
    left: -7px;
    transform: translateY(-50%);
  }

  header .header_box .text01::after {
    content: "";
    position: absolute;
    border-right: solid 1px #000;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    height: 100%;
    width: 8px;
    top: 50%;
    right: -7px;
    transform: translateY(-50%);
  }

  header .header_box .text02 {
    position: absolute;
    top: 17px;
    left: 643px;
    width: 155px;
    height: 36px;
    border-top: 1px solid #182e73;
    border-bottom: 1px solid #182e73;
    box-sizing: border-box;
    color: #182e73;
    font-size: 16px;
    line-height: 34px;
    text-align: center;
  }

  header .header_box.active02 .text02 {
    top: 7px;
  }

  header .header_box .text02::after {
    position: absolute;
    top: -18px;
    left: -18px;
    content: "";
    background: #eaf5fa;
    width: 595px;
    height: 72px;
    z-index: -1;
  }

  header .header_box .bubble {
    position: absolute;
    top: 20px;
    left: 525px;
  }

  header .header_box.active02 .bubble {
    top: 10px;
  }

  header .header_box .tel a {
    position: absolute;
    top: 25px;
    left: 767px;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
    font-weight: bold;
  }

  header .header_box.active02 .tel a {
    top: 15px;
  }

  header .header_box .tel a img {
    display: block;
  }

  header .header_box .tel a span {
    color: var(--main-color);
    font-size: 26px;
    display: block;
    position: relative;
    padding-left: 27px;
    line-height: 1;
  }

  header .header_box .tel a span::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: url("img/header_tel.png") center center / cover no-repeat;
    top: 0;
    left: 0;

  }

  header .header_box .button {
    position: absolute;
    width: 200px;
    height: 50px;
    top: 20px;
    right: 0;
  }

  header .header_box.active02 .button {
    top: 10px
  }

  header .header_box .button a {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #06c755;
    padding-left: 48px;
    box-sizing: border-box;
    border: 1px solid #06c755;
    border-radius: 10px;
    font-size: 16px;
    line-height: 50px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1.5px;
    transition:
      background-color 0.4s ease,
      color 0.4s ease,
      border-color 0.4s ease;
  }


  header .header_box .button a::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    left: 19px;
    top: 50%;
    transform: translateY(-50%);
    background: url(img/header_icon02.png) center center / contain no-repeat;
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
  }


  header .header_box .button a::after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    left: 19px;
    top: 50%;
    transform: translateY(-50%);
    background: url(img/header_icon04.png) center center / contain no-repeat;
    opacity: 0;
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
  }

  header .header_box .button a:hover {
    background: #fff;
    color: #06c755;
  }

  header .header_box .button a:hover::before {
    opacity: 0;
  }

  header .header_box .button a:hover::after {
    opacity: 1;
  }

  /* nav
------------------------------------------------------------------------*/

  header #nav {
    position: absolute;
    top: 80px;
    color: #fff;
  }

  header .header_box.active02 #nav {
    top: 70px;
  }


  header nav #nav .main_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1200px;
    height: 50px;
    background: #00804d;
    border-radius: 25px;
    margin: 0 auto;
    gap: 35px;
  }

  header nav #nav .main_nav li {
    font-size: 14px;
    letter-spacing: 0.17em;
    height: 100%;
  }

  header nav #nav .main_nav a {
    color: #fff;
    font-weight: bold;
    position: relative;
    display: block;
    height: 100%;
  }

  header nav #nav .main_nav>li>a,
  header nav #nav .main_nav>li>span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  header nav #nav .main_nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 15px;
    width: 0;
    height: 1px;
    background: #fff;
    transition: 0.4s;
    transform: translateX(-50%);
  }


  header nav #nav .main_nav .sub_nav_list a::after {
    display: none;
  }

  header nav #nav .main_nav a:hover::after {
    width: 100%;
  }


  header nav #nav .main_nav .sub_nav_list a:hover {
    opacity: 0.7;
  }

  header nav #nav .main_nav>li>span {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    color: #fff;
    font-weight: bold;
  }

  header nav #nav .main_nav>li>a .span01 {
    display: block;
    height: 35px;
    padding: 0 23px;
    color: #fff;
    font-size: 15px;
    line-height: 35px;
    transition: all 0.4s;
    position: relative;
  }

  header nav #nav .main_nav>li>a .span01::before {
    position: absolute;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
    content: "";
    background: #fff;
    width: 1px;
    height: 15px;
  }

  header nav #nav .main_nav>li:nth-of-type(8)>a .span01::after {
    position: absolute;
    top: 50%;
    right: -0.5px;
    transform: translateY(-50%);
    content: "";
    background: #fff;
    width: 1px;
    height: 15px;
  }

  header nav #nav .main_nav>li>a .span01:hover {
    color: #ffd34d;
    transition: all 0.4s;
  }

  header nav #nav .main_nav>li.mark .span01 {
    display: block;
    height: 35px;
    padding: 0 40px 0 23px;
    color: #fff;
    font-size: 15px;
    line-height: 35px;
    transition: all 0.4s;
    position: relative;
  }

  header nav #nav .main_nav>li.mark .span01:hover {
    color: #ffd34d;
    cursor: pointer;
    opacity: 1;
  }

  header nav #nav .main_nav>li.mark .span01::before {
    position: absolute;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
    content: "";
    background: #fff;
    width: 1px;
    height: 15px;
  }

  header nav #nav .main_nav>li.mark .span01::after {
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 4px 0 4px;
    border-color: #ffffff transparent transparent transparent;
  }

  header nav #nav .main_nav>li.mark .span01:hover::after {
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 4px 7px 4px;
    border-color: transparent transparent #ffffff transparent;
  }

  header nav #nav .main_nav li.mark .sub_nav {
    position: absolute;
    top: 35px;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 1200px;
    height: 244px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
  }

  header nav #nav .main_nav li.mark:hover .sub_nav {
    visibility: visible;
    opacity: 1;
    z-index: 10;
  }

  header nav #nav .main_nav li.mark .sub_nav {
    opacity: 0;
    visibility: hidden;
    top: 30px;
    transform: translateY(10px);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease,
      visibility 0.4s;

    padding-top: 40px;
  }

  header nav #nav .main_nav li.mark:hover .sub_nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(15px);
  }

  header nav #nav .main_nav li.mark .sub_nav::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 100%, 100% 100%, 50% 0);
    background: #dbf4e9;
    left: 387px;
    top: -4px;
    margin: auto 0;
    width: 11px;
    height: 9px;
  }

  header nav #nav .main_nav li.mark .sub_nav::after {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    background: var(--main-light-color);
    width: 100vw;
    /* height: 100%; */
    height: 450px;
    z-index: -1;
    border-bottom: 2px solid var(--main-color);
    border-left: none;
    border-right: none;
    box-sizing: border-box;
  }

  header nav #nav .main_nav li.mark .sub_nav .sub_nav_title {
    color: #fff;
    font-size: 24px;
    font-weight: normal;
    line-height: 1.58;
  }

  header nav #nav .main_nav li.mark .sub_nav .sub_nav_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 12px;
    width: 1200px;

    row-gap: 20px;
  }

  header nav #nav .main_nav li.mark .sub_nav .sub_nav_list li {
    width: 190px;
    box-sizing: border-box;
  }

  header nav #nav .main_nav li.mark .sub_nav .sub_nav_list li a {
    display: block;
    position: relative;
    z-index: 100;
  }

  header nav #nav .main_nav li.mark .sub_nav .sub_nav_list li a span {
    background: var(--main-color);
    color: #fff;
    font-size: 14px;
    font-weight: bold;

    display: block;
    text-align: center;
    border-radius: 0 0 10px 10px;
    line-height: 1.4;
    padding: 7px 0;
    margin-top: -1px;
  }

  header nav #nav .main_nav li.mark .sub_nav .sub_nav_list li a:hover {
    color: #fff;
  }

  @media screen and (max-width: 1240px) {
    header nav #nav .main_nav li.mark .sub_nav::after {
      width: 1240px;
    }
  }


  /* home
------------------------------------------------------------------------*/
  .home {
    font-weight: bold;
    color: #1d1d1d;
  }

  /* key */
  .home .key {
    position: relative;
    padding-top: 20px;
    height: 758px;
    /* background: #dbf4e9; */
    background: var(--main-light-color);
    margin-top: -67px;

  }

  .home .key .bg_img {
    position: absolute;
    top: -82px;
    left: 571px;
    width: 928px;
    height: 653px;
    z-index: 0;
  }

  .home .key::before {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    top: 190px;
    height: 375px;
    background: url("img/home_key_bg02.png");
    transform: rotate(-5deg);
  }

  .home .key .inner {
    margin-top: 64px;
  }

  .home .key .inner::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    width: 105vw;
    height: 280px;
    bottom: -232px;
    background: url(img/home_key_bg03.png) repeat-x left top;
    background-size: auto 100%;
    animation: slider 40s linear infinite;
    z-index: 1;
  }

  @keyframes slider {
    0% {
      background-position: 0 0;
    }

    100% {
      background-position: -1800px 0;
    }
  }

  .home .key .inner::before {
    content: "";
    position: absolute;
    right: -4px;
    bottom: 121px;
    width: 371px;
    height: 99px;
    background: url(img/home_key_text03.png) center center / cover no-repeat;
    z-index: 2;
  }

  .home .key .inner .text_box {
    position: relative;
    width: 980px;
    height: 600px;
    left: -300px;
    padding: 60px 10px 70px 300px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0 18px 18px 0;
  }

  .home .key .inner .text_box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .7);
    border-radius: 0 18px 18px 0;
    z-index: 1;
  }

  .home .key .inner .text_box>* {
    position: relative;
    z-index: 2;
  }

  .home .key .inner .text_box::before {
    content: "";
    position: absolute;
    right: -157px;
    top: 225px;
    width: 205px;
    height: 205px;
    background: url(img/home_key_bg04.png) center center / cover no-repeat;
    z-index: 2;
  }

  .home .key .inner .text_box .text01:nth-of-type(1) {
    position: relative;
    font-size: 24px;
    color: #333;
    padding-left: 85px;
    line-height: 1;
    font-weight: bold;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    margin-bottom: 20px;
    letter-spacing: 0.07em;
  }

  .home .key .inner .text_box .text01:nth-of-type(1)::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    background: url("img/key_deco01.png") center center / cover no-repeat;
    width: 74px;
    height: 52px;
  }



  .home .key .inner .text_box .text02 {
    width: 620px;
    height: 40px;
    text-align: center;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 20px;
    font-weight: bold;
    color: var(--main-color);
    font-size: 22px;
    margin-top: 10px;
    line-height: 40px;
  }

  .home .key .inner .text_item:nth-of-type(1) {
    display: flex;
    /* text-align: center; */
    align-items: center;
    line-height: 40px;
    gap: 3px;
    margin-top: 10px;
    transform: translateX(-3px);
  }

  .home .key .inner .text_box .text03 {
    /* margin-top: 25px; */
    text-align: center;

  }

  .home .key .inner .text_item:nth-of-type(2) {
    display: flex;
    text-align: center;
    gap: 15px;
    line-height: 1.3;

    position: absolute;
    top: 440px;
    left: 301px;
  }



  .home .key .inner .text_item .text04:nth-of-type(1) {
    color: #fff;
    width: 297px;
    height: 61px;
    background: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 10px;
    font-size: 34px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

  }

  .home .key .inner .text_item .text04 span {
    font-size: 16px;
    display: block;
    line-height: 1.25;
    padding-right: 11px;
    font-weight: bold;
    letter-spacing: 0.19em;
  }

  .home .key .inner .text_item .text04:nth-of-type(2) {
    color: #fff;
    width: 297px;
    height: 61px;
    background: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 10px;
    font-size: 34px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-align: center; */

  }

  @media screen and (max-width: 1300px) {
    .home .key .inner::after {
      width: 1300px;
    }
  }

  /* topic_wrap */
  .home .topic_wrap {
    margin: 300px auto 120px;
    display: flex;
    justify-content: space-between;
  }

  .home .topic_wrap .breaking_wrap {
    position: relative;
    width: 590px;
    background: var(--main-light-color);
    border: 1px solid var(--main-color);
    border-radius: 18px;
    padding: 34px 10px 10px;
    box-sizing: border-box;
  }

  .home .topic_wrap .breaking_wrap h2 {
    position: absolute;
    top: -17.5px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #444;
    font-size: 14px;
    font-weight: bold;
    width: 400px;
    height: 35px;
    line-height: 35px;
    border: 1px solid var(--main-color);
    border-radius: 17.5px;
    background: #fff;
  }

  .home .topic_wrap .breaking_wrap h2 span {
    color: var(--main-color);
    font-size: 16px;
    font-weight: bold;
  }

  .home .topic_wrap .breaking_wrap h2::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    width: 18px;
    height: 11px;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
  }

  .home .topic_wrap .breaking_wrap .text01 {
    text-align: center;
    color: #1d1d1d;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
  }

  .home .topic_wrap .breaking_wrap .breaking_box {
    width: 570px;
    height: 260px;
    background: #fff;
    border-radius: 8px;
    margin-top: 14px;
    overflow-y: auto;
    padding: 33px;
    box-sizing: border-box;
  }

  .home .topic_wrap .breaking_wrap .breaking_box .cont {
    position: relative;
  }

  .home .topic_wrap .breaking_wrap .breaking_box .cont::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(to right,
        #082a4a 0,
        #082a4a 11px,
        transparent 11px,
        transparent 22px);
  }

  .home .topic_wrap .breaking_wrap .breaking_box .cont .date {
    color: #1d1d1d;
    font-weight: bold;
    line-height: 1;
    padding-top: 30px;
  }

  .home .topic_wrap .breaking_wrap .breaking_box .cont:nth-of-type(1) .date {
    padding-top: 0;
  }

  .home .topic_wrap .breaking_wrap .breaking_box .cont .text02 {
    line-height: 1.5;
    font-weight: bold;
    padding: 18px 0 30px;
  }

  .home .topic_wrap .reviews_wrap {
    position: relative;
    width: 590px;
    background: var(--main-light-color);
    border: 1px solid var(--main-color);
    border-radius: 18px;
    padding: 34px 10px 10px;
    box-sizing: border-box;
  }

  .home .topic_wrap .reviews_wrap h2 {
    position: absolute;
    top: -17.5px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #444;
    font-size: 14px;
    font-weight: bold;
    width: 400px;
    height: 35px;
    line-height: 35px;
    border: 1px solid var(--main-color);
    border-radius: 17.5px;
    background: #fff;
  }

  .home .topic_wrap .reviews_wrap h2 span {
    color: var(--main-color);
    font-size: 16px;
    font-weight: bold;
  }

  .home .topic_wrap .reviews_wrap h2::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    width: 18px;
    height: 11px;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
  }

  .home .topic_wrap .reviews_wrap .text01 {
    text-align: center;
    color: #1d1d1d;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
  }

  .home .topic_wrap .reviews_wrap .reviews_box {
    width: 570px;
    height: 260px;
    background: #fff;
    border-radius: 8px;
    margin-top: 14px;
    overflow: scroll;
  }

  /* cont01 */
  .home .cont01 {
    background: url("img/common_bg_01.png");
    text-align: center;
    padding: 120px 0;
  }

  .home .cont01 .inner h2 {
    position: relative;
    font-weight: bold;
    line-height: 1;
    width: fit-content;
    margin: 0 auto;
  }

  .home .cont01 .inner h2 span {
    display: block;
    font-size: 60px;
    font-weight: bold;
    color: #1d1d1d;
    padding-bottom: 18px;
  }

  .home .cont01 .inner h2::before {
    position: absolute;
    content: "";
    background: url(img/common_deco13.png) no-repeat;
    width: 53px;
    height: 47px;
    left: -22px;
    top: -42px;
  }

  .home .cont01 .inner .text01 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    margin-top: 60px;
  }

  .home .cont01 .inner .thanks_box {
    display: flex;
    justify-content: space-between;
  }

  .home .cont01 .inner .thanks_box .cont {
    position: relative;
    width: 380px;
    height: 250px;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    margin-top: 63px;
    padding: 30px 0;
    box-sizing: border-box;
  }

  .home .cont01 .inner .thanks_box .cont::before {
    position: absolute;
    content: "";
    background: url(img/common_deco02.png) center center / cover no-repeat;
    top: -40px;
    left: 15px;
    width: 89px;
    height: 103px;
  }

  .home .cont01 .inner .thanks_box .cont h3 {
    line-height: 1;
    font-size: 36px;
    font-weight: bold;
    color: var(--main-color);
  }

  .home .cont01 .inner .thanks_box .cont h3 span:nth-of-type(1) {
    display: block;
    font-weight: bold;
    color: #555;
    padding-bottom: 18px;
  }

  .home .cont01 .inner .thanks_box .cont h3 span:nth-of-type(2) {
    font-size: 60px;
    font-weight: bold;
    visibility: hidden;
  }

  .home .cont01 .inner .thanks_box .cont h3 span:nth-of-type(3) {
    font-size: 48px;
    font-weight: bold;
    visibility: hidden;
  }

  .home .cont01 .inner .thanks_box .cont h3 span:nth-of-type(4) {
    visibility: hidden;
  }

  .home .cont01 .inner .thanks_box .cont .text02 {
    line-height: 1.5;
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
  }

  .home .cont01 .inner .thanks_box .cont.box01 h3 span:nth-of-type(1)::after {
    content: "";
    background: url(img/home_thanks01.png) center center / cover no-repeat;
    width: 292px;
    height: 58px;
    position: absolute;
    top: 87px;
    left: 50%;
    transform: translateX(-50%);
  }

  .home .cont01 .inner .thanks_box .cont.box02 h3 span:nth-of-type(1)::after {
    content: "";
    background: url(img/home_thanks02.png) center center / cover no-repeat;
    width: 260px;
    height: 58px;
    position: absolute;
    top: 87px;
    left: 50%;
    transform: translateX(-50%);
  }

  .home .cont01 .inner .thanks_box .cont.box03 h3 span:nth-of-type(1)::after {
    content: "";
    background: url(img/home_thanks03.png) center center / cover no-repeat;
    width: 78px;
    height: 51px;
    position: absolute;
    top: 87px;
    left: 50%;
    transform: translateX(-50%);
  }


  /* ーーーーcont11 お得なセットーーーー */
  .home .cont11 {
    background: #fff;
    padding: 120px 0 35px;
  }

  .home .cont11 .inner:nth-of-type(1) {
    position: relative;
  }

  .home .cont11 .inner:nth-of-type(1)::before {
    position: absolute;
    content: "";
    background: url("img/common_deco14.png") center center / cover no-repeat;
    right: -121px;
    top: -86px;
    width: 250px;
    height: 282px;
    transform: scale(0.7);
  }

  .home .cont11 .inner:nth-of-type(1)::after {
    position: absolute;
    content: "";
    background: url("img/common_deco15.png") center center / cover no-repeat;
    left: -118px;
    top: -86px;
    width: 250px;
    height: 282px;
    transform: scale(0.7);
  }



  .home .cont11 .cont11_01>h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .home .cont11 .cont11_01>h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .home .cont11 .cont11_01>h2 span::after {
    position: absolute;
    content: "";
    background: url("img/home_text01.png") center center / cover no-repeat;
    width: 614px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .home .cont11 .readtext {
    text-align: center;
    margin-top: 45px;
    margin-bottom: 60px;
    font-size: 20px;
    line-height: 1;
  }

  .home .cont11 .text_box {
    /* border: 3px solid var(--main-color); */
    background: var(--main-light-color);
    text-align: center;
    padding-top: 26px;
    padding-bottom: 33px;
    border-radius: 18px;
    margin-bottom: 20px;
  }

  .home .cont11 .text_box .text01 {
    font-size: 32px;
    color: var(--main-color);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 14px;
  }

  .home .cont11 .text_box .text01 span {
    font-weight: bold;
  }

  .home .cont11 .text_box .text01 img {
    vertical-align: -0.24em;
  }


  .home .cont11 .text_box .text02 {
    font-size: 20px;
    line-height: 1.8;
  }

  .home .cont11 .tax_text {
    text-align: right;
    line-height: 1;
    font-size: 14px;
  }


  .home .cont11 .cont11_01 .service_box {
    display: flex;
    justify-content: space-between;
    /* margin-top: 60px; */
    flex-wrap: wrap;
  }

  .home .cont11 .cont11_01 .service_box .cont {
    position: relative;
    width: 580px;
    padding-top: 300px;
    margin-top: 40px;
  }

  /* 画像の箱 */
  .home .cont11 .cont11_01 .service_box .cont .service-imgs {
    position: absolute;
    top: 0;
    left: 0;
    width: 580px;
    height: 300px;
    border: 3px solid #006db2;
    border-radius: 18px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
  }

  .home .cont11 .service-imgs figure {
    flex: 1;
    position: relative;
  }

  .home .cont11 .service-imgs figure img {
    object-fit: none;
    width: 100%;
  }

  .home .service-imgs figure:not(:last-child) {
    border-right: 3px solid #006db2;
  }



  .home .cont11 .cont11_01 .service_box .cont .service-imgs02 {
    position: absolute;
    top: 0;
    left: 0;
    width: 580px;
    height: 300px;
    border: 3px solid #2c9ec8;
    border-radius: 18px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
  }

  .home .service-imgs02 figure {
    flex: 1;
    position: relative;
  }

  .home .service-imgs02 figure img {
    object-fit: none;
    width: 100%;
  }

  .home .service-imgs02 figure:not(:last-child) {
    border-right: 3px solid #2c9ec8;
  }



  /* 画像のキャプション */
  .home .service-imgs img {
    display: block;
  }

  .home .service-imgs figcaption {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;

    background: #006db2;
    color: #fff;
    line-height: 35px;
    /* padding: 10px 22px; */
    width: 120px;
    height: 35px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
  }

  /* キャプショングリーン */
  .home .service-imgs02 img {
    display: block;
  }

  .home .service-imgs02 figcaption {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;

    background: #2c9ec8;
    color: #fff;
    line-height: 35px;
    /* padding: 10px 0px; */
    font-weight: bold;
    width: 120px;
    text-align: center;
    border-radius: 5px;
  }

  /* --------↑画像ここまでーーーーー */

  .home .cont11 .service_box .service-imgs figure:nth-of-type(2)::after {
    content: "";
    position: absolute;
    right: 19px;
    bottom: 19px;
    width: 140px;
    height: 140px;
    background: url(img/home_set01.png) center center / cover no-repeat;
    z-index: 2;
  }

  .home .cont11 .service_box .service-imgs02 figure:nth-of-type(3)::after {
    content: "";
    position: absolute;
    right: 123px;
    bottom: 19px;
    width: 140px;
    height: 140px;
    background: url(img/home_set02.png) center center / cover no-repeat;
    z-index: 2;
  }



  .home .cont11 .cont11_01 .service_box .cont .h_box {
    position: relative;
    line-height: 1;
    padding: 10px 0 8px 36px;
    margin-top: 35px;
  }

  /* 縦棒 */
  .home .cont11 .cont11_01 .service_box .cont .h_box::before {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    width: 10px;
    height: 130px;
    background: #006db2;
    border-radius: 5px;
  }

  .home .cont11 .cont11_01 .service_box .cont:nth-of-type(2) .h_box::before {
    background: #2c9ec8;
  }

  .home .cont11 .cont11_01 .service_box .cont:nth-of-type(3) .h_box::before {
    background: #006db2;
  }


  .home .cont11 .cont11_01 .service_box .cont .h_box h3 {
    font-size: 26px;
    font-weight: bold;

  }

  /* 価格 */
  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 {
    margin-top: 17px;
  }

  /* 通常価格 */
  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span01 {
    position: relative;
    color: #686868;
    font-size: 20px;
    font-weight: bold;
  }

  /* 取り消し線 */
  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span01::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span01>span {
    font-size: 30px;
    font-weight: bold;
    display: inline-block;
    padding-left: 6px;
  }

  /* 通常の円 */
  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span01>span>span {
    font-size: 20px;
    font-weight: bold;
  }

  /* 特別価格 */
  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span02 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    padding-left: 20px;
    color: #006db2;
  }

  .home .cont11 .cont11_01 .service_box .cont:nth-of-type(2) .h_box .text01 .span02 {
    /* background: #d73676; */
    color: #2c9ec8;
  }


  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span02>span>span {
    font-size: 30px;
    font-weight: bold;
    vertical-align: 0.1em
  }


  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span02::before {
    content: "";
    position: absolute;
    background: #006db2;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    width: 8px;
    height: 14px;
    top: 50%;
    left: 7px;
    transform: translateY(-50%);
  }

  .home .cont11 .cont11_01 .service_box .cont:nth-of-type(2) .h_box .text01 .span02::before {
    background: #2c9ec8;
  }

  /* イークリーン */
  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span02::after {
    content: "イークリーン";
    color: #006db2;
    /* letter-spacing: -0.03em; */
    font-size: 16px;
    position: absolute;
    top: -15px;
    left: 20px;
  }

  .home .cont11 .cont11_01 .service_box .cont:nth-of-type(2) .h_box .text01 .span02::after {
    color: #2c9ec8;
  }



  /* 特別価格の数字 */
  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span02>span {
    font-size: 58px;
    font-weight: bold;
    /* color: #d73676; */
    padding-left: 10px;
    vertical-align: -0.08em;
  }


  .home .cont11 .cont11_01 .service_box .cont:nth-of-type(2) .h_box .text01 .span02>span {
    color: #2c9ec8;
  }

  .home .cont11 .cont11_01 .service_box .cont .text03 {
    margin-top: 25px;
    font-size: 20px;
  }

  /* ボタン */
  .home .cont11 .cont11_01 .button {
    position: relative;
    width: 500px;
    text-align: center;
    margin: 60px auto 0px;
  }

  .home .cont11 .cont11_01 .button a {
    display: block;
    background: #fff;
    border: 3px solid var(--main-color);
    color: #1d1d1d;
    font-size: 20px;
    line-height: 64px;
    border-radius: 14px;
    font-weight: bold;
    transition:
      background-color 0.4s ease,
      color 0.4s ease;
  }

  .home .cont11 .cont11_01 .button a:hover {
    color: #fff;
    background: var(--main-color);
  }

  .home .cont11 .cont11_01 a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition:
      background-color 0.4s ease;
  }

  .home .cont11 .cont11_01 a:hover::before {
    background: #fff;
  }

  /* cont02 */
  .home .cont02 {
    background: var(--main-light-color);
    height: 860px;
    margin-top: 85px;
  }

  .home .cont02 .inner {
    position: relative;
  }

  .home .cont02 .text_box01 {
    position: absolute;
    left: 605px;
    top: 122px;
    height: 620px;
    width: 604px;
    padding: 25px 0 30px 30px;
    box-sizing: border-box;
  }

  .home .cont02 h2 {
    position: relative;
    font-weight: bold;
    line-height: 1;
    padding: 12px 0 12px 30px;
    width: fit-content;
  }

  .home .cont02 h2 span {
    font-size: 28px;
    font-weight: bold;
    padding-top: 11px;
    display: block;
    line-height: 1.5;
  }

  .home .cont02 h2::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 8px;
    height: 120px;
    border-radius: 4px;
    left: 0;
    top: 2px;
  }

  .home .cont02 .text01 {
    padding: 32px 0 40px;
    line-height: 2.5;
  }

  .home .cont02 .button {
    width: 360px;
    height: 50px;
    text-align: center;
  }

  .home .cont02 .button a {
    position: relative;
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    box-sizing: border-box;
    color: #fff;
    font-size: 16px;
    line-height: 50px;
    font-weight: bold;
    border-radius: 25px;
    transition:
      background-color 0.4s ease,
      color 0.4s ease;
  }

  .home .cont02 .button a:hover {
    background: #fff;
    color: var(--main-color);
  }

  .home .cont02 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition:
      background-color 0.4s ease,
      color 0.4s ease;
  }

  .home .cont02 .button a:hover::before {
    background: var(--main-color);
  }

  .home .cont02 figure {
    position: absolute;
    left: -300px;
    top: 120px;
    border: 3px solid var(--main-color);
    border-left: none;
    border-radius: 0 18px 18px 0;
    width: 870px;
    height: 620px;
    overflow: hidden;
    box-sizing: border-box;
  }



  @media screen and (min-width: 1800px) {
    .home .cont02 figure {
      border-radius: 10px;
      border-left: 3px solid var(--main-color);
    }
  }

  @media screen and (max-width: 1300px) {
    .home .cont02 .text_box01 {
      padding: 25px 25px 30px 5px;
    }
  }

  /* cont03 水回り*/

  .home .cont03 {
    position: relative;
    padding: 140px 0 120px;
  }

  .home .cont03 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1.114;
    color: #1d1d1d;
    margin-bottom: 50px;
  }

  .home .cont03 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 27px;
  }

  .home .cont03 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text01.png) center center / cover no-repeat;
    width: 614px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .home .cont03 .readtext {
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
  }



  .home .cont03 .box {
    display: flex;
    justify-content: space-between;
    /* margin-top: 73px; */
    flex-wrap: wrap;
  }

  .home .cont03 .box .item {
    position: relative;
    width: 380px;
    padding-top: 260px;
    margin-top: 56px;
  }

  .home .cont03 .box .item figure {
    position: absolute;
    top: 0;
    left: 0;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    overflow: hidden;
  }

  .home .cont03 .box .item .text_box {
    margin-top: 29px;
  }

  .home .cont03 h3 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    line-height: 32px;
    height: 32px;
    padding-left: 26px;
  }

  .home .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }


  .home .cont03 .text_box .text01 {
    margin-top: 10px;
    text-align: right;
    line-height: 1;
  }


  .home .cont03 .text_box .text01 .span02 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    padding-left: 30px;
    color: var(--main-color);
  }

  .home .cont03 .text_box .text01 .span02 .price {
    font-size: 40px;
    font-weight: bold;
    padding-left: 7px;
    vertical-align: -0.1em;
  }

  .home .cont03 .text_box .text01 .span02 .yen {
    font-size: 20px;
    font-weight: bold;
    vertical-align: -0.1em;
  }

  .home .cont03 .text02 {
    margin-top: 16px;
    line-height: 1.875;
  }

  .home .cont03 .button {
    position: relative;
    width: 380px;
    height: 50px;
    text-align: center;
    margin-top: 22px;
  }

  .home .cont03 .button a {
    display: block;
    background: #fff;
    border: 2px solid var(--main-color);
    line-height: 46px;
    border-radius: 14px;
    font-weight: bold;
    transition: background-color 0.4s ease, color 0.4s ease;
  }

  .home .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .home .cont03 .button a:hover {
    background: var(--main-color);
    color: #fff;
  }

  .home .cont03 .button a:hover::before {
    background: #fff;
  }

  .home .cont03 .tax_text {
    text-align: right;
    line-height: 1;
    margin-top: 19px;
    font-size: 14px;
  }


  /* cont04 */
  .home .cont04 {
    padding: 140px 0 120px;
    background: var(--main-light-color);
  }

  .home .cont04 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1.114;
    color: #1d1d1d;
    margin-bottom: 50px;
  }

  .home .cont04 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 27px;
  }

  .home .cont04 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text02.png) center center / cover no-repeat;
    width: 921px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .home .cont04 .readtext {
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
  }



  .home .cont04 .box {
    display: flex;
    justify-content: space-between;
    margin-top: 56px;
  }

  .home .cont04 .box .item {
    position: relative;
    width: 380px;
    padding-top: 260px;
  }

  .home .cont04 .box .item figure {
    position: absolute;
    top: 0;
    left: 0;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    overflow: hidden;
  }

  .home .cont04 .box .item .text_box {
    margin-top: 29px;
  }

  .home .cont04 h3 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    line-height: 32px;
    height: 32px;
    padding-left: 26px;
  }

  .home .cont04 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }


  .home .cont04 .text_box .text01 {
    margin-top: 10px;
    text-align: right;
    line-height: 1;
  }

  .home .cont04 .text_box .text01 .span02 {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    padding-left: 30px;
    color: var(--main-color);
  }


  .home .cont04 .text_box .text01 .span02 .price {
    font-size: 40px;
    font-weight: bold;
    /* color: var(--main-color); */
    padding-left: 7px;
    vertical-align: -0.1em;

  }

  .home .cont04 .text_box .text01 .span02 .yen {
    font-size: 20px;
    font-weight: bold;
    vertical-align: -0.1em;
  }


  .home .cont04 .text02 {
    margin-top: 16px;
    line-height: 1.875;
  }




  .home .cont04 .button {
    position: relative;
    width: 380px;
    height: 50px;
    text-align: center;
    margin-top: 22px;
  }

  .home .cont04 .button a {
    display: block;
    background: #fff;
    border: 2px solid var(--main-color);
    line-height: 46px;
    border-radius: 14px;
    font-weight: bold;
    transition: background-color 0.4s ease, color 0.4s ease;
  }

  .home .cont04 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .home .cont04 .button a:hover {
    background: var(--main-color);
    color: #fff;
  }

  .home .cont04 .button a:hover::before {
    background: #fff;
  }

  .home .cont04 .tax_text {
    text-align: right;
    line-height: 1;
    margin-top: 19px;
    font-size: 14px;
  }



  /* -----------張替えエリア　コント１２ーーーーー */
  .home .cont12 {
    padding: 140px 0 120px;
  }

  .home .cont12 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1.114;
    color: #1d1d1d;
    margin-bottom: 50px;
  }

  .home .cont12 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 26px;
  }

  .home .cont12 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text08.png) center center / cover no-repeat;
    width: 606px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 16px));
    z-index: -1;
  }

  .home .cont12 .readtext {
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
  }

  .home .cont12 .box {
    display: flex;
    justify-content: center;
    margin-top: 56px;
    gap: 30px;
  }

  .home .cont12 .box .item {
    position: relative;
    width: 380px;
    padding-top: 260px;
  }

  .home .cont12 .box .item .fig01 {
    position: absolute;
    top: 0;
    left: 0;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    overflow: hidden;
  }

  /* 画像 */
  .home .cont12 .service-imgs {
    position: absolute;
    top: 0;
    left: 0;
    width: 380px;
    height: 260px;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
  }

  .home .cont12 .service-imgs figure {
    flex: 1;
    position: relative;
  }

  .home .cont12 .service-imgs figure img {
    object-fit: none;
    width: 100%;
  }

  .home .cont12 .service-imgs figure:not(:last-child) {
    border-right: 3px solid var(--main-color);
  }






  .home .cont12 .box .item .text_box {
    margin-top: 29px;
  }

  .home .cont12 h3 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    line-height: 32px;
    height: 32px;
    padding-left: 26px;
  }

  .home .cont12 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }


  .home .cont12 .text_box .text01 {
    margin-top: 6px;
    text-align: right;
    line-height: 1;
  }

  .home .cont12 .text_box .text01 .span02 {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    padding-left: 30px;
    color: var(--main-color);
  }


  .home .cont12 .text_box .text01 .span02 .price {
    font-size: 40px;
    font-weight: bold;
    /* color: var(--main-color); */
    padding-left: 7px;
    vertical-align: -0.1em;


  }

  .home .cont12 .text_box .text01 .span02 .yen {
    font-size: 20px;
    font-weight: bold;
    vertical-align: -0.1em;
  }



  .home .cont12 .text02 {
    margin-top: 16px;
    line-height: 1.875;
  }

  .home .cont12 .button {
    position: relative;
    width: 380px;
    height: 50px;
    text-align: center;
    margin-top: 22px;
  }

  .home .cont12 .button a {
    display: block;
    background: #fff;
    border: 2px solid var(--main-color);
    line-height: 46px;
    border-radius: 14px;
    font-weight: bold;
    transition: background-color 0.4s ease, color 0.4s ease;
  }

  .home .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .home .cont12 .button a:hover {
    background: var(--main-color);
    color: #fff;
  }

  .home .cont12 .button a:hover::before {
    background: #fff;
  }

  .home .cont12 .tax_text {
    max-width: 800px;
    text-align: right;
    margin: 19px auto 0px;
    line-height: 1;
    font-size: 14px;
  }



  /* cont05    選ばれる理由*/
  .home .cont05 {
    background: url(img/common_bg_01.png);
    padding: 140px 0 120px;
  }

  .home .cont05 .inner {
    position: relative;
  }

  .home .cont05 .inner {
    width: 900px;
    margin: 0 auto;
  }

  .home .cont05 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .home .cont05 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .home .cont05 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .home .cont05 h3 {
    position: relative;
    font-weight: bold;
    font-size: 22px;
    color: #1d1d1d;
    padding-left: 20px;
    height: 32px;
    line-height: 32px;
  }

  .home .cont05 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 32px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .home .cont05 .text01 {
    margin-top: 4px;
  }

  .home .cont05 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 9px;
    padding: 24px 0 22px 99px;
    margin-bottom: 50px;
  }

  .home .cont05 .box .item::before {
    position: absolute;
    content: "";
    background: url("img/reason_01.png") center center / cover no-repeat;
    width: 144px;
    height: 134px;
    left: -66px;
    top: 1px;
  }

  .home .cont05 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .home .cont05 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .home .cont05 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .home .cont05 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .home .cont05 .box .item:first-of-type {
    margin-top: 60px;
  }

  .home .cont05 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .home .cont05 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .home .cont05 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .home .cont05 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .home .cont05 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .home .cont05 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont06 */
  .home .cont06 {
    padding: 140px 0 120px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .home .cont06 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .home .cont06 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .home .cont06 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .home .cont06 .text01 {
    text-align: center;
    font-size: 20px;
    margin-top: 60px;
    line-height: 1.8;
  }

  .home .cont06 .item {
    position: relative;
  }

  .home .cont06 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .home .cont06 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home .cont06 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .home .cont06 .category_01,
  .home .cont06 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
  }

  .home .cont06 .category_01 {
    padding: 7px 22px;
    background: var(--main-color);
  }

  .home .cont06 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .home .cont06 .text02 {
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home .cont06 .box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 55px auto 0;
  }

  .home .cont06 .box .item {
    width: calc((100% - 30px) / 2);
    position: relative;
    padding-top: 220px;
  }

  .home .cont06 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .home .cont06 .box .img_box .before {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
  }

  .home .cont06 .box .img_box .after {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    overflow: hidden;
    border: 1px solid var(--main-color);
  }

  .home .cont06 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }



  .home .cont06 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .home .cont06 .button {
    position: relative;
    width: 265px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .home .cont06 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .home .cont06 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .home .cont06 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .home .cont06 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1450px) {
    .home .cont06 .box {
      gap: 60px;
      justify-content: center;
      padding: 0 40px;
    }

    .home .cont06 .item::before {
      top: 80px;
    }
  }

  /* cont07   ご利用の流れ*/
  .home .cont07 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
  }

  .home .cont07 .inner {
    position: relative;
  }

  .home .cont07 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .home .cont07 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .home .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .home .cont07 .box {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }

  .home .cont07 .box .item {
    position: relative;
    width: 380px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 46px 30px;
  }

  .home .cont07 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 46px;
  }

  .home .cont07 .box .item:last-of-type::before {
    display: none;
  }

  .home .cont07 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .home .cont07 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .home .cont07 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .home .cont07 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .home .cont07 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .home .cont07 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .home .cont07 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .home .cont07 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .home .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .home .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .home .cont07 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .home .cont07 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont08   よくある質問*/
  .home .cont08 {
    padding: 140px 0 120px;
  }

  .home .cont08 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .home .cont08 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .home .cont08 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }



  .home .cont08 p {
    text-align: center;
    font-weight: bold;
    margin-top: 55px;
  }

  .home .cont08 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .home .cont08 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 37px 100px 37px 152px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }

  .home .cont08 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .home .cont08 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .home .cont08 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .home .cont08 .qa_box .ans {
    display: none;
    padding-left: 152px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 52px;
    position: relative;
  }

  .home .cont08 .button {
    position: relative;
    width: 275px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .home .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .home .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .home .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .home .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1300px) {
    .home .cont08 {
      width: 1100px;
    }
  }

  /* cont09 */
  .home .cont09 {
    background: url(img/common_bg_01.png);
    padding: 120px 0;
  }

  .home .cont09 .inner {
    padding-top: 620px;
    position: relative;
  }

  .home .cont09 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 233px;
    height: 184px;
    bottom: -301px;
    right: 48px;
  }

  .home .cont09 figure {
    position: absolute;
    left: -300px;
    top: 0;
    border: 3px solid var(--main-color);
    border-left: none;
    border-radius: 0 18px 18px 0;
    width: 870px;
    height: 620px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .home .cont09 figure img {
    object-fit: none;
  }

  .home .cont09 .text_box {
    position: absolute;
    right: 0;
    top: 0;
    height: 560px;
    width: 680px;
    padding: 48px 0 54px 50px;
    box-sizing: border-box;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    margin: 30px auto;
    z-index: 2;
  }

  .home .cont09 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .home .cont09 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .home .cont09 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .home .cont09 .text_box .info_box {
    margin-top: 24px;
  }

  .home .cont09 .text_box .tel,
  .home .cont09 .text_box .mail,
  .home .cont09 .text_box .time,
  .home .cont09 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .home .cont09 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .home .cont09 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .home .cont09 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .home .cont09 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
  }

  .home .cont09 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .home .cont09 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .home .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .home .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .home .cont09 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .home .cont09 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (min-width: 1800px) {
    .home .cont09 figure {
      border-left: 3px solid var(--main-color);
      border-radius: 18px;
    }
  }


  /* cont10 */
  .home .cont10 {
    padding: 140px 0 120px;
    z-index: 10;
    position: relative;
  }

  .home .cont10 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .home .cont10 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .home .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .home .cont10 .text01 {
    margin-top: 52px;
    text-align: center;
    font-size: 18px;
  }

  .home .cont10 .blog_box {
    margin-top: 49px;
  }

  .home .cont10 .blog_box .swiper-slide {
    display: block;
    width: 336px;
  }

  .home .cont10 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .home .cont10 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 26px;
    order: 2;
    line-height: 1;
  }

  .home .cont10 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 20px 0 0;
    order: 3;
  }

  .home .cont10 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .home .cont10 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .home .cont10 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .home .cont10 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .home .cont10 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .home .cont10 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .home .cont10 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .home .cont10 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .home .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .home .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .home .cont10 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .home .cont10 .button a:hover::before {
    background: var(--main-color);
  }



  /* about ------------------------------------------------------------------------*/
  /* key */
  .about .key .text01::after {
    background: url("img/about_key_text.png");
    width: 343px;
    height: 74px;
  }

  /* cont01 */
  .about .cont01 {
    padding: 90px 0 100px;
    display: flex;
    gap: 18px;
    position: relative;
  }

  .about .cont01 h2 {
    font-size: 20px;
    font-weight: bold;
    padding-left: 47px;
    position: relative;
  }

  .about .cont01 h2::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 155px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .about .cont01 h2 span {
    display: block;
    font-weight: bold;
    font-size: 32px;
    color: var(--main-color);
    line-height: 1.5;
  }

  .about .cont01 .text01 {
    font-size: 18px;
    line-height: 2.3;
    margin-top: 24px;
  }

  .about .cont01 .text01:first-of-type {
    margin-top: 45px;
  }

  .about .cont01 .img_box {
    position: absolute;
    right: 0;
    top: 90px;
  }

  .about .cont01 .img_box figure {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
  }

  .about .cont01 .img_box figure:nth-of-type(1) {
    right: 288px;
    top: 178px;
    width: 185px; 
  }

  .about .cont01 .img_box figure:nth-of-type(2) {
    top: 0;
    right: -58px;
    width: 336px;
  }

  .about .cont01 .img_box figure:nth-of-type(3) {
    width: 224px;
    top: 420px;
    right: 158px;
  }

  .about .cont01 .img_box figure:nth-of-type(4) {
    right: 1px;
    top: 420px;
    width: 148px;
  }

  /* cont02 */
  .about .cont02 {
    padding: 100px 0;
    background: var(--main-light-color);
  }
  .about .cont02 .box figure {
    width: 650px;
    height: auto;
    border: 4px solid var(--main-color);
    border-radius: 15px;
    overflow: hidden;
}

  .about .cont02 .cont02_01 {
    position: relative;
  }

.about .cont02 .cont02_01::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center / cover no-repeat;
    width: 233px;
    height: 184px;
    top: -150px;
    left: 20px;
    transform: scale(0.8);
  }
  
  .about .cont02 .cont02_01::after {
    position: absolute;
    content: "";
    background: url(img/common_deco08.png) center / cover no-repeat;
    width: 300px;
    height: 215px;
    top: -165px;
    right: -20px;
    transform: scale(0.8);
  }

  .about .cont02 .cont02_01 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #082a4a;
  }

  .about .cont02 .cont02_01 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .about .cont02 .cont02_01 span::before {
    position: absolute;
    content: "";
    background: url(img/about_text01.png) center center / cover no-repeat;
    width: 479px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }


  .about .cont02 .cont02_01 .box {
    position: relative;
    display: flex;
    margin-top: 80px;
  }

  .about .cont02 .cont02_01 .box:nth-of-type(2) {
    justify-content: end;
  }

  .about .cont02 .cont02_01 .text_box {
    position: absolute;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    width: 635px;
    height: 340px;
    border-radius: 10px 0 0 10px;
    padding: 0 300px 0 48px;
    background: #fff;
  }

  .about .cont02 .cont02_01 .box:nth-of-type(2) .text_box {
    border-radius: 0 10px 10px 0;
    left: -300px;
    padding: 0 0 0 300px;
  }

  .about .cont02 .cont02_01 .box .text01 {
    font-size: 16px;
    margin-top: 25px;
  }

  .about .cont02 .cont02_01 .box h3 {
    position: relative;
    font-size: 28px;
    font-weight: bold;
    color: #082a4a;
    padding-left: 107px;
    line-height: 58px;
    margin-top: 40px;
  }

  .about .cont02 .cont02_01 .box:nth-of-type(3) h3 {
    line-height: 1.5;
  }

  .about .cont02 .cont02_01 .box h3::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .about .cont02 .cont02_01 .box:nth-of-type(1) h3::before {
    background: url("img/vision01.png");
    width: 43px;
    height: 55px;
  }

  .about .cont02 .cont02_01 .box:nth-of-type(2) h3::before {
    background: url("img/vision02.png");
    width: 49px;
    height: 55px;
  }

  .about .cont02 .cont02_01 .box:nth-of-type(3) h3::before {
    background: url("img/vision03.png");
    width: 49px;
    height: 55px;
  }

  .about .cont02 .cont02_01 .box h3::after {
    position: absolute;
    content: "";
    left: 73px;
    top: 0;
    width: 3px;
    height: 58px;
    border-radius: 2px;
    background: var(--main-color);
  }

  .about .cont02 .cont02_01 .box.box:nth-of-type(3) h3::after {
    top: 50%;
    transform: translateY(-50%);
  }

  .about .cont02 .cont02_02 {
    margin-top: 100px;
    width: 1200px;
    background: #fff;
    border: 3px solid var(--main-color);
    padding: 0 0 45px;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .about .cont02 .cont02_02 h2 {
    position: relative;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: var(--main-color);
    border-radius: 6px 6px 0 0;
    line-height: 60px;
  }

  .about .cont02 .cont02_02 h2::before {
    position: absolute;
    content: "";
    background: url("img/common_deco05.png") no-repeat;
    width: 131px;
    height: 151px;
    right: 40px;
    top: -70px;
  }

  .about .cont02 .cont02_02 .tet_box {
    text-align: center;
    margin: 45px 70px 0;
  }

  .about .cont02 .cont02_02 .tet_box .text01 {
    line-height: 1;
  }

  .about .cont02 .cont02_02 .tet_box .text01 {
    font-size: 24px;
    font-weight: bold;
    color: #082a4a;
  }

  .about .cont02 .cont02_02 .tet_box .text01 span {
    font-size: 28px;
    font-weight: bold;
    color: var(--main-color);
  }

  .about .cont02 .cont02_02 .tet_box .text02 {
    font-size: 16px;
    margin-top: 35px;
  }

  .about .cont02 .cont02_02 .tet_box:nth-of-type(1) .text02 {
    padding-bottom: 40px;
    border-bottom: 2px dashed var(--main-color);
  }

  .about .cont02 .cont02_02 .tet_box .text02 span {
    font-size: 16px;
    font-weight: bold;
    color: var(--main-color);
  }

  @media screen and (min-width: 1800px) {
    .about .cont02 .cont02_01 .box .text_box {
      border-radius: 10px;
      padding: 0 100px;
      right: -200px;
    }

    .about .cont02 .cont02_01 .box:nth-of-type(2) .text_box {
      border-radius: 10px;
      padding: 0 100px;
      left: -200px;
    }
  }

  /* cont03 */
  .about .cont03 {
    position: relative;
    padding: 252px 0 0;
  }

  .about .cont03::before {
    position: absolute;
    content: "";
    background: url(img/common_deco09.png) no-repeat;
    width: 227px;
    height: 200px;
    top: 5px;
    right: 250px;
    z-index: 1;
    transform: scale(0.8);
  }

  
  .about .cont03::after {
    position: absolute;
    content: "";
    background: url(img/housecleaning_deco02.png) no-repeat;
    width: 215px;
    height: 225px;
    top: 82px;
    right: 0px;
    z-index: 1;
    transform: scale(0.8);
  }

  .about .cont03 .box figure {
    position: absolute;
    top: 100px;
    left: -300px;
    z-index: -1;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .about .cont03 .text_box {
    background: url(img/common_bg_01.png);
    height: 500px;
    width: 1175px;
    box-sizing: border-box;
    padding: 78px 0 0 80px;
    border-radius: 10px;
    position: absolute;
    right: -300px;
    top: 252px;
  }

  .about .cont03 .text_box h2 {
    position: relative;
    font-size: 32px;
    font-weight: bold;
    color: #082a4a;
    line-height: 1.2;
    padding-left: 42px;
  }

  .about .cont03 .text_box h2::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 85px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px;
  }

  .about .cont03 .text_box .text01 {
    margin-top: 22px;
    font-size: 20px;
  }

  .about .cont03 .review_box {
    display: flex;
    justify-content: space-between;
    margin-top: 310px;
  }

  .about .cont03 .review_box .cont {
    position: relative;
    width: 380px;
    height: 250px;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    padding: 30px 0;
    box-sizing: border-box;
    text-align: center;
  }

  .about .cont03 .review_box .cont::before {
    position: absolute;
    content: "";
    background: url(img/common_deco02.png) center center / cover no-repeat;
    top: -40px;
    left: 15px;
    width: 89px;
    height: 103px;
  }


  .about .cont03 .review_box .cont h3 {
    line-height: 1;
    font-size: 36px;
    font-weight: bold;
    color: var(--main-color);
  }

  .about .cont03 .review_box .cont h3 span:nth-of-type(1) {
    display: block;
    font-weight: bold;
    color: #555;
    padding-bottom: 18px;
  }

  .about .cont03 .review_box .cont h3 span:nth-of-type(2) {
    font-size: 60px;
    font-weight: bold;
  }

  .about .cont03 .review_box .cont h3 span:nth-of-type(3) {
    font-size: 48px;
    font-weight: bold;
  }

  .about .cont03 .review_box .cont .text02 {
    line-height: 1.5;
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
  }

  /* topic_wrap */
  .about .topic_wrap {
    margin: 120px auto 100px;
    display: flex;
    justify-content: space-between;
  }

  .about .topic_wrap .breaking_wrap {
    position: relative;
    width: 590px;
    background: var(--main-light-color);
    border: 1px solid var(--main-color);
    border-radius: 18px;
    padding: 34px 10px 10px;
    box-sizing: border-box;
  }

  .about .topic_wrap .breaking_wrap h2 {
    position: absolute;
    top: -17.5px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #444;
    font-size: 14px;
    font-weight: bold;
    width: 400px;
    height: 35px;
    line-height: 35px;
    border: 1px solid var(--main-color);
    border-radius: 17.5px;
    background: #fff;
  }

  .about .topic_wrap .breaking_wrap h2 span {
    color: #082a4a;
    font-size: 16px;
    font-weight: bold;
  }

  .about .topic_wrap .breaking_wrap h2::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    width: 18px;
    height: 11px;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
  }

  .about .topic_wrap .breaking_wrap .text01 {
    text-align: center;
    color: #082a4a;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
  }

  .about .topic_wrap .breaking_wrap .breaking_box {
    width: 570px;
    height: 260px;
    background: #fff;
    border-radius: 8px;
    margin-top: 14px;
    overflow-y: auto;
    padding: 33px;
    box-sizing: border-box;
  }

  .about .topic_wrap .breaking_wrap .breaking_box .cont {
    position: relative;
  }

  .about .topic_wrap .breaking_wrap .breaking_box .cont::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(to right,
        #082a4a 0,
        #082a4a 11px,
        transparent 11px,
        transparent 22px);
  }

  .about .topic_wrap .breaking_wrap .breaking_box .cont .date {
    color: #082a4a;
    font-weight: bold;
    line-height: 1;
    padding-top: 30px;
  }

  .about .topic_wrap .breaking_wrap .breaking_box .cont:nth-of-type(1) .date {
    padding-top: 0;
  }

  .about .topic_wrap .breaking_wrap .breaking_box .cont .text02 {
    line-height: 1.5;
    font-weight: bold;
    padding: 18px 0 30px;
  }

  .about .topic_wrap .reviews_wrap {
    position: relative;
    width: 590px;
    background: var(--main-light-color);
    border: 1px solid var(--main-color);
    border-radius: 18px;
    padding: 34px 10px 10px;
    box-sizing: border-box;
  }

  .about .topic_wrap .reviews_wrap h2 {
    position: absolute;
    top: -17.5px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #444;
    font-size: 14px;
    font-weight: bold;
    width: 400px;
    height: 35px;
    line-height: 35px;
    border: 1px solid var(--main-color);
    border-radius: 17.5px;
    background: #fff;
  }

  .about .topic_wrap .reviews_wrap h2 span {
    color: #082a4a;
    font-size: 16px;
    font-weight: bold;
  }

  .about .topic_wrap .reviews_wrap h2::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    width: 18px;
    height: 11px;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
  }

  .about .topic_wrap .reviews_wrap .text01 {
    text-align: center;
    color: #082a4a;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
  }

  .about .topic_wrap .reviews_wrap .reviews_box {
    width: 570px;
    height: 260px;
    background: #fff;
    border-radius: 8px;
    margin-top: 14px;
    overflow: scroll;
  }


  /* エアコンクリーニング ------------------------------------------------------------------------*/
  /* key */
  .aircon .key .text01::after {
    background: url("img/aircon_key_text.png");
    width: 724px;
    height: 58px;
  }

  /* cont01 */
  .aircon .cont01 {
    padding: 140px 0 60px;
    display: flex;
    gap: 18px;
    position: relative;
  }

  .aircon .cont01 h2 {
    font-size: 24px;
    padding-left: 27px;
    position: relative;
    line-height: 1.6;
    font-weight: bold;
  }

  .aircon .cont01 h2::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .aircon .cont01 .text01 {
    font-size: 18px;
    line-height: 2.3;
    margin-top: 24px;
  }

  .aircon .cont01 figure {
    position: absolute;
    right: -300px;
    top: 90px;
    width: 870px;
    border: 3px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  @media screen and (min-width: 1800px) {
    .aircon .cont01 figure {
      border-radius: 10px;
      border-right: 3px solid var(--main-color);
    }
  }


  /* cont02 */
  .aircon .cont02 {
    background: url(img/common_bg_01.png);
    padding: 140px 0 120px;
    margin-top: 120px;
  }

  .aircon .cont02 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .aircon .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/aircon_deco02.png) center center / cover no-repeat;
    width: 203px;
    height: 153px;
    top: -199px;
    right: 0;
  }

  .aircon .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/aircon_deco01.png) center center / cover no-repeat;
    width: 224px;
    height: 264px;
    top: -199px;
    left: 0;
  }

  .aircon .cont02 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 34px;
  }

  .aircon .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text01.png) center center / cover no-repeat;
    width: 298px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .aircon .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .aircon .cont02 .box {
    display: flex;
    gap: 33px;
    justify-content: center;
    margin-top: 55px;
  }

  .aircon .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 378px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
  }

  .aircon .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 25px 33px 28px;

  }

  .aircon .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .aircon .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .aircon .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .aircon .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .aircon .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 21px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .aircon .cont02 .box .text_box01:nth-of-type(2) h3 {
    font-size: 20px;
  }

  .aircon .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .aircon .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }


  .aircon .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

  }


  /* cont03 */
  .aircon .cont03 {
    padding: 140px 0 120px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .aircon .cont03 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .aircon .cont03 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .aircon .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .aircon .cont03 .text01 {
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
    line-height: 1.8;
  }

  .aircon .cont03 .item {
    position: relative;
  }

  .aircon .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .aircon .cont03 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .aircon .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .aircon .cont03 .category_01,
  .aircon .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
  }

  .aircon .cont03 .category_01 {
    padding: 7px 22px;
    background: var(--main-color);
  }

  .aircon .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .aircon .cont03 .text02 {
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .aircon .cont03 .box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 55px auto 0;
  }

  .aircon .cont03 .box .item {
    width: calc((100% - 30px) / 2);
    position: relative;
    padding-top: 220px;
  }

  .aircon .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .aircon .cont03 .box .img_box .before {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
  }

  .aircon .cont03 .box .img_box .after {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    overflow: hidden;
    border: 1px solid var(--main-color);
  }

  .aircon .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .aircon .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .aircon .cont03 .button {
    position: relative;
    width: 425px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .aircon .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .aircon .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .aircon .cont03 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .aircon .cont03 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1450px) {
    .aircon .cont03 .box {
      gap: 60px;
      justify-content: center;
      padding: 0 40px;
    }

    .aircon .cont03 .item::before {
      top: 80px;
    }
  }


  /* ーーーーーーーーー新エリア　壁掛けエアコンの費用ーーーーーーー */
  /* cont04 */

  .aircon .cont04 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
  }

  .aircon .cont04 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 75px;
  }

  .aircon .cont04 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .aircon .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }


  .aircon .cont04 h3 {
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 39px;
    text-align: center;
    line-height: 1;
    position: relative;
  }

  .aircon .cont04 h3::before {
    content: "";
    width: 303px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;

  }

  .aircon .cont04 h3::after {
    content: "";
    width: 306px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;

  }

  .aircon .cont04 section:nth-of-type(2) h3:before {
    width: 266px;
  }

  .aircon .cont04 section:nth-of-type(2) h3::after {
    width: 268px;
  }

  .aircon .cont04 section:nth-of-type(3) h3:before {
    width: 213px;
  }

  .aircon .cont04 section:nth-of-type(3) h3::after {
    width: 213px;
  }

  .aircon .cont04 section:nth-of-type(4) h3:before {
    width: 213px;
  }

  .aircon .cont04 section:nth-of-type(4) h3::after {
    width: 213px;
  }


  .aircon .cont04 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
  }

  .aircon .cont04 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    /* margin-top: 40px; */
  }

  .aircon .cont04 .box h4 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 15px 15px 0px 0px;
    line-height: 70px;
  }

  .aircon .cont04 .flex {
    display: flex;
    align-items: center;
  }

  .aircon .cont04 .flex figure {
    border-radius: 18px;
    margin: 40px 40px 40px 36px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .aircon .cont04 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .aircon .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    /* padding-top: 60px; */
    text-align: left;
  }

  .aircon .cont04 .box .price_box .price_text01 span {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .aircon .cont04 .box .price_box .price_text01 span .span01 {
    font-size: 24px;
  }

  .aircon .cont04 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .aircon .cont04 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .aircon .cont04 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 20px;
    line-height: 1;
  }

  .aircon .cont04 .box .price_box .price_text02 span {
    font-size: 56px;
    font-weight: bold;
  }

  .aircon .cont04 .box .price_box .cate01,
  .aircon .cont04 .box .price_box .cate02 {
    display: inline-block;
    color: #fff;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 1.2px;
    line-height: 42px;
    margin-top: 20px;
  }

  .aircon .cont04 .box .price_box .cate01 {
    font-size: 20px;
    width: 285px;
    background: #51aa81;
    margin-right: 14px;
    text-align: center;
  }

  .aircon .cont04 .box:nth-of-type(2) .price_box .cate01,
  .aircon .cont04 .box:nth-of-type(4) .price_box .cate01 {
    background: #045aaa;
  }

  .aircon .cont04 .box .price_box .cate02 {
    font-size: 20px;
    background: #0091a2;
    width: 175px;
    text-align: center;
  }


  .aircon .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .aircon .cont04 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .aircon .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .aircon .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .aircon .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .aircon .cont04 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .aircon .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 44px;
    background: var(--main-color);
  }

  .aircon .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .aircon .cont04 .box:nth-of-type(1) {
    margin-bottom: 65px;
  }

  .aircon .cont04 .box:nth-of-type(3) {
    margin-bottom: 65px;
  }

  .aircon .cont04 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 18px;
    margin-bottom: 117px;
  }

  .aircon .cont04 .tax_text02 {
    font-size: 14px;
    text-align: right;
    margin-top: 26px;
    margin-bottom: 93px;
  }

  /* オプションボックス */
  .aircon .cont04 .option_box {
    margin-top: 105px;
  }

  .aircon .cont04 .option_box .text01 {
    font-size: 20px;
    margin-top: 28px;
  }

  .aircon .cont04 .option_box .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .aircon .cont04 .option_box .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .aircon .cont04 .option_box .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .aircon .cont04 .option_box .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .aircon .cont04 .option_box .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .aircon .cont04 .option_box .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .aircon .cont04 .option_box .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .aircon .cont04 .option_box .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .aircon .cont04 .option_box .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .aircon .cont04 .option_box .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 32px;
  }

  .aircon .cont04 .option_box .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  .aircon .cont04 .option_box .tax_text03 {
    text-align: right;
    line-height: 1;
    margin-top: 41px;
    margin-bottom: 59px;
  }

  .aircon .cont04 .complete_box {
    position: relative;
    width: 1200px;
    height: 240px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .aircon .cont04 .complete_box::before {
    content: "";
    background: url(img/aircon_deco04.png);
    width: 350px;
    height: 160px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 131px;
  }

  .aircon .cont04 .complete_box::after {
    content: "";
    background: url(img/aircon_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 27px;
  }

  .aircon .cont04 .complete_box .text_box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;

  }

  .aircon .cont04 .complete_box .text_box .text05 {
    font-size: 20px;

  }

  .aircon .cont04 .complete_box .text_box .text05 .span01 {
    font-size: 24px;
    font-weight: bold;
  }

  .aircon .cont04 .complete_box .text_box .text05 .span02 {
    font-size: 34px;
    color: #006db2;
    font-weight: bold;
  }

  .aircon .cont04 .complete_box .text_box .text05 .span03 {
    background: linear-gradient(transparent 40%, #feff90 60%);
  }

  .aircon .cont04 .complete_box .text_box .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 20px 10px 0 auto;
  }

  .aircon .cont04 .complete_box .text_box .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .aircon .cont04 .complete_box .text_box .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .aircon .cont04 .complete_box .text_box .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .aircon .cont04 .complete_box .text_box .button a:hover::before {
    background: var(--main-color);
  }

  /* cont05 業務用*/
  .aircon .cont05 {
    padding: 140px 0 120px;
  }

  .aircon .cont05 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 75px;
  }

  .aircon .cont05 h2::before {
    position: absolute;
    content: "";
    background: url(img/aircon_deco05.png) center center / cover no-repeat;
    width: 125px;
    height: 258px;
    top: -159px;
    left: 0;
  }

  .aircon .cont05 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .aircon .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .aircon .cont05 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 56px;
    text-align: center;
  }

  .aircon .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 18px;
  }

  .aircon .cont05 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 15px 15px 0px 0px;
    line-height: 70px;
  }

  .aircon .cont05 .box .flex {
    display: flex;
    align-items: center;
  }

  .aircon .cont05 .flex figure {
    border-radius: 18px;
    margin: 40px 40px 40px 37px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .aircon .cont05 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .aircon .cont05 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1;
  }

  .aircon .cont05 .box .price_box .price_text01 .span01 {
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .aircon .cont05 .box .price_box .price_text01 .span02 {
    font-size: 56px;
    font-weight: bold;
    color: var(--main-color);
  }

  .aircon .cont05 .box .price_box .cate01,
  .aircon .cont05 .box .price_box .cate02 {
    display: inline-block;
    color: #fff;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 1.2px;
    line-height: 42px;
    margin-top: 20px;
  }

  .aircon .cont05 .box .price_box .cate01 {
    font-size: 20px;
    width: 285px;
    background: #51aa81;
    margin-right: 14px;
    text-align: center;
  }

  .aircon .cont05 .box .price_box .cate02 {
    font-size: 20px;
    background: #0091a2;
    width: 175px;
    text-align: center;
  }

  .aircon .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .aircon .cont05 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .aircon .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .aircon .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .aircon .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .aircon .cont05 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .aircon .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .aircon .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .aircon .cont05 .box:nth-of-type(1) {
    margin-bottom: 70px;
  }

  .aircon .cont05 .box:nth-of-type(2) {
    margin-bottom: 70px;
  }

  .aircon .cont05 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 37px;
    margin-bottom: 117px;
  }

  /* オプションボックス */
  .aircon .cont05 .option_box {
    margin-top: 105px;
  }

  .aircon .cont05 .option_box h3 {
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 39px;
    text-align: center;
    line-height: 1;
    position: relative;
  }

  .aircon .cont05 .option_box h3::before {
    content: "";
    width: 213px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
  }

  .aircon .cont05 .option_box h3::after {
    content: "";
    width: 213px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
  }

  .aircon .cont05 .option_box .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .aircon .cont05 .option_box .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .aircon .cont05 .option_box .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .aircon .cont05 .option_box .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .aircon .cont05 .option_box .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .aircon .cont05 .option_box .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .aircon .cont05 .option_box .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .aircon .cont05 .option_box .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .aircon .cont05 .option_box .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .aircon .cont05 .option_box .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 32px;
  }

  .aircon .cont05 .option_box .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  .aircon .cont05 .option_box .tax_text02 {
    font-size: 14px;
    text-align: right;
    margin-top: 36px;
    margin-bottom: 30px;
    line-height: 1;
  }

  .aircon .cont05 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .aircon .cont05 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .aircon .cont05 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .aircon .cont05 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .aircon .cont05 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont06選ばれる理由 */
  .aircon .cont06 {
    background: url(img/common_bg_01.png);
    padding: 140px 0 120px;
  }

  .aircon .cont06 .inner {
    position: relative;
  }

  .aircon .cont06 .inner {
    width: 900px;
    margin: 0 auto;
  }

  .aircon .cont06 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .aircon .cont06 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .aircon .cont06 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .aircon .cont06 h3 {
    position: relative;
    font-weight: bold;
    font-size: 22px;
    color: #1d1d1d;
    padding-left: 20px;
    height: 32px;
    line-height: 32px;
  }

  .aircon .cont06 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 32px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .aircon .cont06 .text01 {
    margin-top: 4px;
  }

  .aircon .cont06 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 9px;
    padding: 24px 0 22px 99px;
    margin-bottom: 50px;
  }

  .aircon .cont06 .box .item::before {
    position: absolute;
    content: "";
    background: url("img/reason_01.png") center center / cover no-repeat;
    width: 144px;
    height: 134px;
    left: -66px;
    top: 1px;
  }

  .aircon .cont06 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .aircon .cont06 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .aircon .cont06 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .aircon .cont06 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .aircon .cont06 .box .item:first-of-type {
    margin-top: 60px;
  }

  .aircon .cont06 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .aircon .cont06 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .aircon .cont06 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .aircon .cont06 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .aircon .cont06 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .aircon .cont06 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont07ご利用の流れ */
  .aircon .cont07 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
  }

  .aircon .cont07 .inner {
    position: relative;
  }

  .aircon .cont07 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .aircon .cont07 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .aircon .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .aircon .cont07 .box {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }

  .aircon .cont07 .box .item {
    position: relative;
    width: 380px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 46px 30px;
  }

  .aircon .cont07 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 46px;
  }

  .aircon .cont07 .box .item:last-of-type::before {
    display: none;
  }

  .aircon .cont07 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .aircon .cont07 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .aircon .cont07 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .aircon .cont07 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .aircon .cont07 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .aircon .cont07 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .aircon .cont07 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .aircon .cont07 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .aircon .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .aircon .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .aircon .cont07 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .aircon .cont07 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont08 よくある質問*/
  .aircon .cont08 {
    padding: 140px 0 120px;
  }

  .aircon .cont08 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .aircon .cont08 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .aircon .cont08 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .aircon .cont08 p {
    text-align: center;
    font-weight: bold;
    margin-top: 55px;
  }

  .aircon .cont08 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .aircon .cont08 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 37px 100px 37px 152px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }

  .aircon .cont08 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .aircon .cont08 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .aircon .cont08 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .aircon .cont08 .qa_box .ans {
    display: none;
    padding-left: 152px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 52px;
    position: relative;
  }

  .aircon .cont08 .button {
    position: relative;
    width: 275px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .aircon .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .aircon .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .aircon .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .aircon .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1300px) {
    .aircon .cont08 {
      width: 1100px;
    }
  }


  /* cont09イークリーンについて */

  .aircon .cont09 {
    background: url(img/common_bg_01.png);
    padding: 120px 0;
  }

  .aircon .cont09 .inner {
    padding-top: 620px;
    position: relative;
  }

  .aircon .cont09 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 233px;
    height: 184px;
    bottom: -245px;
    right: 48px;
  }

  .aircon .cont09 figure {
    position: absolute;
    left: -300px;
    top: 0;
    border: 3px solid var(--main-color);
    border-left: none;
    border-radius: 0 18px 18px 0;
    width: 870px;
    height: 620px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .aircon .cont09 figure img {
    object-fit: none;
  }

  .aircon .cont09 .text_box {
    position: absolute;
    right: 0;
    top: 0;
    height: 560px;
    width: 680px;
    padding: 48px 0 54px 50px;
    box-sizing: border-box;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    margin: 30px auto;
    z-index: 2;
  }

  .aircon .cont09 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .aircon .cont09 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .aircon .cont09 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .aircon .cont09 .text_box .info_box {
    margin-top: 24px;
  }

  .aircon .cont09 .text_box .tel,
  .aircon .cont09 .text_box .mail,
  .aircon .cont09 .text_box .time,
  .aircon .cont09 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .aircon .cont09 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .aircon .cont09 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .aircon .cont09 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .aircon .cont09 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
  }

  .aircon .cont09 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .aircon .cont09 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .aircon .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .aircon .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .aircon .cont09 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .aircon .cont09 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (min-width: 1800px) {
    .aircon .cont09 figure {
      border-left: 3px solid var(--main-color);
      border-radius: 18px;
    }
  }

  /* cont10ブログ一覧 */

  .aircon .cont10 {
    padding: 140px 0 120px;
    z-index: 10;
    position: relative;
  }

  .aircon .cont10 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .aircon .cont10 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .aircon .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .aircon .cont10 .text01 {
    margin-top: 52px;
    text-align: center;
    font-size: 18px;
  }

  .aircon .cont10 .blog_box {
    margin-top: 49px;
  }

  .aircon .cont10 .blog_box .swiper-slide {
    display: block;
    width: 336px;
  }

  .aircon .cont10 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .aircon .cont10 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 26px;
    order: 2;
    line-height: 1;
  }

  .aircon .cont10 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 20px 0 0;
    order: 3;
  }

  .aircon .cont10 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .aircon .cont10 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .aircon .cont10 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .aircon .cont10 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .aircon .cont10 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .aircon .cont10 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .aircon .cont10 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .aircon .cont10 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .aircon .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .aircon .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .aircon .cont10 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .aircon .cont10 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont11　対応エリア */
  .aircon .cont11 {
    background: var(--main-light-color);
  }

  .aircon .cont11 {
    padding: 140px 0 180px;
  }

  .aircon .cont11 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .aircon .cont11 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .aircon .cont11 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 206px;
    height: 56px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .aircon .cont11 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 100px;
  }

  .aircon .cont11 .box figure {
    position: absolute;
    left: -300px;
    top: -25px;
  }

  .aircon .cont11 .area {
    width: 565px;
    height: 328px;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 50px;
  }

  .aircon .cont11 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 6px 6px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .aircon .cont11 .area .area_list {
    text-align-last: left;
    height: 216px;
    overflow-y: auto;
    margin: 33px 10px 33px 33px;
    padding-right: 33px;
  }

  .aircon .cont11 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
  }

  .aircon .cont11 .area .area_list li {
    line-height: 1;
  }

  .aircon .cont11 .area .area_list>li {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  @media screen and (min-width: 1800px) {
    .aircon .cont11 figure {
      border-radius: 10px;
      border-right: 1px solid transparent;
      overflow: hidden;
    }
  }




  /* kitchen キッチンクリーニング---------------------------------------------- */

  /* key */
  .kitchen .key .text01::after {
    background: url("img/aircon_key_text.png");
    width: 724px;
    height: 58px;
  }

  /* cont01 */
  .kitchen .cont01 {
    padding: 130px 0 40px;
    display: flex;
    gap: 18px;
    position: relative;
  }

  .kitchen .cont01 h2 {
    font-size: 24px;
    padding-left: 27px;
    position: relative;
    line-height: 1.6;
    font-weight: bold;
  }

  .kitchen .cont01 h2::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .kitchen .cont01 .text01 {
    font-size: 18px;
    line-height: 2.2;
    margin-top: 24px;
    width: 593px;;
  }

  .kitchen .cont01 figure {
    position: absolute;
    right: -300px;
    top: 100px;
    width: 870px;
    border: 3px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  @media screen and (min-width: 1800px) {
    .kitchen .cont01 figure {
      border-radius: 10px;
      border-right: 3px solid var(--main-color);
    }
  }


  /* cont02 */
  .kitchen .cont02 {
    background: url(img/common_bg_01.png);
    padding: 140px 0 120px;
    margin-top: 120px;
  }

  .kitchen .cont02 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kitchen .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 230px;
    top: -199px;
    right: -41px;
  }

  .kitchen .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco01.png) center center / cover no-repeat;
    width: 198px;
    height: 222px;
    top: -199px;
    left: 0;
  }

  .kitchen .cont02 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 34px;
  }

  .kitchen .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text01.png) center center / cover no-repeat;
    width: 336px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kitchen .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .kitchen .cont02 .box {
    display: flex;
    gap: 33px;
    justify-content: center;
    margin-top: 55px;
  }

  .kitchen .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 378px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
  }

  .kitchen .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;

  }

  .kitchen .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .kitchen .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .kitchen .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .kitchen .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .kitchen .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 21px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .kitchen .cont02 .box .text_box01:nth-of-type(2) h3 {
    font-size: 20px;
  }

  .kitchen .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .kitchen .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .kitchen .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }


  /* cont03 */
  .kitchen .cont03 {
    padding: 140px 0 120px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .kitchen .cont03 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kitchen .cont03 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .kitchen .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kitchen .cont03 .text01 {
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
    line-height: 1.8;
  }

  .kitchen .cont03 .item {
    position: relative;
  }

  .kitchen .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .kitchen .cont03 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .kitchen .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .kitchen .cont03 .category_01,
  .kitchen .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
  }

  .kitchen .cont03 .category_01 {
    padding: 7px 22px;
    background: var(--main-color);
  }

  .kitchen .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .kitchen .cont03 .text02 {
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .kitchen .cont03 .box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 55px auto 0;
  }

  .kitchen .cont03 .box .item {
    width: calc((100% - 30px) / 2);
    position: relative;
    padding-top: 220px;
  }

  .kitchen .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .kitchen .cont03 .box .img_box .before {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
  }

  .kitchen .cont03 .box .img_box .after {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    overflow: hidden;
    border: 1px solid var(--main-color);
  }

  .kitchen .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .kitchen .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .kitchen .cont03 .button {
    position: relative;
    width: 425px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .kitchen .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .kitchen .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .kitchen .cont03 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .kitchen .cont03 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1450px) {
    .kitchen .cont03 .box {
      gap: 60px;
      justify-content: center;
      padding: 0 40px;
    }

    .kitchen .cont03 .item::before {
      top: 80px;
    }
  }


  /* cont04 キッチンクリーニングの費用*/

  .kitchen .cont04 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .kitchen .cont04 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 49px;
  }

  .kitchen .cont04 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .kitchen .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kitchen .cont04 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 65px;
    text-align: center;
  }

  .kitchen .cont04 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .kitchen .cont04 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .kitchen .cont04 .flex {
    display: flex;
    align-items: center;
  }

  .kitchen .cont04 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 36px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .kitchen .cont04 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .kitchen .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1;
  }

  .kitchen .cont04 .box .price_box .price_text01 .span01 {
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .kitchen .cont04 .box .price_box .price_text01 .span02 {
    font-size: 56px;
    font-weight: bold;
    color: var(--main-color);
  }

  .kitchen .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .kitchen .cont04 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .kitchen .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .kitchen .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .kitchen .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .kitchen .cont04 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .kitchen .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 72px;
    background: var(--main-color);
  }

  .kitchen .cont04 .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 18px;
  }

  .kitchen .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .kitchen .cont04 .box:nth-of-type(1) {
    margin-bottom: 50px;
  }

  .kitchen .cont04 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 36px;
  }

  /* cont05 セットサービス */
  .kitchen .cont05 {
    background: var(--main-light-color);
    padding: 130px 0 0px;
  }

  .kitchen .cont05 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 45px;
  }

  .kitchen .cont05 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .kitchen .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kitchen .cont05 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
  }

  .kitchen .cont05 .text_box {
    position: relative;
    width: 1200px;
    height: 240px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 44px 62px 40px 233px;
    margin-bottom: 60px;
  }

  .kitchen .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
  }

  .kitchen .cont05 .text_box .text01 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 21px;
  }

  .kitchen .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .kitchen .cont05 .text_box .text01 .span02 {
    font-size: 34px;
    font-weight: bold;
  }

  .kitchen .cont05 .text_box .text02 {
    font-size: 20px;
    line-height: 1.8;
  }

  .kitchen .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .kitchen .cont05 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .kitchen .cont05 .box h3 span {
    font-size: 24px;
    font-weight: bold;
    padding: 5px 28px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 21px;
  }

  .kitchen .cont05 .box:nth-of-type(3) h3 span {
    background-color: #34baeb;
  }

  .kitchen .cont05 .box .flex {
    display: flex;
    align-items: center;
  }

  .kitchen .cont05 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 37px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .kitchen .cont05 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .kitchen .cont05 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .kitchen .cont05 .box .price_box .price_text01 span {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .kitchen .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 24px;
  }

  .kitchen .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .kitchen .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .kitchen .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 20px;
    line-height: 1;
  }

  .kitchen .cont05 .box .price_box .price_text02 span {
    font-size: 56px;
    font-weight: bold;
  }

  .kitchen .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .kitchen .cont05 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .kitchen .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .kitchen .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .kitchen .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .kitchen .cont05 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .kitchen .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 98px;
    background: var(--main-color);
  }

  .kitchen .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 130px;
  }

  .kitchen .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .kitchen .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 14px;
    padding: 9px 25px 9px 20px;
  }

  .kitchen .cont05 .box:nth-of-type(2) {
    margin-bottom: 50px;
  }


  /* cont06 あわせて頼みたいサービス */
  .kitchen .cont06 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .kitchen .cont06 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .kitchen .cont06 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .kitchen .cont06 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kitchen .cont06 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .kitchen .cont06 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .kitchen .cont06 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .kitchen .cont06 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .kitchen .cont06 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .kitchen .cont06 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .kitchen .cont06 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .kitchen .cont06 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .kitchen .cont06 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .kitchen .cont06 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .kitchen .cont06 .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 32px;
  }

  .kitchen .cont06 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  /* cont07 その他単品*/

  .kitchen .cont07 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
  }

  .kitchen .cont07 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .kitchen .cont07 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .kitchen .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 619px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kitchen .cont07 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .kitchen .cont07 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .kitchen .cont07 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .kitchen .cont07 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .kitchen .cont07 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .kitchen .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .kitchen .cont07 .option_flex .item:nth-of-type(6) .text_box .tte01 span {
    font-size: 18px;
    font-weight: bold;
  }

  .kitchen .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .kitchen .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .kitchen .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .kitchen .cont07 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .kitchen .cont07 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  .kitchen .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 36px;
  }

  .kitchen .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .kitchen .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .kitchen .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .kitchen .cont07 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .kitchen .cont07 .button a:hover::before {
    background: var(--main-color);
  }


  /* cont08選ばれる理由 */
  .kitchen .cont08 {
    padding: 140px 0 120px;
  }

  .kitchen .cont08 .inner {
    position: relative;
  }

  .kitchen .cont08 .inner {
    width: 900px;
    margin: 0 auto;
  }

  .kitchen .cont08 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kitchen .cont08 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .kitchen .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kitchen .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 22px;
    color: #1d1d1d;
    padding-left: 20px;
    height: 32px;
    line-height: 32px;
  }

  .kitchen .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 32px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .kitchen .cont08 .text01 {
    margin-top: 4px;
  }

  .kitchen .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 9px;
    padding: 24px 0 22px 99px;
    margin-bottom: 50px;
  }

  .kitchen .cont08 .box .item::before {
    position: absolute;
    content: "";
    background: url("img/reason_01.png") center center / cover no-repeat;
    width: 144px;
    height: 134px;
    left: -66px;
    top: 1px;
  }

  .kitchen .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .kitchen .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .kitchen .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .kitchen .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .kitchen .cont08 .box .item:first-of-type {
    margin-top: 60px;
  }

  .kitchen .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .kitchen .cont08 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .kitchen .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .kitchen .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .kitchen .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .kitchen .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont09ご利用の流れ */
  .kitchen .cont09 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
    /* margin: 120px auto 0px; */
    /* max-width: 1400px; */
  }

  .kitchen .cont09 .inner {
    position: relative;
  }

  .kitchen .cont09 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kitchen .cont09 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .kitchen .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kitchen .cont09 .box {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }

  .kitchen .cont09 .box .item {
    position: relative;
    width: 380px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 46px 30px;
  }

  .kitchen .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 46px;
  }

  .kitchen .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .kitchen .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .kitchen .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .kitchen .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .kitchen .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .kitchen .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .kitchen .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .kitchen .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .kitchen .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .kitchen .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .kitchen .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .kitchen .cont09 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .kitchen .cont09 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont10 よくある質問*/
  .kitchen .cont10 {
    padding: 140px 0 120px;
  }

  .kitchen .cont10 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kitchen .cont10 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .kitchen .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kitchen .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 55px;
  }

  .kitchen .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .kitchen .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 37px 100px 37px 152px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }

  .kitchen .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .kitchen .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .kitchen .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .kitchen .cont10 .qa_box .ans {
    display: none;
    padding-left: 152px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 52px;
    position: relative;
  }

  .kitchen .cont10 .button {
    position: relative;
    width: 275px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .kitchen .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .kitchen .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .kitchen .cont10 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .kitchen .cont10 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1300px) {
    .kitchen .cont10 {
      width: 1100px;
    }
  }


  /* cont11イークリーンについて */

  .kitchen .cont11 {
    background: url(img/common_bg_01.png);
    padding: 120px 0;
  }

  .kitchen .cont11 .inner {
    padding-top: 620px;
    position: relative;
  }

  .kitchen .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 233px;
    height: 184px;
    bottom: -245px;
    right: 48px;
  }

  .kitchen .cont11 figure {
    position: absolute;
    left: -300px;
    top: 0;
    border: 3px solid var(--main-color);
    border-left: none;
    border-radius: 0 18px 18px 0;
    width: 870px;
    height: 620px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .kitchen .cont11 figure img {
    object-fit: none;
  }

  .kitchen .cont11 .text_box {
    position: absolute;
    right: 0;
    top: 0;
    height: 560px;
    width: 680px;
    padding: 48px 0 54px 50px;
    box-sizing: border-box;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    margin: 30px auto;
    z-index: 2;
  }

  .kitchen .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .kitchen .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .kitchen .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .kitchen .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .kitchen .cont11 .text_box .tel,
  .kitchen .cont11 .text_box .mail,
  .kitchen .cont11 .text_box .time,
  .kitchen .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .kitchen .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .kitchen .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .kitchen .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .kitchen .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
  }

  .kitchen .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .kitchen .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .kitchen .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .kitchen .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .kitchen .cont11 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .kitchen .cont11 .button a:hover::before {
    background: var(--main-color);
  }


  /* cont12ブログ一覧 */

  .kitchen .cont12 {
    padding: 140px 0 120px;
    z-index: 10;
    position: relative;
  }

  .kitchen .cont12 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kitchen .cont12 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .kitchen .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kitchen .cont12 .text01 {
    margin-top: 52px;
    text-align: center;
    font-size: 18px;
  }

  .kitchen .cont12 .blog_box {
    margin-top: 49px;
  }

  .kitchen .cont12 .blog_box .swiper-slide {
    display: block;
    width: 336px;
  }

  .kitchen .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .kitchen .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 26px;
    order: 2;
    line-height: 1;
  }

  .kitchen .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 20px 0 0;
    order: 3;
  }

  .kitchen .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .kitchen .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .kitchen .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .kitchen .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .kitchen .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .kitchen .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .kitchen .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .kitchen .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .kitchen .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .kitchen .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .kitchen .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .kitchen .cont12 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont13　対応エリア */
  .kitchen .cont13 {
    background: var(--main-light-color);
  }

  .kitchen .cont13 {
    padding: 140px 0 180px;
  }

  .kitchen .cont13 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kitchen .cont13 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .kitchen .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 206px;
    height: 56px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kitchen .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 100px;
  }

  .kitchen .cont13 .box figure {
    position: absolute;
    left: -300px;
    top: -25px;
  }

  .kitchen .cont13 .area {
    width: 565px;
    height: 328px;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 50px;
  }

  .kitchen .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 6px 6px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .kitchen .cont13 .area .area_list {
    text-align-last: left;
    height: 216px;
    overflow-y: auto;
    margin: 33px 10px 33px 33px;
    padding-right: 33px;
  }

  .kitchen .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
  }

  .kitchen .cont13 .area .area_list li {
    line-height: 1;
  }

  .kitchen .cont13 .area .area_list>li {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  @media screen and (min-width: 1800px) {
    .kitchen .cont13 figure {
      border-radius: 10px;
      border-right: 1px solid transparent;
      overflow: hidden;
    }
  }




/* kankisen------------------------------------------------------- */
/* key */
  .kankisen .key .text01::after {
    background: url("img/aircon_key_text.png");
    width: 724px;
    height: 58px;
  }

  /* cont01 */
  .kankisen .cont01 {
    padding: 130px 0 40px;
    display: flex;
    gap: 18px;
    position: relative;
  }

  .kankisen .cont01 h2 {
    font-size: 24px;
    padding-left: 27px;
    position: relative;
    line-height: 1.6;
    font-weight: bold;
  }

  .kankisen .cont01 h2::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .kankisen .cont01 .text01 {
    font-size: 18px;
    line-height: 2.3;
    margin-top: 24px;
  }

  .kankisen .cont01 figure {
    position: absolute;
    right: -300px;
    top: 100px;
    width: 870px;
    border: 3px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  @media screen and (min-width: 1800px) {
    .kankisen .cont01 figure {
      border-radius: 10px;
      border-right: 3px solid var(--main-color);
    }
  }


  /* cont02 */
  .kankisen .cont02 {
    background: url(img/common_bg_01.png);
    padding: 140px 0 120px;
    margin-top: 120px;
  }

  .kankisen .cont02 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kankisen .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 230px;
    top: -199px;
    right: -41px;
  }

  .kankisen .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/kankisen_deco01.png) center center / cover no-repeat;
    width: 200px;
    height: 106px;
    top: -121px;
    left: 0;
  }

  .kankisen .cont02 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 34px;
  }

  .kankisen .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kankisen_text01.png) center center / cover no-repeat;
    width: 398px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kankisen .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .kankisen .cont02 .box {
    display: flex;
    gap: 33px;
    justify-content: center;
    margin-top: 55px;
  }

  .kankisen .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 378px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
  }

  .kankisen .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;

  }

  .kankisen .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .kankisen .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .kankisen .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .kankisen .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .kankisen .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 21px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .kankisen .cont02 .box .text_box01:nth-of-type(2) h3 {
    font-size: 20px;
  }

  .kankisen .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .kankisen .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .kankisen .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }


  /* cont03 */
  .kankisen .cont03 {
    padding: 140px 0 120px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .kankisen .cont03 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kankisen .cont03 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .kankisen .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kankisen .cont03 .text01 {
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
    line-height: 1.8;
  }

  .kankisen .cont03 .item {
    position: relative;
  }

  .kankisen .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .kankisen .cont03 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .kankisen .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .kankisen .cont03 .category_01,
  .kankisen .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
  }

  .kankisen .cont03 .category_01 {
    padding: 7px 22px;
    background: var(--main-color);
  }

  .kankisen .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .kankisen .cont03 .text02 {
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .kankisen .cont03 .box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 55px auto 0;
  }

  .kankisen .cont03 .box .item {
    width: calc((100% - 30px) / 2);
    position: relative;
    padding-top: 220px;
  }

  .kankisen .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .kankisen .cont03 .box .img_box .before {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
  }

  .kankisen .cont03 .box .img_box .after {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    overflow: hidden;
    border: 1px solid var(--main-color);
  }

  .kankisen .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .kankisen .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .kankisen .cont03 .button {
    position: relative;
    width: 425px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .kankisen .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .kankisen .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .kankisen .cont03 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .kankisen .cont03 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1450px) {
    .kankisen .cont03 .box {
      gap: 60px;
      justify-content: center;
      padding: 0 40px;
    }

    .kankisen .cont03 .item::before {
      top: 80px;
    }
  }


  /* cont04 キッチンクリーニングの費用*/

  .kankisen .cont04 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .kankisen .cont04 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 49px;
  }

  .kankisen .cont04 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .kankisen .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kankisen .cont04 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 65px;
    text-align: center;
  }

  .kankisen .cont04 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .kankisen .cont04 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .kankisen .cont04 .flex {
    display: flex;
    align-items: center;
  }

  .kankisen .cont04 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 36px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .kankisen .cont04 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .kankisen .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1;
  }

  .kankisen .cont04 .box .price_box .price_text01 .span01 {
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 24px;
  }

  .kankisen .cont04 .box .price_box .price_text01 .span02 {
    font-size: 56px;
    font-weight: bold;
    color: var(--main-color);
  }

  .kankisen .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .kankisen .cont04 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .kankisen .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .kankisen .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .kankisen .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .kankisen .cont04 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .kankisen .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: var(--main-color);
  }

  .kankisen .cont04 .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 18px;
  }

  .kankisen .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .kankisen .cont04 .box:nth-of-type(1) {
    margin-bottom: 20px;
  }

  .kankisen .cont04 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 36px;
  }

  /* cont05 セットサービス */
  .kankisen .cont05 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .kankisen .cont05 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 45px;
  }

  .kankisen .cont05 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .kankisen .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kankisen .cont05 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
  }

  .kankisen .cont05 .text_box {
    position: relative;
    width: 1200px;
    height: 240px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 44px 62px 40px 233px;
    margin-bottom: 60px;
  }

  .kankisen .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
  }

  .kankisen .cont05 .text_box .text01 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 21px;
  }

  .kankisen .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .kankisen .cont05 .text_box .text01 .span02 {
    font-size: 34px;
    font-weight: bold;
  }

  .kankisen .cont05 .text_box .text02 {
    font-size: 20px;
    line-height: 1.8;
  }

  .kankisen .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .kankisen .cont05 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .kankisen .cont05 .box h3 span {
    font-size: 24px;
    font-weight: bold;
    padding: 5px 28px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 21px;
  }

  .kankisen .cont05 .box:nth-of-type(4) h3 span {
    background-color: #34baeb;
  }

  .kankisen .cont05 .box .flex {
    display: flex;
    align-items: center;
  }

  .kankisen .cont05 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 37px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .kankisen .cont05 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .kankisen .cont05 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .kankisen .cont05 .box .price_box .price_text01 span {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .kankisen .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 24px;
  }

  .kankisen .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .kankisen .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .kankisen .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 20px;
    line-height: 1;
  }

  .kankisen .cont05 .box .price_box .price_text02 span {
    font-size: 56px;
    font-weight: bold;
  }

  .kankisen .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .kankisen .cont05 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .kankisen .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .kankisen .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .kankisen .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .kankisen .cont05 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .kankisen .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 98px;
    background: var(--main-color);
  }

  .kankisen .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 47px;
  }

  .kankisen .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0px 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .kankisen .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 16px;
    padding: 9px 25px 9px 20px;
  }

  .kankisen .cont05 .box:nth-of-type(4) .price_box .range_box dd {
    font-size: 14px;
    padding: 9px 18px 9px 20px;
  }

  .kankisen .cont05 .box:nth-of-type(2),.kankisen .cont05 .box:nth-of-type(3) {
    margin-bottom: 60px;
  }

  .kankisen .cont05 .tax_text01{
    font-size: 14px;
    text-align: right;
    margin-top: 40px;

  }

  /* cont06 あわせて頼みたいサービス */
  .kankisen .cont06 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .kankisen .cont06 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .kankisen .cont06 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .kankisen .cont06 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kankisen .cont06 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .kankisen .cont06 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .kankisen .cont06 .option_flex .item {
    position: relative;
    width: 580px;
    height: 250px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .kankisen .cont06 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .kankisen .cont06 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .kankisen .cont06 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .kankisen .cont06 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .kankisen .cont06 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .kankisen .cont06 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .kankisen .cont06 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .kankisen .cont06 .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 32px;
  }

  .kankisen .cont06 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  /* cont07 その他単品*/

  .kankisen .cont07 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
  }

  .kankisen .cont07 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .kankisen .cont07 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .kankisen .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 619px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kankisen .cont07 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .kankisen .cont07 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .kankisen .cont07 .option_flex .item {
    position: relative;
    width: 580px;
    height: 250px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .kankisen .cont07 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 22px;
  }

  .kankisen .cont07 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .kankisen .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .kankisen .cont07 .option_flex .item:nth-of-type(6) .text_box .tte01 span, 
  .kankisen .cont07 .option_flex .item:nth-of-type(7) .text_box .tte01 span,
  .kankisen .cont07 .option_flex .item:nth-of-type(8) .text_box .tte01 span{
    font-size: 18px;
    font-weight: bold;
  }

  .kankisen .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .kankisen .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .kankisen .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .kankisen .cont07 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .kankisen .cont07 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  .kankisen .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 36px;
  }

  .kankisen .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .kankisen .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .kankisen .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .kankisen .cont07 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .kankisen .cont07 .button a:hover::before {
    background: var(--main-color);
  }


  /* cont08選ばれる理由 */
  .kankisen .cont08 {
    padding: 140px 0 120px;
  }

  .kankisen .cont08 .inner {
    position: relative;
  }

  .kankisen .cont08 .inner {
    width: 900px;
    margin: 0 auto;
  }

  .kankisen .cont08 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kankisen .cont08 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .kankisen .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kankisen .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 22px;
    color: #1d1d1d;
    padding-left: 20px;
    height: 32px;
    line-height: 32px;
  }

  .kankisen .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 32px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .kankisen .cont08 .text01 {
    margin-top: 4px;
  }

  .kankisen .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 9px;
    padding: 24px 0 22px 99px;
    margin-bottom: 50px;
  }

  .kankisen .cont08 .box .item::before {
    position: absolute;
    content: "";
    background: url("img/reason_01.png") center center / cover no-repeat;
    width: 144px;
    height: 134px;
    left: -66px;
    top: 1px;
  }

  .kankisen .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .kankisen .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .kankisen .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .kankisen .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .kankisen .cont08 .box .item:first-of-type {
    margin-top: 60px;
  }

  .kankisen .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .kankisen .cont08 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .kankisen .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .kankisen .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .kankisen .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .kankisen .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont09ご利用の流れ */
  .kankisen .cont09 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
    /* margin: 120px auto 0px; */
    /* max-width: 1400px; */
  }

  .kankisen .cont09 .inner {
    position: relative;
  }

  .kankisen .cont09 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kankisen .cont09 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .kankisen .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kankisen .cont09 .box {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }

  .kankisen .cont09 .box .item {
    position: relative;
    width: 380px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 46px 30px;
  }

  .kankisen .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 46px;
  }

  .kankisen .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .kankisen .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .kankisen .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .kankisen .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .kankisen .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .kankisen .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .kankisen .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .kankisen .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .kankisen .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .kankisen .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .kankisen .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .kankisen .cont09 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .kankisen .cont09 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont10 よくある質問*/
  .kankisen .cont10 {
    padding: 140px 0 120px;
  }

  .kankisen .cont10 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kankisen .cont10 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .kankisen .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kankisen .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 55px;
  }

  .kankisen .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .kankisen .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 37px 100px 37px 152px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }

  .kankisen .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .kankisen .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .kankisen .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .kankisen .cont10 .qa_box .ans {
    display: none;
    padding-left: 152px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 52px;
    position: relative;
  }

  .kankisen .cont10 .button {
    position: relative;
    width: 275px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .kankisen .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .kankisen .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .kankisen .cont10 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .kankisen .cont10 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1300px) {
    .kankisen .cont10 {
      width: 1100px;
    }
  }


  /* cont11イークリーンについて */

  .kankisen .cont11 {
    background: url(img/common_bg_01.png);
    padding: 120px 0;
  }

  .kankisen .cont11 .inner {
    padding-top: 620px;
    position: relative;
  }

  .kankisen .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 233px;
    height: 184px;
    bottom: -245px;
    right: 48px;
  }

  .kankisen .cont11 figure {
    position: absolute;
    left: -300px;
    top: 0;
    border: 3px solid var(--main-color);
    border-left: none;
    border-radius: 0 18px 18px 0;
    width: 870px;
    height: 620px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .kankisen .cont11 figure img {
    object-fit: none;
  }

  .kankisen .cont11 .text_box {
    position: absolute;
    right: 0;
    top: 0;
    height: 560px;
    width: 680px;
    padding: 48px 0 54px 50px;
    box-sizing: border-box;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    margin: 30px auto;
    z-index: 2;
  }

  .kankisen .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .kankisen .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .kankisen .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .kankisen .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .kankisen .cont11 .text_box .tel,
  .kankisen .cont11 .text_box .mail,
  .kankisen .cont11 .text_box .time,
  .kankisen .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .kankisen .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .kankisen .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .kankisen .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .kankisen .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
  }

  .kankisen .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .kankisen .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .kankisen .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .kankisen .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .kankisen .cont11 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .kankisen .cont11 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (min-width: 1800px) {
    .kankisen .cont11 figure {
      border-left: 3px solid var(--main-color);
      border-radius: 18px;
    }
  }

  /* cont12ブログ一覧 */

  .kankisen .cont12 {
    padding: 140px 0 120px;
    z-index: 10;
    position: relative;
  }

  .kankisen .cont12 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kankisen .cont12 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .kankisen .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kankisen .cont12 .text01 {
    margin-top: 52px;
    text-align: center;
    font-size: 18px;
  }

  .kankisen .cont12 .blog_box {
    margin-top: 49px;
  }

  .kankisen .cont12 .blog_box .swiper-slide {
    display: block;
    width: 336px;
  }

  .kankisen .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .kankisen .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 26px;
    order: 2;
    line-height: 1;
  }

  .kankisen .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 20px 0 0;
    order: 3;
  }

  .kankisen .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .kankisen .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .kankisen .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .kankisen .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .kankisen .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .kankisen .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .kankisen .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .kankisen .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .kankisen .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .kankisen .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .kankisen .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .kankisen .cont12 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont13　対応エリア */
  .kankisen .cont13 {
    background: var(--main-light-color);
  }

  .kankisen .cont13 {
    padding: 140px 0 180px;
  }

  .kankisen .cont13 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kankisen .cont13 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .kankisen .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 206px;
    height: 56px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .kankisen .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 100px;
  }

  .kankisen .cont13 .box figure {
    position: absolute;
    left: -300px;
    top: -25px;
  }

  .kankisen .cont13 .area {
    width: 565px;
    height: 328px;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 50px;
  }

  .kankisen .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 6px 6px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .kankisen .cont13 .area .area_list {
    text-align-last: left;
    height: 216px;
    overflow-y: auto;
    margin: 33px 10px 33px 33px;
    padding-right: 33px;
  }

  .kankisen .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
  }

  .kankisen .cont13 .area .area_list li {
    line-height: 1;
  }

  .kankisen .cont13 .area .area_list>li {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  @media screen and (min-width: 1800px) {
    .kankisen .cont13 figure {
      border-radius: 10px;
      border-right: 1px solid transparent;
      overflow: hidden;
    }
  }


/* bath------------------------------------------------------- */
/* key */
  .bath .key .text01::after {
    background: url("img/aircon_key_text.png");
    width: 724px;
    height: 58px;
  }

  /* cont01 */
  .bath .cont01 {
    padding: 130px 0 40px;
    display: flex;
    gap: 18px;
    position: relative;
  }

  .bath .cont01 h2 {
    font-size: 24px;
    padding-left: 27px;
    position: relative;
    line-height: 1.6;
    font-weight: bold;
  }

  .bath .cont01 h2::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .bath .cont01 .text01 {
    font-size: 18px;
    line-height: 2.3;
    margin-top: 24px;
    width: 593px;
  }

  .bath .cont01 figure {
    position: absolute;
    right: -300px;
    top: 100px;
    width: 870px;
    border: 3px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  @media screen and (min-width: 1800px) {
    .bath .cont01 figure {
      border-radius: 10px;
      border-right: 3px solid var(--main-color);
    }
  }


  /* cont02 */
  .bath .cont02 {
    background: url(img/common_bg_01.png);
    padding: 140px 0 120px;
    margin-top: 120px;
  }

  .bath .cont02 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .bath .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 230px;
    top: -199px;
    right: -41px;
  }

  .bath .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/bath_deco01.png) center center / cover no-repeat;
    width: 190px;
    height: 137px;
    top: -163px;
    left: 20px;
    transform: scale(1.2);
  }

  .bath .cont02 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 34px;
  }

  .bath .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text01.png) center center / cover no-repeat;
    width: 336px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .bath .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .bath .cont02 .box {
    display: flex;
    gap: 33px;
    justify-content: center;
    margin-top: 55px;
  }

  .bath .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 378px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
  }

  .bath .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;

  }

  .bath .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .bath .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .bath .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .bath .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .bath .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 21px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .bath .cont02 .box .text_box01:nth-of-type(2) h3 {
    font-size: 20px;
  }

  .bath .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .bath .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .bath .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }


  /* cont03 */
  .bath .cont03 {
    padding: 140px 0 120px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .bath .cont03 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .bath .cont03 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .bath .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .bath .cont03 .text01 {
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
    line-height: 1.8;
  }

  .bath .cont03 .item {
    position: relative;
  }

  .bath .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .bath .cont03 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bath .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .bath .cont03 .category_01,
  .bath .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
  }

  .bath .cont03 .category_01 {
    padding: 7px 22px;
    background: var(--main-color);
  }

  .bath .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .bath .cont03 .text02 {
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bath .cont03 .box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 55px auto 0;
  }

  .bath .cont03 .box .item {
    width: calc((100% - 30px) / 2);
    position: relative;
    padding-top: 220px;
  }

  .bath .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .bath .cont03 .box .img_box .before {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
  }

  .bath .cont03 .box .img_box .after {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    overflow: hidden;
    border: 1px solid var(--main-color);
  }

  .bath .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .bath .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .bath .cont03 .button {
    position: relative;
    width: 425px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .bath .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .bath .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .bath .cont03 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .bath .cont03 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1450px) {
    .bath .cont03 .box {
      gap: 60px;
      justify-content: center;
      padding: 0 40px;
    }

    .bath .cont03 .item::before {
      top: 80px;
    }
  }


  /* cont04 キッチンクリーニングの費用*/

  .bath .cont04 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .bath .cont04 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 49px;
  }

  .bath .cont04 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .bath .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .bath .cont04 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 65px;
    text-align: center;
  }

  .bath .cont04 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .bath .cont04 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .bath .cont04 .flex {
    display: flex;
    align-items: center;
  }

  .bath .cont04 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 36px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .bath .cont04 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .bath .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1;
  }

  .bath .cont04 .box .price_box .price_text01 .span01 {
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .bath .cont04 .box .price_box .price_text01 .span02 {
    font-size: 56px;
    font-weight: bold;
    color: var(--main-color);
  }

  .bath .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .bath .cont04 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .bath .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .bath .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .bath .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .bath .cont04 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .bath .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: var(--main-color);
  }

  .bath .cont04 .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 18px;
  }

  .bath .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .bath .cont04 .box:nth-of-type(1) {
    margin-bottom: 60px;
  }

  .bath .cont04 .box .ttl {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    margin: 80px auto 30px;
    text-align: center;
    position: relative;
  }

  .bath .cont04 .box .ttl::before{
    content: "";
    background: url(img/common_deco13.png) center / cover no-repeat;
    width: 53px;
    height: 48px;
    position: absolute;
    top: -30px;
    left: 212px;
  }

  .bath .cont04 .box .option_flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 25px 25px;
    gap: 25px;
  }
  .bath .cont04 .box .option_flex .item {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    background: var(--main-light-color);
    border-radius: 10px;
    padding: 20px;
    width: 519px;
   }

  .bath .cont04 .box .option_flex .item .text_box{
    width: 280px;
   }
  .bath .cont04 .box .option_flex .item .text_box .tte01{
    font-size: 19px;
    font-weight: bold;
    padding-left: 17px;
    position: relative;
   }
  .bath .cont04 .box .option_flex .item .text_box .tte01::before{
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
   }
  .bath .cont04 .box .option_flex .item figure{
    width: 230px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }
 .bath .cont04 .box .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
  .bath .cont04 .box .option_flex .item .text_box .text02{
    margin-top: 7px;
  }

  .bath .cont04 .box .option_flex .item .text_box .text03{
    margin-right: 5px;
    text-align: right;
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--main-color);
  }
   .bath .cont04 .box .option_flex .item .text_box .text03 span{
    font-size: 40px;
    font-weight: bold;
  }
  

  .bath .cont04 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 20px;
  }

  /* cont05 セットサービス */
  .bath .cont05 {
    background: var(--main-light-color);
    padding: 130px 0 0px;
  }

  .bath .cont05 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 45px;
  }

  .bath .cont05 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .bath .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .bath .cont05 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
  }

  .bath .cont05 .text_box {
    position: relative;
    width: 1200px;
    height: 240px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 44px 62px 40px 233px;
    margin-bottom: 60px;
  }

  .bath .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
  }

  .bath .cont05 .text_box .text01 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 21px;
  }

  .bath .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .bath .cont05 .text_box .text01 .span02 {
    font-size: 34px;
    font-weight: bold;
  }

  .bath .cont05 .text_box .text02 {
    font-size: 20px;
    line-height: 1.8;
  }

  .bath .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .bath .cont05 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .bath .cont05 .box h3 span {
    font-size: 24px;
    font-weight: bold;
    padding: 5px 28px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 21px;
  }

  .bath .cont05 .box:nth-of-type(3) h3 span {
    background-color: #34baeb;
  }

  .bath .cont05 .box .flex {
    display: flex;
    align-items: center;
  }

  .bath .cont05 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 37px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .bath .cont05 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .bath .cont05 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .bath .cont05 .box .price_box .price_text01 span {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .bath .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 24px;
  }

  .bath .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .bath .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .bath .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 20px;
    line-height: 1;
  }

  .bath .cont05 .box .price_box .price_text02 span {
    font-size: 56px;
    font-weight: bold;
  }

  .bath .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .bath .cont05 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .bath .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .bath .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .bath .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .bath .cont05 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .bath .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 98px;
    background: var(--main-color);
  }

  .bath .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 130px;
  }

  .bath .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .bath .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 14px;
    padding: 9px 25px 9px 20px;
  }

  .bath .cont05 .box {
    margin-bottom: 60px;
  }
  .bath .cont05 .box:nth-of-type(5) {
    margin-bottom: 20px;
  }
  .bath .cont05 .tax_text01 {
    text-align: right;
  }


  /* cont06 あわせて頼みたいサービス */
  .bath .cont06 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .bath .cont06 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .bath .cont06 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .bath .cont06 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .bath .cont06 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .bath .cont06 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .bath .cont06 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .bath .cont06 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .bath .cont06 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .bath .cont06 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .bath .cont06 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .bath .cont06 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .bath .cont06 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .bath .cont06 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .bath .cont06 .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 32px;
  }

  .bath .cont06 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  /* cont07 その他単品*/

  .bath .cont07 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
  }

  .bath .cont07 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .bath .cont07 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .bath .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 619px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .bath .cont07 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .bath .cont07 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .bath .cont07 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .bath .cont07 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .bath .cont07 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .bath .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .bath .cont07 .option_flex .item .text_box .tte01 span {
    font-size: 18px;
    font-weight: bold;
  }

  .bath .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .bath .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .bath .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .bath .cont07 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .bath .cont07 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  .bath .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 20px;
  }

  .bath .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .bath .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .bath .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .bath .cont07 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .bath .cont07 .button a:hover::before {
    background: var(--main-color);
  }


  /* cont08選ばれる理由 */
  .bath .cont08 {
    padding: 140px 0 120px;
  }

  .bath .cont08 .inner {
    position: relative;
  }

  .bath .cont08 .inner {
    width: 900px;
    margin: 0 auto;
  }

  .bath .cont08 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .bath .cont08 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .bath .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .bath .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 22px;
    color: #1d1d1d;
    padding-left: 20px;
    height: 32px;
    line-height: 32px;
  }

  .bath .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 32px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .bath .cont08 .text01 {
    margin-top: 4px;
  }

  .bath .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 9px;
    padding: 24px 0 22px 99px;
    margin-bottom: 50px;
  }

  .bath .cont08 .box .item::before {
    position: absolute;
    content: "";
    background: url("img/reason_01.png") center center / cover no-repeat;
    width: 144px;
    height: 134px;
    left: -66px;
    top: 1px;
  }

  .bath .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .bath .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .bath .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .bath .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .bath .cont08 .box .item:first-of-type {
    margin-top: 60px;
  }

  .bath .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .bath .cont08 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .bath .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .bath .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .bath .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .bath .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont09ご利用の流れ */
  .bath .cont09 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
    /* margin: 120px auto 0px; */
    /* max-width: 1400px; */
  }

  .bath .cont09 .inner {
    position: relative;
  }

  .bath .cont09 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .bath .cont09 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .bath .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .bath .cont09 .box {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }

  .bath .cont09 .box .item {
    position: relative;
    width: 380px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 46px 30px;
  }

  .bath .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 46px;
  }

  .bath .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .bath .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .bath .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .bath .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .bath .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .bath .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .bath .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .bath .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .bath .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .bath .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .bath .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .bath .cont09 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .bath .cont09 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont10 よくある質問*/
  .bath .cont10 {
    padding: 140px 0 120px;
  }

  .bath .cont10 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .bath .cont10 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .bath .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .bath .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 55px;
  }

  .bath .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .bath .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 37px 100px 37px 152px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }

  .bath .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .bath .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .bath .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .bath .cont10 .qa_box .ans {
    display: none;
    padding-left: 152px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 52px;
    position: relative;
  }

  .bath .cont10 .button {
    position: relative;
    width: 275px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .bath .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .bath .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .bath .cont10 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .bath .cont10 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1300px) {
    .bath .cont10 {
      width: 1100px;
    }
  }


  /* cont11イークリーンについて */

  .bath .cont11 {
    background: url(img/common_bg_01.png);
    padding: 120px 0;
  }

  .bath .cont11 .inner {
    padding-top: 620px;
    position: relative;
  }

  .bath .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 233px;
    height: 184px;
    bottom: -245px;
    right: 48px;
  }

  .bath .cont11 figure {
    position: absolute;
    left: -300px;
    top: 0;
    border: 3px solid var(--main-color);
    border-left: none;
    border-radius: 0 18px 18px 0;
    width: 870px;
    height: 620px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .bath .cont11 figure img {
    object-fit: none;
  }

  .bath .cont11 .text_box {
    position: absolute;
    right: 0;
    top: 0;
    height: 560px;
    width: 680px;
    padding: 48px 0 54px 50px;
    box-sizing: border-box;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    margin: 30px auto;
    z-index: 2;
  }

  .bath .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .bath .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .bath .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .bath .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .bath .cont11 .text_box .tel,
  .bath .cont11 .text_box .mail,
  .bath .cont11 .text_box .time,
  .bath .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .bath .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .bath .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .bath .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .bath .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
  }

  .bath .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .bath .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .bath .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .bath .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .bath .cont11 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .bath .cont11 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (min-width: 1800px) {
    .bath .cont11 figure {
      border-left: 3px solid var(--main-color);
      border-radius: 18px;
    }
  }

  /* cont12ブログ一覧 */

  .bath .cont12 {
    padding: 140px 0 120px;
    z-index: 10;
    position: relative;
  }

  .bath .cont12 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .bath .cont12 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .bath .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .bath .cont12 .text01 {
    margin-top: 52px;
    text-align: center;
    font-size: 18px;
  }

  .bath .cont12 .blog_box {
    margin-top: 49px;
  }

  .bath .cont12 .blog_box .swiper-slide {
    display: block;
    width: 336px;
  }

  .bath .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .bath .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 26px;
    order: 2;
    line-height: 1;
  }

  .bath .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 20px 0 0;
    order: 3;
  }

  .bath .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .bath .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .bath .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .bath .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .bath .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .bath .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .bath .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .bath .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .bath .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .bath .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .bath .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .bath .cont12 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont13　対応エリア */
  .bath .cont13 {
    background: var(--main-light-color);
  }

  .bath .cont13 {
    padding: 140px 0 180px;
  }

  .bath .cont13 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .bath .cont13 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .bath .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 206px;
    height: 56px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .bath .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 100px;
  }

  .bath .cont13 .box figure {
    position: absolute;
    left: -300px;
    top: -25px;
  }

  .bath .cont13 .area {
    width: 565px;
    height: 328px;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 50px;
  }

  .bath .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 6px 6px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .bath .cont13 .area .area_list {
    text-align-last: left;
    height: 216px;
    overflow-y: auto;
    margin: 33px 10px 33px 33px;
    padding-right: 33px;
  }

  .bath .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
  }

  .bath .cont13 .area .area_list li {
    line-height: 1;
  }

  .bath .cont13 .area .area_list>li {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  @media screen and (min-width: 1800px) {
  .bath .cont13 figure {
      border-radius: 10px;
      border-right: 1px solid transparent;
      overflow: hidden;
    }
  }

  
/* senmendai------------------------------------------------------- */
/* key */
  .senmendai .key .text01::after {
    background: url("img/aircon_key_text.png");
    width: 724px;
    height: 58px;
  }

  /* cont01 */
  .senmendai .cont01 {
    padding: 130px 0 40px;
    display: flex;
    gap: 18px;
    position: relative;
  }

  .senmendai .cont01 h2 {
    font-size: 24px;
    padding-left: 27px;
    position: relative;
    line-height: 1.6;
    font-weight: bold;
  }

  .senmendai .cont01 h2::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .senmendai .cont01 .text01 {
    font-size: 18px;
    line-height: 2.3;
    margin-top: 24px;
    width: 593px;
  }

  .senmendai .cont01 figure {
    position: absolute;
    right: -300px;
    top: 100px;
    width: 870px;
    border: 3px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  @media screen and (min-width: 1800px) {
    .senmendai .cont01 figure {
      border-radius: 10px;
      border-right: 3px solid var(--main-color);
    }
  }


  /* cont02 */
  .senmendai .cont02 {
    background: url(img/common_bg_01.png);
    padding: 140px 0 120px;
    margin-top: 120px;
  }

  .senmendai .cont02 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .senmendai .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 230px;
    top: -199px;
    right: -41px;
  }

  .senmendai .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco01.png) center center / cover no-repeat;
    width: 198px;
    height: 222px;
    top: -199px;
    left: 0;
  }

  .senmendai .cont02 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 34px;
  }

  .senmendai .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text01.png) center center / cover no-repeat;
    width: 336px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .senmendai .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .senmendai .cont02 .box {
    display: flex;
    gap: 33px;
    justify-content: center;
    margin-top: 55px;
  }

  .senmendai .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 378px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
  }

  .senmendai .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;

  }

  .senmendai .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .senmendai .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .senmendai .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .senmendai .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .senmendai .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 21px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .senmendai .cont02 .box .text_box01:nth-of-type(2) h3 {
    font-size: 20px;
  }

  .senmendai .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .senmendai .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .senmendai .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }


  /* cont03 */
  .senmendai .cont03 {
    padding: 140px 0 120px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .senmendai .cont03 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .senmendai .cont03 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .senmendai .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .senmendai .cont03 .text01 {
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
    line-height: 1.8;
  }

  .senmendai .cont03 .item {
    position: relative;
  }

  .senmendai .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .senmendai .cont03 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .senmendai .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .senmendai .cont03 .category_01,
  .senmendai .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
  }

  .senmendai .cont03 .category_01 {
    padding: 7px 22px;
    background: var(--main-color);
  }

  .senmendai .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .senmendai .cont03 .text02 {
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .senmendai .cont03 .box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 55px auto 0;
  }

  .senmendai .cont03 .box .item {
    width: calc((100% - 30px) / 2);
    position: relative;
    padding-top: 220px;
  }

  .senmendai .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .senmendai .cont03 .box .img_box .before {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
  }

  .senmendai .cont03 .box .img_box .after {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    overflow: hidden;
    border: 1px solid var(--main-color);
  }

  .senmendai .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .senmendai .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .senmendai .cont03 .button {
    position: relative;
    width: 425px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .senmendai .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .senmendai .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .senmendai .cont03 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .senmendai .cont03 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1450px) {
    .senmendai .cont03 .box {
      gap: 60px;
      justify-content: center;
      padding: 0 40px;
    }

    .senmendai .cont03 .item::before {
      top: 80px;
    }
  }


  /* cont04 キッチンクリーニングの費用*/

  .senmendai .cont04 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .senmendai .cont04 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 49px;
  }

  .senmendai .cont04 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .senmendai .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .senmendai .cont04 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 65px;
    text-align: center;
  }

  .senmendai .cont04 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .senmendai .cont04 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .senmendai .cont04 .flex {
    display: flex;
    align-items: center;
  }

  .senmendai .cont04 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 36px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .senmendai .cont04 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .senmendai .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1;
  }

  .senmendai .cont04 .box .price_box .price_text01 .span01 {
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .senmendai .cont04 .box .price_box .price_text01 .span02 {
    font-size: 56px;
    font-weight: bold;
    color: var(--main-color);
  }

  .senmendai .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .senmendai .cont04 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .senmendai .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 25px;
    background: var(--main-color);
  }

  .senmendai .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .senmendai .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .senmendai .cont04 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .senmendai .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 25px;
    background: var(--main-color);
  }

  .senmendai .cont04 .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 18px;
  }

  .senmendai .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .senmendai .cont04 .box:nth-of-type(1) {
    margin-bottom: 60px;
  }

  .senmendai .cont04 .box .ttl {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    margin: 80px auto 30px;
    text-align: center;
    position: relative;
  }

  .senmendai .cont04 .box .ttl::before{
    content: "";
    background: url(img/common_deco13.png) center / cover no-repeat;
    width: 53px;
    height: 48px;
    position: absolute;
    top: -30px;
    left: 212px;
  }

  .senmendai .cont04 .box .option_flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 25px 25px;
    gap: 25px;
  }
  .senmendai .cont04 .box .option_flex .item {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    background: var(--main-light-color);
    border-radius: 10px;
    padding: 20px;
    width: 519px;
   }

  .senmendai .cont04 .box .option_flex .item .text_box{
    width: 280px;
   }
  .senmendai .cont04 .box .option_flex .item .text_box .tte01{
    font-size: 19px;
    font-weight: bold;
    padding-left: 17px;
    position: relative;
   }
  .senmendai .cont04 .box .option_flex .item .text_box .tte01::before{
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
   }
  .senmendai .cont04 .box .option_flex .item figure{
    width: 230px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }
 .senmendai .cont04 .box .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
  .senmendai .cont04 .box .option_flex .item .text_box .text02{
    margin-top: 7px;
  }

  .senmendai .cont04 .box .option_flex .item .text_box .text03{
    margin-right: 5px;
    text-align: right;
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--main-color);
  }
   .senmendai .cont04 .box .option_flex .item .text_box .text03 span{
    font-size: 40px;
    font-weight: bold;
  }
  

  .senmendai .cont04 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 20px;
  }

  /* cont05 セットサービス */
  .senmendai .cont05 {
    background: var(--main-light-color);
    padding: 130px 0 0px;
  }

  .senmendai .cont05 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 45px;
  }

  .senmendai .cont05 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .senmendai .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .senmendai .cont05 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
  }

  .senmendai .cont05 .text_box {
    position: relative;
    width: 1200px;
    height: 240px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 44px 62px 40px 233px;
    margin-bottom: 60px;
  }

  .senmendai .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
  }

  .senmendai .cont05 .text_box .text01 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 21px;
  }

  .senmendai .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .senmendai .cont05 .text_box .text01 .span02 {
    font-size: 34px;
    font-weight: bold;
  }

  .senmendai .cont05 .text_box .text02 {
    font-size: 20px;
    line-height: 1.8;
  }

  .senmendai .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .senmendai .cont05 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .senmendai .cont05 .box h3 span {
    font-size: 24px;
    font-weight: bold;
    padding: 5px 28px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 21px;
  }

  .senmendai .cont05 .box:nth-of-type(3) h3 span {
    background-color: #34baeb;
  }

  .senmendai .cont05 .box .flex {
    display: flex;
    align-items: center;
  }

  .senmendai .cont05 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 37px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .senmendai .cont05 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .senmendai .cont05 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .senmendai .cont05 .box .price_box .price_text01 span {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .senmendai .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 24px;
  }

  .senmendai .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .senmendai .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .senmendai .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 20px;
    line-height: 1;
  }

  .senmendai .cont05 .box .price_box .price_text02 span {
    font-size: 56px;
    font-weight: bold;
  }

  .senmendai .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .senmendai .cont05 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .senmendai .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 25px;
    background: var(--main-color);
  }

  .senmendai .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .senmendai .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .senmendai .cont05 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .senmendai .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 98px;
    background: var(--main-color);
  }

  .senmendai .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 67px;
  }
  .senmendai .cont05 .box:nth-of-type(4) .price_box .range_box dt::after {
    height: 50px;
  }
    .senmendai .cont05 .box:nth-of-type(5) .price_box .range_box dt::after {
    height: 145px;
  }

  .senmendai .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .senmendai .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 14px;
    padding: 9px 25px 9px 20px;
  }

  .senmendai .cont05 .box {
    margin-bottom: 60px;
  }
  .senmendai .cont05 .box:nth-of-type(5) {
    margin-bottom: 20px;
  }
  .senmendai .cont05 .tax_text01 {
    text-align: right;
  }


  /* cont06 あわせて頼みたいサービス */
  .senmendai .cont06 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .senmendai .cont06 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .senmendai .cont06 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .senmendai .cont06 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .senmendai .cont06 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .senmendai .cont06 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .senmendai .cont06 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .senmendai .cont06 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .senmendai .cont06 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .senmendai .cont06 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .senmendai .cont06 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .senmendai .cont06 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .senmendai .cont06 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .senmendai .cont06 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .senmendai .cont06 .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 32px;
  }

  .senmendai .cont06 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  /* cont07 その他単品*/

  .senmendai .cont07 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
  }

  .senmendai .cont07 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .senmendai .cont07 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .senmendai .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 619px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .senmendai .cont07 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .senmendai .cont07 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .senmendai .cont07 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .senmendai .cont07 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .senmendai .cont07 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .senmendai .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .senmendai .cont07 .option_flex .item .text_box .tte01 span {
    font-size: 18px;
    font-weight: bold;
  }

  .senmendai .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .senmendai .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .senmendai .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .senmendai .cont07 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .senmendai .cont07 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  .senmendai .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 20px;
  }

  .senmendai .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .senmendai .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .senmendai .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .senmendai .cont07 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .senmendai .cont07 .button a:hover::before {
    background: var(--main-color);
  }


  /* cont08選ばれる理由 */
  .senmendai .cont08 {
    padding: 140px 0 120px;
  }

  .senmendai .cont08 .inner {
    position: relative;
  }

  .senmendai .cont08 .inner {
    width: 900px;
    margin: 0 auto;
  }

  .senmendai .cont08 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .senmendai .cont08 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .senmendai .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .senmendai .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 22px;
    color: #1d1d1d;
    padding-left: 20px;
    height: 32px;
    line-height: 32px;
  }

  .senmendai .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 32px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .senmendai .cont08 .text01 {
    margin-top: 4px;
  }

  .senmendai .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 9px;
    padding: 24px 0 22px 99px;
    margin-bottom: 50px;
  }

  .senmendai .cont08 .box .item::before {
    position: absolute;
    content: "";
    background: url("img/reason_01.png") center center / cover no-repeat;
    width: 144px;
    height: 134px;
    left: -66px;
    top: 1px;
  }

  .senmendai .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .senmendai .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .senmendai .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .senmendai .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .senmendai .cont08 .box .item:first-of-type {
    margin-top: 60px;
  }

  .senmendai .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .senmendai .cont08 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .senmendai .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .senmendai .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .senmendai .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .senmendai .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont09ご利用の流れ */
  .senmendai .cont09 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
    /* margin: 120px auto 0px; */
    /* max-width: 1400px; */
  }

  .senmendai .cont09 .inner {
    position: relative;
  }

  .senmendai .cont09 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .senmendai .cont09 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .senmendai .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .senmendai .cont09 .box {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }

  .senmendai .cont09 .box .item {
    position: relative;
    width: 380px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 46px 30px;
  }

  .senmendai .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 46px;
  }

  .senmendai .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .senmendai .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .senmendai .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .senmendai .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .senmendai .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .senmendai .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .senmendai .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .senmendai .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .senmendai .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .senmendai .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .senmendai .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .senmendai .cont09 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .senmendai .cont09 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont10 よくある質問*/
  .senmendai .cont10 {
    padding: 140px 0 120px;
  }

  .senmendai .cont10 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .senmendai .cont10 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .senmendai .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .senmendai .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 55px;
  }

  .senmendai .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .senmendai .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 37px 100px 37px 152px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }

  .senmendai .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .senmendai .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .senmendai .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .senmendai .cont10 .qa_box .ans {
    display: none;
    padding-left: 152px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 52px;
    position: relative;
  }

  .senmendai .cont10 .button {
    position: relative;
    width: 275px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .senmendai .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .senmendai .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .senmendai .cont10 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .senmendai .cont10 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1300px) {
    .senmendai .cont10 {
      width: 1100px;
    }
  }


  /* cont11イークリーンについて */

  .senmendai .cont11 {
    background: url(img/common_bg_01.png);
    padding: 120px 0;
  }

  .senmendai .cont11 .inner {
    padding-top: 620px;
    position: relative;
  }

  .senmendai .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 233px;
    height: 184px;
    bottom: -245px;
    right: 48px;
  }

  .senmendai .cont11 figure {
    position: absolute;
    left: -300px;
    top: 0;
    border: 3px solid var(--main-color);
    border-left: none;
    border-radius: 0 18px 18px 0;
    width: 870px;
    height: 620px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .senmendai .cont11 figure img {
    object-fit: none;
  }

  .senmendai .cont11 .text_box {
    position: absolute;
    right: 0;
    top: 0;
    height: 560px;
    width: 680px;
    padding: 48px 0 54px 50px;
    box-sizing: border-box;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    margin: 30px auto;
    z-index: 2;
  }

  .senmendai .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .senmendai .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .senmendai .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .senmendai .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .senmendai .cont11 .text_box .tel,
  .senmendai .cont11 .text_box .mail,
  .senmendai .cont11 .text_box .time,
  .senmendai .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .senmendai .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .senmendai .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .senmendai .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .senmendai .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
  }

  .senmendai .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .senmendai .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .senmendai .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .senmendai .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .senmendai .cont11 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .senmendai .cont11 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (min-width: 1800px) {
    .senmendai .cont11 figure {
      border-left: 3px solid var(--main-color);
      border-radius: 18px;
    }
  }

  /* cont12ブログ一覧 */

  .senmendai .cont12 {
    padding: 140px 0 120px;
    z-index: 10;
    position: relative;
  }

  .senmendai .cont12 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .senmendai .cont12 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .senmendai .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .senmendai .cont12 .text01 {
    margin-top: 52px;
    text-align: center;
    font-size: 18px;
  }

  .senmendai .cont12 .blog_box {
    margin-top: 49px;
  }

  .senmendai .cont12 .blog_box .swiper-slide {
    display: block;
    width: 336px;
  }

  .senmendai .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .senmendai .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 26px;
    order: 2;
    line-height: 1;
  }

  .senmendai .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 20px 0 0;
    order: 3;
  }

  .senmendai .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .senmendai .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .senmendai .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .senmendai .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .senmendai .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .senmendai .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .senmendai .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .senmendai .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .senmendai .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .senmendai .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .senmendai .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .senmendai .cont12 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont13　対応エリア */
  .senmendai .cont13 {
    background: var(--main-light-color);
  }

  .senmendai .cont13 {
    padding: 140px 0 180px;
  }

  .senmendai .cont13 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .senmendai .cont13 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .senmendai .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 206px;
    height: 56px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .senmendai .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 100px;
  }

  .senmendai .cont13 .box figure {
    position: absolute;
    left: -300px;
    top: -25px;
  }

  .senmendai .cont13 .area {
    width: 565px;
    height: 328px;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 50px;
  }

  .senmendai .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 6px 6px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .senmendai .cont13 .area .area_list {
    text-align-last: left;
    height: 216px;
    overflow-y: auto;
    margin: 33px 10px 33px 33px;
    padding-right: 33px;
  }

  .senmendai .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
  }

  .senmendai .cont13 .area .area_list li {
    line-height: 1;
  }

  .senmendai .cont13 .area .area_list>li {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  @media screen and (min-width: 1800px) {
  .senmendai .cont13 figure {
      border-radius: 10px;
      border-right: 1px solid transparent;
      overflow: hidden;
    }
  }


  
  /*洗濯機クリーニング---------------------------------------------- */

  /* key */
  .sentakuki .key .text01::after {
    background: url("img/aircon_key_text.png");
    width: 724px;
    height: 58px;
  }

  /* cont01 */
  .sentakuki .cont01 {
    padding: 130px 0 80px;
    display: flex;
    gap: 18px;
    position: relative;
  }

  .sentakuki .cont01 h2 {
    font-size: 24px;
    padding-left: 27px;
    position: relative;
    line-height: 1.6;
    font-weight: bold;
  }

  .sentakuki .cont01 h2::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .sentakuki .cont01 .text01 {
    font-size: 18px;
    line-height: 2.2;
    margin-top: 24px;
    width: 593px;
    text-align: justify;
  }

  .sentakuki .cont01 figure {
    position: absolute;
    right: -300px;
    top: 100px;
    width: 870px;
    border: 3px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  @media screen and (min-width: 1800px) {
    .sentakuki .cont01 figure {
      border-radius: 10px;
      border-right: 3px solid var(--main-color);
    }
  }


  /* cont02 */
  .sentakuki .cont02 {
    background: url(img/common_bg_01.png);
    padding: 140px 0 120px;
    margin-top: 120px;
  }

  .sentakuki .cont02 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .sentakuki .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 230px;
    top: -199px;
    right: -41px;
  }

  .sentakuki .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco01.png) center center / cover no-repeat;
    width: 198px;
    height: 222px;
    top: -199px;
    left: 0;
  }

  .sentakuki .cont02 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 34px;
  }

  .sentakuki .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text01.png) center center / cover no-repeat;
    width: 336px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .sentakuki .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .sentakuki .cont02 .box {
    display: flex;
    gap: 33px;
    justify-content: center;
    margin-top: 55px;
  }

  .sentakuki .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 378px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
  }

  .sentakuki .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;

  }

  .sentakuki .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .sentakuki .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .sentakuki .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .sentakuki .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .sentakuki .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 21px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .sentakuki .cont02 .box .text_box01:nth-of-type(2) h3 {
    font-size: 20px;
  }

  .sentakuki .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .sentakuki .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .sentakuki .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }


  /* cont03 */
  .sentakuki .cont03 {
    padding: 140px 0 120px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .sentakuki .cont03 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .sentakuki .cont03 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .sentakuki .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .sentakuki .cont03 .text01 {
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
    line-height: 1.8;
  }

  .sentakuki .cont03 .item {
    position: relative;
  }

  .sentakuki .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .sentakuki .cont03 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sentakuki .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .sentakuki .cont03 .category_01,
  .sentakuki .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
  }

  .sentakuki .cont03 .category_01 {
    padding: 7px 22px;
    background: var(--main-color);
  }

  .sentakuki .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .sentakuki .cont03 .text02 {
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sentakuki .cont03 .box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 55px auto 0;
  }

  .sentakuki .cont03 .box .item {
    width: calc((100% - 30px) / 2);
    position: relative;
    padding-top: 220px;
  }

  .sentakuki .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .sentakuki .cont03 .box .img_box .before {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
  }

  .sentakuki .cont03 .box .img_box .after {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    overflow: hidden;
    border: 1px solid var(--main-color);
  }

  .sentakuki .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .sentakuki .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .sentakuki .cont03 .button {
    position: relative;
    width: 425px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .sentakuki .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .sentakuki .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .sentakuki .cont03 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .sentakuki .cont03 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1450px) {
    .sentakuki .cont03 .box {
      gap: 60px;
      justify-content: center;
      padding: 0 40px;
    }

    .sentakuki .cont03 .item::before {
      top: 80px;
    }
  }


  /* cont04 キッチンクリーニングの費用*/

  .sentakuki .cont04 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .sentakuki .cont04 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 49px;
  }

  .sentakuki .cont04 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .sentakuki .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .sentakuki .cont04 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 65px;
    text-align: center;
  }

  .sentakuki .cont04 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .sentakuki .cont04 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .sentakuki .cont04 .flex {
    display: flex;
    align-items: center;
  }

  .sentakuki .cont04 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 36px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .sentakuki .cont04 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .sentakuki .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1;
    position: relative;
    padding-left: 150px;
  }

  .sentakuki .cont04 .box .price_box .price_text01::before {
        content: "";
        background: url(img/sentakuki_img09.png);
        width: 140px;
        height: 35px;
        position: absolute;
        top: 10px;
        left: 0px;
  }
  

  .sentakuki .cont04 .box .price_box .price_text01 .span01 {
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .sentakuki .cont04 .box .price_box .price_text01 .span02 {
    font-size: 56px;
    font-weight: bold;
    color: var(--main-color);
  }

  .sentakuki .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .sentakuki .cont04 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .sentakuki .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .sentakuki .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .sentakuki .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .sentakuki .cont04 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .sentakuki .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 72px;
    background: var(--main-color);
  }

  .sentakuki .cont04 .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 18px;
  }

  .sentakuki .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .sentakuki .cont04 .box:nth-of-type(1) {
    margin-bottom: 50px;
  }

  .sentakuki .cont04 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 36px;
  }

  /* cont05 セットサービス */
  .sentakuki .cont05 {
    background: var(--main-light-color);
    padding: 130px 0 0px;
  }

  .sentakuki .cont05 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 45px;
  }

  .sentakuki .cont05 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .sentakuki .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .sentakuki .cont05 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
  }

  .sentakuki .cont05 .text_box {
    position: relative;
    width: 1200px;
    height: 240px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 44px 62px 40px 233px;
    margin-bottom: 60px;
  }

  .sentakuki .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
  }

  .sentakuki .cont05 .text_box .text01 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 21px;
  }

  .sentakuki .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .sentakuki .cont05 .text_box .text01 .span02 {
    font-size: 34px;
    font-weight: bold;
  }

  .sentakuki .cont05 .text_box .text02 {
    font-size: 20px;
    line-height: 1.8;
  }

  .sentakuki .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    margin-bottom: 50px;
  }

    .sentakuki .cont05 .box:last-of-type {
    margin-bottom: 0;
  }


  .sentakuki .cont05 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .sentakuki .cont05 .box h3 span {
    font-size: 24px;
    font-weight: bold;
    padding: 5px 28px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 21px;
  }

  .sentakuki .cont05 .box:nth-of-type(5) h3 span {
    background-color: #34baeb;
  }

  .sentakuki .cont05 .box .flex {
    display: flex;
    align-items: center;
  }

  .sentakuki .cont05 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 37px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .sentakuki .cont05 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .sentakuki .cont05 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .sentakuki .cont05 .box .price_box .price_text01 span {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .sentakuki .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 24px;
  }

  .sentakuki .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .sentakuki .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .sentakuki .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 20px;
    line-height: 1;
  }

  .sentakuki .cont05 .box .price_box .price_text02 span {
    font-size: 56px;
    font-weight: bold;
  }

  .sentakuki .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .sentakuki .cont05 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .sentakuki .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .sentakuki .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .sentakuki .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .sentakuki .cont05 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .sentakuki .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 98px;
    background: var(--main-color);
  }

  .sentakuki .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 130px;
  }

  .sentakuki .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .sentakuki .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 14px;
    padding: 9px 25px 9px 20px;
  }

  .sentakuki .cont05 .box {
    margin-bottom: 70px;
  }


  /* cont06 あわせて頼みたいサービス */
  .sentakuki .cont06 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .sentakuki .cont06 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .sentakuki .cont06 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .sentakuki .cont06 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/sentakuki_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .sentakuki .cont06 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .sentakuki .cont06 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .sentakuki .cont06 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .sentakuki .cont06 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 23px;
  }

  .sentakuki .cont06 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .sentakuki .cont06 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .sentakuki .cont06 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .sentakuki .cont06 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .sentakuki .cont06 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .sentakuki .cont06 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .sentakuki .cont06 .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 32px;
  }

  .sentakuki .cont06 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  /* cont07 その他単品*/

  .sentakuki .cont07 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
  }

  .sentakuki .cont07 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .sentakuki .cont07 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .sentakuki .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/sentakuki_text03.png) center center / cover no-repeat;
    width: 619px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .sentakuki .cont07 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .sentakuki .cont07 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .sentakuki .cont07 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .sentakuki .cont07 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .sentakuki .cont07 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .sentakuki .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .sentakuki .cont07 .option_flex .item:nth-of-type(5) .text_box .tte01 span {
    font-size: 18px;
    font-weight: bold;
  }

  .sentakuki .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .sentakuki .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .sentakuki .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .sentakuki .cont07 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .sentakuki .cont07 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  .sentakuki .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 36px;
  }

  .sentakuki .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .sentakuki .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .sentakuki .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .sentakuki .cont07 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .sentakuki .cont07 .button a:hover::before {
    background: var(--main-color);
  }


  /* cont08選ばれる理由 */
  .sentakuki .cont08 {
    padding: 140px 0 120px;
  }

  .sentakuki .cont08 .inner {
    position: relative;
  }

  .sentakuki .cont08 .inner {
    width: 900px;
    margin: 0 auto;
  }

  .sentakuki .cont08 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .sentakuki .cont08 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .sentakuki .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .sentakuki .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 22px;
    color: #1d1d1d;
    padding-left: 20px;
    height: 32px;
    line-height: 32px;
  }

  .sentakuki .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 32px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .sentakuki .cont08 .text01 {
    margin-top: 4px;
  }

  .sentakuki .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 9px;
    padding: 24px 0 22px 99px;
    margin-bottom: 50px;
  }

  .sentakuki .cont08 .box .item::before {
    position: absolute;
    content: "";
    background: url("img/reason_01.png") center center / cover no-repeat;
    width: 144px;
    height: 134px;
    left: -66px;
    top: 1px;
  }

  .sentakuki .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .sentakuki .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .sentakuki .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .sentakuki .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .sentakuki .cont08 .box .item:first-of-type {
    margin-top: 60px;
  }

  .sentakuki .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .sentakuki .cont08 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .sentakuki .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .sentakuki .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .sentakuki .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .sentakuki .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont09ご利用の流れ */
  .sentakuki .cont09 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
    /* margin: 120px auto 0px; */
    /* max-width: 1400px; */
  }

  .sentakuki .cont09 .inner {
    position: relative;
  }

  .sentakuki .cont09 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .sentakuki .cont09 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .sentakuki .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .sentakuki .cont09 .box {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }

  .sentakuki .cont09 .box .item {
    position: relative;
    width: 380px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 46px 30px;
  }

  .sentakuki .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 46px;
  }

  .sentakuki .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .sentakuki .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .sentakuki .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .sentakuki .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .sentakuki .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .sentakuki .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .sentakuki .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .sentakuki .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .sentakuki .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .sentakuki .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .sentakuki .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .sentakuki .cont09 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .sentakuki .cont09 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont10 よくある質問*/
  .sentakuki .cont10 {
    padding: 140px 0 120px;
  }

  .sentakuki .cont10 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .sentakuki .cont10 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .sentakuki .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .sentakuki .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 55px;
  }

  .sentakuki .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .sentakuki .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 37px 100px 37px 152px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }

  .sentakuki .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .sentakuki .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .sentakuki .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .sentakuki .cont10 .qa_box .ans {
    display: none;
    padding-left: 152px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 52px;
    position: relative;
  }

  .sentakuki .cont10 .button {
    position: relative;
    width: 275px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .sentakuki .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .sentakuki .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .sentakuki .cont10 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .sentakuki .cont10 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1300px) {
    .sentakuki .cont10 {
      width: 1100px;
    }
  }


  /* cont11イークリーンについて */

  .sentakuki .cont11 {
    background: url(img/common_bg_01.png);
    padding: 120px 0;
  }

  .sentakuki .cont11 .inner {
    padding-top: 620px;
    position: relative;
  }

  .sentakuki .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 233px;
    height: 184px;
    bottom: -245px;
    right: 48px;
  }

  .sentakuki .cont11 figure {
    position: absolute;
    left: -300px;
    top: 0;
    border: 3px solid var(--main-color);
    border-left: none;
    border-radius: 0 18px 18px 0;
    width: 870px;
    height: 620px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .sentakuki .cont11 figure img {
    object-fit: none;
  }

  .sentakuki .cont11 .text_box {
    position: absolute;
    right: 0;
    top: 0;
    height: 560px;
    width: 680px;
    padding: 48px 0 54px 50px;
    box-sizing: border-box;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    margin: 30px auto;
    z-index: 2;
  }

  .sentakuki .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .sentakuki .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .sentakuki .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .sentakuki .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .sentakuki .cont11 .text_box .tel,
  .sentakuki .cont11 .text_box .mail,
  .sentakuki .cont11 .text_box .time,
  .sentakuki .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .sentakuki .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .sentakuki .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .sentakuki .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .sentakuki .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
  }

  .sentakuki .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .sentakuki .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .sentakuki .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .sentakuki .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .sentakuki .cont11 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .sentakuki .cont11 .button a:hover::before {
    background: var(--main-color);
  }


  /* cont12ブログ一覧 */

  .sentakuki .cont12 {
    padding: 140px 0 120px;
    z-index: 10;
    position: relative;
  }

  .sentakuki .cont12 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .sentakuki .cont12 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .sentakuki .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .sentakuki .cont12 .text01 {
    margin-top: 52px;
    text-align: center;
    font-size: 18px;
  }

  .sentakuki .cont12 .blog_box {
    margin-top: 49px;
  }

  .sentakuki .cont12 .blog_box .swiper-slide {
    display: block;
    width: 336px;
  }

  .sentakuki .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .sentakuki .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 26px;
    order: 2;
    line-height: 1;
  }

  .sentakuki .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 20px 0 0;
    order: 3;
  }

  .sentakuki .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .sentakuki .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .sentakuki .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .sentakuki .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .sentakuki .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .sentakuki .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .sentakuki .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .sentakuki .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .sentakuki .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .sentakuki .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .sentakuki .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .sentakuki .cont12 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont13　対応エリア */
  .sentakuki .cont13 {
    background: var(--main-light-color);
  }

  .sentakuki .cont13 {
    padding: 140px 0 180px;
  }

  .sentakuki .cont13 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .sentakuki .cont13 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .sentakuki .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 206px;
    height: 56px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .sentakuki .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 100px;
  }

  .sentakuki .cont13 .box figure {
    position: absolute;
    left: -300px;
    top: -25px;
  }

  .sentakuki .cont13 .area {
    width: 565px;
    height: 328px;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 50px;
  }

  .sentakuki .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 6px 6px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .sentakuki .cont13 .area .area_list {
    text-align-last: left;
    height: 216px;
    overflow-y: auto;
    margin: 33px 10px 33px 33px;
    padding-right: 33px;
  }

  .sentakuki .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
  }

  .sentakuki .cont13 .area .area_list li {
    line-height: 1;
  }

  .sentakuki .cont13 .area .area_list>li {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  @media screen and (min-width: 1800px) {
    .sentakuki .cont13 figure {
      border-radius: 10px;
      border-right: 1px solid transparent;
      overflow: hidden;
    }
  }



/* toilet------------------------------------------------------- */
/* key */
  .toilet .key .text01::after {
    background: url("img/aircon_key_text.png");
    width: 724px;
    height: 58px;
  }

  /* cont01 */
  .toilet .cont01 {
    padding: 130px 0 40px;
    display: flex;
    gap: 18px;
    position: relative;
  }

  .toilet .cont01 h2 {
    font-size: 24px;
    padding-left: 27px;
    position: relative;
    line-height: 1.6;
    font-weight: bold;
  }

  .toilet .cont01 h2::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .toilet .cont01 .text01 {
    font-size: 18px;
    line-height: 2.3;
    margin-top: 24px;
    width: 593px;
  }

  .toilet .cont01 figure {
    position: absolute;
    right: -300px;
    top: 100px;
    width: 870px;
    border: 3px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  @media screen and (min-width: 1800px) {
    .toilet .cont01 figure {
      border-radius: 10px;
      border-right: 3px solid var(--main-color);
    }
  }


  /* cont02 */
  .toilet .cont02 {
    background: url(img/common_bg_01.png);
    padding: 140px 0 120px;
    margin-top: 120px;
  }

  .toilet .cont02 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .toilet .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 230px;
    top: -199px;
    right: -41px;
  }

  .toilet .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco01.png) center center / cover no-repeat;
    width: 198px;
    height: 222px;
    top: -199px;
    left: 0;
  }

  .toilet .cont02 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 34px;
  }

  .toilet .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text01.png) center center / cover no-repeat;
    width: 336px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .toilet .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .toilet .cont02 .box {
    display: flex;
    gap: 33px;
    justify-content: center;
    margin-top: 55px;
  }

  .toilet .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 378px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
  }

  .toilet .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;

  }

  .toilet .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .toilet .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .toilet .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .toilet .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .toilet .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 21px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .toilet .cont02 .box .text_box01:nth-of-type(2) h3 {
    font-size: 20px;
  }

  .toilet .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .toilet .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .toilet .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }


  /* cont03 */
  .toilet .cont03 {
    padding: 140px 0 120px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .toilet .cont03 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .toilet .cont03 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .toilet .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .toilet .cont03 .text01 {
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
    line-height: 1.8;
  }

  .toilet .cont03 .item {
    position: relative;
  }

  .toilet .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .toilet .cont03 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .toilet .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .toilet .cont03 .category_01,
  .toilet .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
  }

  .toilet .cont03 .category_01 {
    padding: 7px 22px;
    background: var(--main-color);
  }

  .toilet .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .toilet .cont03 .text02 {
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .toilet .cont03 .box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 55px auto 0;
  }

  .toilet .cont03 .box .item {
    width: calc((100% - 30px) / 2);
    position: relative;
    padding-top: 220px;
  }

  .toilet .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .toilet .cont03 .box .img_box .before {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
  }

  .toilet .cont03 .box .img_box .after {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    overflow: hidden;
    border: 1px solid var(--main-color);
  }

  .toilet .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .toilet .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .toilet .cont03 .button {
    position: relative;
    width: 425px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .toilet .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .toilet .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .toilet .cont03 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .toilet .cont03 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1450px) {
    .toilet .cont03 .box {
      gap: 60px;
      justify-content: center;
      padding: 0 40px;
    }

    .toilet .cont03 .item::before {
      top: 80px;
    }
  }


  /* cont04 キッチンクリーニングの費用*/

  .toilet .cont04 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .toilet .cont04 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 49px;
  }

  .toilet .cont04 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .toilet .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .toilet .cont04 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 65px;
    text-align: center;
  }

  .toilet .cont04 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .toilet .cont04 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .toilet .cont04 .flex {
    display: flex;
    align-items: center;
  }

  .toilet .cont04 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 36px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .toilet .cont04 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .toilet .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1;
  }

  .toilet .cont04 .box .price_box .price_text01 .span01 {
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .toilet .cont04 .box .price_box .price_text01 .span02 {
    font-size: 56px;
    font-weight: bold;
    color: var(--main-color);
  }

  .toilet .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .toilet .cont04 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .toilet .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .toilet .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .toilet .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .toilet .cont04 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .toilet .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: var(--main-color);
  }

  .toilet .cont04 .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 18px;
  }

  .toilet .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .toilet .cont04 .box:nth-of-type(1) {
    margin-bottom: 60px;
  }

  .toilet .cont04 .box .ttl {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    margin: 80px auto 30px;
    text-align: center;
    position: relative;
  }

  .toilet .cont04 .box .ttl::before{
    content: "";
    background: url(img/common_deco13.png) center / cover no-repeat;
    width: 53px;
    height: 48px;
    position: absolute;
    top: -30px;
    left: 212px;
  }

  .toilet .cont04 .box .option_flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 25px 25px;
    gap: 25px;
  }
  .toilet .cont04 .box .option_flex .item {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    background: var(--main-light-color);
    border-radius: 10px;
    padding: 20px;
    width: 519px;
   }

  .toilet .cont04 .box .option_flex .item .text_box{
    width: 280px;
   }
  .toilet .cont04 .box .option_flex .item .text_box .tte01{
    font-size: 19px;
    font-weight: bold;
    padding-left: 17px;
    position: relative;
   }
  .toilet .cont04 .box .option_flex .item .text_box .tte01::before{
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
   }
  .toilet .cont04 .box .option_flex .item figure{
    width: 230px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }
 .toilet .cont04 .box .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
  .toilet .cont04 .box .option_flex .item .text_box .text02{
    margin-top: 7px;
  }

  .toilet .cont04 .box .option_flex .item .text_box .text03{
    margin-right: 5px;
    text-align: right;
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--main-color);
  }
   .toilet .cont04 .box .option_flex .item .text_box .text03 span{
    font-size: 40px;
    font-weight: bold;
  }
  

  .toilet .cont04 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 20px;
  }

  /* cont05 セットサービス */
  .toilet .cont05 {
    background: var(--main-light-color);
    padding: 130px 0 0px;
  }

  .toilet .cont05 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 45px;
  }

  .toilet .cont05 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .toilet .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .toilet .cont05 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
  }

  .toilet .cont05 .text_box {
    position: relative;
    width: 1200px;
    height: 240px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 44px 62px 40px 233px;
    margin-bottom: 60px;
  }

  .toilet .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
  }

  .toilet .cont05 .text_box .text01 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 21px;
  }

  .toilet .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .toilet .cont05 .text_box .text01 .span02 {
    font-size: 34px;
    font-weight: bold;
  }

  .toilet .cont05 .text_box .text02 {
    font-size: 20px;
    line-height: 1.8;
  }

  .toilet .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .toilet .cont05 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .toilet .cont05 .box h3 span {
    font-size: 24px;
    font-weight: bold;
    padding: 5px 28px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 21px;
  }

  .toilet .cont05 .box:nth-of-type(5) h3 span {
    background-color: #34baeb;
  }

  .toilet .cont05 .box .flex {
    display: flex;
    align-items: center;
  }

  .toilet .cont05 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 37px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .toilet .cont05 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .toilet .cont05 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .toilet .cont05 .box .price_box .price_text01 span {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .toilet .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 24px;
  }

  .toilet .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .toilet .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .toilet .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 20px;
    line-height: 1;
  }

  .toilet .cont05 .box .price_box .price_text02 span {
    font-size: 56px;
    font-weight: bold;
  }

  .toilet .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .toilet .cont05 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .toilet .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .toilet .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .toilet .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .toilet .cont05 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .toilet .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 98px;
    background: var(--main-color);
  }

  .toilet .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 130px;
  }

  .toilet .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .toilet .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 14px;
    padding: 9px 25px 9px 20px;
  }

  .toilet .cont05 .box {
    margin-bottom: 60px;
  }
  .toilet .cont05 .box:nth-of-type(5) {
    margin-bottom: 20px;
  }
  .toilet .cont05 .tax_text01 {
    text-align: right;
  }


  /* cont06 あわせて頼みたいサービス */
  .toilet .cont06 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .toilet .cont06 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .toilet .cont06 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .toilet .cont06 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .toilet .cont06 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .toilet .cont06 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .toilet .cont06 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .toilet .cont06 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .toilet .cont06 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .toilet .cont06 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .toilet .cont06 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .toilet .cont06 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .toilet .cont06 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .toilet .cont06 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .toilet .cont06 .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 32px;
  }

  .toilet .cont06 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  /* cont07 その他単品*/

  .toilet .cont07 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
  }

  .toilet .cont07 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .toilet .cont07 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .toilet .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 619px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .toilet .cont07 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .toilet .cont07 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .toilet .cont07 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .toilet .cont07 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .toilet .cont07 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .toilet .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .toilet .cont07 .option_flex .item .text_box .tte01 span {
    font-size: 18px;
    font-weight: bold;
  }

  .toilet .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .toilet .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .toilet .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .toilet .cont07 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .toilet .cont07 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  .toilet .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 20px;
  }

  .toilet .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .toilet .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .toilet .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .toilet .cont07 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .toilet .cont07 .button a:hover::before {
    background: var(--main-color);
  }


  /* cont08選ばれる理由 */
  .toilet .cont08 {
    padding: 140px 0 120px;
  }

  .toilet .cont08 .inner {
    position: relative;
  }

  .toilet .cont08 .inner {
    width: 900px;
    margin: 0 auto;
  }

  .toilet .cont08 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .toilet .cont08 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .toilet .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .toilet .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 22px;
    color: #1d1d1d;
    padding-left: 20px;
    height: 32px;
    line-height: 32px;
  }

  .toilet .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 32px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .toilet .cont08 .text01 {
    margin-top: 4px;
  }

  .toilet .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 9px;
    padding: 24px 0 22px 99px;
    margin-bottom: 50px;
  }

  .toilet .cont08 .box .item::before {
    position: absolute;
    content: "";
    background: url("img/reason_01.png") center center / cover no-repeat;
    width: 144px;
    height: 134px;
    left: -66px;
    top: 1px;
  }

  .toilet .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .toilet .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .toilet .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .toilet .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .toilet .cont08 .box .item:first-of-type {
    margin-top: 60px;
  }

  .toilet .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .toilet .cont08 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .toilet .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .toilet .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .toilet .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .toilet .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont09ご利用の流れ */
  .toilet .cont09 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
    /* margin: 120px auto 0px; */
    /* max-width: 1400px; */
  }

  .toilet .cont09 .inner {
    position: relative;
  }

  .toilet .cont09 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .toilet .cont09 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .toilet .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .toilet .cont09 .box {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }

  .toilet .cont09 .box .item {
    position: relative;
    width: 380px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 46px 30px;
  }

  .toilet .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 46px;
  }

  .toilet .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .toilet .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .toilet .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .toilet .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .toilet .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .toilet .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .toilet .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .toilet .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .toilet .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .toilet .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .toilet .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .toilet .cont09 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .toilet .cont09 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont10 よくある質問*/
  .toilet .cont10 {
    padding: 140px 0 120px;
  }

  .toilet .cont10 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .toilet .cont10 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .toilet .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .toilet .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 55px;
  }

  .toilet .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .toilet .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 37px 100px 37px 152px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }

  .toilet .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .toilet .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .toilet .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .toilet .cont10 .qa_box .ans {
    display: none;
    padding-left: 152px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 52px;
    position: relative;
  }

  .toilet .cont10 .button {
    position: relative;
    width: 275px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .toilet .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .toilet .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .toilet .cont10 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .toilet .cont10 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1300px) {
    .toilet .cont10 {
      width: 1100px;
    }
  }


  /* cont11イークリーンについて */

  .toilet .cont11 {
    background: url(img/common_bg_01.png);
    padding: 120px 0;
  }

  .toilet .cont11 .inner {
    padding-top: 620px;
    position: relative;
  }

  .toilet .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 233px;
    height: 184px;
    bottom: -245px;
    right: 48px;
  }

  .toilet .cont11 figure {
    position: absolute;
    left: -300px;
    top: 0;
    border: 3px solid var(--main-color);
    border-left: none;
    border-radius: 0 18px 18px 0;
    width: 870px;
    height: 620px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .toilet .cont11 figure img {
    object-fit: none;
  }

  .toilet .cont11 .text_box {
    position: absolute;
    right: 0;
    top: 0;
    height: 560px;
    width: 680px;
    padding: 48px 0 54px 50px;
    box-sizing: border-box;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    margin: 30px auto;
    z-index: 2;
  }

  .toilet .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .toilet .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .toilet .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .toilet .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .toilet .cont11 .text_box .tel,
  .toilet .cont11 .text_box .mail,
  .toilet .cont11 .text_box .time,
  .toilet .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .toilet .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .toilet .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .toilet .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .toilet .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
  }

  .toilet .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .toilet .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .toilet .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .toilet .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .toilet .cont11 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .toilet .cont11 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (min-width: 1800px) {
    .toilet .cont11 figure {
      border-left: 3px solid var(--main-color);
      border-radius: 18px;
    }
  }

  /* cont12ブログ一覧 */

  .toilet .cont12 {
    padding: 140px 0 120px;
    z-index: 10;
    position: relative;
  }

  .toilet .cont12 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .toilet .cont12 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .toilet .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .toilet .cont12 .text01 {
    margin-top: 52px;
    text-align: center;
    font-size: 18px;
  }

  .toilet .cont12 .blog_box {
    margin-top: 49px;
  }

  .toilet .cont12 .blog_box .swiper-slide {
    display: block;
    width: 336px;
  }

  .toilet .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .toilet .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 26px;
    order: 2;
    line-height: 1;
  }

  .toilet .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 20px 0 0;
    order: 3;
  }

  .toilet .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .toilet .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .toilet .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .toilet .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .toilet .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .toilet .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .toilet .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .toilet .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .toilet .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .toilet .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .toilet .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .toilet .cont12 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont13　対応エリア */
  .toilet .cont13 {
    background: var(--main-light-color);
  }

  .toilet .cont13 {
    padding: 140px 0 180px;
  }

  .toilet .cont13 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .toilet .cont13 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .toilet .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 206px;
    height: 56px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .toilet .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 100px;
  }

  .toilet .cont13 .box figure {
    position: absolute;
    left: -300px;
    top: -25px;
  }

  .toilet .cont13 .area {
    width: 565px;
    height: 328px;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 50px;
  }

  .toilet .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 6px 6px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .toilet .cont13 .area .area_list {
    text-align-last: left;
    height: 216px;
    overflow-y: auto;
    margin: 33px 10px 33px 33px;
    padding-right: 33px;
  }

  .toilet .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
  }

  .toilet .cont13 .area .area_list li {
    line-height: 1;
  }

  .toilet .cont13 .area .area_list>li {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  @media screen and (min-width: 1800px) {
  .toilet .cont13 figure {
      border-radius: 10px;
      border-right: 1px solid transparent;
      overflow: hidden;
    }
  }




/* .mado-sassi------------------------------------------------------- */
/* key */
  .mado-sassi .key .text01::after {
    background: url("img/aircon_key_text.png");
    width: 724px;
    height: 58px;
  }

  /* cont01 */
  .mado-sassi .cont01 {
    padding: 130px 0 40px;
    display: flex;
    gap: 18px;
    position: relative;
  }

  .mado-sassi .cont01 h2 {
    font-size: 24px;
    padding-left: 27px;
    position: relative;
    line-height: 1.6;
    font-weight: bold;
  }

  .mado-sassi .cont01 h2::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .mado-sassi .cont01 .text01 {
    font-size: 18px;
    line-height: 2.3;
    margin-top: 24px;
    width: 593px;
  }

  .mado-sassi .cont01 figure {
    position: absolute;
    right: -300px;
    top: 100px;
    width: 870px;
    border: 3px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  @media screen and (min-width: 1800px) {
    .mado-sassi .cont01 figure {
      border-radius: 10px;
      border-right: 3px solid var(--main-color);
    }
  }


  /* cont02 */
  .mado-sassi .cont02 {
    background: url(img/common_bg_01.png);
    padding: 140px 0 120px;
    margin-top: 120px;
  }

  .mado-sassi .cont02 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .mado-sassi .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 230px;
    top: -199px;
    right: -41px;
  }

  .mado-sassi .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/mado-sassi_deco01.png) center center / contain no-repeat;
    width: 198px;
    height: 222px;
    top: -199px;
    left: 0;
  }

  .mado-sassi .cont02 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 34px;
  }

  .mado-sassi .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text01.png) center center / cover no-repeat;
    width: 336px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .mado-sassi .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .mado-sassi .cont02 .box {
    display: flex;
    gap: 33px;
    justify-content: center;
    margin-top: 55px;
  }

  .mado-sassi .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 378px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
  }

  .mado-sassi .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;

  }

  .mado-sassi .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .mado-sassi .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .mado-sassi .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .mado-sassi .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .mado-sassi .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 21px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .mado-sassi .cont02 .box .text_box01:nth-of-type(2) h3 {
    font-size: 20px;
  }

  .mado-sassi .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .mado-sassi .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .mado-sassi .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }


  /* cont03 */
  .mado-sassi .cont03 {
    padding: 140px 0 120px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .mado-sassi .cont03 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .mado-sassi .cont03 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .mado-sassi .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .mado-sassi .cont03 .text01 {
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
    line-height: 1.8;
  }

  .mado-sassi .cont03 .item {
    position: relative;
  }

  .mado-sassi .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .mado-sassi .cont03 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mado-sassi .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .mado-sassi .cont03 .category_01,
  .mado-sassi .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
  }

  .mado-sassi .cont03 .category_01 {
    padding: 7px 22px;
    background: var(--main-color);
  }

  .mado-sassi .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .mado-sassi .cont03 .text02 {
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mado-sassi .cont03 .box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 55px auto 0;
  }

  .mado-sassi .cont03 .box .item {
    width: calc((100% - 30px) / 2);
    position: relative;
    padding-top: 220px;
  }

  .mado-sassi .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .mado-sassi .cont03 .box .img_box .before {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
  }

  .mado-sassi .cont03 .box .img_box .after {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    overflow: hidden;
    border: 1px solid var(--main-color);
  }

  .mado-sassi .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .mado-sassi .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .mado-sassi .cont03 .button {
    position: relative;
    width: 425px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .mado-sassi .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .mado-sassi .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .mado-sassi .cont03 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .mado-sassi .cont03 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1450px) {
    .mado-sassi .cont03 .box {
      gap: 60px;
      justify-content: center;
      padding: 0 40px;
    }

    .mado-sassi .cont03 .item::before {
      top: 80px;
    }
  }


  /* cont04 キッチンクリーニングの費用*/

  .mado-sassi .cont04 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .mado-sassi .cont04 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 49px;
  }

  .mado-sassi .cont04 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .mado-sassi .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .mado-sassi .cont04 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 65px;
    text-align: center;
  }

  .mado-sassi .cont04 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .mado-sassi .cont04 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .mado-sassi .cont04 .flex {
    display: flex;
    align-items: center;
  }

  .mado-sassi .cont04 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 36px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .mado-sassi .cont04 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .mado-sassi .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1;
  }

  .mado-sassi .cont04 .box .price_box .price_text01 .span01 {
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .mado-sassi .cont04 .box .price_box .price_text01 .span02 {
    font-size: 56px;
    font-weight: bold;
    color: var(--main-color);
  }

  .mado-sassi .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .mado-sassi .cont04 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .mado-sassi .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .mado-sassi .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .mado-sassi .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .mado-sassi .cont04 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .mado-sassi .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: var(--main-color);
  }

  .mado-sassi .cont04 .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 18px;
  }

  .mado-sassi .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .mado-sassi .cont04 .box .ttl {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    margin: 80px auto 30px;
    text-align: center;
    position: relative;
  }

  .mado-sassi .cont04 .box .ttl::before{
    content: "";
    background: url(img/common_deco13.png) center / cover no-repeat;
    width: 53px;
    height: 48px;
    position: absolute;
    top: -30px;
    left: 212px;
  }

  .mado-sassi .cont04 .box .option_flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 25px 25px;
    gap: 25px;
  }
  .mado-sassi .cont04 .box .option_flex .item {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    background: var(--main-light-color);
    border-radius: 10px;
    padding: 20px;
    width: 519px;
   }

  .mado-sassi .cont04 .box .option_flex .item .text_box{
    width: 280px;
   }
  .mado-sassi .cont04 .box .option_flex .item .text_box .tte01{
    font-size: 19px;
    font-weight: bold;
    padding-left: 17px;
    position: relative;
   }
  .mado-sassi .cont04 .box .option_flex .item .text_box .tte01::before{
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
   }
  .mado-sassi .cont04 .box .option_flex .item figure{
    width: 230px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }
 .mado-sassi .cont04 .box .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
  .mado-sassi .cont04 .box .option_flex .item .text_box .text02{
    margin-top: 7px;
  }

  .mado-sassi .cont04 .box .option_flex .item .text_box .text03{
    margin-right: 5px;
    text-align: right;
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--main-color);
  }
   .mado-sassi .cont04 .box .option_flex .item .text_box .text03 span{
    font-size: 40px;
    font-weight: bold;
  }
  

  .mado-sassi .cont04 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 20px;
  }

  /* cont05 セットサービス */
  .mado-sassi .cont05 {
    background: var(--main-light-color);
    padding: 130px 0 0px;
  }

  .mado-sassi .cont05 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 45px;
  }

  .mado-sassi .cont05 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .mado-sassi .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .mado-sassi .cont05 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
  }

  .mado-sassi .cont05 .text_box {
    position: relative;
    width: 1200px;
    height: 240px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 44px 62px 40px 233px;
    margin-bottom: 60px;
  }

  .mado-sassi .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
  }

  .mado-sassi .cont05 .text_box .text01 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 21px;
  }

  .mado-sassi .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .mado-sassi .cont05 .text_box .text01 .span02 {
    font-size: 34px;
    font-weight: bold;
  }

  .mado-sassi .cont05 .text_box .text02 {
    font-size: 20px;
    line-height: 1.8;
  }

  .mado-sassi .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .mado-sassi .cont05 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .mado-sassi .cont05 .box h3 span {
    font-size: 24px;
    font-weight: bold;
    padding: 5px 28px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 21px;
  }

  .mado-sassi .cont05 .box:nth-of-type(5) h3 span {
    background-color: #34baeb;
  }

  .mado-sassi .cont05 .box .flex {
    display: flex;
    align-items: center;
  }

  .mado-sassi .cont05 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 37px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .mado-sassi .cont05 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .mado-sassi .cont05 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .mado-sassi .cont05 .box .price_box .price_text01 span {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .mado-sassi .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 24px;
  }

  .mado-sassi .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .mado-sassi .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .mado-sassi .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 20px;
    line-height: 1;
  }

  .mado-sassi .cont05 .box .price_box .price_text02 span {
    font-size: 56px;
    font-weight: bold;
  }

  .mado-sassi .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .mado-sassi .cont05 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .mado-sassi .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .mado-sassi .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .mado-sassi .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .mado-sassi .cont05 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .mado-sassi .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 98px;
    background: var(--main-color);
  }

  .mado-sassi .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 130px;
  }

  .mado-sassi .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .mado-sassi .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 14px;
    padding: 9px 25px 9px 20px;
  }

  .mado-sassi .cont05 .box {
    margin-bottom: 60px;
  }
  .mado-sassi .cont05 .box:nth-of-type(5) {
    margin-bottom: 20px;
  }
  .mado-sassi .cont05 .tax_text01 {
    text-align: right;
  }


  /* cont06 あわせて頼みたいサービス */
  .mado-sassi .cont06 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .mado-sassi .cont06 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .mado-sassi .cont06 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .mado-sassi .cont06 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .mado-sassi .cont06 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .mado-sassi .cont06 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .mado-sassi .cont06 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .mado-sassi .cont06 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .mado-sassi .cont06 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .mado-sassi .cont06 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .mado-sassi .cont06 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .mado-sassi .cont06 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .mado-sassi .cont06 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .mado-sassi .cont06 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .mado-sassi .cont06 .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 32px;
  }

  .mado-sassi .cont06 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  /* cont07 その他単品*/

  .mado-sassi .cont07 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
  }

  .mado-sassi .cont07 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .mado-sassi .cont07 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .mado-sassi .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 619px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .mado-sassi .cont07 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .mado-sassi .cont07 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .mado-sassi .cont07 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .mado-sassi .cont07 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .mado-sassi .cont07 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .mado-sassi .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .mado-sassi .cont07 .option_flex .item .text_box .tte01 span {
    font-size: 18px;
    font-weight: bold;
  }

  .mado-sassi .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .mado-sassi .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .mado-sassi .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .mado-sassi .cont07 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .mado-sassi .cont07 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  .mado-sassi .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 20px;
  }

  .mado-sassi .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .mado-sassi .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .mado-sassi .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .mado-sassi .cont07 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .mado-sassi .cont07 .button a:hover::before {
    background: var(--main-color);
  }


  /* cont08選ばれる理由 */
  .mado-sassi .cont08 {
    padding: 140px 0 120px;
  }

  .mado-sassi .cont08 .inner {
    position: relative;
  }

  .mado-sassi .cont08 .inner {
    width: 900px;
    margin: 0 auto;
  }

  .mado-sassi .cont08 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .mado-sassi .cont08 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .mado-sassi .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .mado-sassi .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 22px;
    color: #1d1d1d;
    padding-left: 20px;
    height: 32px;
    line-height: 32px;
  }

  .mado-sassi .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 32px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .mado-sassi .cont08 .text01 {
    margin-top: 4px;
  }

  .mado-sassi .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 9px;
    padding: 24px 0 22px 99px;
    margin-bottom: 50px;
  }

  .mado-sassi .cont08 .box .item::before {
    position: absolute;
    content: "";
    background: url("img/reason_01.png") center center / cover no-repeat;
    width: 144px;
    height: 134px;
    left: -66px;
    top: 1px;
  }

  .mado-sassi .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .mado-sassi .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .mado-sassi .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .mado-sassi .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .mado-sassi .cont08 .box .item:first-of-type {
    margin-top: 60px;
  }

  .mado-sassi .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .mado-sassi .cont08 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .mado-sassi .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .mado-sassi .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .mado-sassi .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .mado-sassi .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont09ご利用の流れ */
  .mado-sassi .cont09 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
    /* margin: 120px auto 0px; */
    /* max-width: 1400px; */
  }

  .mado-sassi .cont09 .inner {
    position: relative;
  }

  .mado-sassi .cont09 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .mado-sassi .cont09 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .mado-sassi .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .mado-sassi .cont09 .box {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }

  .mado-sassi .cont09 .box .item {
    position: relative;
    width: 380px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 46px 30px;
  }

  .mado-sassi .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 46px;
  }

  .mado-sassi .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .mado-sassi .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .mado-sassi .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .mado-sassi .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .mado-sassi .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .mado-sassi .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .mado-sassi .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .mado-sassi .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .mado-sassi .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .mado-sassi .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .mado-sassi .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .mado-sassi .cont09 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .mado-sassi .cont09 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont10 よくある質問*/
  .mado-sassi .cont10 {
    padding: 140px 0 120px;
  }

  .mado-sassi .cont10 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .mado-sassi .cont10 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .mado-sassi .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .mado-sassi .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 55px;
  }

  .mado-sassi .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .mado-sassi .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 37px 100px 37px 152px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }

  .mado-sassi .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .mado-sassi .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .mado-sassi .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .mado-sassi .cont10 .qa_box .ans {
    display: none;
    padding-left: 152px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 52px;
    position: relative;
  }

  .mado-sassi .cont10 .button {
    position: relative;
    width: 275px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .mado-sassi .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .mado-sassi .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .mado-sassi .cont10 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .mado-sassi .cont10 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1300px) {
    .mado-sassi .cont10 {
      width: 1100px;
    }
  }


  /* cont11イークリーンについて */

  .mado-sassi .cont11 {
    background: url(img/common_bg_01.png);
    padding: 120px 0;
  }

  .mado-sassi .cont11 .inner {
    padding-top: 620px;
    position: relative;
  }

  .mado-sassi .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 233px;
    height: 184px;
    bottom: -245px;
    right: 48px;
  }

  .mado-sassi .cont11 figure {
    position: absolute;
    left: -300px;
    top: 0;
    border: 3px solid var(--main-color);
    border-left: none;
    border-radius: 0 18px 18px 0;
    width: 870px;
    height: 620px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .mado-sassi .cont11 figure img {
    object-fit: none;
  }

  .mado-sassi .cont11 .text_box {
    position: absolute;
    right: 0;
    top: 0;
    height: 560px;
    width: 680px;
    padding: 48px 0 54px 50px;
    box-sizing: border-box;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    margin: 30px auto;
    z-index: 2;
  }

  .mado-sassi .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .mado-sassi .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .mado-sassi .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .mado-sassi .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .mado-sassi .cont11 .text_box .tel,
  .mado-sassi .cont11 .text_box .mail,
  .mado-sassi .cont11 .text_box .time,
  .mado-sassi .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .mado-sassi .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .mado-sassi .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .mado-sassi .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .mado-sassi .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
  }

  .mado-sassi .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .mado-sassi .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .mado-sassi .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .mado-sassi .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .mado-sassi .cont11 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .mado-sassi .cont11 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (min-width: 1800px) {
    .mado-sassi .cont11 figure {
      border-left: 3px solid var(--main-color);
      border-radius: 18px;
    }
  }

  /* cont12ブログ一覧 */

  .mado-sassi .cont12 {
    padding: 140px 0 120px;
    z-index: 10;
    position: relative;
  }

  .mado-sassi .cont12 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .mado-sassi .cont12 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .mado-sassi .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .mado-sassi .cont12 .text01 {
    margin-top: 52px;
    text-align: center;
    font-size: 18px;
  }

  .mado-sassi .cont12 .blog_box {
    margin-top: 49px;
  }

  .mado-sassi .cont12 .blog_box .swiper-slide {
    display: block;
    width: 336px;
  }

  .mado-sassi .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .mado-sassi .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 26px;
    order: 2;
    line-height: 1;
  }

  .mado-sassi .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 20px 0 0;
    order: 3;
  }

  .mado-sassi .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .mado-sassi .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .mado-sassi .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .mado-sassi .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .mado-sassi .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .mado-sassi .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .mado-sassi .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .mado-sassi .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .mado-sassi .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .mado-sassi .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .mado-sassi .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .mado-sassi .cont12 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont13　対応エリア */
  .mado-sassi .cont13 {
    background: var(--main-light-color);
  }

  .mado-sassi .cont13 {
    padding: 140px 0 180px;
  }

  .mado-sassi .cont13 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .mado-sassi .cont13 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .mado-sassi .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 206px;
    height: 56px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .mado-sassi .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 100px;
  }

  .mado-sassi .cont13 .box figure {
    position: absolute;
    left: -300px;
    top: -25px;
  }

  .mado-sassi .cont13 .area {
    width: 565px;
    height: 328px;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 50px;
  }

  .mado-sassi .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 6px 6px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .mado-sassi .cont13 .area .area_list {
    text-align-last: left;
    height: 216px;
    overflow-y: auto;
    margin: 33px 10px 33px 33px;
    padding-right: 33px;
  }

  .mado-sassi .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
  }

  .mado-sassi .cont13 .area .area_list li {
    line-height: 1;
  }

  .mado-sassi .cont13 .area .area_list>li {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  @media screen and (min-width: 1800px) {
  .mado-sassi .cont13 figure {
      border-radius: 10px;
      border-right: 1px solid transparent;
      overflow: hidden;
    }
  }


   /*網戸張替え---------------------------------------------- */

  /* key */
  .amido .key .text01::after {
    background: url("img/aircon_key_text.png");
    width: 724px;
    height: 58px;
  }

  /* cont01 */
  .amido .cont01 {
    padding: 130px 0 95px;
    display: flex;
    gap: 18px;
    position: relative;
  }

  .amido .cont01 h2 {
    font-size: 24px;
    padding-left: 27px;
    position: relative;
    line-height: 1.6;
    font-weight: bold;
  }

  .amido .cont01 h2::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .amido .cont01 .text01 {
    font-size: 18px;
    line-height: 2.2;
    margin-top: 24px;
    width: 593px;
    text-align: justify;
  }

  .amido .cont01 figure {
    position: absolute;
    right: -300px;
    top: 100px;
    width: 870px;
    border: 3px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  @media screen and (min-width: 1800px) {
    .amido .cont01 figure {
      border-radius: 10px;
      border-right: 3px solid var(--main-color);
    }
  }


  /* cont02 */
  .amido .cont02 {
    background: url(img/common_bg_01.png);
    padding: 140px 0 120px;
    margin-top: 120px;
  }

  .amido .cont02 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .amido .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/amido_deco02.png) center center / cover no-repeat;
    width: 78px;
    height: 221px;
    top: -210px;
    right: 0px;
  }

  .amido .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/amido_deco01.png) center center / cover no-repeat;
    width: 150px;
    height: 110px;
    top: -150px;
    left: 20px;
    transform: scale(1.3);
    }
  

  .amido .cont02 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 34px;
  }

  .amido .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text01.png) center center / cover no-repeat;
    width: 336px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .amido .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .amido .cont02 .box {
    display: flex;
    gap: 33px;
    justify-content: center;
    margin-top: 55px;
  }

  .amido .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 378px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
  }

  .amido .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;

  }

  .amido .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .amido .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .amido .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .amido .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .amido .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 21px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .amido .cont02 .box .text_box01:nth-of-type(2) h3 {
    font-size: 20px;
  }

  .amido .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .amido .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .amido .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }


  /* cont03 */
  .amido .cont03 {
    padding: 140px 0 120px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .amido .cont03 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .amido .cont03 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .amido .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .amido .cont03 .text01 {
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
    line-height: 1.8;
  }

  .amido .cont03 .item {
    position: relative;
  }

  .amido .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .amido .cont03 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .amido .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .amido .cont03 .category_01,
  .amido .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
  }

  .amido .cont03 .category_01 {
    padding: 7px 22px;
    background: var(--main-color);
  }

  .amido .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .amido .cont03 .text02 {
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .amido .cont03 .box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 55px auto 0;
  }

  .amido .cont03 .box .item {
    width: calc((100% - 30px) / 2);
    position: relative;
    padding-top: 220px;
  }

  .amido .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .amido .cont03 .box .img_box .before {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
  }

  .amido .cont03 .box .img_box .after {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    overflow: hidden;
    border: 1px solid var(--main-color);
  }

  .amido .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .amido .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .amido .cont03 .button {
    position: relative;
    width: 425px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .amido .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .amido .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .amido .cont03 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .amido .cont03 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1450px) {
    .amido .cont03 .box {
      gap: 60px;
      justify-content: center;
      padding: 0 40px;
    }

    .amido .cont03 .item::before {
      top: 80px;
    }
  }


  /* cont04 キッチンクリーニングの費用*/

  .amido .cont04 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .amido .cont04 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 49px;
  }

  .amido .cont04 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .amido .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .amido .cont04 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 65px;
    text-align: center;
  }

  .amido .cont04 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .amido .cont04 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .amido .cont04 .flex {
    display: flex;
    align-items: center;
  }

  .amido .cont04 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 36px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .amido .cont04 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .amido .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1.3;
    position: relative;
    padding-left: 250px;
  }

  .amido .cont04 .box .price_box .price_text01:first-of-type:before {
    content: "";
    background: url(img/amido_deco03.png);
    width:240px;
    height: 55px;
    position: absolute;
    top: 17px;
    left: 0px;
    transform: scale(0.8);
  }

  .amido .cont04 .box .price_box .price_text01:nth-of-type(2):before {
    content: "";
    background: url(img/amido_deco04.png);
    width:240px;
    height: 55px;
    position: absolute;
    top: 17px;
    left: 0px;
    transform: scale(0.8);
  }
  
  .amido .cont04 .box .price_box .price_text01 .span01 {
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 34px;
  }

  .amido .cont04 .box .price_box .price_text01 .span02 {
    font-size: 48px;
    font-weight: bold;
    color: var(--main-color);
  }

  .amido .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .amido .cont04 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .amido .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .amido .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .amido .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .amido .cont04 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .amido .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 29px;
    background: var(--main-color);
  }

  .amido .cont04 .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 18px;
  }

  .amido .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .amido .cont04 .box:nth-of-type(1) {
    margin-bottom: 50px;
  }

  .amido .cont04 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 36px;
  }

  /* cont05 セットサービス */
  .amido .cont05 {
    background: var(--main-light-color);
    padding: 130px 0 0px;
  }

  .amido .cont05 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 45px;
  }

  .amido .cont05 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .amido .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .amido .cont05 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
  }

  .amido .cont05 .text_box {
    position: relative;
    width: 1200px;
    height: 240px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 44px 62px 40px 233px;
    margin-bottom: 60px;
  }

  .amido .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
  }

  .amido .cont05 .text_box .text01 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 15px 15px 65px;
  }

  .amido .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .amido .cont05 .text_box .text01 .span02 {
    font-size: 40px;
    font-weight: bold;
  }

  .amido .cont05 .text_box .text02 {
    font-size: 20px;
    line-height: 1.8;
  }

  .amido .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    margin-bottom: 50px;
  }

    .amido .cont05 .box:last-of-type {
    margin-bottom: 0;
  }


  .amido .cont05 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .amido .cont05 .box h3 span {
    font-size: 24px;
    font-weight: bold;
    padding: 5px 28px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 21px;
  }

  .amido .cont05 .box:nth-of-type(5) h3 span {
    background-color: #34baeb;
  }

  .amido .cont05 .box .flex {
    display: flex;
    align-items: center;
  }

  .amido .cont05 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 37px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .amido .cont05 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .amido .cont05 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .amido .cont05 .box .price_box .price_text01 span {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .amido .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 24px;
  }

  .amido .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .amido .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .amido .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 20px;
    line-height: 1;
  }

  .amido .cont05 .box .price_box .price_text02 span {
    font-size: 56px;
    font-weight: bold;
  }

  .amido .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .amido .cont05 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .amido .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .amido .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .amido .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .amido .cont05 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .amido .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 98px;
    background: var(--main-color);
  }

  .amido .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 64px;
  }

  .amido .cont05 .box:nth-of-type(4) .price_box .range_box dt::after {
    height: 60px;
  }

    .amido .cont05 .box:nth-of-type(5) .price_box .range_box dt::after {
    height: 150px;
  }

  .amido .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .amido .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 14px;
    padding: 9px 25px 9px 20px;
  }

  .amido .cont05 .box {
    margin-bottom: 70px;
  }


  /* cont06 あわせて頼みたいサービス */
  .amido .cont06 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .amido .cont06 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .amido .cont06 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .amido .cont06 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/sentakuki_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .amido .cont06 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .amido .cont06 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .amido .cont06 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .amido .cont06 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 23px;
  }

  .amido .cont06 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .amido .cont06 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .amido .cont06 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .amido .cont06 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .amido .cont06 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .amido .cont06 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .amido .cont06 .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 32px;
  }

  .amido .cont06 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  /* cont07 その他単品*/

  .amido .cont07 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
  }

  .amido .cont07 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .amido .cont07 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .amido .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/sentakuki_text03.png) center center / cover no-repeat;
    width: 619px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .amido .cont07 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .amido .cont07 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .amido .cont07 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .amido .cont07 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .amido .cont07 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .amido .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .amido .cont07 .option_flex .item .text_box .tte01 span {
    font-size: 18px;
    font-weight: bold;
  }

  .amido .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .amido .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .amido .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .amido .cont07 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .amido .cont07 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  .amido .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 36px;
  }

  .amido .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .amido .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .amido .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .amido .cont07 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .amido .cont07 .button a:hover::before {
    background: var(--main-color);
  }


  /* cont08選ばれる理由 */
  .amido .cont08 {
    padding: 140px 0 120px;
  }

  .amido .cont08 .inner {
    position: relative;
  }

  .amido .cont08 .inner {
    width: 900px;
    margin: 0 auto;
  }

  .amido .cont08 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .amido .cont08 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .amido .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .amido .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 22px;
    color: #1d1d1d;
    padding-left: 20px;
    height: 32px;
    line-height: 32px;
  }

  .amido .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 32px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .amido .cont08 .text01 {
    margin-top: 4px;
  }

  .amido .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 9px;
    padding: 24px 0 22px 99px;
    margin-bottom: 50px;
  }

  .amido .cont08 .box .item::before {
    position: absolute;
    content: "";
    background: url("img/reason_01.png") center center / cover no-repeat;
    width: 144px;
    height: 134px;
    left: -66px;
    top: 1px;
  }

  .amido .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .amido .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .amido .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .amido .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .amido .cont08 .box .item:first-of-type {
    margin-top: 60px;
  }

  .amido .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .amido .cont08 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .amido .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .amido .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .amido .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .amido .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont09ご利用の流れ */
  .amido .cont09 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
    /* margin: 120px auto 0px; */
    /* max-width: 1400px; */
  }

  .amido .cont09 .inner {
    position: relative;
  }

  .amido .cont09 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .amido .cont09 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .amido .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .amido .cont09 .box {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }

  .amido .cont09 .box .item {
    position: relative;
    width: 380px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 46px 30px;
  }

  .amido .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 46px;
  }

  .amido .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .amido .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .amido .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .amido .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .amido .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .amido .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .amido .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .amido .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .amido .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .amido .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .amido .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .amido .cont09 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .amido .cont09 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont10 よくある質問*/
  .amido .cont10 {
    padding: 140px 0 120px;
  }

  .amido .cont10 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .amido .cont10 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .amido .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .amido .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 55px;
  }

  .amido .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .amido .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 37px 100px 37px 152px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }

  .amido .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .amido .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .amido .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .amido .cont10 .qa_box .ans {
    display: none;
    padding-left: 152px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 52px;
    position: relative;
  }

  .amido .cont10 .button {
    position: relative;
    width: 275px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .amido .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .amido .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .amido .cont10 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .amido .cont10 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1300px) {
    .amido .cont10 {
      width: 1100px;
    }
  }


  /* cont11イークリーンについて */

  .amido .cont11 {
    background: url(img/common_bg_01.png);
    padding: 120px 0;
  }

  .amido .cont11 .inner {
    padding-top: 620px;
    position: relative;
  }

  .amido .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 233px;
    height: 184px;
    bottom: -245px;
    right: 48px;
  }

  .amido .cont11 figure {
    position: absolute;
    left: -300px;
    top: 0;
    border: 3px solid var(--main-color);
    border-left: none;
    border-radius: 0 18px 18px 0;
    width: 870px;
    height: 620px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .amido .cont11 figure img {
    object-fit: none;
  }

  .amido .cont11 .text_box {
    position: absolute;
    right: 0;
    top: 0;
    height: 560px;
    width: 680px;
    padding: 48px 0 54px 50px;
    box-sizing: border-box;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    margin: 30px auto;
    z-index: 2;
  }

  .amido .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .amido .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .amido .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .amido .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .amido .cont11 .text_box .tel,
  .amido .cont11 .text_box .mail,
  .amido .cont11 .text_box .time,
  .amido .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .amido .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .amido .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .amido .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .amido .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
  }

  .amido .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .amido .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .amido .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .amido .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .amido .cont11 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .amido .cont11 .button a:hover::before {
    background: var(--main-color);
  }


  /* cont12ブログ一覧 */

  .amido .cont12 {
    padding: 140px 0 120px;
    z-index: 10;
    position: relative;
  }

  .amido .cont12 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .amido .cont12 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .amido .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .amido .cont12 .text01 {
    margin-top: 52px;
    text-align: center;
    font-size: 18px;
  }

  .amido .cont12 .blog_box {
    margin-top: 49px;
  }

  .amido .cont12 .blog_box .swiper-slide {
    display: block;
    width: 336px;
  }

  .amido .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .amido .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 26px;
    order: 2;
    line-height: 1;
  }

  .amido .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 20px 0 0;
    order: 3;
  }

  .amido .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .amido .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .amido .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .amido .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .amido .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .amido .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .amido .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .amido .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .amido .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .amido .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .amido .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .amido .cont12 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont13　対応エリア */
  .amido .cont13 {
    background: var(--main-light-color);
  }

  .amido .cont13 {
    padding: 140px 0 180px;
  }

  .amido .cont13 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .amido .cont13 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .amido .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 206px;
    height: 56px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .amido .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 100px;
  }

  .amido .cont13 .box figure {
    position: absolute;
    left: -300px;
    top: -25px;
  }

  .amido .cont13 .area {
    width: 565px;
    height: 328px;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 50px;
  }

  .amido .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 6px 6px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .amido .cont13 .area .area_list {
    text-align-last: left;
    height: 216px;
    overflow-y: auto;
    margin: 33px 10px 33px 33px;
    padding-right: 33px;
  }

  .amido .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
  }

  .amido .cont13 .area .area_list li {
    line-height: 1;
  }

  .amido .cont13 .area .area_list>li {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  @media screen and (min-width: 1800px) {
    .amido .cont13 figure {
      border-radius: 10px;
      border-right: 1px solid transparent;
      overflow: hidden;
    }
  }




  /* 障子・ふすま・たたみ------------------------------------------------------- */
/* key */
  .shoji-fusuma-tatami .key .text01::after {
    background: url("img/aircon_key_text.png");
    width: 724px;
    height: 58px;
  }

  /* cont01 */
  .shoji-fusuma-tatami .cont01 {
    padding: 130px 0 40px;
    display: flex;
    gap: 18px;
    position: relative;
  }

  .shoji-fusuma-tatami .cont01 h2 {
    font-size: 24px;
    padding-left: 27px;
    position: relative;
    line-height: 1.6;
    font-weight: bold;
  }

  .shoji-fusuma-tatami .cont01 h2::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .shoji-fusuma-tatami .cont01 .text01 {
    font-size: 18px;
    line-height: 2.3;
    margin-top: 24px;
    width: 593px;
  }

  .shoji-fusuma-tatami .cont01 figure {
    position: absolute;
    right: -300px;
    top: 100px;
    width: 870px;
    border: 3px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  @media screen and (min-width: 1800px) {
    .shoji-fusuma-tatami .cont01 figure {
      border-radius: 10px;
      border-right: 3px solid var(--main-color);
    }
  }


  /* cont02 */
  .shoji-fusuma-tatami .cont02 {
    background: url(img/common_bg_01.png);
    padding: 140px 0 120px;
    margin-top: 120px;
  }

  .shoji-fusuma-tatami .cont02 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .shoji-fusuma-tatami .cont02 h2::before {
      position: absolute;
      content: "";
      background: url(img/shoji-fusuma-tatami_deco02.png) center center / cover no-repeat;
      width: 158px;
      height: 230px;
      top: -230px;
      right: 1px;
  }

  .shoji-fusuma-tatami .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/shoji-fusuma-tatami_deco01.png) center center / cover no-repeat;
    width: 211px;
    height: 137px;
    top: -190px;
    left: 20px;
  }

  .shoji-fusuma-tatami .cont02 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 34px;
  }

  .shoji-fusuma-tatami .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text01.png) center center / cover no-repeat;
    width: 336px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .shoji-fusuma-tatami .cont02 .box {
    display: flex;
    gap: 33px;
    justify-content: center;
    margin-top: 55px;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 378px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;

  }

  .shoji-fusuma-tatami .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 21px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01:nth-of-type(2) h3 {
    font-size: 20px;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }


  /* cont03 */
  .shoji-fusuma-tatami .cont03 {
    padding: 140px 0 120px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .shoji-fusuma-tatami .cont03 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .shoji-fusuma-tatami .cont03 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .shoji-fusuma-tatami .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont03 .text01 {
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
    line-height: 1.8;
  }

  .shoji-fusuma-tatami .cont03 .item {
    position: relative;
  }

  .shoji-fusuma-tatami .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .shoji-fusuma-tatami .cont03 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .shoji-fusuma-tatami .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .shoji-fusuma-tatami .cont03 .category_01,
  .shoji-fusuma-tatami .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
  }

  .shoji-fusuma-tatami .cont03 .category_01 {
    padding: 7px 22px;
    background: var(--main-color);
  }

  .shoji-fusuma-tatami .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .shoji-fusuma-tatami .cont03 .text02 {
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .shoji-fusuma-tatami .cont03 .box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 55px auto 0;
  }

  .shoji-fusuma-tatami .cont03 .box .item {
    width: calc((100% - 30px) / 2);
    position: relative;
    padding-top: 220px;
  }

  .shoji-fusuma-tatami .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .shoji-fusuma-tatami .cont03 .box .img_box .before {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
  }

  .shoji-fusuma-tatami .cont03 .box .img_box .after {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    overflow: hidden;
    border: 1px solid var(--main-color);
  }

  .shoji-fusuma-tatami .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .shoji-fusuma-tatami .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .shoji-fusuma-tatami .cont03 .button {
    position: relative;
    width: 425px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .shoji-fusuma-tatami .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .shoji-fusuma-tatami .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .shoji-fusuma-tatami .cont03 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .shoji-fusuma-tatami .cont03 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1450px) {
    .shoji-fusuma-tatami .cont03 .box {
      gap: 60px;
      justify-content: center;
      padding: 0 40px;
    }

    .shoji-fusuma-tatami .cont03 .item::before {
      top: 80px;
    }
  }


  /* cont04 障子・ふすま・畳張替えの費用*/

  .shoji-fusuma-tatami .cont04 {
     padding: 0 0 120px;
     background: var(--main-light-color);
  }
   .shoji-fusuma-tatami .cont04 .inner {
    margin: 0 auto 120px;
    padding-top: 120px;

  }

  .shoji-fusuma-tatami .cont04 .inner:last-of-type {
    margin-block: 0;
  }

  .shoji-fusuma-tatami .cont04 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 49px;
    position: relative;
  }

  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(1) h2::before {
    position: absolute;
    content: "";
    background: url(img/shoji-fusuma-tatami_deco04.png) center center / cover no-repeat;
    width: 84px;
    height: 220px;
    top: -229px;
    right: 0px;
  }

  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(1)::after {
    position: absolute;
    content: "";
    background: url(img/shoji-fusuma-tatami_deco03.png) center center / cover no-repeat;
    width: 188px;
    height: 130px;
    top: -52px;
    left: 0;
  }
  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2)::before {
    position: absolute;
    content: "";
    background: url(img/shoji-fusuma-tatami_deco05.png) center center / cover no-repeat;
    width: 84px;
    height: 226px;
    top: -84px;
    right: 5px;
  }

  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2)::after {
    position: absolute;
    content: "";
    background: url(img/shoji-fusuma-tatami_deco03.png) center center / cover no-repeat;
    width: 188px;
    height: 130px;
    top: -36px;
    left: 0;
  }
  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(3)::before {
    position: absolute;
    content: "";
    background: url(img/shoji-fusuma-tatami_deco07.png) center center / cover no-repeat;
    width: 251px;
    height: 80px;
    top: -4px;
    right: 0px;
  }

  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(3)::after {
    position: absolute;
    content: "";
    background: url(img/shoji-fusuma-tatami_deco06.png) center center / cover no-repeat;
    top: 0px;
    width: 210px;
    height: 108px;
    left: 7px;
  }

  .shoji-fusuma-tatami .cont04 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .shoji-fusuma-tatami .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont04 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
  }

  .shoji-fusuma-tatami .cont04 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .shoji-fusuma-tatami .cont04 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .shoji-fusuma-tatami .cont04 .flex {
    display: flex;
    align-items: center;
  }

  .shoji-fusuma-tatami .cont04 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 36px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .price_text01 .span01 {
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .price_text01 .span02 {
    font-size: 56px;
    font-weight: bold;
    color: var(--main-color);
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 121px;
    background: var(--main-color);
  }

  .shoji-fusuma-tatami .cont04 .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 18px;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .shoji-fusuma-tatami .cont04 .box:nth-of-type(1) {
    margin-bottom: 60px;
  }

  .shoji-fusuma-tatami .cont04 .box .ttl {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    margin: 80px auto 30px;
    text-align: center;
    position: relative;
  }

  .shoji-fusuma-tatami .cont04 .box .ttl::before{
    content: "";
    background: url(img/common_deco13.png) center / cover no-repeat;
    width: 53px;
    height: 48px;
    position: absolute;
    top: -44px;
    left: 299px;
  }

  .shoji-fusuma-tatami .cont04 .box .class_box {
    display: flex;
    flex-wrap: wrap;
    margin: 0 25px 25px;
    gap: 25px;
  }
  .shoji-fusuma-tatami .cont04 .box .class_box .service_box {
    background: var(--main-light-color);
    display: flex;
    justify-content: space-between;
    width: 1000px;
    height: 65px;
    margin: 0 auto;
    text-align: center;
   }
  .shoji-fusuma-tatami .cont04 .box .class_box .service_box dt {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    align-self: center;
    position: relative;
    padding-left: 40px;
   }
  .shoji-fusuma-tatami .cont04 .box .class_box .service_box dt::before{
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 27px;
    border-radius: 2px;
    background: var(--main-color);
   }
   .shoji-fusuma-tatami .cont04 .box .class_box .service_box dd {
    font-size: 30px;
    font-weight: bold;
    text-align: right;
    align-self: center;
    position: relative;
    padding-right: 20px;
    color: #06aa5f;
   }

  .shoji-fusuma-tatami .cont04 .inner .box .class_box .service_box .span03{
    font-weight: bold;
   }
    
   .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box  {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 1000px;
    margin: 0 auto;
    text-align: center;
   }
   
   .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box{
    background: var(--main-light-color);
    width: 300px;
    height: 290px;
    padding: 20px;
    border: none;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
   }

  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box figure{
    width: 260px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden; 
  }
 .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box figure img{
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box .price{
    display: flex;
    width: 260px;
    justify-content: space-between;
    position: relative;
  }
   .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box:nth-of-type(1) .price::before{
    content: "";
    background: url(img/shoji-fusuma-tatami_deco08.png) center / cover no-repeat;
    width: 109px;
    height: 32px;
    position: absolute;
    top: 54px;
    left: 10px;
  }
   .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box:nth-of-type(2) .price::before{
    content: "";
    background: url(img/shoji-fusuma-tatami_deco09.png) center / cover no-repeat;
    width: 162px;
    height: 32px;
    position: absolute;
    top: 54px;
    left: 10px;
  }
   .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box:nth-of-type(3) .price::before{
    content: "";
    background: url(img/shoji-fusuma-tatami_deco10.png) center / cover no-repeat;
    width: 172px;
    height: 32px;
    position: absolute;
    top: 54px;
    left: 10px;
  }
  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box .price .ttl01{
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    align-self: center;
    position: relative;
    padding-left: 20px;
  }
  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box .price .ttl01::before{
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    border-radius: 2px;
    background: var(--main-color);
  }
   .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box .price .text03{
    font-size: 30px;
    font-weight: bold;
    text-align: right;
    align-self: center;
    position: relative;
    color: #06aa5f;
  }

  .shoji-fusuma-tatami .cont04 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 20px;
  }

  /* cont05 セットサービス */
  .shoji-fusuma-tatami .cont05 {
    padding: 130px 0 120px;
  }

  .shoji-fusuma-tatami .cont05 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 45px;
  }

  .shoji-fusuma-tatami .cont05 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .shoji-fusuma-tatami .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont05 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
  }

  .shoji-fusuma-tatami .cont05 .text_box {
    position: relative;
    width: 1200px;
    height: 240px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 44px 62px 40px 233px;
    margin-bottom: 60px;
  }

  .shoji-fusuma-tatami .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
  }

  .shoji-fusuma-tatami .cont05 .text_box .text01 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 21px;
  }

  .shoji-fusuma-tatami .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .shoji-fusuma-tatami .cont05 .text_box .text01 .span02 {
    font-size: 34px;
    font-weight: bold;
  }

  .shoji-fusuma-tatami .cont05 .text_box .text02 {
    font-size: 20px;
    line-height: 1.8;
  }

  .shoji-fusuma-tatami .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .shoji-fusuma-tatami .cont05 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .shoji-fusuma-tatami .cont05 .box h3 span {
    font-size: 24px;
    font-weight: bold;
    padding: 5px 28px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 21px;
  }

  .shoji-fusuma-tatami .cont05 .box:nth-of-type(3) h3 span {
    background-color: #34baeb;
  }

  .shoji-fusuma-tatami .cont05 .box .flex {
    display: flex;
    align-items: center;
  }

  .shoji-fusuma-tatami .cont05 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 37px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .price_text01 span {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 24px;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 20px;
    line-height: 1;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .price_text02 span {
    font-size: 56px;
    font-weight: bold;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 98px;
    background: var(--main-color);
  }

  .shoji-fusuma-tatami .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 130px;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .shoji-fusuma-tatami .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 14px;
    padding: 9px 25px 9px 20px;
  }

  .shoji-fusuma-tatami .cont05 .box {
    margin-bottom: 60px;
  }
  .shoji-fusuma-tatami .cont05 .box:nth-of-type(5) {
    margin-bottom: 20px;
  }
  .shoji-fusuma-tatami .cont05 .tax_text01 {
    text-align: right;
  }


  /* cont06 あわせて頼みたいサービス */
  .shoji-fusuma-tatami .cont06 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .shoji-fusuma-tatami .cont06 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .shoji-fusuma-tatami .cont06 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .shoji-fusuma-tatami .cont06 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont06 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .shoji-fusuma-tatami .cont06 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .shoji-fusuma-tatami .cont06 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .shoji-fusuma-tatami .cont06 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .shoji-fusuma-tatami .cont06 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .shoji-fusuma-tatami .cont06 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .shoji-fusuma-tatami .cont06 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .shoji-fusuma-tatami .cont06 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .shoji-fusuma-tatami .cont06 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .shoji-fusuma-tatami .cont06 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .shoji-fusuma-tatami .cont06 .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 32px;
  }

  .shoji-fusuma-tatami .cont06 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  /* cont07 その他単品*/

  .shoji-fusuma-tatami .cont07 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
  }

  .shoji-fusuma-tatami .cont07 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .shoji-fusuma-tatami .cont07 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .shoji-fusuma-tatami .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 619px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont07 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .shoji-fusuma-tatami .cont07 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 24px;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item .text_box .tte01 span {
    font-size: 18px;
    font-weight: bold;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  .shoji-fusuma-tatami .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 20px;
  }

  .shoji-fusuma-tatami .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .shoji-fusuma-tatami .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .shoji-fusuma-tatami .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .shoji-fusuma-tatami .cont07 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .shoji-fusuma-tatami .cont07 .button a:hover::before {
    background: var(--main-color);
  }


  /* cont08選ばれる理由 */
  .shoji-fusuma-tatami .cont08 {
    padding: 140px 0 120px;
  }

  .shoji-fusuma-tatami .cont08 .inner {
    position: relative;
  }

  .shoji-fusuma-tatami .cont08 .inner {
    width: 900px;
    margin: 0 auto;
  }

  .shoji-fusuma-tatami .cont08 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .shoji-fusuma-tatami .cont08 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .shoji-fusuma-tatami .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 22px;
    color: #1d1d1d;
    padding-left: 20px;
    height: 32px;
    line-height: 32px;
  }

  .shoji-fusuma-tatami .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 32px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .shoji-fusuma-tatami .cont08 .text01 {
    margin-top: 4px;
  }

  .shoji-fusuma-tatami .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 9px;
    padding: 24px 0 22px 99px;
    margin-bottom: 50px;
  }

  .shoji-fusuma-tatami .cont08 .box .item::before {
    position: absolute;
    content: "";
    background: url("img/reason_01.png") center center / cover no-repeat;
    width: 144px;
    height: 134px;
    left: -66px;
    top: 1px;
  }

  .shoji-fusuma-tatami .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .shoji-fusuma-tatami .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .shoji-fusuma-tatami .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .shoji-fusuma-tatami .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .shoji-fusuma-tatami .cont08 .box .item:first-of-type {
    margin-top: 60px;
  }

  .shoji-fusuma-tatami .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .shoji-fusuma-tatami .cont08 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .shoji-fusuma-tatami .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .shoji-fusuma-tatami .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .shoji-fusuma-tatami .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .shoji-fusuma-tatami .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont09ご利用の流れ */
  .shoji-fusuma-tatami .cont09 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
    /* margin: 120px auto 0px; */
    /* max-width: 1400px; */
  }

  .shoji-fusuma-tatami .cont09 .inner {
    position: relative;
  }

  .shoji-fusuma-tatami .cont09 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .shoji-fusuma-tatami .cont09 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .shoji-fusuma-tatami .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont09 .box {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }

  .shoji-fusuma-tatami .cont09 .box .item {
    position: relative;
    width: 380px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 46px 30px;
  }

  .shoji-fusuma-tatami .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 46px;
  }

  .shoji-fusuma-tatami .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .shoji-fusuma-tatami .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .shoji-fusuma-tatami .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .shoji-fusuma-tatami .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .shoji-fusuma-tatami .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .shoji-fusuma-tatami .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .shoji-fusuma-tatami .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .shoji-fusuma-tatami .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .shoji-fusuma-tatami .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .shoji-fusuma-tatami .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .shoji-fusuma-tatami .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .shoji-fusuma-tatami .cont09 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .shoji-fusuma-tatami .cont09 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont10 よくある質問*/
  .shoji-fusuma-tatami .cont10 {
    padding: 140px 0 120px;
  }

  .shoji-fusuma-tatami .cont10 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .shoji-fusuma-tatami .cont10 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .shoji-fusuma-tatami .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 55px;
  }

  .shoji-fusuma-tatami .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .shoji-fusuma-tatami .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 37px 100px 37px 152px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }

  .shoji-fusuma-tatami .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .shoji-fusuma-tatami .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .shoji-fusuma-tatami .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .shoji-fusuma-tatami .cont10 .qa_box .ans {
    display: none;
    padding-left: 152px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 52px;
    position: relative;
  }

  .shoji-fusuma-tatami .cont10 .button {
    position: relative;
    width: 275px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .shoji-fusuma-tatami .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .shoji-fusuma-tatami .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .shoji-fusuma-tatami .cont10 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .shoji-fusuma-tatami .cont10 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1300px) {
    .shoji-fusuma-tatami .cont10 {
      width: 1100px;
    }
  }


  /* cont11イークリーンについて */

  .shoji-fusuma-tatami .cont11 {
    background: url(img/common_bg_01.png);
    padding: 120px 0;
  }

  .shoji-fusuma-tatami .cont11 .inner {
    padding-top: 620px;
    position: relative;
  }

  .shoji-fusuma-tatami .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 233px;
    height: 184px;
    bottom: -245px;
    right: 48px;
  }

  .shoji-fusuma-tatami .cont11 figure {
    position: absolute;
    left: -300px;
    top: 0;
    border: 3px solid var(--main-color);
    border-left: none;
    border-radius: 0 18px 18px 0;
    width: 870px;
    height: 620px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .shoji-fusuma-tatami .cont11 figure img {
    object-fit: none;
  }

  .shoji-fusuma-tatami .cont11 .text_box {
    position: absolute;
    right: 0;
    top: 0;
    height: 560px;
    width: 680px;
    padding: 48px 0 54px 50px;
    box-sizing: border-box;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    margin: 30px auto;
    z-index: 2;
  }

  .shoji-fusuma-tatami .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .shoji-fusuma-tatami .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .shoji-fusuma-tatami .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .shoji-fusuma-tatami .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .shoji-fusuma-tatami .cont11 .text_box .tel,
  .shoji-fusuma-tatami .cont11 .text_box .mail,
  .shoji-fusuma-tatami .cont11 .text_box .time,
  .shoji-fusuma-tatami .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .shoji-fusuma-tatami .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .shoji-fusuma-tatami .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .shoji-fusuma-tatami .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .shoji-fusuma-tatami .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
  }

  .shoji-fusuma-tatami .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .shoji-fusuma-tatami .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .shoji-fusuma-tatami .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .shoji-fusuma-tatami .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .shoji-fusuma-tatami .cont11 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .shoji-fusuma-tatami .cont11 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (min-width: 1800px) {
    .shoji-fusuma-tatami .cont11 figure {
      border-left: 3px solid var(--main-color);
      border-radius: 18px;
    }
  }

  /* cont12ブログ一覧 */

  .shoji-fusuma-tatami .cont12 {
    padding: 140px 0 120px;
    z-index: 10;
    position: relative;
  }

  .shoji-fusuma-tatami .cont12 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .shoji-fusuma-tatami .cont12 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .shoji-fusuma-tatami .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont12 .text01 {
    margin-top: 52px;
    text-align: center;
    font-size: 18px;
  }

  .shoji-fusuma-tatami .cont12 .blog_box {
    margin-top: 49px;
  }

  .shoji-fusuma-tatami .cont12 .blog_box .swiper-slide {
    display: block;
    width: 336px;
  }

  .shoji-fusuma-tatami .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .shoji-fusuma-tatami .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 26px;
    order: 2;
    line-height: 1;
  }

  .shoji-fusuma-tatami .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 20px 0 0;
    order: 3;
  }

  .shoji-fusuma-tatami .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .shoji-fusuma-tatami .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .shoji-fusuma-tatami .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .shoji-fusuma-tatami .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .shoji-fusuma-tatami .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .shoji-fusuma-tatami .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .shoji-fusuma-tatami .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .shoji-fusuma-tatami .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .shoji-fusuma-tatami .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .shoji-fusuma-tatami .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .shoji-fusuma-tatami .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .shoji-fusuma-tatami .cont12 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont13　対応エリア */
  .shoji-fusuma-tatami .cont13 {
    background: var(--main-light-color);
  }

  .shoji-fusuma-tatami .cont13 {
    padding: 140px 0 180px;
  }

  .shoji-fusuma-tatami .cont13 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .shoji-fusuma-tatami .cont13 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .shoji-fusuma-tatami .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 206px;
    height: 56px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 100px;
  }

  .shoji-fusuma-tatami .cont13 .box figure {
    position: absolute;
    left: -300px;
    top: -25px;
  }

  .shoji-fusuma-tatami .cont13 .area {
    width: 565px;
    height: 328px;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 50px;
  }

  .shoji-fusuma-tatami .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 6px 6px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .shoji-fusuma-tatami .cont13 .area .area_list {
    text-align-last: left;
    height: 216px;
    overflow-y: auto;
    margin: 33px 10px 33px 33px;
    padding-right: 33px;
  }

  .shoji-fusuma-tatami .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
  }

  .shoji-fusuma-tatami .cont13 .area .area_list li {
    line-height: 1;
  }

  .shoji-fusuma-tatami .cont13 .area .area_list>li {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  @media screen and (min-width: 1800px) {
  .shoji-fusuma-tatami .cont13 figure {
      border-radius: 10px;
      border-right: 1px solid transparent;
      overflow: hidden;
    }
  }



    /*賃貸不動産退去時クリーニング---------------------------------- */

  /* key */
  .chintai .key .text01::after {
    background: url("img/aircon_key_text.png");
    width: 724px;
    height: 58px;
  }

  /* cont01 */
  .chintai .cont01 {
    padding: 130px 0 0;
    display: flex;
    gap: 18px;
    position: relative;
    height: 514px;
  }

  .chintai .cont01 h2 {
    font-size: 24px;
    padding-left: 27px;
    position: relative;
    line-height: 1.6;
    font-weight: bold;
  }

  .chintai .cont01 h2::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .chintai .cont01 .text01 {
    font-size: 18px;
    line-height: 2.2;
    margin-top: 24px;
    width: 593px;
    text-align: justify;
  }



  .chintai .cont01 .text_box figure:first-of-type {
    position: static;
    margin-top: 15px;
    border: none;
  }

  .chintai .cont01 figure {
    position: absolute;
    right: -300px;
    top: 100px;
    width: 870px;
    border: 3px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  @media screen and (min-width: 1800px) {
    .chintai .cont01 figure {
      border-radius: 10px;
      border-right: 3px solid var(--main-color);
    }
  }


  /* cont02 */
  .chintai .cont02 {
    background: url(img/common_bg_01.png);
    padding: 140px 0 120px;
    margin-top: 120px;
  }

  .chintai .cont02 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .chintai .cont02 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 34px;
  }

  .chintai .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text01.png) center center / cover no-repeat;
    width: 336px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .chintai .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .chintai .cont02 .box {
    display: flex;
    gap: 33px;
    justify-content: center;
    margin-top: 55px;
  }

  .chintai .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 378px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
  }

  .chintai .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;

  }

  .chintai .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .chintai .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .chintai .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .chintai .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .chintai .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 21px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .chintai .cont02 .box .text_box01:nth-of-type(2) h3 {
    font-size: 20px;
  }

  .chintai .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .chintai .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .chintai .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }


  /* cont03 */
  .chintai .cont03 {
    padding: 140px 0 120px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .chintai .cont03 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .chintai .cont03 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .chintai .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .chintai .cont03 .text01 {
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
    line-height: 1.8;
  }

  .chintai .cont03 .item {
    position: relative;
  }

  .chintai .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .chintai .cont03 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .chintai .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .chintai .cont03 .category_01,
  .chintai .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
  }

  .chintai .cont03 .category_01 {
    padding: 7px 22px;
    background: var(--main-color);
  }

  .chintai .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .chintai .cont03 .text02 {
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .chintai .cont03 .box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 55px auto 0;
  }

  .chintai .cont03 .box .item {
    width: calc((100% - 30px) / 2);
    position: relative;
    padding-top: 220px;
  }

  .chintai .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .chintai .cont03 .box .img_box .before {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
  }

  .chintai .cont03 .box .img_box .after {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    overflow: hidden;
    border: 1px solid var(--main-color);
  }

  .chintai .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .chintai .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .chintai .cont03 .button {
    position: relative;
    width: 425px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .chintai .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .chintai .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .chintai .cont03 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .chintai .cont03 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1450px) {
    .chintai .cont03 .box {
      gap: 60px;
      justify-content: center;
      padding: 0 40px;
    }

    .chintai .cont03 .item::before {
      top: 80px;
    }
  }


  /* cont04 賃貸不動産退去時クリーニングの費用*/

  .chintai .cont04 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .chintai .cont04 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 49px;
  }

  .chintai .cont04 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .chintai .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .chintai .cont04 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 65px;
    text-align: center;
  }

  .chintai .cont04 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .chintai .cont04 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .chintai .cont04 .box .price_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1000px;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 50px;
  }

  .chintai .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: right;
    line-height: 1.3;
    position: relative;
    width: 450px;
  }

  .chintai .cont04 .box .price_box .price_text01::before {
    content: "";
    width: 140px;
    height: 35px;
    position: absolute;
    top: 22px;
    left: 0px;
  }
  .chintai .cont04 .box .price_box .price_text01:first-of-type:before {
    background: url(img/chintai_deco01.png);
  }
 .chintai .cont04 .box .price_box .price_text01:nth-of-type(2):before {                                                                                                                    
    background: url(img/chintai_deco02.png) ;
  }
 .chintai .cont04 .box .price_box .price_text01:nth-of-type(3):before {                                                                                                                    
    background: url(img/chintai_deco03.png);
  }
 .chintai .cont04 .box .price_box .price_text01:nth-of-type(4):before {                                                                                                                    
    background: url(img/chintai_deco04.png);
  }
 .chintai .cont04 .box .price_box .price_text01:nth-of-type(5):before {                                                                                                                    
    background: url(img/chintai_deco05.png);
  }


  .chintai .cont04 .box .price_box .price_text01 .span01 {
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 34px;
  }

  .chintai .cont04 .box .price_box .price_text01 .span02 {
    font-size: 56px;
    font-weight: bold;
    color: var(--main-color);
  }

  .chintai .cont04 .box .flex .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin: 0 auto 50px;
    width: 1000px;
    }
  

  .chintai .cont04 .box .flex .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .chintai .cont04 .box .flex .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 45px;
    background: var(--main-color);
  }

  .chintai .cont04 .box:nth-of-type(2) .flex .range_box dt::after {
    height: 18px;
  }

  .chintai .cont04 .box .flex .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .chintai .cont04 .box:nth-of-type(1) {
    margin-bottom: 50px;
  }

  .chintai .cont04 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 36px;
  }

  /* cont05 セットサービス */
  .chintai .cont05 {
    background: var(--main-light-color);
    padding: 130px 0 0px;
  }

  .chintai .cont05 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 45px;
  }

  .chintai .cont05 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .chintai .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .chintai .cont05 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
  }

  .chintai .cont05 .text_box {
    position: relative;
    width: 1200px;
    height: 240px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 44px 62px 40px 233px;
    margin-bottom: 60px;
  }

  .chintai .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
  }

  .chintai .cont05 .text_box .text01 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 15px 15px 65px;
  }

  .chintai .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .chintai .cont05 .text_box .text01 .span02 {
    font-size: 40px;
    font-weight: bold;
  }

  .chintai .cont05 .text_box .text02 {
    font-size: 20px;
    line-height: 1.8;
  }

  .chintai .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    margin-bottom: 50px;
  }

    .chintai .cont05 .box:last-of-type {
    margin-bottom: 0;
  }


  .chintai .cont05 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .chintai .cont05 .box h3 span {
    font-size: 24px;
    font-weight: bold;
    padding: 5px 28px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 21px;
  }

  .chintai .cont05 .box:nth-of-type(5) h3 span {
    background-color: #34baeb;
  }

  .chintai .cont05 .box .flex {
    display: flex;
    align-items: center;
  }

  .chintai .cont05 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 37px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .chintai .cont05 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .chintai .cont05 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .chintai .cont05 .box .price_box .price_text01 span {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .chintai .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 24px;
  }

  .chintai .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .chintai .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .chintai .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 20px;
    line-height: 1;
  }

  .chintai .cont05 .box .price_box .price_text02 span {
    font-size: 56px;
    font-weight: bold;
  }

  .chintai .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .chintai .cont05 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .chintai .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .chintai .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .chintai .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .chintai .cont05 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .chintai .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 98px;
    background: var(--main-color);
  }

  .chintai .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 64px;
  }

  .chintai .cont05 .box:nth-of-type(4) .price_box .range_box dt::after {
    height: 60px;
  }

    .chintai .cont05 .box:nth-of-type(5) .price_box .range_box dt::after {
    height: 150px;
  }

  .chintai .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .chintai .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 14px;
    padding: 9px 25px 9px 20px;
  }

  .chintai .cont05 .box {
    margin-bottom: 70px;
  }


  /* cont06 あわせて頼みたいサービス */
  .chintai .cont06 {
    background: var(--main-light-color);
    padding: 140px 0 0px;
  }

  .chintai .cont06 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .chintai .cont06 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .chintai .cont06 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/sentakuki_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .chintai .cont06 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .chintai .cont06 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .chintai .cont06 .option_flex .item {
    position: relative;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .chintai .cont06 .option_flex .item .text_box {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 279px;
    margin-right: 23px;
  }

  .chintai .cont06 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  }

  .chintai .cont06 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .chintai .cont06 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .chintai .cont06 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .chintai .cont06 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .chintai .cont06 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .chintai .cont06 .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 32px;
  }

  .chintai .cont06 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  /* cont07 その他単品*/

  .chintai .cont07 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
  }

  .chintai .cont07 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 55px;
  }

  .chintai .cont07 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 31px;
  }

  .chintai .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/sentakuki_text03.png) center center / cover no-repeat;
    width: 300px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .chintai .cont07 .readtext {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 55px;
    text-align: center;
  }

  .chintai .cont07 .option_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .chintai .cont07 .option_flex .item {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    width: 580px;
    height: 230px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .chintai .cont07 .option_flex .item .text_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 270px;
    width: 285px;
    height: 180px;
    margin-right: 20px;
  }

  .chintai .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 28px;
  }

  .chintai .cont07 .option_flex .item .text_box .tte01 span {
    font-size: 18px;
    font-weight: bold;
  }

  .chintai .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .chintai .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .chintai .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
    position: relative;
  }

  .chintai .cont07 .option_flex .item:nth-of-type(1) .text_box .text03:nth-of-type(1)::before {
    content: "";
    background: url(img/chintai_deco06.png) center / cover no-repeat;
    width: 130px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
  }
  .chintai .cont07 .option_flex .item:nth-of-type(1) .text_box .text03:nth-of-type(2)::before {
    content: "";
    background: url(img/chintai_deco07.png) center / cover no-repeat;
    width: 130px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
  }
  .chintai .cont07 .option_flex .item:nth-of-type(2) .text_box .text03:nth-of-type(1)::before {
    content: "";
    background: url(img/chintai_deco08.png) center / cover no-repeat;
    width: 130px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
  }
  .chintai .cont07 .option_flex .item:nth-of-type(2) .text_box .text03:nth-of-type(2)::before {
    content: "";
    background: url(img/chintai_deco16.png) center / cover no-repeat;
    width: 120px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
  }
  .chintai .cont07 .option_flex .item:nth-of-type(3) .text_box .text03::before {
    content: "";
    background: url(img/chintai_deco06.png) center / cover no-repeat;
    width: 130px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
  }
  .chintai .cont07 .option_flex .item:nth-of-type(4) .text_box .text03:nth-of-type(1)::before {
    content: "";
    background: url(img/chintai_deco09.png) center / cover no-repeat;
    width: 100px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
  }
  .chintai .cont07 .option_flex .item:nth-of-type(4) .text_box .text03:nth-of-type(2)::before {
    content: "";
    background: url(img/chintai_deco10.png) center / cover no-repeat;
    width: 130px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
  }
  .chintai .cont07 .option_flex .item:nth-of-type(5) .text_box .text03:nth-of-type(1)::before {
    content: "";
    background: url(img/chintai_deco11.png) center / cover no-repeat;
    width: 90px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
  }
  .chintai .cont07 .option_flex .item:nth-of-type(5) .text_box .text03:nth-of-type(2)::before {
    content: "";
    background: url(img/chintai_deco12.png) center / cover no-repeat;
    width: 158px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
  }
    .chintai .cont07 .option_flex .item:nth-of-type(6) .text_box .text03::before {
    content: "";
    background: url(img/chintai_deco13.png) center / cover no-repeat;
    width: 90px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
  }
  .chintai .cont07 .option_flex .item:nth-of-type(7) .text_box .text03:nth-of-type(1)::before {
    content: "";
    background: url(img/chintai_deco11.png) center / cover no-repeat;
    width: 90px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
  }
  .chintai .cont07 .option_flex .item:nth-of-type(7) .text_box .text03:nth-of-type(2)::before {
    content: "";
    background: url(img/chintai_deco12.png) center / cover no-repeat;
    width: 158px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
  }
  .chintai .cont07 .option_flex .item:nth-of-type(8) .text_box .text03:nth-of-type(1)::before {
    content: "";
    background: url(img/chintai_deco11.png) center / cover no-repeat;
    width: 90px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
  }
  .chintai .cont07 .option_flex .item:nth-of-type(8) .text_box .text03:nth-of-type(2)::before {
    content: "";
    background: url(img/chintai_deco12.png) center / cover no-repeat;
    width: 158px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
  }
  .chintai .cont07 .option_flex .item:nth-of-type(9) .text_box .text03:nth-of-type(1)::before {
    content: "";
    background: url(img/chintai_deco14.png) center / cover no-repeat;
    width: 110px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
  }
  .chintai .cont07 .option_flex .item:nth-of-type(9) .text_box .text03:nth-of-type(2)::before {
    content: "";
    background: url(img/chintai_deco15.png) center / cover no-repeat;
    width: 110px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
  }

  .chintai .cont07 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }
  .chintai .cont07 .option_flex .item .text_box .price_box{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
    .chintai .cont07 .option_flex .item .text_box .price_box .text03{
    margin-top: 0;
  }


  .chintai .cont07 .option_flex .item figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    border-radius: 5px;
    overflow: hidden;
  }

  .chintai .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 36px;
  }

  .chintai .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .chintai .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .chintai .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .chintai .cont07 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .chintai .cont07 .button a:hover::before {
    background: var(--main-color);
  }


  /* cont08選ばれる理由 */
  .chintai .cont08 {
    padding: 140px 0 120px;
  }

  .chintai .cont08 .inner {
    position: relative;
  }

  .chintai .cont08 .inner {
    width: 900px;
    margin: 0 auto;
  }

  .chintai .cont08 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .chintai .cont08 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .chintai .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .chintai .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 22px;
    color: #1d1d1d;
    padding-left: 20px;
    height: 32px;
    line-height: 32px;
  }

  .chintai .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 32px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .chintai .cont08 .text01 {
    margin-top: 4px;
  }

  .chintai .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 9px;
    padding: 24px 0 22px 99px;
    margin-bottom: 50px;
  }

  .chintai .cont08 .box .item::before {
    position: absolute;
    content: "";
    background: url("img/reason_01.png") center center / cover no-repeat;
    width: 144px;
    height: 134px;
    left: -66px;
    top: 1px;
  }

  .chintai .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .chintai .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .chintai .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .chintai .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .chintai .cont08 .box .item:first-of-type {
    margin-top: 60px;
  }

  .chintai .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .chintai .cont08 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .chintai .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .chintai .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .chintai .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .chintai .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont09ご利用の流れ */
  .chintai .cont09 {
    background: var(--main-light-color);
    padding: 140px 0 120px;
    /* margin: 120px auto 0px; */
    /* max-width: 1400px; */
  }

  .chintai .cont09 .inner {
    position: relative;
  }

  .chintai .cont09 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .chintai .cont09 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .chintai .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .chintai .cont09 .box {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }

  .chintai .cont09 .box .item {
    position: relative;
    width: 380px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 46px 30px;
  }

  .chintai .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 46px;
  }

  .chintai .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .chintai .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .chintai .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .chintai .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .chintai .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .chintai .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .chintai .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .chintai .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .chintai .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .chintai .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .chintai .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .chintai .cont09 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .chintai .cont09 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont10 よくある質問*/
  .chintai .cont10 {
    padding: 140px 0 120px;
  }

  .chintai .cont10 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .chintai .cont10 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .chintai .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .chintai .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 55px;
  }

  .chintai .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .chintai .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 37px 100px 37px 152px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }

  .chintai .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .chintai .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .chintai .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .chintai .cont10 .qa_box .ans {
    display: none;
    padding-left: 152px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 52px;
    position: relative;
  }

  .chintai .cont10 .button {
    position: relative;
    width: 275px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .chintai .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .chintai .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .chintai .cont10 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .chintai .cont10 .button a:hover::before {
    background: var(--main-color);
  }

  @media screen and (max-width: 1300px) {
    .chintai .cont10 {
      width: 1100px;
    }
  }


  /* cont11イークリーンについて */

  .chintai .cont11 {
    background: url(img/common_bg_01.png);
    padding: 120px 0;
  }

  .chintai .cont11 .inner {
    padding-top: 620px;
    position: relative;
  }

  .chintai .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 233px;
    height: 184px;
    bottom: -245px;
    right: 48px;
  }

  .chintai .cont11 figure {
    position: absolute;
    left: -300px;
    top: 0;
    border: 3px solid var(--main-color);
    border-left: none;
    border-radius: 0 18px 18px 0;
    width: 870px;
    height: 620px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .chintai .cont11 figure img {
    object-fit: none;
  }

  .chintai .cont11 .text_box {
    position: absolute;
    right: 0;
    top: 0;
    height: 560px;
    width: 680px;
    padding: 48px 0 54px 50px;
    box-sizing: border-box;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    margin: 30px auto;
    z-index: 2;
  }

  .chintai .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .chintai .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .chintai .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .chintai .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .chintai .cont11 .text_box .tel,
  .chintai .cont11 .text_box .mail,
  .chintai .cont11 .text_box .time,
  .chintai .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .chintai .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .chintai .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .chintai .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .chintai .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
  }

  .chintai .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .chintai .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .chintai .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .chintai .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .chintai .cont11 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .chintai .cont11 .button a:hover::before {
    background: var(--main-color);
  }


  /* cont12ブログ一覧 */

  .chintai .cont12 {
    padding: 140px 0 120px;
    z-index: 10;
    position: relative;
  }

  .chintai .cont12 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .chintai .cont12 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 33px;
  }

  .chintai .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .chintai .cont12 .text01 {
    margin-top: 52px;
    text-align: center;
    font-size: 18px;
  }

  .chintai .cont12 .blog_box {
    margin-top: 49px;
  }

  .chintai .cont12 .blog_box .swiper-slide {
    display: block;
    width: 336px;
  }

  .chintai .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .chintai .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 26px;
    order: 2;
    line-height: 1;
  }

  .chintai .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 20px 0 0;
    order: 3;
  }

  .chintai .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .chintai .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .chintai .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .chintai .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .chintai .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .chintai .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .chintai .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .chintai .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .chintai .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .chintai .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .chintai .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .chintai .cont12 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont13　対応エリア */
  .chintai .cont13 {
    background: var(--main-light-color);
  }

  .chintai .cont13 {
    padding: 140px 0 180px;
  }

  .chintai .cont13 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .chintai .cont13 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .chintai .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 206px;
    height: 56px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .chintai .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 100px;
  }

  .chintai .cont13 .box figure {
    position: absolute;
    left: -300px;
    top: -25px;
  }

  .chintai .cont13 .area {
    width: 565px;
    height: 328px;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 50px;
  }

  .chintai .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 6px 6px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .chintai .cont13 .area .area_list {
    text-align-last: left;
    height: 216px;
    overflow-y: auto;
    margin: 33px 10px 33px 33px;
    padding-right: 33px;
  }

  .chintai .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
  }

  .chintai .cont13 .area .area_list li {
    line-height: 1;
  }

  .chintai .cont13 .area .area_list>li {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  @media screen and (min-width: 1800px) {
    .chintai .cont13 figure {
      border-radius: 10px;
      border-right: 1px solid transparent;
      overflow: hidden;
    }
  }





  /* flow ------------------------------------------------------------------------*/
  /* key */
  .flow .key .text01::after {
    background: url("img/flow_key_text.png");
    width: 282px;
    height: 74px;
  }

  /* cont01 */
  .flow .cont01 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #082a4a;
  }

  .flow .cont01 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .flow .cont01 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/flow_text01.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .flow .cont01 {
    padding: 100px 0 50px;
  }

  .flow .cont01 p {
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
    margin-top: 50px;
  }




  /* cont02 */
  .flow .cont02 .inner {
    width: 1000px;
    padding-top: 206px;
    position: relative;
  }

  .flow .cont02 .flow01,
  .flow .cont02 .flow03,
  .flow .cont02 .flow05 {
    background: #e9fbf3;
  }

  .flow .cont02 .flow_box {
    padding: 65px 0;
  }

  .flow .cont02 .flow_box figure {
    position: absolute;
    left: 0;
    top: 0;
    width: 306px;
    height: 206px;
    border: 4px solid var(--main-color);
    border-radius: 10px;
    overflow: hidden;
  }

  .flow .cont02 .flow_box .text_box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 655px;
  }

  .flow .cont02 .flow_box h3 {
    position: relative;
    font-size: 32px;
    font-weight: bold;
    line-height: 38px;
    color: #082a4a;
    padding-left: 90px;
    white-space: nowrap;
  }

  .flow .cont02 .flow_box h3::before {
    position: absolute;
    content: "";
    width: 44px;
    height: 32px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .flow .cont02 .flow_box:nth-of-type(1) h3::before {
    background: url("img/common_no01.png") no-repeat;
    width: 39px;
  }

  .flow .cont02 .flow_box:nth-of-type(2) h3::before {
    background: url("img/common_no02.png") no-repeat;
  }

  .flow .cont02 .flow_box:nth-of-type(3) h3::before {
    background: url("img/common_no03.png") no-repeat;
  }

  .flow .cont02 .flow_box:nth-of-type(4) h3::before {
    background: url("img/common_no04.png") no-repeat;
  }

  .flow .cont02 .flow_box:nth-of-type(5) h3::before {
    background: url("img/common_no05.png") no-repeat;
  }


  .flow .cont02 .flow_box h3::after {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 3px;
    height: 38px;
    border-radius: 2px;
    left: 63px;
    top: 0;
  }

  .flow .cont02 .flow_box .text01 {
    font-size: 20px;
    color: #082a4a;
    margin-top: 20px;
    line-height: 1.8;
  }

  .flow .cont02 .flow_box.flow01 .text01 {
    white-space: nowrap;
  }

  .flow .cont02 .flow_box.flow01 .info_box {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }

  .flow .cont02 .flow_box.flow01 .info_box .tel {
    text-align: center;
  }

  .flow .cont02 .flow_box.flow01 .info_box .tel a {
    font-size: 14px;
    line-height: 1.8;
    font-weight: bold;
  }

  .flow .cont02 .flow_box.flow01 .info_box .btn-01 a {
    display: block;
    width: 220px;
    height: 50px;
    background: #06c755 url(img/header_icon02.png) left 26px top 14px no-repeat;
    padding: 0px 0 0 58px;
    box-sizing: border-box;
    border: 1px solid #06c755;
    border-radius: 10px;
    font-size: 16px;
    line-height: 50px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1.5px;
  }

  .flow .cont02 .flow_box .flow_04_sub {
    background: var(--main-light-color);
    border: 3px solid var(--main-color);
    border-radius: 10px;
  }

  .flow .cont02 .flow_box .flow_04_sub .box {
    position: relative;
    height: 163px;
    margin-top: 40px;
  }

  .flow .cont02 .flow_box .flow_04_sub .box:first-of-type {
    margin-top: 50px;
  }

  .flow .cont02 .flow_box .flow_04_sub .box:last-of-type {
    margin-bottom: 50px;
  }

  .flow .cont02 .flow_box .flow_04_sub .box:nth-of-type(3) {
    margin-top: 216px;
  }

  .flow .cont02 .flow_box .flow_04_sub .text_box02 {
    position: absolute;
    left: 346px;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 49px;
  }

  .flow .cont02 .flow_box .flow_04_sub .box figure {
    position: absolute;
    left: 54px;
    top: 0;
    width: 259px;
    height: 163px;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    overflow: hidden;
  }

  .flow .cont02 .flow_box .flow_04_sub.inner {
    padding-top: 0;
    margin-top: 65px;
  }


  .flow .cont02 .flow_box .flow_04_sub h4 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background: var(--main-color);
    text-align: center;
    line-height: 60px;
    border-radius: 6px 6px 0 0;
  }

  .flow .cont02 .flow_box .flow_04_sub h4::before {
    content: "";
    position: absolute;
    background: url(img/common_deco05.png) no-repeat;
    width: 131px;
    height: 151px;
    right: 176px;
    top: -60px;
  }

  .flow .cont02 .flow_box .flow_04_sub .ttl01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 18px;
    line-height: 32px;
  }

  .flow .cont02 .flow_box .flow_04_sub .ttl01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 32px;
    border-radius: 4px;
    left: 0;
    top: 0;
  }

  .flow .cont02 .flow_box .flow_04_sub .ttl01 span {
    font-size: 14px;
    font-weight: bold;
  }

  .flow .cont02 .flow_box .flow_04_sub .box .text02 {
    position: relative;
    font-size: 16px;
    color: #082a4a;
    margin-top: 15px;
  }

  .flow .cont02 .flow_box .flow_04_sub .box .text02::before {
    position: absolute;
    content: "";
    width: 599px;
    height: 1px;
    background: #959595;
    bottom: -47px;
    left: 0;
  }

  .flow .cont02 .flow_box .flow_04_sub .box:nth-of-type(2) .text02::before,
  .flow .cont02 .flow_box .flow_04_sub .box:last-of-type .text02::before {
    display: none;
  }

  .flow .cont02 .flow_box .flow_04_sub .text_box03 {
    width: 890px;
    margin: 0 auto;
    padding-top: 163px;
    text-align: center;
    box-sizing: border-box;
  }

  .flow .cont02 .flow_box .flow_04_sub .text_box03 .ttl02 {
    color: #ffff00;
    background: #51aa81;
    line-height: 35px;
    font-weight: bold;
    margin-top: 40px;
  }

  .flow .cont02 .flow_box .flow_04_sub .text_box03 .text03 {
    background: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 17px 0;
    border: 3px solid #51aa81;
    border-top: none;
    line-height: 1.78;
  }

  .flow .cont02 .flow_box .flow_04_sub .text_box03 .text03 span {
    font-weight: bold;
    color: #51aa81;
  }





 
  /*  料金表ＰＣ ------------------------------------------------------------------------*/
  /* key */
  .price .key .text01::after {
    background: url(img/price_key_text.png);
    width: 297px;
    height: 74px;
  }

  /* cont01 price_box*/
  .price .cont01 {
    margin: 120px auto;
  }

  .price .cont01 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #082a4a;
  }

  .price .cont01 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .price .cont01 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/price_text01.png) center center / cover no-repeat;
    width: 225px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .price .cont01 .readtext {
    text-align: center;
    font-size: 20px;
    margin-top: 40px;
  }

  .price .cont01 .text_box {
    position: relative;
    width: 1200px;
    height: 240px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 44px 62px 40px 233px;
    margin-block: 60px;
  }

  .price .cont01 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
  }

  
  .price .cont01 .text_box .text01 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 21px;
  }

  .price .cont01 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .price .cont01 .text_box .text01 .span02 {
    font-size: 34px;
    font-weight: bold;
  }

  .price .cont01 .text_box .text02 {
    font-size: 20px;
    line-height: 1.8;
  }

.price .cont01 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .price .cont01 .box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .price .cont01 .box h3 span {
    font-size: 24px;
    font-weight: bold;
    padding: 5px 28px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 21px;
  }

  .price .cont01 .box:nth-of-type(5) h3 span {
    background-color: #34baeb;
  }

  .price .cont01 .box .flex {
    display: flex;
    align-items: center;
  }

  .price .cont01 .flex figure {
    border-radius: 10px;
    margin: 40px 40px 40px 37px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .price .cont01 .box .price_box {
    padding: 36px 40px 40px 0px;
  }

  .price .cont01 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .price .cont01 .box .price_box .price_text01 span {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .price .cont01 .box .price_box .price_text01 span .span01 {
    font-size: 24px;
  }

  .price .cont01 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .price .cont01 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .price .cont01 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 66px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 20px;
    line-height: 1;
  }

  .price .cont01 .box .price_box .price_text02 span {
    font-size: 56px;
    font-weight: bold;
  }

  .price .cont01 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .price .cont01 .box .price_box .time_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .price .cont01 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .price .cont01 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .price .cont01 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 560px;
  }

  .price .cont01 .box .price_box .range_box dt {
    width: 130px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .price .cont01 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 98px;
    background: var(--main-color);
  }

  .price .cont01 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 72px;
  }
  .price .cont01 .box:nth-of-type(4) .price_box .range_box dt::after {
    height: 50px;
  }
  .price .cont01 .box:nth-of-type(5) .price_box .range_box dt::after {
    height: 145px;
  }

  .price .cont01 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .price .cont01 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 14px;
    padding: 9px 25px 9px 20px;
  }

  .price .cont01 .box {
    margin-bottom: 60px;
  }
  .price .cont01 .box:nth-of-type(5) {
    margin-bottom: 20px;
  }
  .price .cont01 .tax_text01 {
    text-align: right;
  }

  /* cont02 */
  .price .cont02 {
    background: var(--main-light-color);;
    padding: 140px 0 120px;
  }

  .price .cont02 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #082a4a;
  }

  .price .cont02 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .price .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/price_text01.png) center center / cover no-repeat;
    width: 225px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .price .cont02 .readtext {
    text-align: center;
    font-size: 20px;
    margin-top: 40px;
  }

.price .cont02 .box {
    position: relative;
    width: 1200px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 60px 60px 80px;
     margin: 60px auto 120px;
}

.price .cont02 .box .class_box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
.price .cont02 .box .class_box h3{
    font-size: 32px;
    font-weight: bold;
    color: var(--main-color);
    text-align: center;
    margin: 90px auto 10px;
}
.price .cont02 .box .class_box:first-of-type h3{
    margin: 0 auto 10px;
}
.price .cont02 .box p{
  margin-top: 20px;
  text-align: right;
}
 .price .cont02 .box .class_box .service_box {
    background: #f5f5f5;
    display: flex;
    justify-content: space-between;
    width: 1080px;
    height: 70px;
    margin: 0 auto;
    text-align: center;
   }
 .price .cont02 .box .class_box .service_box dt {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    align-self: center;
    position: relative;
    padding-left: 45px;
   }
 .price .cont02 .box .class_box .service_box dt::before{
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 27px;
    border-radius: 2px;
    background: var(--main-color);
   }
   .price .cont02 .box .class_box .service_box dd {
    font-size: 30px;
    font-weight: bold;
    text-align: right;
    align-self: center;
    position: relative;
    padding-right: 20px;
    color: #06aa5f;
   }

  .price .cont02 .box .class_box .flex_box {
    display: flex;
    flex-wrap: wrap;
    width: 1200px;
    gap: 20px;
  }
  .price .cont02 .box .class_box .flex_box .service_box {
    width: 525px;
    height: 70px;
  }

  .price .cont02 .box .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .price .cont02 .button a {
    display: block;
    background: var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .price .cont02 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

/* cont03 */
  .price .cont03 {
    background: #fff;
    padding: 140px 0 120px;
  }

  .price .cont03 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #082a4a;
  }

  .price .cont03 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .price .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/price_text01.png) center center / cover no-repeat;
    width: 225px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .price .cont03 .readtext {
    text-align: center;
    font-size: 20px;
    margin-top: 40px;
  }

.price .cont03 .box {
    position: relative;
    width: 1200px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 60px 60px 80px;
    margin: 60px auto 120px;
}

.price .cont03 .box .service_box{
    background: #f5f5f5;
    display: flex;
    justify-content: space-between;
    width: 1080px;
    height: 70px;
    margin: 0 auto;
    text-align: center;
}

.price .cont03 .box .service_box dt {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    align-self: center;
    position: relative;
    padding-left: 45px;
  }
.price .cont03 .box .service_box dt::before{
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 27px;
    border-radius: 2px;
    background: var(--main-color);
  }
  .price .cont03 .box .service_box dd {
    font-size: 30px;
    font-weight: bold;
    text-align: right;
    align-self: center;
    position: relative;
    padding-right: 20px;
    color: #06aa5f;
  }

.price .cont03 .box .class_box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
.price .cont03 .box .class_box h3{
    font-size: 32px;
    font-weight: bold;
    color: var(--main-color);
    text-align: center;
     margin: 60px auto 0;
}

.price .cont03 .box p{
  margin-top: 20px;
  text-align: right;
}
 .price .cont03 .box .class_box .service_box {
    background: #f5f5f5;
    display: flex;
    justify-content: space-between;
    width: 1080px;
    height: 70px;
    margin: 0 auto;
    text-align: center;
   }
 .price .cont03 .box .class_box .service_box dt {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    align-self: center;
    position: relative;
    padding-left: 45px;
   }
 .price .cont03 .box .class_box .service_box dt::before{
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 27px;
    border-radius: 2px;
    background: var(--main-color);
   }
   .price .cont03 .box .class_box .service_box dd {
    font-size: 30px;
    font-weight: bold;
    text-align: right;
    align-self: center;
    position: relative;
    padding-right: 20px;
    color: #06aa5f;
   }

  .price .cont03 .box .class_box .flex_box {
    display: flex;
    flex-wrap: wrap;
    width: 1200px;
    gap: 20px;
  }
  .price .cont03 .box .class_box .flex_box .service_box {
    width: 525px;
    height: 70px;
  }

  .price .cont03 .box .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .price .cont03 .button a {
    display: block;
    background: var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .price .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

/* cont04 */
.price .cont04 {
  background: var(--main-light-color);;
  padding: 140px 0 120px;
}

.price .cont04 h2 {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  color: #082a4a;
}

.price .cont04 h2 span {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 36px;
}

.price .cont04 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 225px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 18px));
  z-index: -1;
}

.price .cont04 .readtext {
  text-align: center;
  font-size: 20px;
  margin-top: 40px;
}

.price .cont04 .box {
    position: relative;
    width: 1200px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 60px 60px 80px;
     margin: 60px auto 0;
}

.price .cont04 .box .service_box{
    background: #f5f5f5;
    display: flex;
    justify-content: space-between;
    width: 1080px;
    height: 70px;
    margin: 0 auto;
    text-align: center;
}

.price .cont04 .box .service_box dt {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    align-self: center;
    position: relative;
    padding-left: 45px;
}

.price .cont04 .box .service_box dt::before{
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 27px;
    border-radius: 2px;
    background: var(--main-color);
}

.price .cont04 .box .service_box dd {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  align-self: center;
  position: relative;
  padding-right: 20px;
  color: #06aa5f;
}

.price .cont04 .box p {
    margin-top: 20px;
    text-align: right;
}

.price .cont04 .box .button {
  position: relative;
  width: 360px;
  height: 50px;
  text-align: center;
  margin: 30px auto 0;
}

.price .cont04 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
}

.price .cont04 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont05 */
  .price .cont05 {
    background: #fff;
    padding: 140px 0 120px;
  }

  .price .cont05 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #082a4a;
  }

  .price .cont05 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .price .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/price_text01.png) center center / cover no-repeat;
    width: 225px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .price .cont05 .readtext {
    text-align: center;
    font-size: 20px;
    margin-top: 40px;
  }

.price .cont05 .box {
    position: relative;
    width: 1200px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 60px 60px 80px;
    margin: 60px auto 0;
}

.price .cont05 .box .service_box{
    background: #f5f5f5;
    display: flex;
    justify-content: space-between;
    width: 1080px;
    height: 70px;
    margin: 0 auto;
    text-align: center;
}

.price .cont05 .box .service_box:first-of-type {
   margin-bottom: 20px;
}

.price .cont05 .box .service_box dt {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    align-self: center;
    position: relative;
    padding-left: 45px;
  }
.price .cont05 .box .service_box dt::before{
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 27px;
    border-radius: 2px;
    background: var(--main-color);
  }
  .price .cont05 .box .service_box dd {
    font-size: 30px;
    font-weight: bold;
    text-align: right;
    align-self: center;
    position: relative;
    padding-right: 20px;
    color: #06aa5f;
  }

.price .cont05 .box .class_box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
.price .cont05 .box .class_box h3{
    font-size: 32px;
    font-weight: bold;
    color: var(--main-color);
    text-align: center;
     margin: 60px auto 0;
}

.price .cont05 .box p{
  margin-top: 20px;
  text-align: right;
}

.price .cont05 .box .class_box .flex_box .service_box {
  width: 1080px;
  height: 70px;
  margin-bottom: 0;
}

.price .cont05 .box .button {
  position: relative;
  width: 360px;
  height: 50px;
  text-align: center;
  margin: 30px auto 0;
}

.price .cont05 .box .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
}

.price .cont05 .box .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont06 */
.price .cont06 {
  background: var(--main-light-color);;
  padding: 140px 0 120px;
}

.price .cont06 h2 {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  color: #082a4a;
}

.price .cont06 h2 span {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 36px;
}

.price .cont06 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 225px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 18px));
  z-index: -1;
}

.price .cont06 .readtext {
  text-align: center;
  font-size: 20px;
  margin-top: 40px;
}

.price .cont06 .box {
    position: relative;
    width: 1200px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 60px 60px 80px;
     margin: 60px auto 0;
}

.price .cont06 .box .service_box{
    background: #f5f5f5;
    display: flex;
    justify-content: space-between;
    width: 1080px;
    height: 70px;
    margin: 0 auto;
    text-align: center;
}

.price .cont06 .box .service_box dt {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    align-self: center;
    position: relative;
    padding-left: 45px;
}

.price .cont06 .box .service_box dt::before{
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 27px;
    border-radius: 2px;
    background: var(--main-color);
}

.price .cont06 .box .service_box dd {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  align-self: center;
  position: relative;
  padding-right: 20px;
  color: #06aa5f;
}

.price .cont06 .box p {
    margin-top: 20px;
    text-align: right;
}

.price .cont06 .box .button {
  position: relative;
  width: 360px;
  height: 50px;
  text-align: center;
  margin: 30px auto 0;
}

.price .cont06 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
}

.price .cont06  .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont07 */
.price .cont07 {
  background: #fff;
  padding: 140px 0 120px;
}

.price .cont07 h2 {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  color: #082a4a;
}

.price .cont07 h2 span {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 36px;
}

.price .cont07 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 225px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 18px));
  z-index: -1;
}

.price .cont07 .readtext {
  text-align: center;
  font-size: 20px;
  margin-top: 40px;
}

.price .cont07 .box {
    position: relative;
    width: 1200px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 60px 60px 80px;
     margin: 60px auto 0;
}

.price .cont07 .box .service_box{
    background: #f5f5f5;
    display: flex;
    justify-content: space-between;
    width: 1080px;
    height: 70px;
    margin: 0 auto;
    text-align: center;
}

.price .cont07 .box .service_box dt {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    align-self: center;
    position: relative;
    padding-left: 45px;
}

.price .cont07 .box .service_box dt::before{
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 27px;
    border-radius: 2px;
    background: var(--main-color);
}

.price .cont07 .box .service_box dd {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  align-self: center;
  position: relative;
  padding-right: 20px;
  color: #06aa5f;
}

.price .cont07 .box p {
    margin-top: 20px;
    text-align: right;
}

.price .cont07 .box .button {
  position: relative;
  width: 360px;
  height: 50px;
  text-align: center;
  margin: 30px auto 0;
}

.price .cont07 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
}

.price .cont07 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont08 */
.price .cont08 {
  background: var(--main-light-color);
  padding: 140px 0 120px;
  margin-bottom: 0;
}

.price .cont08 h2 {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  color: #082a4a;
}

.price .cont08 h2 span {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 36px;
}

.price .cont08 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 225px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 18px));
  z-index: -1;
}

.price .cont08 .readtext {
  text-align: center;
  font-size: 20px;
  margin-top: 40px;
}

.price .cont08 .box {
  position: relative;
  width: 1200px;
  border: 3px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 60px 60px 80px;
  margin: 60px auto 0;
}

.price .cont08 .box .service_box{
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  width: 1080px;
  height: 70px;
  margin: 0 auto;
  text-align: center;
}

.price .cont08 .box .service_box dt {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  align-self: center;
  position: relative;
  padding-left: 45px;
}
.price .cont08 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 27px;
  border-radius: 2px;
  background: var(--main-color);
}
.price .cont08 .box .service_box dd {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  align-self: center;
  position: relative;
  padding-right: 20px;
  color: #06aa5f;
}

.price .cont08 .box .class_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.price .cont08 .box .class_box h3{
  font-size: 32px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
    margin: 60px auto 0;
}

.price .cont08 .box p{
margin-top: 20px;
text-align: right;
}
.price .cont08 .box .class_box .service_box {
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  width: 1080px;
  height: 70px;
  margin: 0 auto;
  text-align: center;
  }
.price .cont08 .box .class_box .service_box dt {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  align-self: center;
  position: relative;
  padding-left: 45px;
  }
.price .cont08 .box .class_box .service_box dt::before{
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 27px;
  border-radius: 2px;
  background: var(--main-color);
  }
  .price .cont08 .box .class_box .service_box dd {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  align-self: center;
  position: relative;
  padding-right: 20px;
  color: #06aa5f;
  }

.price .cont08 .box .class_box .flex_box {
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  gap: 20px;
}
.price .cont08 .box .class_box .flex_box .service_box {
  width: 525px;
  height: 70px;
}

.price .cont08 .box .button {
  position: relative;
  width: 360px;
  height: 50px;
  text-align: center;
  margin: 30px auto 0;
}

.price .cont08 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
}

.price .cont08 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont07 */
.price .cont09 {
  background: #fff;
  padding: 140px 0 120px;
}

.price .cont09 h2 {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  color: #082a4a;
}

.price .cont09 h2 span {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 36px;
}

.price .cont09 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 225px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 18px));
  z-index: -1;
}

.price .cont09 .readtext {
  text-align: center;
  font-size: 20px;
  margin-top: 40px;
}

.price .cont09 .box {
    position: relative;
    width: 1200px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 60px 60px 80px;
     margin: 60px auto 0;
}

.price .cont09 .box .service_box{
    background: #f5f5f5;
    display: flex;
    justify-content: space-between;
    width: 1080px;
    height: 70px;
    margin: 0 auto;
    text-align: center;
}

.price .cont09 .box .service_box dt {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    align-self: center;
    position: relative;
    padding-left: 45px;
}

.price .cont09 .box .service_box dt::before{
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 27px;
    border-radius: 2px;
    background: var(--main-color);
}

.price .cont09 .box .service_box dd {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  align-self: center;
  position: relative;
  padding-right: 20px;
  color: #06aa5f;
}

.price .cont09 .box p {
    margin-top: 20px;
    text-align: right;
}

.price .cont09 .box .button {
  position: relative;
  width: 360px;
  height: 50px;
  text-align: center;
  margin: 30px auto 0;
}

.price .cont09 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
}

.price .cont09 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont10 */
.price .cont10 {
  background: var(--main-light-color);
  padding: 140px 0 120px;
}

.price .cont10 h2 {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  color: #082a4a;
}

.price .cont10 h2 span {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 36px;
}

.price .cont10 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 225px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 18px));
  z-index: -1;
}

.price .cont10 .readtext {
  text-align: center;
  font-size: 20px;
  margin-top: 40px;
}

.price .cont10 .box {
  position: relative;
  width: 1200px;
  border: 3px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 60px 60px 80px;
  margin: 60px auto 0;
}

.price .cont10 .box .service_box{
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  width: 1080px;
  height: 70px;
  margin: 0 auto;
  text-align: center;
}

.price .cont10 .box .service_box dt {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  align-self: center;
  position: relative;
  padding-left: 45px;
}
.price .cont10 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 27px;
  border-radius: 2px;
  background: var(--main-color);
}
.price .cont10 .box .service_box dd {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  align-self: center;
  position: relative;
  padding-right: 20px;
  color: #06aa5f;
}

.price .cont10 .box .class_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.price .cont10 .box .class_box h3{
  font-size: 32px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
    margin: 60px auto 0;
}

.price .cont10 .box p{
margin-top: 20px;
text-align: right;
}
.price .cont10 .box .class_box .service_box {
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  width: 1080px;
  height: 70px;
  margin: 0 auto;
  text-align: center;
  }
.price .cont10 .box .class_box .service_box dt {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  align-self: center;
  position: relative;
  padding-left: 45px;
  }
.price .cont10 .box .class_box .service_box dt::before{
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 27px;
  border-radius: 2px;
  background: var(--main-color);
  }
  .price .cont10 .box .class_box .service_box dd {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  align-self: center;
  position: relative;
  padding-right: 20px;
  color: #06aa5f;
  }

.price .cont10 .box .class_box .flex_box {
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  gap: 20px;
}
.price .cont10 .box .class_box .flex_box .service_box {
  width: 525px;
  height: 70px;
  margin: 0;
}

.price .cont10 .box .class_box .flex_box .service_box:nth-of-type(3) dd {
font-size: 24x;
}
.price .cont10 .box .class_box .flex_box .service_box:nth-of-type(3) span {
font-size: 16px;
font-weight: bold;
}


.price .cont10 .box .button {
  position: relative;
  width: 360px;
  height: 50px;
  text-align: center;
  margin: 30px auto 0;
}

.price .cont10 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
}

.price .cont10 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont11 */
.price .cont11 {
  background: #fff;
  padding: 140px 0 120px;
}

.price .cont11 h2 {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  color: #082a4a;
}

.price .cont11 h2 span {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 36px;
}

.price .cont11 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 225px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 18px));
  z-index: -1;
}

.price .cont11 .readtext {
  text-align: center;
  font-size: 20px;
  margin-top: 40px;
}

.price .cont11 .box {
  position: relative;
  width: 1200px;
  border: 3px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 60px 60px 80px;
  margin: 60px auto 0;
}

.price .cont11 .box .service_box{
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  width: 1080px;
  height: 70px;
  margin: 0 auto;
  text-align: center;
}

.price .cont11 .box .service_box dt {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  align-self: center;
  position: relative;
  padding-left: 45px;
}
.price .cont11 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 27px;
  border-radius: 2px;
  background: var(--main-color);
}
.price .cont11 .box .service_box dd {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  align-self: center;
  position: relative;
  padding-right: 20px;
  color: #06aa5f;
}

.price .cont11 .box .class_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.price .cont11 .box .class_box h3{
  font-size: 32px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
    margin: 60px auto 0;
}

.price .cont11 .box p{
margin-top: 20px;
text-align: right;
}
.price .cont11 .box .class_box .service_box {
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  width: 1080px;
  height: 70px;
  margin: 0 auto;
  text-align: center;
  }
.price .cont11 .box .class_box .service_box dt {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  align-self: center;
  position: relative;
  padding-left: 45px;
  }
.price .cont11 .box .class_box .service_box dt::before{
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 27px;
  border-radius: 2px;
  background: var(--main-color);
  }
  .price .cont11 .box .class_box .service_box dd {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  align-self: center;
  position: relative;
  padding-right: 20px;
  color: #06aa5f;
  }

.price .cont11 .box .class_box .flex_box {
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  gap: 20px;
}
.price .cont11 .box .class_box .flex_box .service_box {
  width: 525px;
  height: 70px;
  margin: 0;
}

.price .cont11 .box .class_box .flex_box .service_box:nth-of-type(3) dd {
font-size: 24x;
}
.price .cont11 .box .class_box .flex_box .service_box:nth-of-type(3) span {
font-size: 16px;
}


.price .cont11 .box .button {
  position: relative;
  width: 360px;
  height: 50px;
  text-align: center;
  margin: 30px auto 0;
}

.price .cont11 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
}

.price .cont11 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont12 */
.price .cont12 {
  background: var(--main-light-color);
  padding: 140px 0 120px;
}

.price .cont12 h2 {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  color: #082a4a;
}

.price .cont12 h2 span {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 36px;
}

.price .cont12 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 225px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 18px));
  z-index: -1;
}

.price .cont12 .readtext {
  text-align: center;
  font-size: 20px;
  margin-top: 40px;
}

.price .cont12 .box {
  position: relative;
  width: 1200px;
  border: 3px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 60px 60px 80px;
  margin: 60px auto 0;
}

.price .cont12 .box .service_box{
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  width: 1080px;
  height: 70px;
  margin: 0 auto;
  text-align: center;
}

.price .cont12 .box .service_box dt {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  align-self: center;
  position: relative;
  padding-left: 45px;
}
.price .cont12 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 27px;
  border-radius: 2px;
  background: var(--main-color);
}
.price .cont12 .box .service_box dd {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  align-self: center;
  position: relative;
  padding-right: 20px;
  color: #06aa5f;
}

.price .cont12 .box .class_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.price .cont12 .box .class_box h3{
  font-size: 32px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
    margin: 60px auto 0;
}

.price .cont12 .box p{
margin-top: 20px;
text-align: right;
}
.price .cont12 .box .class_box .service_box {
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  width: 1080px;
  height: 70px;
  margin: 0 auto;
  text-align: center;
  }
.price .cont12 .box .class_box .service_box dt {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  align-self: center;
  position: relative;
  padding-left: 45px;
  }
.price .cont12 .box .class_box .service_box dt::before{
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 27px;
  border-radius: 2px;
  background: var(--main-color);
  }
  .price .cont12 .box .class_box .service_box dd {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  align-self: center;
  position: relative;
  padding-right: 20px;
  color: #06aa5f;
  }

.price .cont12 .box .class_box .flex_box {
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  gap: 20px;
}
.price .cont12 .box .class_box .flex_box .service_box {
  width: 525px;
  height: 70px;
  margin: 0;
}

.price .cont12 .box .class_box .flex_box .service_box:nth-of-type(2) span {
font-size: 21px;
font-weight: bold;
}

.price .cont12 .box .button {
  position: relative;
  width: 360px;
  height: 50px;
  text-align: center;
  margin: 30px auto 0;
}

.price .cont12 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
}

.price .cont12 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont13 */
  .price .cont13 {
    background: #fff;
    padding: 140px 0 120px;
  }

  .price .cont13 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #082a4a;
  }

  .price .cont13 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .price .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/price_text01.png) center center / cover no-repeat;
    width: 225px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .price .cont13 .readtext {
    text-align: center;
    font-size: 20px;
    margin-top: 40px;
  }

.price .cont13 .box {
    position: relative;
    width: 1200px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 60px 60px 80px;
    margin: 60px auto 0;
}

.price .cont13 .box .service_box{
    background: #f5f5f5;
    display: flex;
    justify-content: space-between;
    width: 1080px;
    height: 70px;
    margin: 0 auto;
    text-align: center;
}

.price .cont13 .box .service_box:first-of-type {
   margin-bottom: 20px;
}

.price .cont13 .box .service_box dt {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    align-self: center;
    position: relative;
    padding-left: 45px;
  }
.price .cont13 .box .service_box dt::before{
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 27px;
    border-radius: 2px;
    background: var(--main-color);
  }
  .price .cont13 .box .service_box dd {
    font-size: 30px;
    font-weight: bold;
    text-align: right;
    align-self: center;
    position: relative;
    padding-right: 20px;
    color: #06aa5f;
  }
.price .cont13 .box .tax_text01{
  text-align: right;
  margin-top: 15px;
}


.price .cont13 .box .button {
  position: relative;
  width: 360px;
  height: 50px;
  text-align: center;
  margin: 30px auto 0;
}

.price .cont13 .box .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
}

.price .cont13 .box .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont14 */
.price .cont14 {
  background: var(--main-light-color);
  padding: 140px 0 120px;
}

.price .cont14 h2 {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  color: #082a4a;
}

.price .cont14 h2 span {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 36px;
}

.price .cont14 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 225px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 18px));
  z-index: -1;
}

.price .cont14 .readtext {
  text-align: center;
  font-size: 20px;
  margin-top: 40px;
}

.price .cont14 .box {
  position: relative;
  width: 1200px;
  border: 3px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 60px 60px 80px;
  margin: 60px auto 0;
}

.price .cont14 .box .service_box{
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  width: 1080px;
  height: 70px;
  margin: 0 auto;
  text-align: center;
}

.price .cont14 .box .service_box dt {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  align-self: center;
  position: relative;
  padding-left: 45px;
}
.price .cont14 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 27px;
  border-radius: 2px;
  background: var(--main-color);
}
.price .cont14 .box .service_box dd {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  align-self: center;
  position: relative;
  padding-right: 20px;
  color: #06aa5f;
}

.price .cont14 .box .class_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.price .cont14 .box .class_box h3{
  font-size: 32px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  margin: 60px auto 0;
}

.price .cont14 .box p{
  margin-top: 20px;
  text-align: right;
}
.price .cont14 .box .class_box .service_box {
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  width: 1080px;
  height: 70px;
  margin: 0 auto;
  text-align: center;
  }
.price .cont14 .box .class_box .service_box dt {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  align-self: center;
  position: relative;
  padding-left: 45px;
  }
.price .cont14 .box .class_box .service_box dt::before{
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 27px;
  border-radius: 2px;
  background: var(--main-color);
  }
  .price .cont14 .box .class_box .service_box dd {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  align-self: center;
  position: relative;
  padding-right: 20px;
  color: #06aa5f;
  }

.price .cont14 .box .class_box .flex_box {
  display: flex;
  flex-wrap: wrap;
  width: 1080px;
  gap: 20px;
}
.price .cont14 .box .class_box .flex_box .service_box {
  width: 525px;
  height: 70px;
  margin: 0;
}


.price .cont14 .box .button {
  position: relative;
  width: 360px;
  height: 50px;
  text-align: center;
  margin: 30px auto 0;
}

.price .cont14 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
}

.price .cont14 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/*----------------------------------------
料金表 サイドサービスメニュー
----------------------------------------*/

.price .side_service {
  position: fixed;
  top: 240px;
  right: -220px;
  z-index: 999;
  display: flex;
  align-items: flex-start;
  transition: right 0.35s ease;
}

/* ホバーすると開く */
.price .side_service:hover {
  right: 0;
}

/* タブ */
.price .side_service_title {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 130px;
  margin: 0;
  background: #00ad68;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
}

.price .side_service_title span {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

/* メニュー本体 */
.price .side_service_menu {
  width: 220px;
  box-sizing: border-box;
  background: #fff;
  border: 3px solid #00ad68;
  border-radius: 0 6px 6px 6px;
  background: var(--main-light-color);
}

.price .side_service_menu ul {
  margin: 0;
  padding: 15px;
  list-style: none;
}

.price .side_service_menu li {
  margin: 0;
  padding: 0;
}

.price .side_service_menu li + li {
  margin-top: 8px;
}

.price .side_service_menu a {
  position: relative;
  display: block;
  padding-left: 14px;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s;
}

.price .side_service_menu a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 0;
  content: "";
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #00ad68;
  transform: translateY(-50%);
}

.price .side_service_menu a:hover {
  color: #00ad68;
}




  /* reason ------------------------------------------------------------------------*/
  /* key */
  .reason .key .text01::after {
    background: url("img/reason_key_text.png");
    width: 404px;
    height: 74px;
  }

  /* cont01 */
  .reason .cont01 {
    position: relative;
    margin: 100px auto 85px;
  }

  .reason .cont01::before {
    position: absolute;
    content: "";
    background: url(img/common_deco08.png) center center / cover no-repeat;
    width: 310px;
    height: 225px;
    top: -24px;
    right: 54px;
  }

  .reason .cont01 h2 {
    font-size: 20px;
    font-weight: bold;
    padding-left: 40px;
    position: relative;
    line-height: 2.3;
  }

  .reason .cont01 h2::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 105px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .reason .cont01 h2 span {
    display: block;
    font-weight: bold;
    font-size: 32px;
    color: var(--main-color);
    line-height: 1.5;
  }

  .reason .cont01 p {
    margin-top: 45px;
    line-height: 2.33;
    font-size: 18px;
  }


  /* cont02 */
  .reason .cont02 {
    padding: 20px 0 100px;
    background: var(--main-light-color);
  }


  .reason .cont02 .reason_box {
    position: relative;
    display: flex;
    margin-top: 80px;
  }

  .reason .cont02 .reason_box figure{
    width: 650px;
    height: 395px;
    border: 3px solid var(--main-color);
    border-radius: 15px;
    overflow: hidden;
  }

  .reason .cont02 .reason_box .text_box {
    position: absolute;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 330px;
    border-radius: 10px 0 0 10px;
    padding: 0 300px 0 48px;
    background: #fff;
  }

  .reason .cont02 .reason_box:nth-child(even) {
    justify-content: end;
  }

  .reason .cont02 .reason_box:nth-of-type(even) .text_box {
    border-radius: 0 10px 10px 0;
    left: -300px;
    padding: 0 0 0 300px;
  }


  .reason .cont02 .reason_box .text_box h3 {
    position: relative;
    font-size: 26px;
    font-weight: bold;
    color: #082a4a;
    padding-left: 107px;
    line-height: 1.38;
    margin-top: 40px;
  }

  .reason .cont02 .reason_box .text_box h3::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .reason .cont02 .reason_box .text_box:nth-of-type(1) h3::before {
    background: url(img/reason_no01.png);
    width: 43px;
    height: 48px;
  }

  .reason .cont02 .reason_box:nth-of-type(2) .text_box h3::before {
    background: url(img/reason_no02.png);
    width: 49px;
    height: 50px;
  }

  .reason .cont02 .reason_box:nth-of-type(3) .text_box h3::before {
    background: url(img/reason_no03.png);
    width: 49px;
    height: 50px;
  }

  .reason .cont02 .reason_box:nth-of-type(4) .text_box h3::before {
    background: url(img/reason_no04.png);
    width: 51px;
    height: 50px;
  }

  .reason .cont02 .reason_box:nth-of-type(5) .text_box h3::before {
    background: url(img/reason_no05.png);
    width: 49px;
    height: 50px;
  }


  .reason .cont02 .reason_box:nth-of-type(7) .text_box h3::before {
    background: url(img/reason_no07.png);
    width: 49px;
    height: 50px;
  }

  .reason .cont02 .reason_box:nth-of-type(8) .text_box h3::before {
    background: url(img/reason_no08.png);
    width: 50px;
    height: 50px;
  }


  .reason .cont02 .reason_box .text_box h3::after {
    position: absolute;
    content: "";
    left: 73px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 66px;
    border-radius: 2px;
    background: var(--main-color);
  }

  .reason .cont02 .reason_box .text_box .text01 {
    font-size: 16px;
    margin-top: 20px;
    width: 550px;
    text-align: justify;
  }



  .reason .cont02 .reason06_box {
    background: #fff;
    border-radius: 10px;
    padding: 52px 38px 49px;
    margin-top: 80px;
  }

  .reason .cont02 .reason06_box h3 {
    position: relative;
    font-size: 26px;
    font-weight: bold;
    color: #082a4a;
    padding-left: 107px;
    line-height: 1.38;
    margin-top: 40px;
  }

  .reason .cont02 .reason06_box h3::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(img/reason_no06.png);
    width: 50px;
    height: 50px;
  }

  .reason .cont02 .reason06_box h3::after {
    position: absolute;
    content: "";
    left: 73px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 66px;
    border-radius: 2px;
    background: var(--main-color);
  }


  .reason .cont02 .reason06_box .text01 {
    margin-top: 16px;
  }

  .reason .cont02 .reason06_box .reason06_sub_box {
    border: 3px solid var(--main-color);
    border-radius: 10px;
    margin-top: 42px;
    padding: 100px 0 80px;
    text-align: center;
  }

  .reason .cont02 .reason06_box .reason06_sub_box .text02 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #082a4a;
  }

  .reason .cont02 .reason06_box .reason06_sub_box .text02 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
    z-index: 0;
  }

  .reason .cont02 .reason06_box .reason06_sub_box .text02 span::before {
    position: absolute;
    content: "";
    background: url(img/reason_text01.png) center center / cover no-repeat;
    width: 466px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .reason .cont02 .reason06_box .reason06_sub_box .text03 {
    margin-top: 33px;
    font-size: 18px;
  }

  .reason .cont02 .reason06_box .reason06_sub_box .img_box {
    display: flex;
    justify-content: center;
    margin-top: 42px;
  }

  .reason .cont02 .reason06_box .reason06_sub_box .img_box .before {
    position: relative;
  }

  .reason .cont02 .reason06_box .reason06_sub_box .img_box .before::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 50%;
    right: -8px;
    transform: translateY(-50%) scale(1.5);
    z-index: 1;
  }

  .reason .cont02 .reason06_box .reason06_sub_box .button {
    position: relative;
    width: 400px;
    height: 50px;
    text-align: center;
    margin: 60px auto 0;
  }

  .reason .cont02 .reason06_box .reason06_sub_box .button a {
    display: block;
    background: var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .reason .cont02 .reason06_box .reason06_sub_box .button a span {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  .reason .cont02 .reason_box:nth-of-type(7) .text_box {
    height: 370px;
  }

  .reason .cont02 .reason_box:nth-of-type(7) .text_box .button {
    position: relative;
    width: 378px;
    height: 45px;
    text-align: center;
    margin: 20px 0 0;
  }

  .reason .cont02 .reason_box:nth-of-type(7) .text_box .button a {
    display: block;
    background: var(--main-color);
    line-height: 45px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .reason .cont02 .reason_box:nth-of-type(7) .text_box .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  @media screen and (min-width: 1800px) {
    .reason .cont02 .reason_box .text_box {
      border-radius: 10px;
      padding: 0 100px;
      right: -200px;
    }

    .reason .cont02 .reason_box:nth-of-type(even) .text_box {
      border-radius: 10px;
      padding: 0 100px;
      left: -200px;
    }
  }

  /* cont03 */
  .reason .cont03 {
    position: relative;
    padding: 120px 0 80px;
  }

   .reason .cont03::before {
    position: absolute;
    content: "";
    background: url(img/housecleaning_deco01.png) center / cover no-repeat;
    width: 260px;
    height: 330px;
    top: -125px;
    left: -25px;
    transform: scale(0.7);
  }

  .reason .cont03::after {
    position: absolute;
    content: "";
    background: url(img/housecleaning_deco03.png) center center / cover no-repeat;
    width: 260px;
    height: 330px;
    top: -80px;
    right: -25px;
    transform: scale(0.7);
  } 


  .reason .cont03 h2 {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #082a4a;
  }

  .reason .cont03 h2 span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 36px;
  }

  .reason .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/about_text01.png) center center / cover no-repeat;
    width: 479px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px));
    z-index: -1;
  }

  .reason .cont03 .text01 {
    font-size: 20px;
    text-align: center;
    line-height: 1.8;
    margin-top: 40px;
  }



  .reason .cont03 table {
    border-collapse: separate;
    margin-top: 50px;
  }

  .reason .cont03 table th {
    vertical-align: middle;
  }

  .reason .cont03 table thead th.eclean {
    position: relative;
    background: var(--main-color);
    color: #fff;
    width: 490px;
    height: 82px;
    border: 6px solid var(--main-color);
    border-radius: 10px 10px 0 0;
    font-weight: bold;
    font-size: 30px;
  }

  .reason .cont03 table thead th.eclean::before {
    position: absolute;
    content: "";
    background: url(img/common_deco02.png) center center / cover no-repeat;
    top: -28px;
    right: 22px;
    width: 89px;
    height: 103px;
  }

  .reason .cont03 table tbody th {
    text-align: left;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    background: #51aa81;
    width: 267px;
    height: 84px;
    border-bottom: 1px solid #b0b0b0;
    box-sizing: border-box;
    padding-left: 30px;
  }


  .reason .cont03 table tbody tr td.eclean {
    border-bottom: 1px solid #b0b0b0;
    border-left: 6px solid var(--main-color);
    border-right: 6px solid var(--main-color);
    width: 490px;
    height: 84px;
    box-sizing: border-box;
    background: var(--main-light-color);
    font-size: 23px;
    font-weight: bold;
    color: var(--main-color);
    vertical-align: middle;
    padding-left: 37px;
  }

  .reason .cont03 table tbody tr:last-of-type td.eclean {
    border-bottom: 6px solid var(--main-color);
  }

  .reason .cont03 table thead th.other {
    vertical-align: bottom;
  }

  .reason .cont03 table thead th.other span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 444px;
    height: 60px;
    background: #c4c4c4;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
  }

  .reason .cont03 table tbody tr td.other {
    border-bottom: 1px solid #b0b0b0;
    background: #f7f7f7;
    width: 444px;
    height: 84px;
    box-sizing: border-box;
    font-size: 22px;
    vertical-align: middle;
    padding-left: 42px;
  }



  /* cont04 */
  .reason p.cont04 {
    position: relative;
    text-align: center;
    font-weight: bold;
    font-size: 28px;
    height: 234px;
    line-height: 1.64;
    padding: 48px 0 52px;
    box-sizing: border-box;
  }

  .reason p.cont04 span {
    font-weight: bold;
    font-size: 20px;
    color: var(--main-color);
  }

  .reason p.cont04::before {
    position: absolute;
    content: "";
    background: url(img/common_deco02.png) center center / cover no-repeat;
    top: 9px;
    right: 21px;
    width: 89px;
    height: 103px;
  }


  .reason p.cont04::after {
    position: absolute;
    content: "";
    background: url(img/common_bg_01.png);
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 234px;
    z-index: -1;
  }



  @media screen and (max-width: 1240px) {
    .reason p.cont04::after {
      width: 1240px;
    }
  }


/* faq
------------------------------------------------------------------------*/
.faq .cont01,
.faq .cont02,
.faq .cont03 {
	box-sizing: border-box;
	margin: 120px auto 0;
	width: 1000px;
}
.faq .cont03 {
	margin: 120px auto;
}
.faq .cont01 h2,
.faq .cont02 h2,
.faq .cont03 h2 {
	position: relative;
	font-size: 22px;
	font-weight: bold;
	color: #082a4a;
	padding-left: 55px;
	padding-bottom: 25px;
	line-height: 1.38;
}
.faq .cont01 h2:before,
.faq .cont02 h2:before,
.faq .cont03 h2:before {
	position: absolute;
	content: "";
	left: 0;
	top: -2px;
	width: 42px;
	height: 29px;
	background: url(img/key_deco01.png) center / contain no-repeat;
}
.faq .cont01 .box,
.faq .cont02 .box,
.faq .cont03 .box {
	padding: 30px 40px;
	border-bottom: 1px solid var(--main-color);
	position: relative;
	cursor: pointer;
}
.faq .cont01 .box:first-of-type,
.faq .cont02 .box:first-of-type,
.faq .cont03 .box:first-of-type {
	border-top: 1px solid var(--main-color);
}
.faq .cont01 .box span,
.faq .cont02 .box span,
.faq .cont03 .box span {
	position: absolute;
	top: 38px;
	right: 40px;
	width: 19px;
	height: 19px;
	background: var(--main-color);
	border-radius: 50%;
	transition: all .3s;
}
.faq .cont01 .box.active span,
.faq .cont02 .box.active span,
.faq .cont03 .box.active span {
	background: #bbbbbb;
	transition: all .3s;
}
.faq .cont01 .box span::before,
.faq .cont02 .box span::before,
.faq .cont03 .box span::before {
	content: "";
	width: 8px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq .cont01 .box span::after,
.faq .cont02 .box span::after,
.faq .cont03 .box span::after {
	content: "";
	width: 2px;
	height: 8px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	transition: all .3s;
}
.faq .cont01 .box.active span::after,
.faq .cont02 .box.active span::after,
.faq .cont03 .box.active span::after {
	opacity: 0;
	transition: all .3s;
}
.faq .cont01 .box p,
.faq .cont02 .box p,
.faq .cont03 .box p {
	padding-left: 40px;
	position: relative;
	font-weight: bold;
}
.faq .cont01 .box .qus::before,
.faq .cont02 .box .qus::before,
.faq .cont03 .box .qus::before {
	content: 'Q';
	font-size: 18px;
	font-weight: bold;
	color: var(--main-color);
	position: absolute;
	top: 0;
	left: 0;
}
.faq .cont01 .box .qus,
.faq .cont02 .box .qus,
.faq .cont03 .box .qus {
	font-size: 18px;
	transition: all .3s;
}
.faq .cont01 .box.active .qus,
.faq .cont02 .box.active .qus,
.faq .cont03 .box.active .qus {
	color: #bbbbbb;
	transition: all .3s;
}
.faq .cont01 .box .ans,
.faq .cont02 .box .ans,
.faq .cont03 .box .ans {
	padding-top: 15px;
	display: none;
}
.faq .cont02 .cancel-table {
	width: 400px;
	margin: 20px 0 20px 40px;
	border-collapse: collapse;
}
.faq .cont02 .cancel-table th,
.faq .cont02 .cancel-table td {
	border: 1px solid #ddd;
	padding: 10px;
	font-size: 16px;
}
.faq .cont02 .cancel-table th {
	background: #f5f5f5;
}



/* company
------------------------------------------------------------------------*/
/* company 共通 */
.company .cont01 h2,
.company .cont02 h2,
.company .cont03 h2 {
	font-size: 28px;
	text-align: center;
	padding-bottom: 35px;
	font-weight: bold;
	position: relative;
	line-height: 1;
}
.company .cont01 h2::before,
.company .cont02 h2::before,
.company .cont03 h2::before {
	content: '';
	font-size: 16px;
	font-weight: bold;
	color: var(--main-color);
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
}
.company .cont01 h2::before {
	content: "GREETING";
}
.company .cont02 h2::before {
	content: "OUTLINE";
}
.company .cont03 h2::before {
	content: "Specified Commercial Transaction Law";
}
.company table {
	width: 100%;
	text-align: left;
	margin: 40px auto 0;
}
.company table tr {
	border-top: 1px solid #fff;
}
.company table tr:last-of-type {
	border-bottom: 1px solid #fff;
}
.company table th {
	width: 250px;
	padding: 23px 0 20px 30px;
	font-weight: bold;
	vertical-align: middle;
	position: relative;
}
.company table th:before {
	content: "";
	width: 2px;
	height: 20px;
	background-color: var(--main-color);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
}
.company table td {
	padding: 23px 0 20px;
	vertical-align: middle;
}

/* cont01 */
.company .cont01 {
	margin: 120px auto;
}
.company .cont01 .flex {
	display: flex;
	/* align-items: center; */
	padding-top: 50px;
}
.company .cont01 .flex .text_box {
	padding-left: 40px;
	width: 600px;
  box-sizing: border-box;
}
.company .cont01 .flex .text_box h3 {
	font-size: 22px;
	padding-bottom: 25px;
}
.company .cont01 .flex .text_box .text01 span{
	display: block;
    margin-block: 15px;
}
.company .cont01 .flex .text_box .text02 {
	text-align: right;
	font-size: 24px;
	margin-top: 40px;
	font-weight: bold;
}
.company .cont01 .flex .text_box .text02 span {
	font-size: 16px;
	font-weight: bold;
}
.company .cont01 .img {
	flex-shrink: 0;
	border-radius: 10px;
	overflow: hidden;
  width: 600px;
  height: 400px;
}


/* cont02 */
.company .cont02 {
	margin: 120px auto;
	padding: 120px 0;
	background: var(--main-light-color);
}
.company .cont02 .inner {
	width: 1000px;
}


/* cont02 */
.company .cont03 {
	width: 1000px;
	/* margin: 100px auto; */
	margin: 120px auto 0;
}
.company .cont03 table tr {
	border-top: 1px solid var(--main-color);
}
.company .cont03 table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}

/* works-archive
------------------------------------------------------------------------*/

	/* cont01 */
	.works-archive .cont01 {
    display: flex;
    justify-content: center;
    margin-top: 80px;
    gap: 28px;
    flex-wrap: wrap;
	}

	.works-archive .cont01 .btn {
		width: 382px;
		line-height: 72px;
		box-sizing: border-box;
	}

	.works-archive .cont01 .btn a {
		position: relative;
		display: block;
		color: #fff;
		font-weight: bold;
		font-size: 20px;
		text-align: center;
		border-radius: 10px;
	}

	.works-archive .cont01 .btn a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.works-archive .cont01 .btn a {
    background: #0091a2;
    border: 1px solid #0091a2;
	}

	/* .works-archive .cont01 .btn:nth-of-type(2) a {
		background: #0091a2;
		border: 2px solid #0091a2;
	}

	.works-archive .cont01 .btn:nth-of-type(3) a {
		background: #348de2;
		border: 2px solid #348de2;
	} */

	.works-archive .cont01 .btn a:hover {
		background: #fff;
		color: #065aaa;
	}

	.works-archive .cont01 a:hover::before {
		background: #065aaa;
	}

	/* .works-archive .cont01 .btn:nth-of-type(2) a:hover {
		background: #fff;
		color: #0091a2;
	}

	.works-archive .cont01 .btn:nth-of-type(2) a:hover::before {
		background: #0091a2;
	}

	.works-archive .cont01 .btn:nth-of-type(3) a:hover {
		background: #fff;
		color: #348de2;
	}

	.works-archive .cont01 .btn:nth-of-type(3) a:hover::before {
		background: #348de2;
	} */



	.works-archive .contact_box {
		margin-top: 100px;
	}


	.works-archive .cont02{
		width: 1380px;
		margin: 0 auto;
	}

	.works-archive .cont02 h3 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: var(--main-color);
		line-height: 32px;
		height: 32px;
		padding-left: 15px;
		margin-top: 19px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.works-archive .cont02 h3:before {
		content: "";
		position: absolute;
		background: var(--main-color);
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.works-archive .cont02 .category_01,
	.works-archive .cont02 .category_02 {
		display: inline-block;
		line-height: 1;
		font-size: 14px;
		color: #fff;
		font-weight: bold;
		margin-top: 20px;
	}

	.works-archive .cont02 .category_01 {
		padding: 7px 14px;
		background: #0091a2;
	}

	.works-archive .cont02 .category_02 {
		padding: 7px 22px;
		background: #51aa81;
	}

	.works-archive .cont02 .text02 {
		margin-top: 16px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.works-archive .cont02 .box {
		display: flex;
		flex-wrap: wrap;
		gap: 60px;
		margin: 90px auto 0;
	}

	.works-archive .cont02 .item {
		width: 660px;
		position: relative;
	}

	.works-archive .cont02 .box .item a {
		display: flex;
		flex-direction: column-reverse;
		gap: 10px;
	}

	.works-archive .cont02 .img_box {
		display: flex;
	}

	.works-archive .cont02 .box .img_box figure {
		position: relative;
	}

	.works-archive .cont02 .box .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		z-index: 1;
	}

	.works-archive .cont02 .img_box figure img{
		width: 330px;
	}

	.works-archive .cont02 .box .img_box .before img {
		border: 1px solid var(--main-color);
	}
	.works-archive .cont02 .box .img_box .before::after {
		position: absolute;
		content: "";
		background: url("img/before_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.works-archive .cont02 .box .img_box .after img {
		border: 1px solid var(--main-color);
	}
	.works-archive .cont02 .box .img_box .after::after {
		position: absolute;
		content: "";
		background: url("img/after_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.works-archive .cont02 .p_button_box {
		display: flex;
		justify-content: center;
		gap: 0 15px;
		margin: 90px auto 0;
	}

	.works-archive .cont02 .p_button a {
		display: block;
		width: 40px;
		height: 40px;
		background: #fff;
		border-radius: 50%;
		color: #065aaa;
		font-size: 16px;
		line-height: 36px;
		text-align: center;
		border: 2px solid #065aaa;
		box-sizing: border-box;
	}

	.works-archive .cont02 .p_button.current {
		display: block;
		width: 40px;
		height: 40px;
		background: var(--main-color);
		border-radius: 50%;
		color: #fff;
		font-size: 16px;
		line-height: 36px;
		text-align: center;
		border: 2px solid var(--main-color);
		box-sizing: border-box;
		pointer-events: none;
	}

	@media screen and (max-width: 1480px) {
		.works-archive .cont02{
			width: 1180px;
		}
		.works-archive .cont02 .box {
			gap: 40px 20px;
		}
		.works-archive .cont02 .item {
			width: calc(50% - 10px);
		}
		.works-archive .cont02 .img_box figure {
			width: 290px;
		}
	}




  /* works-single ------------------------------------------------------------------------*/
  /* key */
  .works-single .key .text01::after {
    background: url(img/reason_key_text.png);
    width: 404px;
    height: 74px;
  }

  .works-single .cont01 h2 {
    position: relative;
    font-weight: bold;
    font-size: 26px;
    line-height: 1;
    background: var(--main-light-color);
    color: var(--main-color);
    padding: 18px 0 18px 39px;
    border-radius: 10px;
    margin-top: 100px;
  }

  .works-single .cont01 h2::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 36px;
    background: var(--main-color);
    border-radius: 3px;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
  }

  .works-single .cont01 .cate01,
  .works-single .cont01 .cate02 {
    display: inline-block;
    line-height: 28px;
    color: #fff;
    font-weight: bold;
    margin-top: 30px;
    font-size: 14px;
  }

  .works-single .cont01 .cate01 {
    padding: 0 30px;
    background: #0091a2;
  }

  .works-single .cont01 .cate02 {
    padding: 0 25px;
    background: #51aa81;
    margin-left: 10px;
  }

  .works-single .cont01 dl {
    display: flex;
    flex-wrap: wrap;
    width: 407px;
    margin-top: 18px;
  }

  .works-single .cont01 dl dt {
    position: relative;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 33px;
    width: 162px;
    box-sizing: border-box;
  }

  .works-single .cont01 dl dt:nth-of-type(4) {
   font-size: 14px;
 }

  .works-single .cont01 dl dt::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
  }


  .works-single .cont01 dl dt.day::before {
    background: url("img/works-single_deco01.png") no-repeat;
    left: 2px;
    width: 17px;
    height: 18px;
  }

  .works-single .cont01 dl dt.work::before {
    background: url("img/works-single_deco02.png") no-repeat;
    left: 2px;
    width: 16px;
    height: 20px;
  }

  .works-single .cont01 dl dt.time::before {
    background: url("img/works-single_deco03.png") no-repeat;
    left: 0;
    width: 20px;
    height: 19px;
  }

  .works-single .cont01 dl dt.type::before {
    background: url("img/works-single_deco04.png") no-repeat;
    left: 1px;
    width: 19px;
    height: 12px;
  }

  .works-single .cont01 dl dt.maker::before {
    background: url("img/works-single_deco05.png") no-repeat;
    left: 1px;
    width: 19px;
    height: 20px;
  }


  .works-single .cont01 dl dd {
    position: relative;
    font-weight: bold;
    padding-left: 15px;
    width: 240px;
    box-sizing: border-box;
  }

  .works-single .cont01 dl dd::before {
    position: absolute;
    content: ":";
    font-weight: bold;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .works-single .cont01 .text01 {
    margin-top: 25px;
  }

  .works-single .cont01 .img_box {
    display: flex;
    margin-top: 50px;
  }

  .works-single .cont01 .img_box .before {
    position: relative;
  }

  .works-single .cont01 .img_box .after {
    position: relative;
  }

  .works-single .cont01 .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
    transform: scale(1.4);
    transform-origin: left top;
  }

  .works-single .cont01 .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
    transform: scale(1.4);
    transform-origin: left top;
  }

  .works-single .cont01 .img_box .before::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 50%;
    right: -8px;
    transform: translateY(-50%) scale(1.3);
    transform-origin: center;
    z-index: 1;
  }

  .works-single .cont01 .h3_box h3 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: #082a4a;
    padding-left: 23px;
    line-height: 36px;
    margin: 36px 0 15px 0;
  }

  .works-single .cont01 .h3_box h3::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 36px;
    background: var(--main-color);
    border-radius: 3px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .works-single .cont01 .h3_box h3::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #082a4a;
    bottom: -15px;
    left: 0;
  }

  .works-single .cont01 .h3_box .text02 {
    margin-top: 32px;
  }

  .works-single .cont01 .h3_box .h4_box h4 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #082a4a;
    padding-left: 15px;
    line-height: 25px;
    margin: 38px 0 15px 0;
  }

  .works-single .cont01 .h3_box .h4_box h4::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 25px;
    background: var(--main-color);
    border-radius: 3px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .works-single .cont01 .h3_box .h4_box .h5_box h5 {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: #082a4a;
    padding-left: 21px;
    line-height: 1;
    margin: 40px 0 20px 0;
  }

  .works-single .cont01 .h3_box .h4_box .h5_box h5::before {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    background: var(--main-color);
    border-radius: 3px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }


  /* cot02 */
  .works-single .cont02 {
    display: flex;
    gap: 46px;
    justify-content: center;
    margin-top: 88px;
  }

  .works-single .cont02 .prev_box,
  .works-single .cont02 .next_box {
    position: relative;
    width: 560px;
    border-radius: 10px;
    border: 2px solid var(--main-color);
    box-sizing: border-box;
    background: var(--main-light-color);
  }

  .works-single .cont02 .prev_box a,
  .works-single .cont02 .next_box a {
    position: relative;
  }

  .works-single .cont02 .next_box {
    border: 2px solid #51aa81;
  }

  .works-single .cont02 .prev_box a::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    background: url("img/prev_next_btn01.png") no-repeat;
    left: -17.5px;
    top: 190px;
  }

  .works-single .cont02 .next_box a::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    background: url("img/prev_next_btn01.png") no-repeat;
    transform: rotate(-180deg);
    right: -17.5px;
    top: 190px;
  }

  .works-single .cont02 h3 {
    line-height: 38px;
    background: var(--main-color);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    border-radius: 6px 6px 0 0;
  }

  .works-single .cont02 .next_box h3 {
    background: #51aa81;
  }

  .works-single .cont02 .ttl01 {
    line-height: 1;
    font-size: 20px;
    color: #082a4a;
    font-weight: bold;
    margin: 30px 30px 0;
  }

  .works-single .cont02 .cate01,
  .works-single .cont02 .cate02 {
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    line-height: 22px;
    display: inline-block;
    border-radius: 3px;
    margin-top: 20px;
  }

  .works-single .cont02 .cate01 {
    padding: 0 24px;
    background: #0091a2;
    margin-left: 30px;
  }

  .works-single .cont02 .cate02 {
    padding: 0 22px;
    margin-left: 8px;
    background: #51aa81;
  }

  .works-single .cont02 .date {
    display: inline-block;
    margin-left: 5px;
    font-size: 14px;
    line-height: 22px;
    margin-top: 20px;
  }

  .works-single .cont02 .img_box {
    display: flex;
    justify-content: center;
    margin: 25px auto 30px;
  }

  /* cont03 */
  .works-single .cont03 h2 {
    position: relative;
    font-weight: bold;
    font-size: 26px;
    line-height: 1;
    background: var(--main-light-color);
    color: var(--main-color);
    padding: 18px 0 18px 39px;
    border-radius: 10px;
    margin-top: 100px;
  }

  .works-single .cont03 h2::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 36px;
    background: var(--main-color);
    border-radius: 3px;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
  }

  .works-single .cont03 .cate_box {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 25px;
  }

  .works-single .cont03 .cate_box .btn {
    line-height: 72px;
  }

  .works-single .cont03 .cate_box .btn a {
    position: relative;
    display: block;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    border-radius: 10px;
  }

  .works-single .cont03 .cate_box .btn a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  /* .works-single .cont03 .cate_box .btn:nth-of-type(1) a {
    background: var(--main-color);
  } */

  .works-single .cont03 .cate_box .btn a {
    background: #0091a2;
    width: 300px;
  }

  /* .works-single .cont03 .cate_box .btn:nth-of-type(3) a {
    background: #51aa81;
  } */






  /* common
------------------------------------------------------------------------*/
  /* header */
  .common header {
    height: 130px;
  }

  .common header .header_box {
    height: 130px;
  }

  .common header .header_box::before {
    background: #fff;
    z-index: -1;
    position: fixed;
    height: 105px;
    transition: height 0.5s;
  }

  .common header .header_box.active02::before {
    height: 130px;
  }

  /* key */


  .common .key {
    text-align: center;
    height: 253px;
    background: url("img/common_bg_01.png");
    position: relative;
    top: -25px;
  }

  .common .key .text01 {
    position: relative;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    top: 110.5px;
    color: #082a4a;
  }

  .common .key .text01::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }


  /* pankuzu */
  .pankuzu {
    line-height: 1.3;
    position: relative;
    margin-top: -15px;
  }

  .pankuzu ul li {
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
  }

  .pankuzu ul li a {
    color: #333;
  }

  .pankuzu ul li:not(:last-of-type)::after {
    content: ">";
    margin-left: 10px;
    flex-shrink: 0;
  }

  .pankuzu ul li:last-of-type {
    margin-right: 0;
  }

  /* 一覧ページのページャー */
  .archive-pager {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 120px auto;
  }

  .archive-pager .page-numbers {
    background: var(--main-color);
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-sizing: border-box;
  }

  .archive-pager .page-numbers.current {
    border: 1px solid var(--main-color);
    color: var(--main-color);
    background: #fff;
  }

  .archive-pager .page-numbers.prev,
  .archive-pager .page-numbers.next {
    background: var(--main-dark-color);
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-sizing: border-box;
    padding-top: 3px;
  }

  .archive-pager .page-numbers.next {
    padding-left: 3px;
  }

  .single-pager {
    display: flex;
    justify-content: space-between;
    margin: 120px auto;
  }

  .single-pager .prev-pager-box,
  .single-pager .next-pager-box {
    width: calc(50% - 30px);
  }

  .single-pager .prev-pager-box {
    margin-left: 20px;
  }

  .single-pager .next-pager-box {
    margin-right: 20px;
  }

  .single-pager a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 14px;
    position: relative;
  }

  .single-pager .prev-pager-box a {
    flex-direction: row-reverse;
  }

  .single-pager .prev-pager-box a::before,
  .single-pager .next-pager-box a::before {
    content: "";
    width: 35px;
    height: 35px;
    background: var(--main-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .single-pager .prev-pager-box a::before {
    left: -20px;
  }

  .single-pager .next-pager-box a::before {
    right: -20px;
  }

  .single-pager .prev-pager-box a::after,
  .single-pager .next-pager-box a::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .single-pager .prev-pager-box a::after {
    border-right: 8px solid #fff;
    left: -7px;
  }

  .single-pager .next-pager-box a::after {
    border-left: 8px solid #fff;
    right: -7px;
  }

  .single-pager .prev-pager-box a .text-box {
    padding-left: 20px;
  }

  .single-pager .next-pager-box a .text-box {
    padding-right: 20px;
  }

  .single-pager a h2 {
    line-height: 1.3;
    margin-bottom: 10px;
    font-weight: bold;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .single-pager a .img {
    flex-shrink: 0;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  }

  .single-pager a .img img {
    width: 150px !important;
    border-radius: 5px !important;
  }


  /*blog共通項目
--------------------------------------------------------------------------*/
  .blog .flex {
    display: flex;
    justify-content: flex-start;
    margin: 120px auto;
  }

  .blog .flex .left_box {
    flex-shrink: 1;
    width: 800px;
    margin-right: 30px;
  }

  .blog .flex .side {
    width: 370px;
    flex-shrink: 0;
    margin-top: -5px;
  }

  .blog .flex .side .side_box02,
  .blog .flex .side .side_box03 {
    margin: 60px 0;
  }

  .blog .flex .side .cont a {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
    margin-top: 20px;
  }

  .blog .flex .side h2 {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--main-color);
    position: relative;
  }

  .blog .flex .side h2::before {
    content: "";
    color: var(--main-color);
    font-size: 14px;
    position: absolute;
    top: 7px;
    left: 100px;
  }

  .blog .flex .side .side_box01 h2::before {
    content: "Popular Articles";
  }

  .blog .flex .side .side_box02 h2::before {
    content: "New Articles";
  }

  .blog .flex .side .side_box03 h2::before {
    content: "Category";
    left: 110px;
  }

  .blog .flex .side .cont .text_box {
    margin-left: 15px;
    font-size: 14px;
    width: 205px;
  }

  .blog .flex .side .cont .text_box h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 10px;
  }

  .blog .flex .side .cont .img {
    width: 150px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
  }

  .blog .flex .side .cont .img img {
    border-radius: 5px;
  }

  .blog .flex .side .side_box01 .cont .img::before {
    content: "";
    width: 25px;
    height: 25px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: var(--main-color);
    line-height: 1;
    box-sizing: border-box;
    padding-top: 6px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
  }

  .blog .flex .side .side_box01 .cont:nth-of-type(1) .img::before {
    content: "1";
    background: #f2cd44;
  }

  .blog .flex .side .side_box01 .cont:nth-of-type(2) .img::before {
    content: "2";
    background: #ababab;
  }

  .blog .flex .side .side_box01 .cont:nth-of-type(3) .img::before {
    content: "3";
    background: #bc6c25;
  }

  .blog .flex .side .side_box01 .cont:nth-of-type(4) .img::before {
    content: "4";
  }

  .blog .flex .side .side_box01 .cont:nth-of-type(5) .img::before {
    content: "5";
  }

  .blog .flex .side .side_box02 .cont .img {
    position: relative;
  }

  .blog .flex .side .side_box02 .cont .img::before {
    content: "new";
    width: 50px;
    height: 25px;
    line-height: 1;
    font-size: 14px;
    box-sizing: border-box;
    padding-top: 5px;
    color: #fff;
    background: var(--main-color);
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
  }

  .blog .flex .side .side_box03 ul {
    margin-top: 15px;
  }

  .blog .flex .side .side_box03 ul li {
    position: relative;
    padding-left: 32px;
  }

  .blog .flex .side .side_box03 ul li:nth-of-type(n + 2) {
    margin-top: 15px;
  }

  .blog .flex .side .side_box03 ul li::before {
    content: "";
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: url(img/category_icon.png) no-repeat top 7px left 7px var(--main-color);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  /*blog_archive
------------------------------------------------------------------------*/
  .blog_archive .cont01 .cont:nth-of-type(1) {
    margin-top: 0;
  }

  .blog_archive .cont01 .cont {
    border-bottom: 1px solid var(--main-color);
    margin-top: 30px;
  }

  .blog_archive .cont01 .cont a {
    display: block;
    box-sizing: border-box;
    padding: 0 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .blog_archive .cont01 .cont .img {
    flex-shrink: 0;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.03);
    border-radius: 10px;
  }

  .blog_archive .cont01 .cont .img img {
    border-radius: 10px;
  }

  .blog_archive .cont01 .cont .text_box {
    width: 440px;
    padding-left: 30px;
  }

  .blog_archive .cont01 .cont h2 {
    font-size: 18px;
    font-weight: bold;
  }

  .blog_archive .cont01 .cont .text_box .cate_box {
    margin: 15px 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
  }

  .blog_archive .cont01 .cont .text_box .cate_box .cate {
    font-size: 12px;
    line-height: 1;
    color: #fff;
    background: var(--main-color);
    border-radius: 5px;
    min-width: 100px;
    padding: 7px 15px;
    text-align: center;
  }

  .blog_archive .cont01 .cont .text_box .cate_box .date {
    font-size: 14px;
    line-height: 1;
  }

  .blog_archive .cont01 .cont .text_box .text {
    line-height: 1.8;
  }

  /* ブログ詳細 css */
  .blog_single .cont01 h1 {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--main-color);
    font-size: 20px;
    line-height: 1.5;
    margin: 0 0 25px;
    font-weight: bold;
    position: relative;
  }

  .blog_single .cont01 .cate_box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 20px;
  }

  /*
.blog_single .cont01 .cate_box .cate {
	line-height: 1;
	font-size: 12px;
	color: #fff;
	text-align: center;
	min-width: 100px;
	padding: 7px 15px;
	border-radius: 5px;
	background: var(--main-color);
}*/
  .blog_single .cont01 .cate_box .cate {
    text-align: center;
  }

  .blog_single .cont01 .cate_box .cate a {
    color: #fff;
    text-decoration: none;
    display: block;
    line-height: 1;
    font-size: 12px;
    min-width: 100px;
    padding: 7px 15px;
    border-radius: 5px;
    background: var(--main-color);
  }

  .blog_single .cont01 .cate_box .date {
    font-size: 14px;
    line-height: 1;
    margin: 0;
    font-weight: bold;
  }

  /* contact
------------------------------------------------------------------------*/
  /* cont01 */
  .contact .cont01 {
    width: 1000px;
    margin: 120px auto 0;
  }

  .contact .cont01 .tel-box {
    padding: 40px 0 35px;
    border-top: 1px solid var(--main-dark-color);
    /* border-bottom: 1px solid var(--main-color); */
  }

  .contact .cont01 .line-box {
    padding: 40px 0 45px;
    border-top: 1px solid var(--main-dark-color);
    border-bottom: 1px solid var(--main-dark-color);
  }

  .contact .cont01 .line-box {
    padding: 40px 0 45px;
    border-top: 1px solid var(--main-dark-color);
    border-bottom: 1px solid var(--main-dark-color);
  }


  .contact .cont01 h2 {
    font-size: 18px;
  }

  .contact .cont01 .tel-box h2::before {
    content: "■";
    color: var(--main-color);
    padding-right: 5px;
  }

  .contact .cont01 .line-box h2::before {
    content: "■";
    color: #00b12b;
    padding-right: 5px;
  }

  .contact .cont01 .tel-box p {
    display: flex;
    align-items: center;
    margin-top: 10px;
    line-height: 1.5;
  }

  /* .contact .cont01 .line-box p::after {
    content: "";
    background: url(img/contact-qr.jpg) no-repeat;
    background-size: 100px;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    left: 320px;
  } */

  .contact .cont01 .tel-box a {
    display: inline-block;
    font-size: 30px;
    padding-right: 20px;
    pointer-events: none;
  }

  .contact .cont01 .line-box a::after {
    content: "";
    background: url(img/contact-qr.jpg) no-repeat;
    background-size: 100px;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 209px;
  }

  .contact .cont01 .line-box p {
    margin-top: 15px;
  }

  .contact .cont01 .line-box a {
    font-size: 18px;
    line-height: 1;
    padding: 20px 75px 20px 55px;
    background: url(img/contact-line.png) no-repeat center left;
    position: relative;
  }

  /* cont02 */
  .contact .cont02 {
    width: 1000px;
    /* margin: 40px auto 100px; */
    margin: 40px auto 120px;
  }

  .contact .cont02 h2 {
    font-size: 18px;
  }

  .contact .cont02 h2::before {
    content: "■";
    color: var(--main-color);
    padding-right: 5px;
  }

  .contact .cont02 .lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 2;
  }

  .contact .cont02 table {
    width: 1000px;
    margin: 40px auto 0;
  }

  .contact .cont02 table tr {
    border-top: 1px solid var(--main-color);
  }

  .contact .cont02 table tr:last-of-type {
    border-bottom: 1px solid var(--main-color);
  }

  .contact .cont02 table th {
    width: 265px;
    text-align: left;
    vertical-align: middle;
    position: relative;
    box-sizing: border-box;
    font-weight: bold;
    padding: 30px 0;
    position: relative;
  }

  .contact .cont02 table th span {
    color: #fff;
    background: var(--main-color);
    border-radius: 5px;
    float: right;
    padding: 7px 15px;
    line-height: 1;
    position: absolute;
    /* top: 50%; */
    top: 44px;
    right: 0;
    /* transform: translateY(-50%); */
  }

  /* .contact .cont02 tr.address-contact th {
    vertical-align: top;
    padding-top: 48px;
  }

  .contact .cont02 tr.address-contact th span {
    top: 45px;
    transform: none;
  } */

  .contact .cont02 table td {
    vertical-align: middle;
    padding: 30px 0 30px 25px;
  }

  .contact .cont02 table td .radio-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 60px;
  }

  .contact .cont02 table td .radio-box span {
    display: flex;
    align-items: center;
    gap: 0 5px;
  }

  .contact .cont02 table td .radio-box span input {
    margin: 0 !important;
  }

  .contact .cont02 table td input[type="text"],
  .contact .cont02 table td input[type="email"],
  .contact .cont02 table td input[type="tel"],
  .contact .cont02 table td select,
  .contact .cont02 table td textarea {
    width: 100% !important;
    height: 60px !important;
    font-size: 16px;
    font: inherit;
    padding: 5px;
    box-sizing: border-box;
    padding: 20px 30px;
    border: none !important;
    background: var(--main-light-color);
    border-radius: 5px !important;
  }

  .contact .cont02 tr.address-contact input {
    margin-bottom: 10px !important;
  }

  .contact .cont02 tr.address-contact input:first-of-type {
    margin-right: 20px;
  }

  .contact .cont02 tr.address-contact input:first-of-type,
  .contact .cont02 tr.address-contact input:nth-of-type(2) {
    width: 210px !important;
  }

  .contact .cont02 tr.address-contact input:last-of-type {
    margin-bottom: 0 !important;
  }

  .contact .cont02 table td select {
    cursor: pointer;
  }

  .contact .cont02 table td textarea {
    height: 250px !important;
    vertical-align: middle;
    resize: none;
  }

  .contact .cont02 .privacy_check {
    text-align: center;
    padding: 50px 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .contact .cont02 .privacy_check a {
    text-decoration: underline;
  }

  .contact .cont02 .privacy_check div.mfp_err {
    text-align: center;
    width: 1000px;
    margin: 0 auto;
    padding: 10px 0;
    box-sizing: border-box;
    background: url(img/mfp_error.gif) no-repeat top 12px left 320px;
  }

  .contact .cont02 .privacy_check input {
    width: 15px;
    height: 15px;
    margin: 0 5px;
  }

  .contact .cont02 .privacy_check label {
    margin: 0 5px !important;
  }

  .contact .cont02 .button {
    text-align: center;
  }

  .contact .cont02 .button input {
    font-family: var(--main-font) !important;
    width: 360px;
    border-radius: 60px;
    line-height: 1;
    padding: 20px 0;
    font-size: 16px;
    box-sizing: border-box;
    cursor: pointer;
    margin: auto;
    border: none;
    display: block;
    color: #fff;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    transition: all 0.5s;
  }

  .contact .cont02 .button input:hover {
    background: #fff;
    color: var(--main-color);
    transition: all 0.5s;
  }

  /* thanks
------------------------------------------------------------------------*/
  .thanks .cont01 {
    /* padding: 70px 0 100px; */
    padding: 70px 0 0;
    text-align: center;
  }

  .thanks .cont01 h2 {
    text-align: center;
    font-size: 24px;
  }

  .thanks .cont01 .text {
    margin: 40px 0 0;
    font-weight: bold;
  }

  .thanks .cont01 .button {
    margin-top: 50px;
  }

  .thanks .cont01 .button a {
    width: 360px;
    border-radius: 60px;
    line-height: 1;
    padding: 20px 0;
    font-size: 16px;
    box-sizing: border-box;
    cursor: pointer;
    margin: auto;
    border: none;
    display: block;
    color: #fff;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    transition: all 0.5s;
  }

  .thanks .cont01 .button a:hover {
    background: #fff;
    color: var(--main-color);
    transition: all 0.5s;
  }

  /* privacy
------------------------------------------------------------------------*/
  .privacy .cont01 {
    width: 1000px;
    /* margin: 50px auto 100px; */
    margin: 50px auto 0;
  }

  .privacy .cont01 h2 {
    font-size: 28px;
    text-align: center;
  }

  .privacy .cont01 .text01 {
    margin-top: 35px;
    line-height: 2;
  }

  .privacy .cont01 .box {
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed var(--main-color);
  }

  .privacy .cont01 .box:first-of-type {
    margin-top: 45px;
  }

  .privacy .cont01 .box:last-of-type {
    border-bottom: none;
  }

  .privacy .cont01 .box h3 {
    font-size: 20px;
  }

  .privacy .cont01 .box .text02 {
    line-height: 2;
    margin-top: 10px;
  }

  .privacy .cont01 .box .text02 a {
    text-decoration: underline;
  }

  .privacy .cont01 .box ul {
    margin-top: 15px;
  }

  .privacy .cont01 .box ul li:nth-of-type(n + 2) {
    margin-top: 8px;
  }

  .privacy .cont01 .box .text03 {
    line-height: 2;
    display: inline-block;
    padding: 25px 30px;
    background: var(--main-light-color);
    margin-top: 20px;
  }

  /* yonmaruyon yonichimaru
------------------------------------------------------------------------*/
  .yonmaruyon .cont01,
  .yonichimaru .cont01 {
    /* padding: 70px 0 100px; */
    padding: 70px 0 0;
    text-align: center;
  }

  .yonmaruyon .cont01 h2,
  .yonichimaru .cont01 h2 {
    text-align: center;
    font-size: 24px;
  }

  .yonmaruyon .cont01 .text,
  .yonichimaru .cont01 .text {
    margin: 30px 0 0;
    font-weight: bold;
  }

  .yonmaruyon .cont01 .button,
  .yonichimaru .cont01 .button {
    margin-top: 40px;
  }

  .yonmaruyon .cont01 .button a,
  .yonichimaru .cont01 .button a {
    width: 360px;
    border-radius: 60px;
    line-height: 1;
    padding: 20px 0;
    font-size: 16px;
    box-sizing: border-box;
    cursor: pointer;
    margin: auto;
    border: none;
    display: block;
    color: #fff;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    transition: all 0.5s;
  }

  .yonmaruyon .cont01 .button a:hover,
  .yonichimaru .cont01 .button a:hover {
    background: #fff;
    color: var(--main-color);
    transition: all 0.5s;
  }


  /* contact-box 
  ------------------------------------------------------------------------*/
  .contact_box {
    justify-content: center;
    width: 1000px;
    height: 420px;
    margin: 120px auto;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    padding: 94px 0 68px;
    box-sizing: border-box;
    z-index: 10;
    position: relative;
  }

  .contact_box h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .contact_box h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .contact_box h2 span::before {
    position: absolute;
    content: "";
    background: url(img/contact_text01.png) center center / cover no-repeat;
    width: 380px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px));
    z-index: -1;
  }

  .contact_box .text01 {
    text-align: center;
    font-weight: bold;
    margin-top: 35px;
  }

  .contact_box .info_box {
    margin-top: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .contact_box .info_box .tel {
    text-align: center;
    margin-left: 10px;
  }

  .contact_box .info_box .tel {
    text-align: center;
    margin-left: 10px;
    line-height: 1;
  }

  .contact_box .info_box .tel img {
    padding-bottom: 7px;
  }

  .contact_box .info_box .tel a {
    font-weight: bold;
  }

  .contact_box .info_box .btn-01 {
    position: relative;
    width: 220px;
    height: 50px;
    text-align: center;
  }

  .contact_box .info_box .btn-01 a {
    display: block;
    background: #06c755 url(img/header_icon02.png) left 26px top 14px no-repeat;
    padding-left: 58px;
    border: 1px solid var(--main-color);
    border-radius: 10px;
    font-size: 16px;
    line-height: 50px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1.5px;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  }

  .contact_box .info_box .btn-01 a:hover {
    background: #fff url(img/header_icon04.png) left 26px top 14px no-repeat;
    color: #06c755;
  }

  .contact_box .info_box .btn-01 {
    position: relative;
    width: 220px;
    height: 50px;
    text-align: center;
  }

  .contact_box .info_box .btn-01 a {
    display: block;
    background: #06c755 url(img/header_icon02.png) left 29px top 14px no-repeat;
    padding-left: 36px;
    border: 1px solid #06c755;
    border-radius: 10px;
    font-size: 16px;
    line-height: 50px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1.5px;
  }

  .contact_box .info_box .btn-02 {
    position: relative;
    width: 220px;
    height: 50px;
    text-align: center;
  }

  .contact_box .info_box .btn-02 a {
    display: block;
    background: #00804d url(img/contact_mail_img02.png) left 39px top 17px no-repeat;
    padding-left: 36px;
    border: 1px solid #00804d;
    border-radius: 10px;
    font-size: 16px;
    line-height: 50px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1.5px;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  }

  .contact_box .info_box .btn-02 a:hover {
    background: #fff url(img/contact_mail_img03.png) left 39px top 17px no-repeat;
    color: #00804d;
  }

  /*  other_sight */
  .other_sight {
    padding: 0px 0 120px;
    width: 1000px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 14px;
  }

  .other_sight::after {
    content: "";
    position: absolute;
    background: url(img/common_bg_01.png);
    width: 100vw;
    height: 524px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    z-index: -1;
  }

  @media screen and (max-width: 1240px) {
    .other_sight::after {
      width: 1240px;
    }
  }





  /*post_cont
------------------------------------------------------------------------*/
  .post_cont .index_nav {
    box-sizing: border-box;
    padding: 40px;
    border: none;
    border-radius: 0px;
    margin: 20px 0 45px;
    background: var(--main-light-color);
    border-radius: 10px;
  }

  .post_cont .index_nav .title {
    font-weight: bold;
    position: relative;
    padding: 0 !important;
    padding-left: 35px !important;
    font-size: 18px;
    line-height: 1.5;
    font-weight: normal;
  }

  .post_cont .index_nav .title::before {
    content: "";
    width: 20px;
    height: 18px;
    background: url(img/index_icon.png) no-repeat center / 100%;
    position: absolute;
    top: 4px;
    left: 5px;
  }

  .post_cont .index_nav {
    position: static;
  }

  .post_cont .index_nav ul {
    margin: 20px 0 0 0;
    padding-bottom: 0;
  }

  .post_cont .index_nav ul li.index_level03 {
    margin-left: 15px;
  }

  .post_cont .index_nav ul li.index_level04 {
    margin-left: 30px;
  }

  .post_cont .index_nav ul li.index_level05 {
    margin-left: 45px;
  }

  .post_cont .index_nav ul li {
    display: block;
    text-align: left;
    margin-top: 25px;
  }

  .post_cont .index_nav ul li.index_level03,
  .post_cont .index_nav ul li.index_level04,
  .post_cont .index_nav ul li.index_level05 {
    margin-top: 15px;
  }

  .post_cont .index_nav ul li a {
    font-size: 18px;
    font-weight: normal;
    text-decoration: none;
  }

  .post_cont .index_nav ul li.index_level03 a,
  .post_cont .index_nav ul li.index_level04 a,
  .post_cont .index_nav ul li.index_level05 a {
    font-size: 16px;
  }

  .post_cont .index_nav ul li a:hover {
    text-decoration: none;
  }

  .post_cont .index_nav ul li::before {
    display: none;
  }

  .post_cont .has-text-align-left {
    text-align: left;
  }

  .post_cont .has-text-align-center {
    text-align: center;
  }

  .post_cont .has-text-align-right {
    text-align: right;
  }

  .post_cont h2 {
    margin: 50px 0 30px;
    padding: 0 0 0 35px;
    font-size: 24px;
    position: relative;
    line-height: 1.2;
  }

  .post_cont h2:before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border: 1px solid var(--main-color);
    background: #fff;
    position: absolute;
    top: 0px;
    left: 0;
  }

  .post_cont h2:after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border: 1px solid var(--main-color);
    background: var(--main-color);
    position: absolute;
    top: 10px;
    left: 10px;
  }

  .post_cont h3 {
    margin: 45px 0 30px;
    padding: 0 0 0 30px;
    font-size: 22px;
    position: relative;
    line-height: 1.2;
  }

  .post_cont h3:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: var(--main-color);
    position: absolute;
    top: 2px;
    left: 0;
  }

  .post_cont h4 {
    font-size: 20px;
    border-left: 5px solid var(--main-color);
    margin: 40px 0 30px;
    padding: 2px 0 0 15px;
    line-height: 1.2;
  }

  .post_cont h5 {
    font-size: 18px;
    margin: 35px 0 30px;
    padding: 0 0 0 25px;
    position: relative;
    line-height: 1.2;
  }

  .post_cont h5:before {
    content: "";
    display: block;
    width: 15px;
    height: 5px;
    background: var(--main-color);
    position: absolute;
    top: 10px;
    left: 0;
  }

  .post_cont strong {
    font-weight: bold;
    color: var(--main-dark-color);
  }

  .post_cont em {
    font-style: italic;
    color: var(--main-color);
  }

  .post_cont a {
    text-decoration: underline;
    color: var(--main-color);
  }

  .post_cont>p {
    margin: 0 0 30px;
  }

  .post_cont ul {
    margin: 0 0 30px 23px;
    list-style-type: disc;
  }

  .post_cont ol {
    margin: 0 0 30px 23px;
    list-style-type: decimal;
  }

  .post_cont table {
    border-collapse: separate;
    border-spacing: 5px;
    width: 100%;
    margin: 0 0 30px;
  }

  .post_cont table th {
    background: var(--main-color);
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
  }

  .post_cont table tr:nth-of-type(1) th {
    background: var(--main-dark-color);
  }

  .post_cont table td {
    background: var(--main-light-color);
    padding: 10px 15px;
  }

  .post_cont .wp-block-quote {
    background: var(--main-light-color);
    padding: 50px;
    border-left: 3px solid var(--main-color);
    margin: 0 0 30px;
    position: relative;
  }

  .post_cont .wp-block-quote:before,
  .post_cont .wp-block-quote:after {
    content: "”";
    display: block;
    font-size: 100px;
    color: var(--main-color);
    line-height: 1;
    position: absolute;
  }

  .post_cont .wp-block-quote:before {
    top: 10px;
    left: 10px;
  }

  .post_cont .wp-block-quote:after {
    bottom: 10px;
    right: 10px;
    transform: rotate(180deg);
  }

  .post_cont .wp-block-buttons {
    margin: 0 0 30px;
    display: flex;
  }

  .post_cont .wp-block-buttons a {
    display: block;
    text-align: center;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    box-sizing: border-box;
    line-height: 48px;
    min-width: 350px;
    height: 50px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.5s;
    position: relative;
    text-decoration: none;
  }

  .post_cont .wp-block-buttons a::after {
    content: "";
    background: url(img/btn_arrow01.png) center left / cover no-repeat;
    width: 16px;
    height: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
  }

  .post_cont .wp-block-buttons a:hover {
    color: var(--main-color);
    background: #fff;
    opacity: 1;
  }

  .post_cont .wp-block-buttons a:hover::after {
    filter: brightness(0) saturate(100%) invert(15%) sepia(53%) saturate(5355%) hue-rotate(201deg) brightness(95%) contrast(101%);
  }

  .post_cont .wp-block-code {
    display: block;
    white-space: pre-wrap;
    margin: 0 0 30px;
  }

  .post_cont .wp-block-code code {
    display: inline-block;
    padding: 20px;
    color: #fff;
    background: #333;
  }

  .post_cont .wp-block-image {
    margin: 0 0 30px;
  }

  .post_cont .wp-block-image img {
    max-width: 100%;
    border-radius: 10px;
  }

  /* footer
------------------------------------------------------------------------*/
  footer {
    color: #fff;
    background: #249260;
    position: relative;
  }

  footer .inner {
    display: flex;
    justify-content: space-between;
    padding: 120px 0 220px;
    position: relative;
  }

  footer p {
    font-weight: bold;
  }

  footer p.tel {
    margin-top: 40px;
  }

  footer p.tel,
  footer p.mail,
  footer p.time {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
    line-height: 2.5;
  }

  footer p.tel::before {
    position: absolute;
    content: "";
    background: url(img/contact_tel02.png) center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  footer p.mail::before {
    position: absolute;
    content: "";
    background: url(img/contact_mail_img02.png) center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  footer p.time::before {
    position: absolute;
    content: "";
    background: url(img/contact_time02.png) center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  footer p.place {
    margin-top: 38px;
  }

  footer p.place:first-of-type {
    margin-top: 45px;
  }
  footer p.place .span01 {
		font-size: 13px;
		padding-left: 16px;
		margin-bottom: 0;
    line-height: 1.5;
	}

  footer p.place span {
    position: relative;
    font-weight: bold;
    display: block;
    font-size: 18px;
    line-height: 26px;
    padding-left: 16px;
    margin-bottom: 10px;
  }

	footer p.place span:nth-of-type(2):before {
    content: "";
    position: absolute;
    background: #fff;
    width: 5px;
    height: 43px;
    left: 0;
    top: -20px;
    border-radius: 3px;
  }

  footer .sitemap_box .text01,
  footer .area_box .text01,
  footer .blog_box .text01 {
    position: relative;
    width: fit-content;
    padding: 0 10px;
  }

  footer .sitemap_box .text01::before,
  footer .area_box .text01::before,
  footer .blog_box .text01::before {
    content: "[";
    position: absolute;
    left: 0;
    top: 0;
  }

  footer .sitemap_box .text01::after,
  footer .area_box .text01::after,
  footer .blog_box .text01::after {
    content: "]";
    position: absolute;
    right: 0;
    top: 0;
  }

  footer .sitemap_box {
    margin-left: 85px;
  }

  footer .sitemap_box ul {
    list-style-type: disc;
    margin: 18px 0 0 18px;
    line-height: 2.2;
  }

  footer .sitemap_box li a {
    font-weight: bold;
    color: #fff;
  }

  footer .sitemap_box li a:hover {
    text-decoration: underline;
  }

  footer .area_box {
    margin-left: 60px;
  }

  footer .area_list {
    max-height: calc(32px * 20);
    overflow-y: scroll;
    margin: 18px 0 0;
    line-height: 2.2;
  }

  footer .area_list ul {
    list-style-type: disc;
    padding-right: 21px;
  }

  footer .area_list li a {
    color: #fff;
    font-weight: bold;
  }

  footer .area_list li a:hover {
    text-decoration: underline;
  }

  footer .area_list>li {
    position: relative;
    padding-left: 18px;
    font-weight: bold;
  }

  footer .area_list>li::before {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    background: #fff;
    left: 0;
    top: 9px;
  }

  footer .area_list>li:nth-of-type(2),
  footer .area_list>li:nth-of-type(3) {
    margin-top: 25px;
  }


  footer .blog_box {
    margin-left: 50px;
    line-height: 2.2;
  }

  footer .blog_box .blog_list {
    max-height: calc(32px * 20);
    overflow-y: scroll;
    padding-right: 21px;
    margin-top: 18px;
    list-style-type: disc;
    list-style-position: inside;
  }

  footer .blog_box .blog_list li {
    width: 192px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow-x: hidden;
  }

  footer .blog_box .blog_list li a {
    font-weight: bold;
    color: #fff;
  }

  footer .blog_box .blog_list li a:hover {
    text-decoration: underline;
  }

  footer ul::-webkit-scrollbar {
    width: 3px
  }

  footer ul::-webkit-scrollbar-track {
    background-color: transparent;
  }

  footer ul::-webkit-scrollbar-thumb {
    background-color: #fff;
  }

  footer .to_top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 10;
  }

  footer .copy {
    position: absolute;
    bottom: 100px;
    right: 0;
  }

  @media screen and (max-width: 1300px) {
    footer .inner {
      width: 1100px;
    }

    footer .sitemap_box {
      margin-left: 50px;
    }

    footer .area_box {
      margin-left: 25px;
    }

    footer .blog_box {
      margin-left: 23px;
    }

    footer .area_list ul {
      padding-right: 19px;
    }
  }


}







/*PCの記述ここまで*/

/*===============================================
横幅441px以下 sp
===============================================*/

@media screen and (max-width: 441px) {

  html,
  body,
  .wrap {
    width: 440px;
    position: relative;
  }

  .inner {
    box-sizing: border-box;
    padding: 0 20px;
    width: auto;
  }

  .pc {
    display: none;
  }

  .sp {
    display: inline;
  }

  p {
    font-size: 14px;
  }

  /* header
------------------------------------------------------------------------*/
  header {
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 10000;
    position: relative;
  }

  header h1 {
    position: absolute;
    top: 61px;
    left: 10px;
    font-size: 10px;
    line-height: 1;
  }

  header .header_box .bubble {
    /* width: 139.2px;
    left: 154px;
    margin-left: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); */
    display: none;
  }

  header .header_box .sp_bubble {
    width: 220px;
    left: 152px;
    margin-left: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  header .header_box {
    position: fixed;
    top: 0;
    left: 0;
    width: 440px;
    height: 50px;
    background: var(--main-light-color);
  }

  header .header_box .logo a {
    position: absolute;
    top: 10px;
    left: 8px;
    display: block;
    width: 138px;
    height: 30px;
    background: url(img/header_logo.png) no-repeat;
    background-size: 134px;
    padding: 30px 0 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  header .header_box .text01 {
    display: none;
  }

  header .header_box .text02 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 142px;
    height: 50px;
    color: #182e73;
    font-size: 14px;
    line-height: 50px;
    text-align: center;
    z-index: 9999;
  }

  header .header_box .text02::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: #eaf5fa;
    width: 440px;
    height: 50px;
    z-index: -1;
  }

  header .header_box .tel {
    position: absolute;
    overflow: hidden;
    width: 30px;
    height: 30px;
    left: 312px;
    top: 50%;
    transform: translateY(-50%);
  }

  header .header_box .tel {
    display: none;
  }

  header .header_box .button {
    display: none;
  }

  /* header .header_box .tel a {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--main-color) url(img/contact_tel02.png) center center no-repeat;
    background-size: 15px;
    border-radius: 50%;
    box-sizing: border-box;

  } */

  header .header_box .tel a span {
    display: block;
    width: 14px;
    height: 18px;
    background: url("img/header_tel_sp.svg") no-repeat;
    background-size: 100%;
    padding: 18px 0 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  header .header_box .button {
    position: absolute;
    width: 33px;
    height: 31px;
    top: 50%;
    transform: translateY(-50%);
    left: 342px;
    margin-left: 10px;
    overflow: hidden;
  }

  /* header .header_box .button a {
    display: block;
    background: url(img/header_icon03.png) no-repeat;
    background-size: 33px;
    padding: 31px 0 0;
    box-sizing: border-box;
  } */

  header .header_box .sp_bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    height: 50px;
    z-index: 11;
  }

  header .header_box .sp_bottom p {
    margin: 0;
  }

  header .header_box .sp_bottom .bottom_tel,
  header .header_box .sp_bottom .bottom_button {
    flex: 1;
  }

  header .header_box .sp_bottom .bottom_tel a,
  header .header_box .sp_bottom .bottom_button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
  }

  header .header_box .sp_bottom .bottom_tel a {
    flex-direction: column;
  }

  header .header_box .sp_bottom .bottom_button a {
    flex-direction: row;
    gap: 8px;
  }

  header .header_box .sp_bottom .bottom_tel a {
    background: #00804d;
  }

  header .header_box .sp_bottom .bottom_button a {
    background: #06c755;
  }

  header .header_box .sp_bottom .bottom_button a::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(img/contact-line_sp.png) center center / contain no-repeat;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  header .header_box .sp_bottom .bottom_tel a img {
    display: block;
    width: 190px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(98%) sepia(15%) saturate(0%) hue-rotate(121deg) brightness(110%) contrast(100%);
  }

  header .header_box .sp_bottom .bottom_tel a span {
    display: block;
    margin-top: 3px;
    font-size: 12px;
  }

  /* nav
------------------------------------------------------------------------*/
  #nav {
    display: none;
    width: 100%;
    position: fixed;
    z-index: 100;
  }

  body.nav_open {
    overflow: hidden;
    height: 100dvh;
  }

  #nav-btn.active+#nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 440px;
    background: var(--main-light-color);
    z-index: 10000;
    overflow-y: scroll;
    height: 100%;

  }

  #nav-btn.active+#nav::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: var(--main-light-color);
    width: 440px;
    height: 50px;
  }



  #nav>.main_nav {
    width: 440px;
    min-height: 100dvh;
    height: auto;
    padding: 94px 65px 70px;
    box-sizing: border-box;
  }

  #nav>.main_nav li span {
    font-weight: bold;
  }

  #nav>.main_nav .mark {
    margin: 15px 0 7px;
  }

  #nav>.main_nav li a {
    display: block;
    padding: 15px 0;
    font-weight: bold;
  }


  #nav .main_nav .sub_nav_list li a span::before {
    content: "−";
    margin-right: 5px;
  }

  #nav .main_nav .sub_nav a {
    padding: 10px 0;
  }

  #nav>.main_nav li a img {
    display: none;
  }

  #nav-btn {
    width: 50px;
    height: 50px;
    background: var(--main-color);
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10010;
    cursor: pointer;
    transition: all 0.5s;
  }

  .menu-btn {
    position: absolute;
    width: 20px;
    height: 14px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }

  .menu-btn,
  header .menu-btn span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }

  .menu-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
  }

  .menu-btn span:nth-of-type(1) {
    top: 0;
    transition: all 0.5s;
  }

  .menu-btn span:nth-of-type(2) {
    top: 6px;
    transition: all 0.5s;
  }

  .menu-btn span:nth-of-type(3) {
    bottom: 0;
    transition: all 0.5s;
  }

  #nav-btn.active span:nth-of-type(1) {
    transform: translateY(6px) rotate(-45deg);
    transition: all 0.5s;
  }

  #nav-btn.active span:nth-of-type(2) {
    opacity: 0;
    transition: all 0.5s;
  }

  #nav-btn.active span:nth-of-type(3) {
    transform: translateY(-6px) rotate(45deg);
    transition: all 0.5s;
  }

  /* home
------------------------------------------------------------------------*/
  .home {
    font-weight: bold;
    color: #1d1d1d;
  }

  /* key */
  .home .key {
    position: relative;
    padding-top: 30px;
    height: 700px;
    background: var(--main-light-color);
  }

  .home .key .inner {
    position: relative;
    padding: 0;
  }

  .home .key .bg_img {
    position: absolute;
    top: 289px;
    z-index: -2;
    right: -30px;
  }

  .home .key::before {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    top: 180px;
    height: 340px;
    background: url("img/home_key_bg02.png");
    transform: rotate(-5deg);
  }

  .home .key .inner::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    transform: rotate(-5deg);
    height: 130px;
    bottom: -369px;
    background: url(img/home_key_bg03.png) repeat-x left top;
    background-size: auto 100%;
    animation: slider 40s linear infinite;
  }

  @keyframes slider {
    0% {
      background-position: 0 0;
    }

    100% {
      background-position: -1800px 0;
    }
  }

  .home .key .inner::before {
    content: "";
    position: absolute;
    right: 39px;
    bottom: -432px;
    width: 371px;
    height: 99px;
    background: url(img/home_key_text03.png) center center / cover no-repeat;
    z-index: 1;
  }

  .home .key .inner .text_box {
    position: relative;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0 18px 18px 0;
    left: 0;
    width: 410px;
    padding: 15px 20px 77px;
  }

  .home .key .inner .text_box::before {
    content: "";
    position: absolute;
    right: -51px;
    top: 366px;
    width: 226px;
    height: 203px;
    background: url(img/home_key_bg04_sp.png) center center / cover no-repeat;
    transform: scale(0.7);
  }

  .home .key .inner .text_box .text01:nth-of-type(1) {
    position: relative;
    font-size: 18px;
    color: #333;
    padding-left: 70px;
    line-height: 50px;
    font-weight: bold;
    width: fit-content;
    left: 50%;
    transform: translateX(-50%);
  }

  .home .key .inner .text_box .text01:nth-of-type(1)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url("img/key_deco01.png") center center / cover no-repeat;
    width: 74px;
    height: 50px;
    transform: scale(0.7);
  }

  .home .key .inner .text_box .text02 {
    width: 360px;
    height: 30px;
    text-align: center;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 20px;
    font-weight: bold;
    color: var(--main-color);
    font-size: 16px;
    margin-top: 10px;
    line-height: 30px;
  }

  .home .key .inner .text_item:nth-of-type(1) {
    display: flex;
    text-align: center;
    align-items: center;
    line-height: 40px;
    gap: 3px;
    margin-top: 10px;
    transform: translateX(-3px);
  }



  /* .home .key .inner .text_item .text02 {
    background: #fff;
    border: 1px solid var(--main-color);
    border-radius: 15px;
    font-weight: bold;
    color: var(--main-color);
    padding: 5px 8px;
    font-size: 16px;
  } */

  .home .key .inner .text_item:nth-of-type(2) {
    display: flex;
    text-align: center;
    gap: 9px;
    line-height: 1.3;

    position: absolute;
    top: 281px;
    left: 19px;
  }

  .home .key .inner .text_item .text04:nth-of-type(1) {
    color: #fff;
    width: 174px;
    height: 43px;
    background: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

  }

  .home .key .inner .text_item .text04 span {
    font-size: 14px;
    display: block;
    line-height: 1.25;
    padding-right: 6px;
    font-weight: bold;
    letter-spacing: 0.19em;
  }

  .home .key .inner .text_item .text04:nth-of-type(2) {
    color: #fff;
    width: 174px;
    height: 43px;
    background: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-align: center; */

  }






  /* .home .key .inner .text_box .text03 {
    margin-top: 18px;
    text-align: center;
  }

  .home .key .inner .text_item .text04 {
    width: 50%;
    color: #fff;
    background: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    padding: 5px 0;
  }

  .home .key .inner .text_item .text04 span {
    font-size: 14px;
    display: block;
    line-height: 1.2;
    padding-right: 5px;
    font-weight: bold;
    letter-spacing: 1.5px;
  } */



  /* topic_wrap */
  .home .topic_wrap {
    margin: 150px auto 80px;
    padding: 0 20px;
  }

  .home .topic_wrap .breaking_wrap {
    position: relative;
    background: var(--main-light-color);
    border: 1px solid var(--main-color);
    border-radius: 10px;
    padding: 40px 8px 8px;
    box-sizing: border-box;
  }

  .home .topic_wrap .breaking_wrap h2 {
    position: absolute;
    top: -17.5px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #444;
    font-size: 14px;
    font-weight: bold;
    width: 400px;
    height: 35px;
    line-height: 35px;
    border: 1px solid var(--main-color);
    border-radius: 17.5px;
    background: #fff;
  }

  .home .topic_wrap .breaking_wrap h2 span {
    color: var(--main-color);
    font-size: 16px;
    font-weight: bold;
  }

  .home .topic_wrap .breaking_wrap h2::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    width: 18px;
    height: 11px;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
  }

  .home .topic_wrap .breaking_wrap .text01 {
    text-align: center;
    color: #1d1d1d;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    word-break: keep-all;
  }

  .home .topic_wrap .breaking_wrap .breaking_box {
    height: 230px;
    background: #fff;
    border-radius: 5px;
    margin-top: 18px;
    overflow-y: auto;
    padding: 25px 15px 15px 15px;
    box-sizing: border-box;
  }

  .home .topic_wrap .breaking_wrap .breaking_box .cont {
    position: relative;
  }

  .home .topic_wrap .breaking_wrap .breaking_box .cont::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(to right,
        #082a4a 0,
        #082a4a 11px,
        transparent 11px,
        transparent 22px);
  }

  .home .topic_wrap .breaking_wrap .breaking_box .cont .date {
    color: #1d1d1d;
    font-weight: bold;
    line-height: 1;
    padding-top: 25px;
  }

  .home .topic_wrap .breaking_wrap .breaking_box .cont:nth-of-type(1) .date {
    padding-top: 0;
  }

  .home .topic_wrap .breaking_wrap .breaking_box .cont .text02 {
    line-height: 1.5;
    font-weight: bold;
    padding: 15px 0 25px;
  }

  .home .topic_wrap .reviews_wrap {
    position: relative;
    background: var(--main-light-color);
    border: 1px solid var(--main-color);
    border-radius: 10px;
    padding: 40px 8px 8px;
    box-sizing: border-box;
    margin-top: 50px;
  }

  .home .topic_wrap .reviews_wrap h2 {
    position: absolute;
    top: -17.5px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #444;
    font-size: 14px;
    font-weight: bold;
    width: 400px;
    height: 35px;
    line-height: 35px;
    border: 1px solid var(--main-color);
    border-radius: 17.5px;
    background: #fff;
  }

  .home .topic_wrap .reviews_wrap h2 span {
    color: var(--main-color);
    font-size: 16px;
    font-weight: bold;
  }

  .home .topic_wrap .reviews_wrap h2::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    width: 18px;
    height: 11px;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
  }

  .home .topic_wrap .reviews_wrap .text01 {
    text-align: center;
    color: #1d1d1d;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
  }

  .home .topic_wrap .reviews_wrap .reviews_box {
    height: 260px;
    background: #fff;
    border-radius: 5px;
    margin-top: 18px;
    overflow: scroll;
  }

  /* cont01 */
  .home .cont01 {
    background: url("img/common_bg_01.png");
    text-align: center;
    padding: 80px 0;
  }

  .home .cont01 .inner {
    padding: 0 20px;
  }

  .home .cont01 .inner h2 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
  }

  .home .cont01 .inner h2 span {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #1d1d1d;
    padding-bottom: 14px;
  }

  .home .cont01 .inner h2 span::before {
    position: absolute;
    content: "";
    background: url(img/common_deco13.png) no-repeat;
    width: 53px;
    height: 47px;
    transform: scale(0.7);
    left: 109px;
    top: -35px;
  }

  .home .cont01 .inner .text01 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 30px;
  }


  .home .cont01 .inner .thanks_box {
    padding: 0 30px;
  }

  .home .cont01 .inner .thanks_box .cont {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    margin-top: 20px;
    padding: 25px 0;
    box-sizing: border-box;
  }

  .home .cont01 .inner .thanks_box .cont::before {
    position: absolute;
    content: "";
    background: url(img/common_deco02.png) center center / cover no-repeat;
    top: -22px;
    left: -20px;
    width: 89px;
    height: 103px;
  }

  .home .cont01 .inner .thanks_box .cont:first-of-type {
    margin-top: 50px;
  }

  .home .cont01 .inner .thanks_box .cont h3 {
    line-height: 1;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
  }

  .home .cont01 .inner .thanks_box .cont h3 span:nth-of-type(1) {
    display: block;
    font-weight: bold;
    color: #555;
    padding-bottom: 15px;
  }

  .home .cont01 .inner .thanks_box .cont h3 span:nth-of-type(2) {
    font-size: 44px;
    font-weight: bold;
    visibility: hidden;

  }

  .home .cont01 .inner .thanks_box .cont h3 span:nth-of-type(3) {
    font-size: 32px;
    font-weight: bold;
    visibility: hidden;
  }

  .home .cont01 .inner .thanks_box .cont h3 span:nth-of-type(4) {
    visibility: hidden;
  }

  .home .cont01 .inner .thanks_box .cont .text02 {
    line-height: 1.5;
    font-size: 18px;
    font-weight: bold;
    margin-top: 13px;
  }

  .home .cont01 .inner .thanks_box .cont.box01 h3 span:nth-of-type(1)::after {
    content: "";
    background: url(img/home_thanks01.png) center center / cover no-repeat;
    width: 292px;
    height: 58px;
    position: absolute;
    top: 67px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
  }

  .home .cont01 .inner .thanks_box .cont.box02 h3 span:nth-of-type(1)::after {
    content: "";
    background: url(img/home_thanks02.png) center center / cover no-repeat;
    width: 260px;
    height: 58px;
    position: absolute;
    top: 67px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
  }

  .home .cont01 .inner .thanks_box .cont.box03 h3 span:nth-of-type(1)::after {
    content: "";
    background: url(img/home_thanks03.png) center center / cover no-repeat;
    width: 78px;
    height: 51px;
    position: absolute;
    top: 67px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
  }


  /* ------cont11 お得なセット--------------- */
  .home .cont11 {
    /* background: #fff; */
    padding: 85px 0 80px;
  }

  .home .cont11 .inner:nth-of-type(1) {
    position: relative;
  }

  .home .cont11 .inner:nth-of-type(1)::before {
    position: absolute;
    content: "";
    background: url("img/common_deco14.png") center center / cover no-repeat;
    right: -67px;
    top: -226px;
    width: 250px;
    height: 282px;
    transform: scale(0.4);
  }

  .home .cont11 .inner:nth-of-type(1)::after {
    position: absolute;
    content: "";
    background: url("img/common_deco15.png") center center / cover no-repeat;
    left: -66px;
    top: -226px;
    width: 250px;
    height: 282px;
    transform: scale(0.4);

  }



  .home .cont11 .cont11_01>h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    color: #1d1d1d;
  }

  .home .cont11 .cont11_01>h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .home .cont11 .cont11_01>h2 span::after {
    position: absolute;
    content: "";
    background: url("img/home_text01.png") center center / cover no-repeat;
    width: 620px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.6);
    z-index: -1;
  }

  .home .cont11 .readtext {
    text-align: center;
    margin-top: 27px;
    margin-bottom: 50px;
    font-size: 16px;
  }



  .home .cont11 .text_box {
    /* border: 3px solid var(--main-color); */
    background: var(--main-light-color);
    text-align: center;
    padding: 26px;
    border-radius: 8px;
    margin-bottom: 15px;
  }

  .home .cont11 .text_box .text01 {
    font-size: 28px;
    color: var(--main-color);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 14px;
  }

  .home .cont11 .text_box .text01 span {
    font-weight: bold;
    line-height: 1.3;
  }

  .home .cont11 .text_box .text01 img {
    vertical-align: -0.24em;
    margin: 3px 0px 8px;
  }



  .home .cont11 .text_box .text02 {
    font-size: 16px;
    line-height: 1.8;
    text-align-last: left;
  }

  .home .cont11 .tax_text {
    text-align: right;
    line-height: 1;
    font-size: 14px;
  }


  .home .cont11 .cont11_01 .service_box {
    display: flex;
    justify-content: space-between;
    /* margin-top: 60px; */
    flex-wrap: wrap;
  }

  .home .cont11 .cont11_01 .service_box .cont {
    position: relative;
    width: 380px;
    padding-top: 200px;
    margin: 60px auto 0;
  }

  .home .cont11 .cont11_01 .service_box .cont:nth-of-type(2) {
    margin-top: 40px;
  }

  /* 画像の箱 */
  .home .cont11 .cont11_01 .service_box .cont .service-imgs {
    position: absolute;
    top: 0;
    left: 0;
    width: 380px;
    height: auto;
    border: 3px solid #006db2;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
  }

  .service-imgs figure {
    flex: 1;
    position: relative;
  }

  .service-imgs figure img {
    object-fit: cover;
    width: 100%;
  }

  .service-imgs figure:not(:last-child) {
    border-right: 3px solid #006db2;
  }



  .home .cont11 .cont11_01 .service_box .cont .service-imgs02 {
    position: absolute;
    top: 0;
    left: 0;
    width: 380px;
    height: auto;
    border: 3px solid #2c9ec8;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
  }

  .service-imgs02 figure {
    flex: 1;
    position: relative;
  }

  .service-imgs02 figure img {
    object-fit: cover;
    width: 100%;
  }

  .service-imgs02 figure:not(:last-child) {
    border-right: 3px solid #2c9ec8;
  }



  /* 画像のキャプション */
  .service-imgs img {
    display: block;
  }

  .service-imgs figcaption {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;

    background: #006db2;
    color: #fff;
    line-height: 1;
    padding: 8px 18px;
    font-weight: bold;
  }

  /* キャプショングリーン */
  .service-imgs02 img {
    display: block;
  }

  .service-imgs02 figcaption {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;

    background: #2c9ec8;
    color: #fff;
    line-height: 1;
    padding: 8px 0px;
    font-weight: bold;
    width: 80px;
    text-align: center;
  }

  /* --------↑画像ここまでーーーーー */
  .cont11 .service_box .service-imgs figure:nth-of-type(2)::after {
    content: "";
    position: absolute;
    right: -19px;
    bottom: -19px;
    width: 140px;
    height: 140px;
    background: url(img/home_set01.png) center center / cover no-repeat;
    z-index: 2;
    transform: scale(0.6);
  }

  .cont11 .service_box .service-imgs02 figure:nth-of-type(3)::after {
    content: "";
    position: absolute;
    right: 54px;
    bottom: -19px;
    width: 140px;
    height: 140px;
    background: url(img/home_set02.png) center center / cover no-repeat;
    z-index: 2;
    transform: scale(0.6);

  }





  .home .cont11 .cont11_01 .service_box .cont .h_box {
    position: relative;
    line-height: 1;
    padding: 10px 0 8px 13px;
    margin-top: 25px;
  }

  /* 縦棒 */
  .home .cont11 .cont11_01 .service_box .cont .h_box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100px;
    background: #006db2;
    border-radius: 5px;
  }

  .home .cont11 .cont11_01 .service_box .cont:nth-of-type(2) .h_box::before {
    background: #2c9ec8;
    height: 110px;
  }

  .home .cont11 .cont11_01 .service_box .cont:nth-of-type(3) .h_box::before {
    background: #006db2;
  }


  .home .cont11 .cont11_01 .service_box .cont .h_box h3 {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.6;
  }

  /* 価格 */
  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 {
    margin-top: 30px;
  }

  /* 通常価格 */
  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span01 {
    position: relative;
    color: #686868;
    font-size: 12px;
    font-weight: bold;
  }

  /* 取り消し線 */
  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span01::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span01>span {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    padding-left: 6px;
  }

  /* 通常の円 */
  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span01>span>span {
    font-size: 14px;
    font-weight: bold;
  }

  /* 特別価格 */
  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span02 {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    padding-left: 15px;
    color: #006db2;
  }

  .home .cont11 .cont11_01 .service_box .cont:nth-of-type(2) .h_box .text01 .span02 {
    /* background: #d73676; */
    color: #2c9ec8;
  }


  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span02>span>span {
    font-size: 18px;
    font-weight: bold;
    vertical-align: 0.1em
  }


  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span02::before {
    content: "";
    position: absolute;
    background: #006db2;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    width: 8px;
    height: 14px;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
  }

  .home .cont11 .cont11_01 .service_box .cont:nth-of-type(2) .h_box .text01 .span02::before {
    background: #2c9ec8;
  }

  /* イークリーン */
  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span02::after {
    content: "イークリーン";
    color: #006db2;
    letter-spacing: -0.03em;
    font-size: 12px;
    position: absolute;
    top: -13px;
    left: 9px;
  }

  .home .cont11 .cont11_01 .service_box .cont:nth-of-type(2) .h_box .text01 .span02::after {
    color: #2c9ec8;
  }



  /* 特別価格の数字 */
  .home .cont11 .cont11_01 .service_box .cont .h_box .text01 .span02>span {
    font-size: 28px;
    font-weight: bold;
    /* color: #d73676; */
    padding-left: 11px;
    vertical-align: -0.08em;
  }


  .home .cont11 .cont11_01 .service_box .cont:nth-of-type(2) .h_box .text01 .span02>span {
    color: #2c9ec8;
  }

  .home .cont11 .cont11_01 .service_box .cont .text03 {
    margin-top: 30px;
    font-size: 16px;
  }




  /* ボタン */
  .home .cont11 .cont11_01 .button {
    position: relative;
    width: 380px;
    text-align: center;

    margin: 50px auto 0px;
  }

  .home .cont11 .cont11_01 .button a {
    display: block;
    background: #fff;
    border: 3px solid var(--main-color);
    color: #1d1d1d;
    font-size: 18px;
    line-height: 46px;
    border-radius: 14px;
    font-weight: bold;
    transition:
      background-color 0.4s ease,
      color 0.4s ease;
  }



  .home .cont11 .cont11_01 a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition:
      background-color 0.4s ease;
  }










  /* ------------------------- */
  /* cont02 */

  .home .cont02 {
    background: var(--main-light-color);
    height: 1069px;
    /* margin-top: 30px; */
  }

  .home .cont02 .inner {
    position: relative;
  }


  .home .cont02 .text_box01 {
    padding-top: 380px;
  }

  .home .cont02 h2 {
    position: relative;
    font-weight: bold;
    line-height: 1.5;
    padding: 11px 0 5px 30px;
    width: fit-content;
    font-size: 14px;
    margin-top: 20px;
  }

  .home .cont02 h2 span {
    font-size: 24px;
    font-weight: bold;
    padding-top: 5px;
    display: block;
    line-height: 1.2;
  }

  .home .cont02 h2::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 8px;
    height: 100%;
    border-radius: 4px;
    left: 0;
    top: 0;
  }



  .home .cont02 .text01 {
    padding: 30px 0 40px;
    font-size: 16px;
    line-height: 2.2;
  }

  .home .cont02 .button {
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 0 auto;
  }

  .home .cont02 .button a {
    position: relative;
    display: block;
    font-weight: bold;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    box-sizing: border-box;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 50px;
    border-radius: 25px;
  }

  .home .cont02 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  .home .cont02 figure {
    position: absolute;
    top: 80px;
    left: 0;
    border: 2px solid var(--main-color);
    border-left: none;
    border-radius: 0 10px 10px 0;
    width: calc(100% - 30px);
    overflow: hidden;
    box-sizing: border-box;
  }


  /* cont03 */
  .home .cont03 {
    padding: 85px 15px 80px;
  }

  .home .cont03 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    color: #1d1d1d;
    margin-bottom: 27px;
  }

  .home .cont03 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .home .cont03 h2 span::after {
    position: absolute;
    content: "";
    background: url("img/home_text01.png") center center / cover no-repeat;
    width: 620px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.6);
    z-index: -1;
  }

  .home .cont03 .readtext {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
  }

  .home .cont03 .box {
    display: flex;
    justify-content: space-between;
    /* margin-top: 73px; */
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .home .cont03 .box .item {
    position: relative;
    width: 380px;
    padding-top: 260px;
    margin-top: 66px;
  }

  .home .cont03 .box .item figure {
    position: absolute;
    top: 0;
    left: 0;
    border: 3px solid var(--main-color);
    border-radius: 8px;
    overflow: hidden;
  }

  .home .cont03 .box .item .text_box {
    margin-top: 26px;
  }

  .home .cont03 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    line-height: 32px;
    height: 32px;
    padding-left: 16px;
  }

  .home .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }


  .home .cont03 .text_box .text01 {
    margin-top: 6px;
    text-align: right;
    line-height: 1;
  }


  .home .cont03 .text_box .text01 .span02 {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    padding-left: 30px;
    color: var(--main-color);
  }

  .home .cont03 .text_box .text01 .span02 .price {
    font-size: 32px;
    font-weight: bold;
    padding-left: 7px;
    vertical-align: -0.1em;
  }

  .home .cont03 .text_box .text01 .span02 .yen {
    font-size: 20px;
    font-weight: bold;
    vertical-align: -0.1em;
  }

  .home .cont03 .text02 {
    margin-top: 18px;
  }

  .home .cont03 .button {
    position: relative;
    width: 380px;
    height: 50px;
    text-align: center;
    margin-top: 15px;
  }

  .home .cont03 .button a {
    display: block;
    background: #fff;
    border: 2px solid var(--main-color);
    line-height: 46px;
    border-radius: 14px;
    font-weight: bold;
    transition: background-color 0.4s ease, color 0.4s ease;
  }

  .home .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .home .cont03 .tax_text {
    text-align: right;
    line-height: 1;
    margin-top: 19px;
    font-size: 14px;
  }








  /* cont04 */
  .home .cont04 {
    position: relative;
    padding: 80px 15px 80px;
    background: var(--main-light-color);

  }


  .home .cont04 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    color: #1d1d1d;
    margin-bottom: 27px;
  }

  .home .cont04 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .home .cont04 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text02_sp.png) center center / cover no-repeat;
    width: 614px;
    height: 154px;
    top: 50%;
    left: 50%;
    transform:
      translate(-50%, calc(-50% - 15px)) scale(0.45);
    z-index: -1;
  }

  .home .cont04 .readtext {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
  }


  .home .cont04 .box .item {
    position: relative;
    padding-top: 240px;
    margin-top: 50px;
  }

  .home .cont04 .box .item:first-of-type {
    margin-top: 50px;
  }

  .home .cont04 .box .item figure {
    position: absolute;
    top: 0;
    left: 0;
    border: 3px solid var(--main-color);
    border-radius: 8px;
    overflow: hidden;
  }

  .home .cont04 .box .item figure img {
    width: 410px;
  }

  .home .cont04 .box .item .text_box {
    margin-top: 20px;
  }

  .home .cont04 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    line-height: 32px;
    height: 32px;
    padding-left: 16px;
  }

  .home .cont04 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }



  .home .cont04 .text_box .text01 {
    margin-top: 6px;
    text-align: right;
    line-height: 1;
  }

  .home .cont04 .text_box .text01 .span02 {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    padding-left: 30px;
    color: var(--main-color);
  }

  .home .cont04 .text_box .text01 .span02 .price {
    font-size: 32px;
    font-weight: bold;
    /* color: var(--main-color); */
    padding-left: 7px;
    vertical-align: -0.1em;
  }

  .home .cont04 .text_box .text01 .span02 .yen {
    font-size: 16px;
    font-weight: bold;
    vertical-align: -0.1em;
  }


  .home .cont04 .text_box .text01 .span02>span {
    font-size: 40px;
    font-weight: bold;
    /* color: var(--main-color); */
    padding-left: 3px;
  }


  .home .cont04 .text02 {
    margin-top: 18px;
  }




  .home .cont04 .button {
    position: relative;
    height: 50px;
    text-align: center;
    margin-top: 15px;
  }

  .home .cont04 .button a {
    display: block;
    background: #fff;
    border: 1px solid var(--main-color);
    line-height: 46px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
  }

  .home .cont04 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  .home .cont04 .tax_text {
    text-align: right;
    line-height: 1;
    margin-top: 19px;
    font-size: 14px;
  }


  /* ----cont12 sp 張替え------------------------------------------ */
  .home .cont12 {
    padding: 80px 15px 80px;
  }

  .home .cont12 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.114;
    color: #1d1d1d;
    margin-bottom: 27px;
  }

  .home .cont12 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .home .cont12 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text08.png) center center / cover no-repeat;
    width: 606px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
    z-index: -1;
  }

  .home .cont12 .readtext {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
  }

  .home .cont12 .box {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 60px;

    flex-direction: column;
    align-items: center;
  }

  .home .cont12 .box .item {
    position: relative;
    width: 380px;
    padding-top: 260px;
  }

  .home .cont12 .box .item .fig01 {
    position: absolute;
    top: 0;
    left: 0;
    border: 3px solid var(--main-color);
    border-radius: 8px;
    overflow: hidden;
  }

  /* 画像 */
  .home .cont12 .service-imgs {
    position: absolute;
    top: 0;
    left: 0;
    width: 380px;
    height: 260px;
    border: 3px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
  }

  .home .cont12 .service-imgs figure {
    flex: 1;
    position: relative;
  }

  .home .cont12 .service-imgs figure img {
    object-fit: none;
    width: 100%;
  }

  .home .cont12 .service-imgs figure:not(:last-child) {
    border-right: 3px solid var(--main-color);
  }

  .home .cont12 .box .item .text_box {
    margin-top: 26px;
  }

  .home .cont12 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    line-height: 32px;
    height: 32px;
    padding-left: 16px;
  }

  .home .cont12 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }


  .home .cont12 .text_box .text01 {
    margin-top: 6px;
    text-align: right;
    line-height: 1;
  }

  .home .cont12 .text_box .text01 .span02 {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    padding-left: 30px;
    color: var(--main-color);
  }

  .home .cont12 .text_box .text01 .span02 .price {
    font-size: 32px;
    font-weight: bold;
    /* color: var(--main-color); */
    padding-left: 7px;
    vertical-align: -0.1em;
  }

  .home .cont12 .text_box .text01 .span02 .yen {
    font-size: 16px;
    font-weight: bold;
    vertical-align: -0.1em;
  }

  .home .cont12 .text02 {
    margin-top: 18px;
  }

  .home .cont12 .button {
    position: relative;
    width: 380px;
    height: 50px;
    text-align: center;
    margin-top: 15px;
  }

  .home .cont12 .button a {
    display: block;
    background: #fff;
    border: 2px solid var(--main-color);
    line-height: 46px;
    border-radius: 14px;
    font-weight: bold;
    transition: background-color 0.4s ease, color 0.4s ease;
  }

  .home .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  .home .cont12 .tax_text {
    max-width: 800px;
    text-align: right;
    margin: 19px auto 0px;
    line-height: 1;
    font-size: 14px;
  }



  /* ---------------- */
  /* cont05 */
  .home .cont05 {
    background: url(img/common_bg_01.png);
    padding: 80px 0 80px;

  }

  .home .cont05 .inner {
    position: relative;
    padding: 0 20px;
  }


  .home .cont05 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .home .cont05 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .home .cont05 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .home .cont05 h3 {
    position: relative;
    font-weight: bold;
    font-size: 20px;
    color: #1d1d1d;
    padding-left: 15px;
    height: 32px;
    line-height: 32px;
    margin: 22px 0 0 98px;
  }

  .home .cont05 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 62px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .home .cont05 .text01 {
    margin-top: 38px;
    padding: 0 15px 20px;
  }

  .home .cont05 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    margin-bottom: 40px;
  }

  .home .cont05 .box .item::before {
    position: absolute;
    content: "";
    background: url(img/reason_01.png) center center / cover no-repeat;
    width: 100.8px;
    height: 93.8px;
    left: -1px;
    top: -1px;
    transform: scale(0.8);
  }

  .home .cont05 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .home .cont05 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .home .cont05 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .home .cont05 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .home .cont05 .box .item:first-of-type {
    margin-top: 50px;
  }

  .home .cont05 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .home .cont05 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .home .cont05 .button a {
    display: block;
    background: var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .home .cont05 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  /* cont06 */
  .home .cont06 {
    padding: 80px 0 80px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .home .cont06 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .home .cont06 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .home .cont06 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .home .cont06 .text01 {
    text-align: center;
    margin-top: 27px;
    font-size: 16px;
  }

  .home .cont06 h3 {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home .cont06 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .home .cont06 .category_01,
  .home .cont06 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    margin-top: 15px;
  }

  .home .cont06 .category_01 {
    padding: 7px 14px;
    background: var(--main-color);
  }

  .home .cont06 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .home .cont06 .text02 {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home .cont06 .box .item {
    position: relative;
    padding-top: 137px;
    margin-top: 30px;
  }

  .home .cont06 .box .item:first-of-type {
    margin-top: 38px;
  }

  .home .cont06 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .home .cont06 .box .img_box .before {
    position: relative;
  }

  .home .cont06 .box .img_box .after {
    position: relative;
  }

  .home .cont06 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .home .cont06 .box .img_box .before::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    z-index: 1;
  }

  .home .cont06 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .home .cont06 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .home .cont06 .button a {
    display: block;
    background: var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .home .cont06 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  @media screen and (max-width: 1450px) {
    .home .cont06 .box {
      gap: 15px;
      justify-content: center;
      padding: 0 20px;
    }
  }

  /* cont07 */
  .home .cont07 {
    background: var(--main-light-color);
    padding: 80px 15px 80px;
  }

  .home .cont07 .inner {
    position: relative;
    padding: 0 15px;
  }


  .home .cont07 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .home .cont07 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .home .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .home .cont07 .box {
    margin-top: 50px;
  }

  .home .cont07 .box .item {
    position: relative;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    background: #fff;
    padding: 60px 25px 35px;
    margin-top: 30px;
  }

  .home .cont07 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: var(--main-color);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 35px;
    height: 15px;
  }

  .home .cont07 .box .item:last-of-type::before {
    display: none;
  }

  .home .cont07 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 22px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .home .cont07 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .home .cont07 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .home .cont07 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .home .cont07 .box .item p {
    margin-top: 18px;
    font-size: 13px;
  }

  .home .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 50px auto 0;
  }

  .home .cont07 .button a {
    display: block;
    background: var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .home .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont08 */
  .home .cont08 {
    padding: 80px 20px 80px;
  }

  .home .cont08 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .home .cont08 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .home .cont08 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .home .cont08 p {
    text-align: center;
    font-weight: bold;
    margin-top: 27px;
  }

  .home .cont08 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .home .cont08 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 30px 25px 30px 45px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1.3;
  }

  .home .cont08 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .home .cont08 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .home .cont08 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .home .cont08 .qa_box .ans {
    display: none;
    padding: 0 25px 0 45px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
    position: relative;
  }

  .home .cont08 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 50px auto 0;
  }

  .home .cont08 .button a {
    display: block;
    background: var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .home .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  /* cont09 */
  .home .cont09 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
  }

  .home .cont09 .inner {
    padding: 0 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 857px;
  }

  .home .cont09 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 163.1px;
    height: 128.8px;
    bottom: -163px;
    right: -3px;
    transform: scale(0.8);
  }

  .home .cont09 figure {
    width: 420px;
    position: absolute;
    left: 0;
    border: 2px solid var(--main-color);
    border-left: none;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    box-sizing: border-box;
    order: 1;
  }
.home .cont09 figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -50px 50%;
    transform: scale(1.4);
  }
.home .cont09 .text_box {
    padding: 50px 30px;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    z-index: 2;
    order: 2;
    position: absolute;
    right: 0;
    width: 420px;
    bottom: 0;
  }

  .home .cont09 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.3;
  }

  .home .cont09 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 12px;
  }

  .home .cont09 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .home .cont09 .text_box .info_box {
    margin-top: 24px;
  }

  .home .cont09 .text_box .tel,
  .home .cont09 .text_box .mail,
  .home .cont09 .text_box .time,
  .home .cont09 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .home .cont09 .text_box .place {
    line-height: 1.2;
    margin-top: 7px;
  }

  .home .cont09 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .home .cont09 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .home .cont09 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .home .cont09 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
  }

  .home .cont09 .text_box .text02 {
    margin-top: 20px;
  }

  .home .cont09 .button {
    position: relative;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .home .cont09 .button a {
    display: block;
    background: var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .home .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  /* cont10 */
  .home .cont10 {
    padding: 80px 0;
    z-index: 10;
    position: relative;
  }

  .home .cont10 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .home .cont10 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 30px;
  }

  .home .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
    z-index: -1;
  }

  .home .cont10 .text01 {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
  }

  .home .cont10 .blog_box {
    margin-top: 49px;
  }

  .home .cont10 .blog_box .swiper-slide {
    display: block;
    width: 330px;
  }

  .home .cont10 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .home .cont10 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 20px;
    order: 2;
    line-height: 1;
  }

  .home .cont10 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 12px 0 0;
    order: 3;
  }

  .home .cont10 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 12px 0 0;
    order: 4;
    font-size: 12px;
  }

  .home .cont10 .blog_box .swiper-slide a .text02 {
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 10px;
    order: 5;
  }

  .home .cont10 .blog_box .swiper-slide a figure {
    box-sizing: border-box;
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .home .cont10 .blog_box .swiper-slide a figure img {
    width: 330px;
    height: 220px;
  }

  .home .cont10 .swiper-button-prev {
    top: -177px;
    left: calc(50% + 120px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: scale(0.7);
  }

  .home .cont10 .swiper-button-next {
    top: -177px;
    right: calc(50% + 120px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg) scale(0.7);
  }

  .home .cont10 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 90px auto 0;
  }

  .home .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .home .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* common
------------------------------------------------------------------------*/

  /* key */


  .common .key {
    height: 140px;
    background: url(img/common_bg_01.png);
    background-size: 73px auto;
  }

  .common .key .text01 {
    position: relative;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
    top: 57px;
    color: #1d1d1d;
  }

  .common .key .text01::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }



  /* about ------------------------------------------------------------------------*/
  /* key */
  .about .key .text01::after {
    background: url("img/about_key_text.png");
    width: 240.1px;
    height: 51.8px;
  }

  /* cont01 */
  .about .cont01 {
    padding: 50px 15px 510px;
    margin-bottom: 80px;
  }

  .about .cont01 h2 {
    font-size: 16px;
    font-weight: bold;
    padding-left: 28px;
    position: relative;
    line-height: 1;
  }

  .about .cont01 h2::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 85px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .about .cont01 h2 span {
    display: block;
    font-weight: bold;
    font-size: 22px;
    color: var(--main-color);
    line-height: 1.2;
    padding-top: 5px;
  }

  .about .cont01 .text01 {
    line-height: 2.3;
    margin-top: 18px;
  }

  .about .cont01 .text01:first-of-type {
    margin-top: 30px;
  }

  .about .cont01 .img_box {
    position: absolute;
    right: 0;
    margin-top: 20px;
  }

  .about .cont01 .img_box figure {
        position: absolute;
        border-radius: 10px;
        overflow: hidden;
  }

  .about .cont01 .img_box figure:nth-of-type(1) {
    right: 208px;
    top: 85px;
    width: 185px;
    transform: scale(0.7);
  }

  .about .cont01 .img_box figure:nth-of-type(2) {
    width: 336px;
    top: -66px;
    right: -55px;
    transform: scale(0.7);
  }

  .about .cont01 .img_box figure:nth-of-type(3) {
    width: 224px;
    top: 243px;
    right: 153px;
    transform: scale(0.7);
  }

  .about .cont01 .img_box figure:nth-of-type(4) {
    right: 55px;
    top: 265px;
    width: 148px;
    transform: scale(0.7);
  }

  /* cont02 */
  .about .cont02 {
    position: relative;
  }

  .about .cont02::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center / cover no-repeat;
    width: 233px;
    height: 184px;
    top: -25px;
    left: 20px;
    top: -624px;
    left: -35px;
    transform: scale(0.5);
  }

  .about .cont02 .inner {
    padding: 90px 15px;
    background: var(--main-light-color);
  }

  .about .cont02 .cont02_01 {
    position: relative;
  }

  .about .cont02 .cont02_01::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center / cover no-repeat;
    width: 233px;
    height: 184px;
    bottom: -93px;
    left: -4px;
    transform: scale(0.7);
  }

  .about .cont02 .cont02_01::after {
    position: absolute;
    content: "";
    background: url(img/common_deco09.png) center / cover no-repeat;
    width: 263px;
    height: 215px;
    top: -138px;
    right: -38px;
    transform: scale(0.6);
  }

  .about .cont02 .cont02_01 h2 {
    text-align: center;
    font-size: 34px;
    font-weight: bold;
    line-height: 1;
    color: #082a4a;
  }

  .about .cont02 .cont02_01 h2 span {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 30px;
  }

  .about .cont02 .cont02_01 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/about_text01.png) center center / cover no-repeat;
    width: 335.3px;
    height: 40.6px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px));
    z-index: -1;
  }


  .about .cont02 .cont02_01 .box {
    position: relative;
    margin-top: 25px;
  }

  .about .cont02 .cont02_01 .box:first-of-type {
    margin-top: 50px;
  }

  .about .cont02 .cont02_01 .box figure {
    position: absolute;
    width: 380px;
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
    z-index: 1;
  }

  .about .cont02 .cont02_01 .text_box {
    border-radius: 10px;
    background: #fff;
    padding: 272px 15px 30px;
  }



  .about .cont02 .cont02_01 .box .text01 {
    font-size: 16px;
    margin-top: 15px;
    line-height: 2.3;
  }

  .about .cont02 .cont02_01 .box h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #082a4a;
    padding-left: 74px;
    line-height: 48px;
    margin-top: 25px;
  }

  .about .cont02 .cont02_01 .box:nth-of-type(3) h3 {
    line-height: 1.5;
  }

  .about .cont02 .cont02_01 .box h3::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .about .cont02 .cont02_01 .box:nth-of-type(1) h3::before {
    background: url(img/vision01.png) center / cover;
    width: 34.4px;
    height: 44px;
  }

  .about .cont02 .cont02_01 .box:nth-of-type(2) h3::before {
    background: url(img/vision02.png) center / cover;
    width: 39.2px;
    height: 44px;
  }

  .about .cont02 .cont02_01 .box:nth-of-type(3) h3::before {
    background: url(img/vision03.png) center / cover;
    width: 39.2px;
    height: 44px;
  }

  .about .cont02 .cont02_01 .box h3::after {
    position: absolute;
    content: "";
    left: 55px;
    top: 0;
    width: 3px;
    height: 48px;
    border-radius: 2px;
    background: var(--main-color);
  }

  .about .cont02 .cont02_01 .box.box:nth-of-type(3) h3::after {
    top: 50%;
    transform: translateY(-50%);
  }

  .about .cont02 .cont02_02 {
    background: #fff;
    border: 3px solid var(--main-color);
    padding: 0 0 45px;
    margin: 90px 15px 0;
    border-radius: 5px;
    box-sizing: border-box;
  }

  .about .cont02 .cont02_02 h2 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: rgb(255, 255, 255);
    line-height: 60px;
    background: var(--main-color);
    border-radius: 2px 2px 0px 0px;
  }

  .about .cont02 .cont02_02 h2::before {
    position: absolute;
    content: "";
    background: url(img/common_deco05.png) center / cover no-repeat;
    width: 104.8px;
    height: 120.8px;
    right: -27px;
    top: -75px;
    transform: scale(0.5);
  }

  .about .cont02 .cont02_02 .tet_box {
    text-align: center;
    margin: 35px 15px 0;
  }

  .about .cont02 .cont02_02 .tet_box .text01 {
    line-height: 1.3;
  }

  .about .cont02 .cont02_02 .tet_box .text01 {
    font-size: 20px;
    font-weight: bold;
    color: #082a4a;
  }

  .about .cont02 .cont02_02 .tet_box .text01 span {
    font-size: 22px;
    font-weight: bold;
    color: var(--main-color);
  }

  .about .cont02 .cont02_02 .tet_box .text02 {
    font-size: 16px;
    margin-top: 20px;
    text-align: left;
  }

  .about .cont02 .cont02_02 .tet_box:nth-of-type(1) .text02 {
    padding-bottom: 40px;
    border-bottom: 2px dashed var(--main-color);
  }

  .about .cont02 .cont02_02 .tet_box .text02 span {
    font-size: 16px;
    font-weight: bold;
    color: var(--main-color);
  }

  /* cont03 */
  .about .cont03 {
    position: relative;
    padding: 45px 0 0;
  }

  .about .cont03 .box {
    padding: 0 15px;
  }

  .about .cont03::before {
    position: absolute;
    content: "";
    background: url(img/housecleaning_deco02.png) no-repeat;
    width: 215px;
    height: 225px;
    top: -76px;
    right: -30px;
    z-index: 1;
    transform: scale(0.5);
  }

  .about .cont03 .box figure {
    position: absolute;
    top: 50px;
    left: 0;
    border: 2px solid var(--main-color);
    border-left: none;
    border-radius: 0 10px 10px 0;
    box-sizing: border-box;
    overflow: hidden;
    width: 420px;
  }

  .about .cont03 .text_box {
    margin-top: 235px;
    position: relative;
    background: url(img/common_bg_01.png);
    border-radius: 10px 0 0 10px;
    padding: 30px 20px 25px;
    z-index: 1;
    right: 0;
    width: 420px;
  }

  .about .cont03 .text_box h2 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #082a4a;
    line-height: 1.5;
    padding-left: 20px;
    letter-spacing: -0.5px;
    word-break: keep-all;
  }

  .about .cont03 .text_box h2::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 60px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px;
  }

  .about .cont03 .text_box .text01 {
    margin-top: 15px;
    font-size: 16px;
    width: 380px;
  }

  .about .cont03 .review_box {
    text-align: center;
    padding: 0 30px;
    margin-top: 40px;
  }

  .about .cont03 .review_box .cont {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    margin-top: 20px;
    padding: 25px 0;
    box-sizing: border-box;
  }

  .about .cont03 .review_box.cont:first-of-type {
    margin-top: 50px;
  }

  .about .cont03 .review_box .cont::before {
    position: absolute;
    content: "";
    background: url(img/common_deco02.png) center center / cover no-repeat;
    top: -9px;
    left: 0px;
    width: 89px;
    height: 103px;
    transform: scale(0.7);
  }

  .about .cont03 .review_box .cont h3 {
    line-height: 1;
    font-size: 26px;
    font-weight: bold;
    color: var(--main-color);
  }

  .about .cont03 .review_box .cont h3 span:nth-of-type(1) {
    display: block;
    font-weight: bold;
    color: #555;
    padding-bottom: 15px;
  }

  .about .cont03 .review_box .cont h3 span:nth-of-type(2) {
    font-size: 44px;
    font-weight: bold;
  }

  .about .cont03 .review_box .cont h3 span:nth-of-type(3) {
    font-size: 32px;
    font-weight: bold;
  }

  .about .cont03 .review_box .cont .text02 {
    line-height: 1.5;
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
  }

  /* topic_wrap */
  .about .topic_wrap {
    margin: 60px auto 80px;
    padding: 0 15px;
  }

  .about .topic_wrap .breaking_wrap {
    position: relative;
    background: var(--main-light-color);
    border: 1px solid var(--main-color);
    border-radius: 10px;
    padding: 40px 8px 8px;
    box-sizing: border-box;
  }

  .about .topic_wrap .breaking_wrap h2 {
    position: absolute;
    top: -17.5px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #444;
    font-size: 14px;
    font-weight: bold;
    width: 400px;
    height: 35px;
    line-height: 35px;
    border: 1px solid var(--main-color);
    border-radius: 17.5px;
    background: #fff;
  }

  .about .topic_wrap .breaking_wrap h2 span {
    color: #082a4a;
    font-size: 16px;
    font-weight: bold;
  }

  .about .topic_wrap .breaking_wrap h2::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    width: 18px;
    height: 11px;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
  }

  .about .topic_wrap .breaking_wrap .text01 {
    text-align: center;
    color: #082a4a;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    word-break: keep-all;
  }

  .about .topic_wrap .breaking_wrap .breaking_box {
    height: 230px;
    background: #fff;
    border-radius: 5px;
    margin-top: 18px;
    overflow-y: auto;
    padding: 25px 15px 15px 15px;
    box-sizing: border-box;
  }

  .about .topic_wrap .breaking_wrap .breaking_box .cont {
    position: relative;
  }

  .about .topic_wrap .breaking_wrap .breaking_box .cont::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(to right,
        #082a4a 0,
        #082a4a 11px,
        transparent 11px,
        transparent 22px);
  }

  .about .topic_wrap .breaking_wrap .breaking_box .cont .date {
    color: #082a4a;
    font-weight: bold;
    line-height: 1;
    padding-top: 25px;
  }

  .about .topic_wrap .breaking_wrap .breaking_box .cont:nth-of-type(1) .date {
    padding-top: 0;
  }

  .about .topic_wrap .breaking_wrap .breaking_box .cont .text02 {
    line-height: 1.5;
    font-weight: bold;
    padding: 15px 0 25px;
  }

  .about .topic_wrap .reviews_wrap {
    position: relative;
    background: var(--main-light-color);
    border: 1px solid var(--main-color);
    border-radius: 10px;
    padding: 40px 8px 8px;
    box-sizing: border-box;
    margin-top: 50px;
  }

  .about .topic_wrap .reviews_wrap h2 {
    position: absolute;
    top: -17.5px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #444;
    font-size: 14px;
    font-weight: bold;
    width: 400px;
    height: 35px;
    line-height: 35px;
    border: 1px solid var(--main-color);
    border-radius: 17.5px;
    background: #fff;
  }

  .about .topic_wrap .reviews_wrap h2 span {
    color: #082a4a;
    font-size: 16px;
    font-weight: bold;
  }

  .about .topic_wrap .reviews_wrap h2::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    width: 18px;
    height: 11px;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
  }

  .about .topic_wrap .reviews_wrap .text01 {
    text-align: center;
    color: #082a4a;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
  }

  .about .topic_wrap .reviews_wrap .reviews_box {
    height: 260px;
    background: #fff;
    border-radius: 5px;
    margin-top: 18px;
    overflow: scroll;
  }


  /* aircon ------------------------------------------------------------------------*/

  /* key */
  .aircon .key .text01::after {
    background: url("img/common_key_text_sp.png");
    width: 519px;
    height: 74px;
  }

  /* cont01 */
  .aircon .cont01 {
    margin-top: 20px;
    padding: 265px 20px 80px;
    display: flex;
    gap: 18px;
    position: relative;
  }

  .aircon .cont01 h2 {
    font-size: 18px;
    font-weight: bold;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
    margin-top: 35px;
  }

  .aircon .cont01 h2::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 55px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .aircon .cont01 .text01 {
    font-size: 16px;
    line-height: 2.2;
    margin-top: 15px;
  }

  .aircon .cont01 figure {
    position: absolute;
    top: 0;
    left: -2px;
    width: 420px;
    border-radius: 0 10px 10px 0;
    border: 2px solid var(--main-color);
    border-left: none;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* cont02 */
  .aircon .cont02 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
    background-size: 88px auto;

  }

  .aircon .cont02 h2 {
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .aircon .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/aircon_deco02.png) center center / cover no-repeat;
    width: 203px;
    height: 153px;
    top: -161px;
    right: -63px;
    transform: scale(0.6);

  }

  .aircon .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/aircon_deco01.png) center center / cover no-repeat;
    width: 224px;
    height: 264px;
    top: -222px;
    left: -81px;
    transform: scale(0.5);

  }

  .aircon .cont02 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .aircon .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text01.png) center center / cover no-repeat;
    width: 298px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .aircon .cont02 .readtext {
    margin-top: 27px;
    font-size: 16px;
    text-align: center;
  }

  .aircon .cont02 .box {
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: center;
    margin-top: 10px;
  }

  .aircon .cont02 .box .text_box01 {
    position: relative;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 375px;
    padding: 226px 33px 33px;
    overflow: hidden;
    margin: 30px auto 0;
  }

  .aircon .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 25px 33px 28px;

  }

  .aircon .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .aircon .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .aircon .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .aircon .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .aircon .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 21px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .aircon .cont02 .box .text_box01:nth-of-type(2) h3 {
    font-size: 19px;
  }

  .aircon .cont02 .box .text_box01:nth-of-type(3) h3 {
    font-size: 19px;
  }

  .aircon .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .aircon .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .aircon .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }


  /* cont03 */
  .aircon .cont03 {
    padding: 80px 0 80px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .aircon .cont03 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .aircon .cont03 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .aircon .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .aircon .cont03 .text01 {
    text-align: center;
    font-size: 16px;
    margin-top: 27px;
    line-height: 1.8;
  }

  .aircon .cont03 .item {
    position: relative;
  }

  .aircon .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .aircon .cont03 h3 {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .aircon .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .aircon .cont03 .category_01,
  .aircon .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    margin-top: 15px;
  }

  .aircon .cont03 .category_01 {
    padding: 7px 14px;
    background: var(--main-color);
  }

  .aircon .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .aircon .cont03 .text02 {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .aircon .cont03 .box .item {
    position: relative;
    padding-top: 114px;
    margin-top: 40px;

  }

  .aircon .cont03 .box .item:first-of-type {
    margin-top: 38px;
  }

  .aircon .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .aircon .cont03 .box .img_box .before {
    position: relative;

  }

  .aircon .cont03 .box .img_box .after {
    position: relative;

  }

  .aircon .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .aircon .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .aircon .cont03 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .aircon .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .aircon .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  @media screen and (max-width: 1450px) {
    .aircon .cont03 .box {
      gap: 60px;
      justify-content: center;
      padding: 0 40px;
    }

    .aircon .cont03 .item::before {
      top: 45px;
    }
  }


  /* ーーーーーーーーー新エリア　壁掛けエアコンの費用ーーーーーーー */
  /* cont04 */

  .aircon .cont04 {
    background: var(--main-light-color);
    padding: 80px 0 80px;
  }

  .aircon .cont04 .inner {
    padding: 0 20px;
  }

  .aircon .cont04 h2 {
    text-align: center;
    font-size: 23px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 40px;
  }

  .aircon .cont04 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .aircon .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }


  .aircon .cont04 h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 25px;
    text-align: center;
    line-height: 1;
    position: relative;
  }

  .aircon .cont04 h3::before {
    content: "";
    width: 50px;
    height: 1px;
    background: var(--main-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;

  }

  .aircon .cont04 h3::after {
    content: "";
    width: 50px;
    height: 1px;
    background: var(--main-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;

  }

  .aircon .cont04 section:nth-of-type(2) h3:before {
    width: 34px;
  }

  .aircon .cont04 section:nth-of-type(2) h3::after {
    width: 34px;
  }

  .aircon .cont04 section:nth-of-type(3) h3:before {
    width: 16px;
  }

  .aircon .cont04 section:nth-of-type(3) h3::after {
    width: 16px;
  }

  .aircon .cont04 section:nth-of-type(4) h3:before {
    width: 50px;
  }

  .aircon .cont04 section:nth-of-type(4) h3::after {
    width: 50px;
  }


  .aircon .cont04 .readtext {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
  }

  .aircon .cont04 .box {
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    /* margin-top: 40px; */
  }

  .aircon .cont04 .box h4 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    /* height: 45px; */
    border-radius: 6px 6px 0px 0px;
    line-height: 1;
    padding: 12px 0;
  }

  .aircon .cont04 .box h4 span{
    display: block;
    margin-top: 8px;
    font-size: 14px;
  }


  .aircon .cont04 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 180px;
  }

  .aircon .cont04 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .aircon .cont04 .box .price_box .price_text01 {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    /* padding-top: 60px; */
    text-align: left;
  }

  .aircon .cont04 .box .price_box .price_text01 span {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .aircon .cont04 .box .price_box .price_text01 span .span01 {
    font-size: 18px;
  }

  .aircon .cont04 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .aircon .cont04 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -37px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .aircon .cont04 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 10px;
    line-height: 1;
  }

  .aircon .cont04 .box .price_box .price_text02 span {
    font-size: 28px;
    font-weight: bold;
  }

  .aircon .cont04 .box .price_box .cate01,
  .aircon .cont04 .box .price_box .cate02 {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1.2px;
    line-height: 30px;
    margin-top: 7px;
  }

  .aircon .cont04 .box .price_box .cate01 {
    font-size: 14px;
    width: 221px;
    background: #51aa81;
    margin-right: 4px;
    text-align: center;
  }

  .aircon .cont04 .box:nth-of-type(2) .price_box .cate01,
  .aircon .cont04 .box:nth-of-type(4) .price_box .cate01 {
    background: #045aaa;
  }

  .aircon .cont04 .box .price_box .cate02 {
    font-size: 14px;
    background: #0091a2;
    width: 125px;
    text-align: center;
  }


  .aircon .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .aircon .cont04 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .aircon .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .aircon .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .aircon .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .aircon .cont04 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .aircon .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 55px;
    background: var(--main-color);
  }

  .aircon .cont04 section:nth-of-type(2) .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 70px;
  }

  .aircon .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;

    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  .aircon .cont04 .box:nth-of-type(1) {
    margin-bottom: 40px;
  }

  .aircon .cont04 .box:nth-of-type(3) {
    margin-bottom: 65px;
  }

  .aircon .cont04 .tax_text01 {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 70px;
    text-align: left;
  }

  .aircon .cont04 .tax_text02 {
    font-size: 14px;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 70px;
  }

  /* オプションボックス */
  .aircon .cont04 .option_box {
    margin-top: 0px;
  }

  .aircon .cont04 .option_box .option_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .aircon .cont04 .option_box .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    gap: 20px;
  }

  .aircon .cont04 .option_box .option_flex .item .text_box {
    position: relative;
    margin-right: 8px;
    width: 345px;
  }

  .aircon .cont04 .option_box .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 20px;
  }

  .aircon .cont04 .option_box .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .aircon .cont04 .option_box .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .aircon .cont04 .option_box .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .aircon .cont04 .option_box .option_flex .item .text_box .text03 span {
    font-size: 30px;
    font-weight: bold;
    margin-left: 8px;
  }

  .aircon .cont04 .option_box .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 35px;
    font-size: 17px;
  }

  .aircon .cont04 .option_box .option_flex .item figure {
    width: 345px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }

 
  .aircon .cont04 .option_box .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .aircon .cont04 .option_box .tax_text03 {
    text-align: right;
    line-height: 1;
    margin-top: 15px;
    margin-bottom: 59px;
  }

  .aircon .cont04 .complete_box {
    position: relative;
    width: 400px;
    height: 500px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
  }

  .aircon .cont04 .complete_box::before {
    content: "";
    background: url(img/aircon_deco04.png);
    width: 350px;
    height: 160px;
    position: absolute;
    top: 5px;
    transform: scale(0.8);
    right: -13px;
  }

  .aircon .cont04 .complete_box::after {
    content: "";
    background: url(img/aircon_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: 5px;
    transform: scale(0.8);
    left: -9px;
  }

  .aircon .cont04 .complete_box .text_box {

    margin-top: 183px;
  }

  .aircon .cont04 .complete_box .text_box .text05 {
    font-size: 18px;

  }

  .aircon .cont04 .complete_box .text_box .text05 .span01 {
    font-size: 21px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    margin-bottom: 13px;
  }

  .aircon .cont04 .complete_box .text_box .text05 .span02 {
    font-size: 30px;
    color: #006db2;
    font-weight: bold;
  }

  .aircon .cont04 .complete_box .text_box .text05 .span03 {
    background: linear-gradient(transparent 40%, #feff90 60%);
  }

  .aircon .cont04 .complete_box .text_box .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 34px auto 0;
  }

  .aircon .cont04 .complete_box .text_box .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .aircon .cont04 .complete_box .text_box .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }



  /* cont05 業務用*/
  .aircon .cont05 {
    padding: 80px 0 80px;
  }

  .aircon .cont05 .inner {
    padding: 0 20px;
  }

  .aircon .cont05 h2 {
    text-align: center;
    font-size: 23px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 40px;
  }

  .aircon .cont05 h2::before {
    position: absolute;
    content: "";
    background: url(img/aircon_deco05.png) center center / cover no-repeat;
    width: 125px;
    height: 258px;
    top: -190px;
    left: 0;
    transform: scale(0.6);
  }

  .aircon .cont05 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .aircon .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .aircon .cont05 .readtext {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
  }

  .aircon .cont05 .box {
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
  }

  .aircon .cont05 .box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

  .aircon .cont05 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 180px;
  }

  .aircon .cont05 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .aircon .cont05 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    text-align: left;
    line-height: 1;
  }

  .aircon .cont05 .box .price_box .price_text01 .span01 {
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .aircon .cont05 .box .price_box .price_text01 .span02 {
    font-size: 28px;
    font-weight: bold;
    color: var(--main-color);
  }

  .aircon .cont05 .box .price_box .cate01,
  .aircon .cont05 .box .price_box .cate02 {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1.2px;
    line-height: 30px;
    margin-top: 7px;
  }

  .aircon .cont05 .box .price_box .cate01 {
    font-size: 14px;
    width: 221px;
    background: #51aa81;
    margin-right: 4px;
    text-align: center;
  }

  .aircon .cont05 .box .price_box .cate02 {
    font-size: 14px;
    background: #0091a2;
    width: 125px;
    text-align: center;
  }

  .aircon .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .aircon .cont05 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .aircon .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .aircon .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .aircon .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .aircon .cont05 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .aircon .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 37px;
    background: var(--main-color);
  }

  .aircon .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px;
    flex: 1;

    line-height: 1.4;
    font-size: 14px;
    text-align: left;

  }

  .aircon .cont05 .box:nth-of-type(1) {
    margin-bottom: 40px;
  }

  .aircon .cont05 .box:nth-of-type(2) {
    margin-bottom: 40px;
  }

  .aircon .cont05 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 10px;
    margin-bottom: 60px;
  }

  /* オプションボックス */
  .aircon .cont05 .option_box {
    margin-top: 0px;
  }

  .aircon .cont05 .option_box h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 25px;
    text-align: center;
    line-height: 1;
    position: relative;
  }

  .aircon .cont05 .option_box h3::before {
    content: "";
    width: 16px;
    height: 1px;
    background: var(--main-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
  }

  .aircon .cont05 .option_box h3::after {
    content: "";
    width: 16px;
    height: 1px;
    background: var(--main-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
  }

  .aircon .cont05 .option_box .option_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .aircon .cont05 .option_box .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    gap: 20px;
  }

  .aircon .cont05 .option_box .option_flex .item .text_box {
    position: relative;
    margin-right: 8px;
    width: 345px;
  }

  .aircon .cont05 .option_box .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 20px;
  }

  .aircon .cont05 .option_box .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .aircon .cont05 .option_box .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .aircon .cont05 .option_box .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .aircon .cont05 .option_box .option_flex .item .text_box .text03 span {
    font-size: 30px;
    font-weight: bold;
    margin-left: 4px;
  }

  .aircon .cont05 .option_box .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 35px;
    font-size: 17px;
  }

  .aircon .cont05 .option_box .option_flex .item figure {
    width: 345px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }

  .aircon .cont05 .option_box  .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .aircon .cont05 .option_box .tax_text02 {
    font-size: 14px;
    text-align: right;
    margin-top: 15px;
    line-height: 1;
  }

  .aircon .cont05 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .aircon .cont05 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .aircon .cont05 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }



  /* cont06選ばれる理由 */
  .aircon .cont06 {
    background: url(img/common_bg_01.png);
    padding: 80px 0 80px;
  }

  .aircon .cont06 .inner {
    position: relative;
    padding: 0 20px;
  }

  .aircon .cont06 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .aircon .cont06 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .aircon .cont06 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .aircon .cont06 h3 {
    position: relative;
    font-weight: bold;
    font-size: 20px;
    color: #1d1d1d;
    padding-left: 15px;
    height: 32px;
    line-height: 32px;
    margin: 22px 0 0 98px;
  }

  .aircon .cont06 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 62px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .aircon .cont06 .text01 {
    margin-top: 38px;
    padding: 0 30px 20px;
  }

  .aircon .cont06 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    margin-bottom: 40px;
  }

  .aircon .cont06 .box .item::before {
    content: "";
    background: url(img/reason_01.png) center center / cover no-repeat;
    width: 100px;
    height: 94px;
    position: absolute;
    left: -2px;
    top: -2px;
    transform: scale(0.8);
  }

  .aircon .cont06 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .aircon .cont06 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .aircon .cont06 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .aircon .cont06 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .aircon .cont06 .box .item:first-of-type {
    margin-top: 50px;
  }

  .aircon .cont06 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .aircon .cont06 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .aircon .cont06 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .aircon .cont06 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }



  /* cont07ご利用の流れ */
  .aircon .cont07 {
    background: var(--main-light-color);
    padding: 80px 15px 80px;
    margin: 0 auto;
    /* width: 1400px; */
  }

  .aircon .cont07 .inner {
    position: relative;
    padding: 0 15px;
  }

  .aircon .cont07 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .aircon .cont07 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .aircon .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .aircon .cont07 .box {
    /* display: flex; */
    /* justify-content: space-between; */
    margin-top: 50px;
  }

  .aircon .cont07 .box .item {
    position: relative;
    /* width: 380px; */
    /* height: 250px; */
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    background: #fff;
    padding: 60px 24px 35px;
    margin-top: 30px;
  }

  .aircon .cont07 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: var(--main-color);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 35px;
    height: 15px;
  }

  .aircon .cont07 .box .item:last-of-type::before {
    display: none;
  }

  .aircon .cont07 .box .item:nth-of-type(2) {
    /* padding: 65px 48px 30px; */
  }

  .aircon .cont07 .box .item:nth-of-type(3) {
    /* padding: 60px 47px 30px; */
  }

  .aircon .cont07 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 22px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .aircon .cont07 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .aircon .cont07 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .aircon .cont07 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .aircon .cont07 .box .item p {
    margin-top: 18px;
    font-size: 13px;
  }

  .aircon .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 50px auto 0;
  }

  .aircon .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .aircon .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }



  /* cont08 よくある質問*/
  .aircon .cont08 {
    padding: 80px 20px 80px;
  }

  .aircon .cont08 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .aircon .cont08 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .aircon .cont08 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .aircon .cont08 p {
    text-align: center;
    font-weight: bold;
    margin-top: 27px;
  }

  .aircon .cont08 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .aircon .cont08 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 30px 25px 30px 45px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1.3;
  }

  .aircon .cont08 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .aircon .cont08 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .aircon .cont08 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .aircon .cont08 .qa_box .ans {
    display: none;
    padding: 0 25px 0 45px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
    position: relative;
  }

  .aircon .cont08 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .aircon .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .aircon .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }



  /* cont09イークリーンについて */

  .aircon .cont09 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
  }

  .aircon .cont09 .inner {
    padding: 0 15px;
    /* padding-top: 620px; */
    position: relative;
    display: flex;
    flex-direction: column;
    height: 857px;
  }

  .aircon .cont09 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 163.1px;
    height: 128.8px;
    bottom: -163px;
    right: -3px;
    transform: scale(0.8);
  }

  .aircon .cont09 figure {
    width: 420px;
    position: absolute;
    left: 0;
    border: 2px solid var(--main-color);
    border-left: none;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    box-sizing: border-box;
    order: 1;
  }

  .aircon .cont09 figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -50px 50%;
    transform: scale(1.4);
  }

  .aircon .cont09 .text_box {
    padding: 50px 30px;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    z-index: 2;
    order: 2;
    position: absolute;
    right: 0;
    width: 420px;
    bottom: 0;
  }

  .aircon .cont09 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.3;
  }

  .aircon .cont09 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 12px;
  }

  .aircon .cont09 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .aircon .cont09 .text_box .info_box {
    margin-top: 24px;
  }

  .aircon .cont09 .text_box .tel,
  .aircon .cont09 .text_box .mail,
  .aircon .cont09 .text_box .time,
  .aircon .cont09 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .aircon .cont09 .text_box .place {
    line-height: 1.2;
    margin-top: 7px;
  }

  .aircon .cont09 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .aircon .cont09 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .aircon .cont09 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .aircon .cont09 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 1px;
    transform: translateY(-50%);
  }

  .aircon .cont09 .text_box .text02 {
    margin-top: 20px;
    /* text-align: justify; */
  }

  .aircon .cont09 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .aircon .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .aircon .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }





  /* cont10ブログ一覧 */

  .aircon .cont10 {
    padding: 80px 0;
    z-index: 10;
    position: relative;
  }

  .aircon .cont10 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .aircon .cont10 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 30px;
  }

  .aircon .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
    z-index: -1;
  }

  .aircon .cont10 .text01 {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
  }

  .aircon .cont10 .blog_box {
    margin-top: 49px;
  }

  .aircon .cont10 .blog_box .swiper-slide {
    display: block;
    width: 330px;
  }

  .aircon .cont10 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .aircon .cont10 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 20px;
    order: 2;
    line-height: 1;
  }

  .aircon .cont10 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 12px 0 0;
    order: 3;
  }

  .aircon .cont10 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 12px 0 0;
    order: 4;
    font-size: 12px;
  }

  .aircon .cont10 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 10px;
    order: 5;
  }

  .aircon .cont10 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    /* border: 1px solid var(--main-color); */
    overflow: hidden;
    order: 1;
  }

  .aircon .cont10 .swiper-button-prev {
    top: -177px;
    left: calc(50% + 120px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: scale(0.7);
  }

  .aircon .cont10 .swiper-button-next {
    top: -177px;
    right: calc(50% + 120px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg) scale(0.7);
  }

  .aircon .cont10 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 90px auto 0;
  }

  .aircon .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .aircon .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }



  /* cont11　対応エリア */
  .aircon .cont11 {
    background: var(--main-light-color);
    padding: 0 20px;
  }

  .aircon .cont11 .inner {
    padding: 80px 20px;
    margin-bottom: 50px;
  }

  .aircon .cont11 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .aircon .cont11 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .aircon .cont11 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 144.2px;
    height: 39.2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px));
    z-index: -1;
  }

  .aircon .cont11 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 50px;
  }

  .aircon .cont11 .box .text_box {
    padding-top: 329px;

  }

  .aircon .cont11 .box figure {
    position: absolute;
    /* left: -300px; */
    top: 0;
  }

  .aircon .cont11 .box .text_box p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 2.1;
  }


  .aircon .cont11 .area {
    /* width: 328px; */
    height: 328px;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 30px;
  }

  .aircon .cont11 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 4px 4px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .aircon .cont11 .area .area_list {
    text-align-last: left;
    height: 255px;
    overflow-y: auto;
    margin: 25px 5px 0px 15px;
    padding-right: 20px;
  }

  .aircon .cont11 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 0;
  }

  .aircon .cont11 .area .area_list li {
    line-height: 1;
    font-size: 14px;
  }

  .aircon .cont11 .area .area_list>li {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  .aircon .contact_box{
    margin: 0 auto 50px;
  }




  /* kitchen  -----------------------------------------------------------------/

/* key */
  .kitchen .key .text01::after {
    background: url("img/common_key_text_sp.png");
    width: 519px;
    height: 74px;
  }

  /* cont01 */
  .kitchen .cont01 {
    margin-top: 20px;
    padding: 265px 20px 80px;
    display: flex;
    gap: 18px;
    position: relative;
  }

  .kitchen .cont01 h2 {
    font-size: 18px;
    font-weight: bold;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
    margin-top: 35px;
  }

  .kitchen .cont01 h2::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 58px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 49%;
    transform: translateY(-50%);
  }

  .kitchen .cont01 .text01 {
    font-size: 16px;
    line-height: 2.2;
    margin-top: 15px;
  }

  .kitchen .cont01 figure {
    position: absolute;
    top: 0;
    left: -2px;
    width: 420px;
    border-radius: 0 10px 10px 0;
    border: 2px solid var(--main-color);
    border-left: none;
    overflow: hidden;
    box-sizing: border-box;
  }


  /* cont02 */
  .kitchen .cont02 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
    background-size: 88px auto;
  }

  .kitchen .cont02 h2 {
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kitchen .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 230px;
    top: -199px;
    right: -61px;
    transform: scale(0.5);
  }

  .kitchen .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco01.png) center center / cover no-repeat;
    width: 198px;
    height: 222px;
    top: -199px;
    left: -58px;
    transform: scale(0.5);
  }

  .kitchen .cont02 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kitchen .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text01.png) center center / cover no-repeat;
    width: 336px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .kitchen .cont02 .readtext {
    margin-top: 27px;
    font-size: 16px;
    text-align: center;
  }

  .kitchen .cont02 .box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    margin-top: 10px;
  }

  .kitchen .cont02 .box .text_box01 {
    position: relative;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 400px;
    padding: 226px 33px 33px;
    overflow: hidden;
    margin: 30px auto 0;
  }

  .kitchen .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 25px 33px 28px;
  }

  .kitchen .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .kitchen .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .kitchen .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .kitchen .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .kitchen .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .kitchen .cont02 .box .text_box01:nth-of-type(2) h3 {
    font-size: 19px;
  }

  .kitchen .cont02 .box .text_box01:nth-of-type(3) h3 {
    font-size: 19px;
  }

  .kitchen .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .kitchen .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .kitchen .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 400px;
    height: 225px;
  }

 .kitchen  .cont02 .box .text_box01 figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }



  /* cont03 */
  .kitchen .cont03 {
    padding: 80px 20px 80px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .kitchen .cont03 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kitchen .cont03 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kitchen .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .kitchen .cont03 .text01 {
    text-align: center;
    font-size: 16px;
    margin-top: 27px;
    line-height: 1.8;
  }

  .kitchen .cont03 .item {
    position: relative;
  }

  .kitchen .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .kitchen .cont03 h3 {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .kitchen .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .kitchen .cont03 .category_01,
  .kitchen .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    margin-top: 15px;
  }

  .kitchen .cont03 .category_01 {
    padding: 7px 14px;
    background: var(--main-color);
  }

  .kitchen .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .kitchen .cont03 .text02 {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .kitchen .cont03 .box .item {
    position: relative;
    padding-top: 114px;
    margin-top: 40px;
  }

  .kitchen .cont03 .box .item:first-of-type {
    margin-top: 38px;
  }

  .kitchen .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .kitchen .cont03 .box .img_box .before {
    position: relative;
  }

  .kitchen .cont03 .box .img_box .after {
    position: relative;
  }

  .kitchen .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .kitchen .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .kitchen .cont03 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .kitchen .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .kitchen .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  /* cont04 キッチンクリーニングの費用*/

  .kitchen .cont04 {
    background: var(--main-light-color);
    padding: 80px 0px 0px;
  }

  .kitchen .cont04 .inner {
    padding: 0 20px;
  }

  .kitchen .cont04 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 40px;
  }

  .kitchen .cont04 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kitchen .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .kitchen .cont04 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .kitchen .cont04 .box {
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    width: 400px;
  }

  .kitchen .cont04 .box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

  .kitchen .cont04 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 180px;
  }

  .kitchen .cont04 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .kitchen .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    text-align: left;
    line-height: 1;
  }

  .kitchen .cont04 .box .price_box .price_text01 .span01 {
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .kitchen .cont04 .box .price_box .price_text01 .span02 {
    font-size: 28px;
    font-weight: bold;
    color: var(--main-color);
  }

  .kitchen .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .kitchen .cont04 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .kitchen .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .kitchen .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .kitchen .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .kitchen .cont04 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .kitchen .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: var(--main-color);
  }

  .kitchen .cont04 .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 35px;
  }

  .kitchen .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  .kitchen .cont04 .box:nth-of-type(1) {
    margin-bottom: 40px;
  }

  .kitchen .cont04 .tax_text01 {
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
  }

  /* cont05 セットサービス */
  .kitchen .cont05 {
    background: var(--main-light-color);
    padding: 110px 0 0px;
  }

  .kitchen .cont05 .inner {
    padding: 0px 20px;
  }

  .kitchen .cont05 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .kitchen .cont05 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kitchen .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .kitchen .cont05 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .kitchen .cont05 .text_box {
    position: relative;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    margin-bottom: 60px;
    text-align: center;
  }

  .kitchen .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: -20px;
    transform: scale(0.6);
    left: -18px;
  }

  .kitchen .cont05 .text_box .text01 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 15px 20px 65px;
  }

  .kitchen .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .kitchen .cont05 .text_box .text01 .span02 {
    font-size: 28px;
    font-weight: bold;
  }

  .kitchen .cont05 .text_box .text02 {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }

  .kitchen .cont05 .box {
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .kitchen .cont05 .box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

  .kitchen .cont05 .box:nth-of-type(3) h3 {
    font-size: 17px;
  }

  .kitchen .cont05 .box h3 span {
    font-size: 16px;
    font-weight: bold;
    padding: 5px 18px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 18px;
  }

  .kitchen .cont05 .box:nth-of-type(3) h3 span {
    background-color: #34baeb;
  }

  .kitchen .cont05 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 178px;
  }

  .kitchen .cont05 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .kitchen .cont05 .box .price_box .price_text01 {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .kitchen .cont05 .box .price_box .price_text01 span {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .kitchen .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 18px;
  }

  .kitchen .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .kitchen .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -37px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .kitchen .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 10px;
    line-height: 1;
  }

  .kitchen .cont05 .box .price_box .price_text02 span {
    font-size: 28px;
    font-weight: bold;
  }

  .kitchen .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .kitchen .cont05 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .kitchen .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .kitchen .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .kitchen .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .kitchen .cont05 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .kitchen .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 86px;
    background: var(--main-color);
  }

  .kitchen .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 130px;
  }

  .kitchen .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  .kitchen .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 12px;
  }

  .kitchen .cont05 .box:nth-of-type(2) {
    margin-bottom: 30px;
  }


  /* cont06 あわせて頼みたいサービス */
  .kitchen .cont06 {
    background: var(--main-light-color);
    padding: 110px 0 0px;
  }

  .kitchen .cont06 .inner {
    padding: 0 20px;
  }

  .kitchen .cont06 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .kitchen .cont06 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kitchen .cont06 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .kitchen .cont06 .readtext {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
  }

  .kitchen .cont06 .option_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .kitchen .cont06 .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    gap: 20px;
  }

  .kitchen .cont06 .option_flex .item .text_box {
    position: relative;
    margin-right: 8px;
    width: 345px;
  }

  .kitchen .cont06 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 20px;
  }

  .kitchen .cont06 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .kitchen .cont06 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .kitchen .cont06 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .kitchen .cont06 .option_flex .item .text_box .text03 span {
    font-size: 30px;
    font-weight: bold;
    margin-left: 8px;
  }

  .kitchen .cont06 .option_flex .item figure {
    width: 345px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }

  .kitchen .cont06 .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* cont07 その他単品*/

  .kitchen .cont07 {
    background: var(--main-light-color);
    padding: 110px 0 0px;
  }

  .kitchen .cont07 .inner {
    padding: 0 20px 80px;
  }

  .kitchen .cont07 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
  }

  .kitchen .cont07 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kitchen .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 620px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
    z-index: -1;
  }

  .kitchen .cont07 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .kitchen .cont07 .option_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .kitchen .cont07 .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    gap: 20px;
  }

  .kitchen .cont07 .option_flex .item .text_box {
    position: relative;
    margin-right: 8px;
    width: 345px;
  }

  .kitchen .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 20px;
  }

  .kitchen .cont07 .option_flex .item:nth-of-type(6) .text_box .tte01 span {
    font-size: 14px;
    font-weight: bold;
  }

  .kitchen .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  /* .kitchen .cont07 .option_flex .item:nth-of-type(2) .text_box .tte01::before,.kitchen .cont07 .option_flex .item:nth-of-type(3) .text_box .tte01::before,.kitchen .cont07 .option_flex .item:nth-of-type(5) .text_box .tte01::before {
    height: 22px;
  } */

  .kitchen .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .kitchen .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  /* .kitchen .cont07 .option_flex .item:nth-of-type(2) .text_box .text03,.kitchen .cont07 .option_flex .item:nth-of-type(3) .text_box .text03,.kitchen .cont07 .option_flex .item:nth-of-type(5) .text_box .text03{
    margin-top: 22px;
  } */

  .kitchen .cont07 .option_flex .item .text_box .text03 span {
    font-size: 30px;
    font-weight: bold;
    margin-left: 8px;
  }

  .kitchen .cont07 .option_flex .item figure {
    width: 345px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }

  .kitchen .cont07 .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  .kitchen .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 15px;
    line-height: 1;
  }

  .kitchen .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0px;
  }

  .kitchen .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .kitchen .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont08選ばれる理由 */
  .kitchen .cont08 {
    padding: 80px 0 80px;
  }

  .kitchen .cont08 .inner {
    position: relative;
    padding: 0 20px;
  }

  .kitchen .cont08 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kitchen .cont08 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kitchen .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .kitchen .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 20px;
    color: #1d1d1d;
    padding-left: 15px;
    height: 32px;
    line-height: 32px;
    margin: 22px 0 0 98px;
  }

  .kitchen .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 62px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .kitchen .cont08 .text01 {
    margin-top: 38px;
    padding: 0 30px 20px;
  }

  .kitchen .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    margin-bottom: 30px;
  }

  .kitchen .cont08 .box .item::before {
    content: "";
    background: url(img/reason_01.png) center center / cover no-repeat;
    width: 100px;
    height: 94px;
    position: absolute;
    left: -2px;
    top: -2px;
    transform: scale(0.8);
  }

  .kitchen .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .kitchen .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .kitchen .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .kitchen .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .kitchen .cont08 .box .item:first-of-type {
    margin-top: 50px;
  }

  .kitchen .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .kitchen .cont08 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .kitchen .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .kitchen .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont09ご利用の流れ */
  .kitchen .cont09 {
    background: var(--main-light-color);
    padding: 80px 0 80px;
    /* margin: 80px auto 0px; */
    /* max-width: 1400px; */
  }

  .kitchen .cont09 .inner {
    position: relative;
    padding: 0 20px;
  }

  .kitchen .cont09 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kitchen .cont09 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kitchen .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .kitchen .cont09 .box {
    margin-top: 50px;
  }

  .kitchen .cont09 .box .item {
    position: relative;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    background: #fff;
    padding: 60px 30px 30px;
    margin-top: 30px;
    width: 400px;
  }

  .kitchen .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: var(--main-color);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 35px;
    height: 15px;
  }

  .kitchen .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .kitchen .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 22px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .kitchen .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .kitchen .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .kitchen .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .kitchen .cont09 .box .item p {
    margin-top: 18px;
    font-size: 13px;
  }

  .kitchen .cont09 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 50px auto 0;
  }

  .kitchen .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .kitchen .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont10 よくある質問*/
  .kitchen .cont10 {
    padding: 80px 20px 80px;
  }

  .kitchen .cont10 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kitchen .cont10 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kitchen .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .kitchen .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 27px;
  }

  .kitchen .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .kitchen .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 30px 25px 30px 45px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1.3;
  }

  .kitchen .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .kitchen .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .kitchen .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .kitchen .cont10 .qa_box .ans {
    display: none;
    padding: 0 25px 0 45px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
    position: relative;
  }

  .kitchen .cont10 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .kitchen .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .kitchen .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  /* cont11イークリーンについて */
 .kitchen .cont11 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
  }

  .kitchen .cont11 .inner {
    padding: 0 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 857px;
  }

  .kitchen .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 163.1px;
    height: 128.8px;
    bottom: -163px;
    right: -3px;
    transform: scale(0.8);
  }

  .kitchen .cont11 figure {
    width: 420px;
    position: absolute;
    left: 0;
    border: 2px solid var(--main-color);
    border-left: none;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    box-sizing: border-box;
    order: 1;
  }

   .kitchen .cont11 figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -50px 50%;
    transform: scale(1.4);
  }

  .kitchen .cont11 .text_box {
    padding: 50px 30px;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    z-index: 2;
    order: 2;
    position: absolute;
    right: 0;
    width: 420px;
    bottom: 0;
  }

  .kitchen .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .kitchen .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .kitchen .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .kitchen .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .kitchen .cont11 .text_box .tel,
  .kitchen .cont11 .text_box .mail,
  .kitchen .cont11 .text_box .time,
  .kitchen .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .kitchen .cont11 .text_box .place {
    line-height: 1.2;
    margin-top: 7px;
  }


  .kitchen .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .kitchen .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .kitchen .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .kitchen .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 1px;
    transform: translateY(-50%);
  }

  .kitchen .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .kitchen .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .kitchen .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .kitchen .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont12ブログ一覧 */

  .kitchen .cont12 {
    padding: 80px 0px;
    z-index: 10;
    position: relative;
  }

  .kitchen .cont12 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kitchen .cont12 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 30px;
  }

  .kitchen .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
    z-index: -1;
  }

  .kitchen .cont12 .text01 {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
  }

  .kitchen .cont12 .blog_box {
    margin-top: 49px;
  }

  .kitchen .cont12 .blog_box .swiper-slide {
    display: block;
    width: 330px;
  }

  .kitchen .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .kitchen .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 20px;
    order: 2;
    line-height: 1;
  }

  .kitchen .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 12px 0 0;
    order: 3;
  }

  .kitchen .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 12px 0 0;
    order: 4;
    font-size: 12px;
  }

  .kitchen .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 10px;
    order: 5;
  }

  .kitchen .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .kitchen .cont12 .swiper-button-prev {
    top: -177px;
    left: calc(50% + 120px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: scale(0.7);
  }

  .kitchen .cont12 .swiper-button-next {
    top: -177px;
    right: calc(50% + 120px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg) scale(0.7);
  }

  .kitchen .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 90px auto 0;
  }

  .kitchen .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .kitchen .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont13　対応エリア */
  .kitchen .cont13 {
    background: var(--main-light-color);
    padding: 0 20px;
  }

  .kitchen .cont13 .inner {
    padding: 80px 20px;
    margin-bottom: 50px;
  }

  .kitchen .cont13 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kitchen .cont13 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kitchen .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 144.2px;
    height: 39.2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px));
    z-index: -1;
  }

  .kitchen .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 50px;
  }

  .kitchen .cont13 .box .text_box {
    padding-top: 329px;
  }

  .kitchen .cont13 .box figure {
    position: absolute;
    /* left: -300px; */
    top: 0px;
  }

  .kitchen .cont13 .box .text_box p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 2.1;
  }

  .kitchen .cont13 .area {
    height: 328px;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 30px;
  }

  .kitchen .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 4px 4px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .kitchen .cont13 .area .area_list {
    text-align-last: left;
    height: 255px;
    overflow-y: auto;
    margin: 25px 5px 0px 15px;
    padding-right: 20px;
  }

  .kitchen .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 0px;
  }

  .kitchen .cont13 .area .area_list li {
    line-height: 1;
    font-size: 14px;
  }

  .kitchen .cont13 .area .area_list>li {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  .kitchen .contact_box{
    margin: 0 auto;
  }


/* kankisen------------------------------------------------------- */
/* key */

  .kankisen .key .text01::after {
    background: url("img/common_key_text_sp.png") center / cover no-repeat;
    width: 519px;
    height: 74px;
  }

  /* cont01 */
  .kankisen .cont01 {
    padding: 20px 20px 80px;
    display: flex;
    flex-direction: column-reverse;
  }

  .kankisen .cont01 h2 {
    font-size: 18px;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
    font-weight: bold;
    margin-top: 35px;
  }

  .kankisen .cont01 h2::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 58px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .kankisen .cont01 .text_box {
    display: block;
  }
  .kankisen .cont01 .text01 {
    font-size: 16px;
    line-height: 2.2;
    margin-top: 24px;
  }

  .kankisen .cont01 figure {
    width: 420px;
    border: 3px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* cont02 */
  .kankisen .cont02 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
  }

  .kankisen .cont02 h2 {
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kankisen .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 230px;
    transform: scale(0.5);
    top: -191px;
    right: -61px;
  }

  .kankisen .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/kankisen_deco01.png) center center / cover no-repeat;
    width: 200px;
    height: 106px;
    transform: scale(0.7);
    top: -128px;
    left: -16px;
  }

  .kankisen .cont02 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kankisen .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kankisen_text01.png) center center / cover no-repeat;
    width: 398px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px)) scale(0.7);
    z-index: -1;
  }
  .kankisen .cont02 img{
    width: 100%;
  }
  .kankisen .cont02 .readtext {
    margin-top: 30px;
    font-size: 16px;
    text-align: center;
    line-height: 2;
  }

  .kankisen .cont02 .box {
    display: flex;
    flex-direction: column;
    gap: 33px;
    justify-content: center;
    margin-top: 50px;
  }

  .kankisen .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 400px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
  }

  .kankisen .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 25px 33px 28px;

  }

  .kankisen .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .kankisen .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .kankisen .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .kankisen .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .kankisen .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 21px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .kankisen .cont02 .box .text_box01:nth-of-type(2) h3 {
    font-size: 20px;
  }

  .kankisen .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .kankisen .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .kankisen .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }


  /* cont03 */
  .kankisen .cont03 {
    padding: 90px 0 80px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .kankisen .cont03 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kankisen .cont03 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kankisen .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }
  .kankisen .cont03 .box{
    padding: 0 40px;
    display: block;
  } 

  .kankisen .cont03 .text01 {
    text-align: center;
    font-size: 16px;
    margin-top: 30px;
    line-height: 2;
  }

   /* .kankisen .cont03 .item {
    position: relative;
    margin-top: 114px;
  } */

  .kankisen .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  /* .kankisen .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  } */
  .kankisen .cont03 .box .img_box .before {
  position: relative;
  } 
  .kankisen .cont03 .box .img_box .before::after {
  position: absolute;
  content: "";
  background: url(img/before_text.png) no-repeat;
  width: 99px;
  height: 28px;
  top: 0;
  left: 0;
  }
  .kankisen .cont03 .box .img_box .after {
  position: relative;
  }
  .kankisen .cont03 .box .img_box .after::after {
  position: absolute;
  content: "";
  background: url(img/after_text.png) no-repeat;
  width: 99px;
  height: 28px;
  top: 0;
  left: 0;
  }
  .kankisen .cont03 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .kankisen .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .kankisen .cont03 .category_01,
  .kankisen .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
  }

  .kankisen .cont03 .category_01 {
    padding: 7px 22px;
    background: var(--main-color);
  }

  .kankisen .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .kankisen .cont03 .text02 {
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .kankisen .cont03 .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    margin: 55px auto 0;
  }

  .kankisen .cont03 .box .item {
    width: 100%;
    position: relative;
    padding-top: 110px;
  }

  .kankisen .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .kankisen .cont03 .box .img_box .before {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
  }

  .kankisen .cont03 .box .img_box .after {
    position: relative;
    max-width: 330px;
    max-height: 220px;
    overflow: hidden;
    border: 1px solid var(--main-color);
  }

  .kankisen .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .kankisen .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .kankisen .cont03 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .kankisen .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .kankisen .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  /* .kankisen .cont03 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .kankisen .cont03 .button a:hover::before {
    background: var(--main-color);
  } */

  /* @media screen and (max-width: 1450px) {
    .kankisen .cont03 .box {
      gap: 60px;
      justify-content: center;
      padding: 0 40px;
    }

    .kankisen .cont03 .item::before {
      top: 80px;
    }
  } */


  /* cont04 キッチンクリーニングの費用*/

  .kankisen .cont04 {
    background: var(--main-light-color);
    padding: 80px 0 0px;
  }

  .kankisen .cont04 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
  }

  .kankisen .cont04 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kankisen .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .kankisen .cont04 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .kankisen .cont04 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }
  
  .kankisen .cont04 .box:nth-of-type(1) {
    margin-bottom: 40px;
  }

  .kankisen .cont04 .box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 70px;
    border-radius: 6px 6px 0px 0px;
    line-height: 70px;
  }

  .kankisen .cont04 .flex {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .kankisen .cont04 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    height: 180px;
  }

  .kankisen .cont04 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .kankisen .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    text-align: left;
    line-height: 1;
  }

  .kankisen .cont04 .box .price_box .price_text01 .span01 {
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .kankisen .cont04 .box .price_box .price_text01 .span02 {
    font-size: 28px;
    font-weight: bold;
    color: var(--main-color);
  }

  .kankisen .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .kankisen .cont04 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .kankisen .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .kankisen .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
  }

  .kankisen .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .kankisen .cont04 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .kankisen .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: var(--main-color);
  }

  .kankisen .cont04 .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 18px;
  }

  .kankisen .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0 9px 20px;
    flex: 1;
    line-height: 1.6;
    font-size: 14px;
  }

  .kankisen .cont04 .box:nth-of-type(1) {
    margin-bottom: 20px;
  }

  .kankisen .cont04 .tax_text01 {
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
  }

  /* cont05 セットサービス */
  .kankisen .cont05 {
    background: var(--main-light-color);
    padding: 110px 0 0px;
  }

  .kankisen .cont05 h2 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    color: #1d1d1d;
    margin-bottom: 30px;
  }

  .kankisen .cont05 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }
  .kankisen .cont05 h2 .em {
    font-size: 24px;
  }

  .kankisen .cont05 h2 .nomal::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .kankisen .cont05 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .kankisen .cont05 .text_box {
    position: relative;
    width: 400px;
    height: 350px;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
  }

  .kankisen .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: -20px;
    transform: scale(0.6);
    left: -18px;
  }

  .kankisen .cont05 .text_box .text01 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 15px 15px 65px;
  }

  .kankisen .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .kankisen .cont05 .text_box .text01 .span02 {
    font-size: 28px;
    font-weight: bold;
  }

  .kankisen .cont05 .text_box .text02 {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }

  .kankisen .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .kankisen .cont05 .box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

  .kankisen .cont05 .box h3 span {
    font-size: 16px;
    font-weight: bold;
    padding: 5px 18px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 18px;
  }

  .kankisen .cont05 .box:nth-of-type(4) h3 span {
    background-color: #34baeb;
  }

  .kankisen .cont05 .box .flex {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .kankisen .cont05 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 178px;
  }

  .kankisen .cont05 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .kankisen .cont05 .box .price_box .price_text01 {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .kankisen .cont05 .box .price_box .price_text01 span {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .kankisen .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 18px;
  }

  .kankisen .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .kankisen .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .kankisen .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 20px;
    line-height: 1;
  }

  .kankisen .cont05 .box .price_box .price_text02 span {
    font-size: 28px;
    font-weight: bold;
  }

  .kankisen .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 355px;
  }

  .kankisen .cont05 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .kankisen .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .kankisen .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
  }

  .kankisen .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 355px;
  }

  .kankisen .cont05 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .kankisen .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 98px;
    background: var(--main-color);
  }

  .kankisen .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 47px;
  }

  .kankisen .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 0px 9px 20px;
    flex: 1;
    line-height: 1.6;
  }

  .kankisen .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 16px;
    padding: 9px 25px 9px 20px;
  }

  .kankisen .cont05 .box:nth-of-type(4) .price_box .range_box dd {
    font-size: 14px;
    padding: 9px 18px 9px 20px;
  }

  .kankisen .cont05 .box:nth-of-type(2),.kankisen .cont05 .box:nth-of-type(3) {
    margin-bottom: 30px;
  }

  .kankisen .cont05 .tax_text01{
    font-size: 14px;
    text-align: left;
    margin-top: 15px;

  }

  /* cont06 あわせて頼みたいサービス */
  .kankisen .cont06 {
    background: var(--main-light-color);
    padding: 110px 0 0px;
  }

  .kankisen .cont06 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    color: #1d1d1d;
    margin-bottom: 30px;
  }

  .kankisen .cont06 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kankisen .cont06 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.8);
    z-index: -1;
  }

  .kankisen .cont06 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .kankisen .cont06 .option_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .kankisen .cont06 .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    gap: 20px;
  }

  .kankisen .cont06 .option_flex .item .text_box {
    position: relative;
    margin-right: 8px;
    width: 345px;
  }

  /* .kankisen .cont06 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  } */

  .kankisen .cont06 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 20px;
  }

  .kankisen .cont06 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
 }


  .kankisen .cont06 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .kankisen .cont06 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .kankisen .cont06 .option_flex .item .text_box .text03 span {
    font-size: 30px;
    font-weight: bold;
    margin-left: 8px;
  }

  /* .kankisen .cont06 .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 32px;
  } */

  .kankisen .cont06 .option_flex .item figure {
    width: 345px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }

  .kankisen .cont06 .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* cont07 その他単品*/

  .kankisen .cont07 {
    background: var(--main-light-color);
    padding: 110px 0 80px;
  }

  .kankisen .cont07 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
  }

  .kankisen .cont07 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kankisen .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 619px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.8);
    z-index: -1;
  }

  .kankisen .cont07 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .kankisen .cont07 .option_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .kankisen .cont07 .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    gap: 20px;
  }
    /* .kankisen .cont07 .option_flex .item:nth-of-type(7),
    .kankisen .cont07 .option_flex .item:nth-of-type(8){
    height: 250px;
  } */

  .kankisen .cont07 .option_flex .item .text_box {
    position: relative;
    margin-right: 8px;
    width: 345px;
  }

  /* .kankisen .cont07 .option_flex .item:nth-of-type(4) .text_box {
    top: 48px;
  } */

  .kankisen .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 20px;
  }

  .kankisen .cont07 .option_flex .item:nth-of-type(6) .text_box .tte01 span,
  .kankisen .cont07 .option_flex .item:nth-of-type(7) .text_box .tte01 span,
  .kankisen .cont07 .option_flex .item:nth-of-type(8) .text_box .tte01 span {
    font-size: 14px;
    font-weight: bold;
  }

  .kankisen .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .kankisen .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .kankisen .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .kankisen .cont07 .option_flex .item .text_box .text03 span {
    font-size: 30px;
    font-weight: bold;
    margin-left: 8px;
  }

  .kankisen .cont07 .option_flex .item figure {
    width: 345px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }

  .kankisen .cont07 .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .kankisen .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 15px;
  }

  .kankisen .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .kankisen .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .kankisen .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  /* cont08よくある質問 */
  .kankisen .cont08 {
    padding: 80px 0;
  }

  .kankisen .cont08 .inner {
    position: relative;
    padding: 0 20px;
  }

  .kankisen .cont08 .inner {
    width: 440px;
    margin: 0 auto;
  }

  .kankisen .cont08 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kankisen .cont08 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kankisen .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 18px)) scale(0.7);
    z-index: -1;
  }

  .kankisen .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 20px;
    color: #1d1d1d;
    padding-left: 15px;
    height: 32px;
    line-height: 32px;
    margin: 22px 0 0 98px;
  }

  .kankisen .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 62px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .kankisen .cont08 .text01 {
    margin-top: 38px;
    padding: 0 30px 20px;
  }

  .kankisen .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    margin-bottom: 30px;
    }
  
  .kankisen .cont08 .box .item:first-of-type {
    margin-block: 50px;
    }
  .kankisen .cont08 .box .item::before {
    content: "";
    background: url(img/reason_01.png) center center / cover no-repeat;
    width: 100px;
    height: 94px;
    position: absolute;
    left: -2px;
    top: -2px;
    transform: scale(0.7);
  }

  .kankisen .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .kankisen .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .kankisen .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .kankisen .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }
  .kankisen .cont08 .box .item:nth-of-type(1) {
    margin-top: 50px;
  }
  .kankisen .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .kankisen .cont08 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .kankisen .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .kankisen .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont09よくある質問 */
  .kankisen .cont09 {
    background: var(--main-light-color);
    padding: 80px 15px 80px;
    /* margin: 120px auto 0px; */
    /* max-width: 1400px; */
  }

  .kankisen .cont09 .inner {
    position: relative;
    padding: 0 15px;
  }

  .kankisen .cont09 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kankisen .cont09 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kankisen .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .kankisen .cont09 .box {
  margin-top: 50px;
  }

  .kankisen .cont09 .box .item {
    position: relative;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
    background: #fff;
    padding: 60px 24px 35px;
    margin-top: 30px;
  }

  .kankisen .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: var(--main-color);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 35px;
    height: 15px;
  }

  .kankisen .cont09 .box .item:last-of-type::before {
    display: none;
  }



  .kankisen .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 22px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .kankisen .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .kankisen .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .kankisen .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .kankisen .cont09 .box .item p {
    margin-top: 18px;
    font-size: 13px;
  }

  .kankisen .cont09 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 50px auto 0;
  }

  .kankisen .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .kankisen .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  /* cont10 よくある質問*/
  .kankisen .cont10 {
    padding: 80px 20px 80px;
  }

  .kankisen .cont10 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kankisen .cont10 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kankisen .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .kankisen .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 30px;
  }

  .kankisen .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .kankisen .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 30px 25px 30px 45px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1.3;
  }

  .kankisen .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .kankisen .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .kankisen .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .kankisen .cont10 .qa_box .ans {
    display: none;
    padding: 0 25px 0 45px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
    position: relative;
  }

  .kankisen .cont10 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .kankisen .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .kankisen .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont11イークリーンについて */
.kankisen .cont11 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
  }

  .kankisen .cont11 .inner {
    padding: 0 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 857px;
  }

  .kankisen .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 163.1px;
    height: 128.8px;
    bottom: -163px;
    right: -3px;
    transform: scale(0.8);
  }

  .kankisen .cont11 figure {
    width: 420px;
    position: absolute;
    left: 0;
    border: 2px solid var(--main-color);
    border-left: none;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    box-sizing: border-box;
    order: 1;
  }

   .kankisen .cont11 figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -50px 50%;
    transform: scale(1.4);
  }

  .kankisen .cont11 .text_box {
    padding: 50px 30px;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    z-index: 2;
    order: 2;
    position: absolute;
    right: 0;
    width: 420px;
    bottom: 0;
  }

  .kankisen .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .kankisen .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .kankisen .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .kankisen .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .kankisen .cont11 .text_box .tel,
  .kankisen .cont11 .text_box .mail,
  .kankisen .cont11 .text_box .time,
  .kankisen .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .kankisen .cont11 .text_box .place {
    line-height: 1.2;
    margin-top: 7px;
  }


  .kankisen .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .kankisen .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .kankisen .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .kankisen .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 1px;
    transform: translateY(-50%);
  }

  .kankisen .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .kankisen .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .kankisen .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .kankisen .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  /* cont12ブログ一覧 */

  .kankisen .cont12 {
    padding: 80px 0px;
    z-index: 10;
    position: relative;
  }

  .kankisen .cont12 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kankisen .cont12 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 30px;
  }

  .kankisen .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
    z-index: -1;
  }

  .kankisen .cont12 .text01 {
    margin-top: 52px;
    text-align: center;
    font-size: 18px;
  }

  .kankisen .cont12 .blog_box {
    margin-top: 49px;
  }

  .kankisen .cont12 .blog_box .swiper-slide {
    display: block;
    width: 330px;
  }

  .kankisen .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .kankisen .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 20px;
    order: 2;
    line-height: 1;
  }

  .kankisen .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 20px 0 0;
    order: 3;
  }

  .kankisen .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 12px 0 0;
    order: 4;
    font-size: 12px;
  }

  .kankisen .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 10px;
    order: 5;
  }

  .kankisen .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .kankisen .cont12 .swiper-button-prev {
    top: -177px;
    left: calc(50% + 120px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: scale(0.7);
  }

  .kankisen .cont12 .swiper-button-next {
    top: -177px;
    right: calc(50% + 120px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg) scale(0.7);
  }

  .kankisen .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 90px auto 0;
  }

  .kankisen .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .kankisen .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont13　対応エリア */
  .kankisen .cont13 {
    background: var(--main-light-color);
  }

  .kankisen .cont13 {
    padding: 80px 20px 0;
  }

  .kankisen .cont13 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .kankisen .cont13 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .kankisen .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 144.2px;
    height: 39.2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px));
    z-index: -1;
  }

  .kankisen .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 50px;
  }

  .kankisen .cont13 .box .text_box {
    padding-top: 329px;
  }

  .kankisen .cont13 .box figure {
    position: absolute;
    /* left: -300px; */
    top: -25px;
  }

  .kankisen .cont13 .area {
    height: 328px;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 30px;
  }

  .kankisen .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 4px 4px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .kankisen .cont13 .area .area_list {
    text-align-last: left;
    height: 255px;
    overflow-y: auto;
    margin: 25px 5px 0px 15px;
    padding-right: 20px;
  }

  .kankisen .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 0px;
  }

  .kankisen .cont13 .area .area_list li {
    line-height: 1;
    font-size: 14px;
  }

  .kankisen .cont13 .area .area_list>li {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  .kankisen .contact_box{
    margin: 80px auto 50px;
  }


/* bath------------------------------------------------------- */
/* key */
  .bath .key .text01::after {
    background: url("img/common_key_text_sp.png");
    width: 519px;
    height: 74px;
  }

  /* cont01 */
  .bath .cont01 {
    padding: 285px 20px 80px;
    position: relative;
  }

  .bath .cont01 h2 {
    font-size: 18px;
    font-weight: bold;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
    margin-top: 35px;
  }

  .bath .cont01 h2::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 49%;
    transform: translateY(-50%);
  }

  .bath .cont01 .text01 {
    font-size: 16px;
    line-height: 2.2;
    margin-top: 15px;
  }

  .bath .cont01 figure {
    position: absolute;
    right: 0;
    top: 20px;
    width: 420px;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* cont02 */
  .bath .cont02 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
    background-size: 88px auto;
  }

  .bath .cont02 h2 {
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .bath .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 230px;
    top: -199px;
    right: -55px;
    transform: scale(0.4);
  }

  .bath .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/bath_deco01.png) center center / cover no-repeat;
    width: 190px;
    height: 137px;
    top: -147px;
    left: -43px;
    transform: scale(0.6);
  }

  .bath .cont02 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .bath .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/common_key_text_sp.png) center center / cover no-repeat;
    width: 519px;
    height: 74px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.5);
    z-index: -1;
  }

  .bath .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .bath .cont02 .box {
    display: block;
    justify-content: center;
    margin-top: 50px;
  }

  .bath .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 400px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
    margin-bottom: 40px;
  }

  .bath .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;
  }

  .bath .cont02 .box .text_box01:nth-of-type(3) {
    margin-bottom: 0;
  }

  .bath .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .bath .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .bath .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .bath .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .bath .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 19px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .bath .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .bath .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .bath .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
   .bath .cont02 .box .text_box01 figure img{
    width: 100%;
  }


  /* cont03 */
  .bath .cont03 {
    padding: 80px 20px 80px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .bath .cont03 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .bath .cont03 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .bath .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .bath .cont03 .text01 {
    text-align: center;
    font-size: 16px;
    margin-top: 27px;
    line-height: 2;
  }

  .bath .cont03 .item {
    position: relative;
  }

  .bath .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 61px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .bath .cont03 h3 {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bath .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .bath .cont03 .category_01,
  .bath .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    margin-top: 15px;
  }

  .bath .cont03 .category_01 {
    padding: 7px 14px;
    background: var(--main-color);
  }

  .bath .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .bath .cont03 .text02 {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* .bath .cont03 .box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 55px auto 0;
  } */

  .bath .cont03 .box .item {
    position: relative;
    padding-top: 130px;
    margin-top: 40px;
  }

  .bath .cont03 .box .item:first-of-type {
    margin-top: 38px;
  }

  .bath .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .bath .cont03 .box .img_box .before {
    position: relative;
  }

  .bath .cont03 .box .img_box .after {
    position: relative;
  }

  .bath .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .bath .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .bath .cont03 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .bath .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .bath .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  /* cont04 浴槽・浴室クリーニングの費用*/

  .bath .cont04 {
    background: var(--main-light-color);
    padding: 80px 0 0px;
  }
  .bath .cont04 .inner{
    padding: 0 20px;
  }
  .bath .cont04 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 40px;
  }

  .bath .cont04 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .bath .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .bath .cont04 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .bath .cont04 .box {
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .bath .cont04 .box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

  .bath .cont04 .flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .bath .cont04 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 180px;
  }

  .bath .cont04 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .bath .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
  }

  .bath .cont04 .box .price_box .price_text01 .span01 {
        font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .bath .cont04 .box .price_box .price_text01 .span02 {
    font-size: 28px;
    font-weight: bold;
    color: var(--main-color);
  }

  .bath .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .bath .cont04 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .bath .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .bath .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .bath .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 355px;
  }

  .bath .cont04 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .bath .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: var(--main-color);
  }

  .bath .cont04 .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 35px;
  }

  .bath .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  .bath .cont04 .box:nth-of-type(1) {
    margin-bottom: 40px;
  }

  .bath .cont04 .box .ttl {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    margin: 50px auto 30px;
    text-align: center;
    position: relative;
  }

  .bath .cont04 .box .ttl::before{
    content: "";
    background: url(img/common_deco13.png) center / cover no-repeat;
    width: 53px;
    height: 48px;
    position: absolute;
    top: -35px;
    left: 7px;
    transform: scale(0.5);
}

  .bath .cont04 .box .option_flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 25px 25px;
    gap: 25px;
  }
  .bath .cont04 .box .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    background: var(--main-light-color);
    border-radius: 10px;
    padding: 20px;
    width: 315px;
   }

  .bath .cont04 .box .option_flex .item .text_box{
    width: 310px;
   }
  .bath .cont04 .box .option_flex .item .text_box .tte01{
    font-size: 19px;
    font-weight: bold;
    padding-left: 17px;
    position: relative;
   }
  .bath .cont04 .box .option_flex .item .text_box .tte01::before{
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
   }
  .bath .cont04 .box .option_flex .item figure{
    width: 315px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }
 .bath .cont04 .box .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
  .bath .cont04 .box .option_flex .item figure img:nth-last-of-type(4){
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
 }
  .bath .cont04 .box .option_flex .item .text_box .text02{
    margin-top: 7px;
    font-size: 16px;
  }

  .bath .cont04 .box .option_flex .item .text_box .text03{
    margin-right: 5px;
    text-align: right;
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--main-color);
  }
   .bath .cont04 .box .option_flex .item .text_box .text03 span{
    font-size: 40px;
    font-weight: bold;
  }
  

  .bath .cont04 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 20px;
  }

  /* cont05 セットサービス */
  .bath .cont05 {
    background: var(--main-light-color);
    padding: 110px 0 0px;
  }

  .bath .cont05 .inner {
    padding: 0px 20px;
  }

  .bath .cont05 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .bath .cont05 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .bath .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .bath .cont05 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .bath .cont05 .text_box {
    position: relative;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    margin-bottom: 60px;
    text-align: center;
  }

  .bath .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: -20px;
    transform: scale(0.6);
    left: -18px;
  }

  .bath .cont05 .text_box .text01 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 15px 15px 65px;
  }

  .bath .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .bath .cont05 .text_box .text01 .span02 {
    font-size: 28px;
    font-weight: bold;
  }

  .bath .cont05 .text_box .text02 {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
  }

  .bath .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .bath .cont05 .box h3 {
   font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

 .bath .cont05 .box:nth-of-type(5) h3 {
    font-size: 17px;
  }

  .bath .cont05 .box h3 span {
    font-size: 16px;
    font-weight: bold;
    padding: 5px 18px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 18px;
  }

  .bath .cont05 .box:nth-of-type(5) h3 span {
    background-color: #34baeb;
  }

  .bath .cont05 .box .flex {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .bath .cont05 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 178px;
  }

  .bath .cont05 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .bath .cont05 .box .price_box .price_text01 {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .bath .cont05 .box .price_box .price_text01 span {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .bath .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 18px;
  }

  .bath .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .bath .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -37px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .bath .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 10px;
    line-height: 1;
  }

  .bath .cont05 .box .price_box .price_text02 span {
    font-size: 28px;
    font-weight: bold;
  }

  .bath .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .bath .cont05 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .bath .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .bath .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .bath .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .bath .cont05 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .bath .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 86px;
    background: var(--main-color);
  }

  .bath .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 67px;
  }
  .bath .cont05 .box:nth-of-type(4) .price_box .range_box dt::after {
    height: 60px;
  }
  .bath .cont05 .box:nth-of-type(5) .price_box .range_box dt::after {
    height: 165px;
  }

  .bath .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  .bath .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 12px;
  }

  .bath .cont05 .box {
    margin-bottom: 30px;
  }
  .bath .cont05 .box:nth-of-type(5) {
    margin-bottom: 20px;
  }
  .bath .cont05 .tax_text01 {
    text-align: left;
    line-height: 1.5;
  }

  /* cont07 その他単品*/

  .bath .cont07 {
    background: var(--main-light-color);
    padding: 110px 0 0;
  }
  .bath .cont07 .inner {
    padding: 0 20px 80px;
  }
  .bath .cont07 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
  }

  .bath .cont07 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .bath .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 620px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
    z-index: -1;
  }

  .bath .cont07 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .bath .cont07 .option_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .bath .cont07 .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    gap: 20px;
  }

  .bath .cont07 .option_flex .item .text_box {
    position: relative;
    margin-right: 8px;
    width: 345px;
  }

  .bath .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 20px;
  }

  .bath .cont07 .option_flex .item .text_box .tte01 span {
    font-size: 14px;
    font-weight: bold;
  }

  .bath .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .bath .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .bath .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .bath .cont07 .option_flex .item .text_box .text03 span {
    font-size: 30px;
    font-weight: bold;
    margin-left: 8px;
  }

  .bath .cont07 .option_flex .item figure {
    width: 345px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }

  .bath .cont07 .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .bath .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 15px;
    line-height: 1;
  }

  .bath .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .bath .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .bath .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont08選ばれる理由 */
  .bath .cont08 {
    padding: 80px 0 80px;
  }

  .bath .cont08 .inner {
    position: relative;
    padding: 0 20px;
  }

  .bath .cont08 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .bath .cont08 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .bath .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .bath .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 20px;
    color: #1d1d1d;
    padding-left: 15px;
    height: 32px;
    line-height: 32px;
    margin: 22px 0 0 98px;
  }

  .bath .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 62px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .bath .cont08 .text01 {
    margin-top: 45px;
    padding: 0 30px 20px;
  }

  .bath .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    margin-bottom: 30px;
  }

  .bath .cont08 .box .item::before {
    content: "";
    background: url(img/reason_01.png) center center / cover no-repeat;
    width: 100px;
    height: 94px;
    position: absolute;
    left: -2px;
    top: -2px;
    transform: scale(0.7);
  }

  .bath .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .bath .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .bath .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .bath .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .bath .cont08 .box .item:first-of-type {
    margin-top: 60px;
  }

  .bath .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .bath .cont08 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .bath .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .bath .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .bath .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .bath .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont09ご利用の流れ */
  .bath .cont09 {
    background: var(--main-light-color);
    padding: 80px 0px 80px;
  }

  .bath .cont09 .inner {
    position: relative;
  }

  .bath .cont09 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .bath .cont09 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .bath .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .bath .cont09 .box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }

  .bath .cont09 .box .item {
    position: relative;
    width: 400px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 30px 30px;
  }

  .bath .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: var(--main-color);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 35px;
    height: 15px;
  }

  .bath .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .bath .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .bath .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .bath .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .bath .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .bath .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .bath .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .bath .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .bath .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .bath .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .bath .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }


  /* cont10 よくある質問*/
  .bath .cont10 {
    padding: 80px 20px 80px;
  }

  .bath .cont10 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .bath .cont10 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .bath .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .bath .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 27px;
  }

  .bath .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .bath .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 30px 25px 30px 45px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1.3;
  }

  .bath .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .bath .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .bath .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .bath .cont10 .qa_box .ans {
    display: none;
    padding: 0 25px 0 45px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
    position: relative;
  }

  .bath .cont10 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .bath .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .bath .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont11イークリーンについて */

  .bath .cont11 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
  }

  .bath .cont11 .inner {
    padding: 0 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 857px;
  }

  .bath .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 163.1px;
    height: 128.8px;
    bottom: -163px;
    right: -3px;
    transform: scale(0.8);
  }

  .bath .cont11 figure {
    width: 420px;
    position: absolute;
    left: 0;
    border: 2px solid var(--main-color);
    border-left: none;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    box-sizing: border-box;
    order: 1;
  }

   .bath .cont11 figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -50px 50%;
    transform: scale(1.4);
  }

  .bath .cont11 .text_box {
    padding: 50px 30px;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    z-index: 2;
    order: 2;
    position: absolute;
    right: 0;
    width: 420px;
    bottom: 0;
  }

  .bath .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .bath .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .bath .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .bath .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .bath .cont11 .text_box .tel,
  .bath .cont11 .text_box .mail,
  .bath .cont11 .text_box .time,
  .bath .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .bath .cont11 .text_box .place {
    line-height: 1.2;
    margin-top: 7px;
  }


  .bath .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .bath .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .bath .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .bath .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 1px;
    transform: translateY(-50%);
  }

  .bath .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .bath .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .bath .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .bath .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont12ブログ一覧 */

  .bath .cont12 {
    padding: 80px 0px;
    z-index: 10;
    position: relative;
  }

  .bath .cont12 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .bath .cont12 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 30px;
  }

  .bath .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
    z-index: -1;
  }

  .bath .cont12 .text01 {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
  }

  .bath .cont12 .blog_box {
    margin-top: 49px;
  }

  .bath .cont12 .blog_box .swiper-slide {
    display: block;
    width: 330px;
  }

  .bath .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .bath .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 20px;
    order: 2;
    line-height: 1;
  }

  .bath .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 12px 0 0;
    order: 3;
  }

  .bath .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .bath .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .bath .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .bath .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .bath .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .bath .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .bath .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .bath .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .bath .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .bath .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .bath .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .bath .cont12 .button a:hover::before {
    background: var(--main-color);
  }

 /* cont13　対応エリア */

    .bath .cont13 {
    background: var(--main-light-color);
    padding-bottom: 80px;
  }

  .bath .cont13 .inner {
    padding: 80px 20px;
  }

  .bath .cont13 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .bath .cont13 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .bath .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 144.2px;
    height: 39.2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px));
    z-index: -1;
  }

  .bath .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 50px;
  }

  .bath .cont13 .box .text_box {
    padding-top: 329px;
  }

  .bath .cont13 .box figure {
    position: absolute;
    /* left: -300px; */
    top: 0px;
  }

  .bath .cont13 .box .text_box p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 2.1;
  }

  .bath .cont13 .area {
    height: 328px;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 30px;
  }

  .bath .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 4px 4px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .bath .cont13 .area .area_list {
    text-align-last: left;
    height: 255px;
    overflow-y: auto;
    margin: 25px 5px 0px 15px;
    padding-right: 20px;
  }

  .bath .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 0px;
  }

  .bath .cont13 .area .area_list li {
    line-height: 1;
    font-size: 14px;
  }

  .bath .cont13 .area .area_list>li {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  .bath .contact_box{
    margin: 0 auto 50px;
  }



/* senmendai------------------------------------------------------- */
/* key */
  .senmendai .key .text01::after {
    background: url("img/common_key_text_sp.png");
    width: 519px;
    height: 74px;
  }

  /* cont01 */
  .senmendai .cont01 {
    padding: 285px 20px 80px;
    position: relative;
  }

  .senmendai .cont01 h2 {
    font-size: 18px;
    font-weight: bold;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
    margin-top: 35px;
  }

  .senmendai .cont01 h2::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 49%;
    transform: translateY(-50%);
  }

  .senmendai .cont01 .text01 {
    font-size: 16px;
    line-height: 2.2;
    margin-top: 15px;
  }

  .senmendai .cont01 figure {
    position: absolute;
    right: 0;
    top: 20px;
    width: 420px;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* cont02 */
  .senmendai .cont02 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
    background-size: 88px auto;
  }

  .senmendai .cont02 h2 {
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .senmendai .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 230px;
    top: -199px;
    right: -55px;
    transform: scale(0.4);
  }

  .senmendai .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco01.png) center center / cover no-repeat;
    width: 198px;
    height: 222px;
    top: -199px;
    left: -47px;
    transform: scale(0.4);
  }

  .senmendai .cont02 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .senmendai .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/common_key_text_sp.png) center center / cover no-repeat;
    width: 519px;
    height: 74px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.5);
    z-index: -1;
  }

  .senmendai .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .senmendai .cont02 .box {
    display: block;
    justify-content: center;
    margin-top: 50px;
  }

  .senmendai .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 400px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
    margin-bottom: 40px;
  }

  .senmendai .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;
  }

  .senmendai .cont02 .box .text_box01:nth-of-type(3) {
    margin-bottom: 0;
  }

  .senmendai .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .senmendai .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .senmendai .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .senmendai .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .senmendai .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 19px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .senmendai .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .senmendai .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .senmendai .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
   .senmendai .cont02 .box .text_box01 figure img{
    width: 100%;
  }


  /* cont03 */
  .senmendai .cont03 {
    padding: 80px 20px 80px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .senmendai .cont03 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .senmendai .cont03 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .senmendai .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .senmendai .cont03 .text01 {
    text-align: center;
    font-size: 16px;
    margin-top: 27px;
    line-height: 2;
  }

  .senmendai .cont03 .item {
    position: relative;
  }

  .senmendai .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 61px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .senmendai .cont03 h3 {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .senmendai .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .senmendai .cont03 .category_01,
  .senmendai .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    margin-top: 15px;
  }

  .senmendai .cont03 .category_01 {
    padding: 7px 14px;
    background: var(--main-color);
  }

  .senmendai .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .senmendai .cont03 .text02 {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .senmendai .cont03 .box .item {
    position: relative;
    padding-top: 130px;
    margin-top: 40px;
  }

  .senmendai .cont03 .box .item:first-of-type {
    margin-top: 38px;
  }

  .senmendai .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }
  .senmendai .cont03 .box .img_box .before {
    position: relative;
  }

  .senmendai .cont03 .box .img_box .after {
    position: relative;
  }

  .senmendai .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .senmendai .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .senmendai .cont03 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .senmendai .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .senmendai .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  /* cont04 浴槽・浴室クリーニングの費用*/

  .senmendai .cont04 {
    background: var(--main-light-color);
    padding: 80px 0 0px;
  }
  .senmendai .cont04 .inner{
    padding: 0 20px;
  }
  .senmendai .cont04 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 40px;
  }

  .senmendai .cont04 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .senmendai .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .senmendai .cont04 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .senmendai .cont04 .box {
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .senmendai .cont04 .box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

  .senmendai .cont04 .flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .senmendai .cont04 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 180px;
  }

  .senmendai .cont04 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .senmendai .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
  }

  .senmendai .cont04 .box .price_box .price_text01 .span01 {
        font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .senmendai .cont04 .box .price_box .price_text01 .span02 {
    font-size: 28px;
    font-weight: bold;
    color: var(--main-color);
  }

  .senmendai .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .senmendai .cont04 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .senmendai .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .senmendai .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .senmendai .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 355px;
  }

  .senmendai .cont04 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .senmendai .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 27px;
    background: var(--main-color);
  }

  .senmendai .cont04 .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 35px;
  }

  .senmendai .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  .senmendai .cont04 .box:nth-of-type(1) {
    margin-bottom: 40px;
  }

  .senmendai .cont04 .box .ttl {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    margin: 50px auto 30px;
    text-align: center;
    position: relative;
  }

  .senmendai .cont04 .box .ttl::before{
    content: "";
    background: url(img/common_deco13.png) center / cover no-repeat;
    width: 53px;
    height: 48px;
    position: absolute;
    top: -35px;
    left: 7px;
    transform: scale(0.5);
}

  .senmendai .cont04 .box .option_flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 25px 25px;
    gap: 25px;
  }
  .senmendai .cont04 .box .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    background: var(--main-light-color);
    border-radius: 10px;
    padding: 20px;
    width: 315px;
   }

  .senmendai .cont04 .box .option_flex .item .text_box{
    width: 310px;
   }
  .senmendai .cont04 .box .option_flex .item .text_box .tte01{
    font-size: 19px;
    font-weight: bold;
    padding-left: 17px;
    position: relative;
   }
  .senmendai .cont04 .box .option_flex .item .text_box .tte01::before{
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
   }
  .senmendai .cont04 .box .option_flex .item figure{
    width: 315px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }
 .senmendai .cont04 .box .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
  .senmendai .cont04 .box .option_flex .item figure img:nth-last-of-type(4){
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
 }
  .senmendai .cont04 .box .option_flex .item .text_box .text02{
    margin-top: 7px;
    font-size: 16px;
  }

  .senmendai .cont04 .box .option_flex .item .text_box .text03{
    margin-right: 5px;
    text-align: right;
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--main-color);
  }
   .senmendai .cont04 .box .option_flex .item .text_box .text03 span{
    font-size: 40px;
    font-weight: bold;
  }
  

  .senmendai .cont04 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 20px;
  }

  /* cont05 セットサービス */
  .senmendai .cont05 {
    background: var(--main-light-color);
    padding: 110px 0 0px;
  }

  .senmendai .cont05 .inner {
    padding: 0px 20px;
  }

  .senmendai .cont05 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
    line-height: 1.3;
  }

  .senmendai .cont05 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .senmendai .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .senmendai .cont05 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .senmendai .cont05 .text_box {
    position: relative;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    margin-bottom: 60px;
    text-align: center;
  }

  .senmendai .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: -20px;
    transform: scale(0.6);
    left: -18px;
  }

  .senmendai .cont05 .text_box .text01 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 15px 15px 65px;
  }

  .senmendai .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .senmendai .cont05 .text_box .text01 .span02 {
    font-size: 28px;
    font-weight: bold;
  }

  .senmendai .cont05 .text_box .text02 {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
  }

  .senmendai .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .senmendai .cont05 .box h3 {
   font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

 .senmendai .cont05 .box:nth-of-type(5) h3 {
    font-size: 17px;
  }

  .senmendai .cont05 .box h3 span {
    font-size: 16px;
    font-weight: bold;
    padding: 5px 18px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 18px;
  }

  .senmendai .cont05 .box:nth-of-type(5) h3 span {
    background-color: #34baeb;
  }

  .senmendai .cont05 .box .flex {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .senmendai .cont05 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 178px;
  }

  .senmendai .cont05 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .senmendai .cont05 .box .price_box .price_text01 {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .senmendai .cont05 .box .price_box .price_text01 span {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .senmendai .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 18px;
  }

  .senmendai .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .senmendai .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -37px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .senmendai .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 10px;
    line-height: 1;
  }

  .senmendai .cont05 .box .price_box .price_text02 span {
    font-size: 28px;
    font-weight: bold;
  }

  .senmendai .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .senmendai .cont05 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .senmendai .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .senmendai .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .senmendai .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .senmendai .cont05 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .senmendai .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 86px;
    background: var(--main-color);
  }

  .senmendai .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 67px;
  }
  .senmendai .cont05 .box:nth-of-type(4) .price_box .range_box dt::after {
    height: 60px;
  }
  .senmendai .cont05 .box:nth-of-type(5) .price_box .range_box dt::after {
    height: 165px;
  }

  .senmendai .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  .senmendai .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 12px;
  }

  .senmendai .cont05 .box {
    margin-bottom: 30px;
  }
  .senmendai .cont05 .box:nth-of-type(5) {
    margin-bottom: 20px;
  }
  .senmendai .cont05 .tax_text01 {
    text-align: left;
    line-height: 1.5;
  }

  /* cont07 その他単品*/

  .senmendai .cont07 {
    background: var(--main-light-color);
    padding: 110px 0 0;
  }
  .senmendai .cont07 .inner {
    padding: 0 20px 80px;
  }
  .senmendai .cont07 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
  }

  .senmendai .cont07 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .senmendai .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 620px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
    z-index: -1;
  }

  .senmendai .cont07 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .senmendai .cont07 .option_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .senmendai .cont07 .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    gap: 20px;
  }

  .senmendai .cont07 .option_flex .item .text_box {
    position: relative;
    margin-right: 8px;
    width: 345px;
  }

  .senmendai .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 20px;
  }

  .senmendai .cont07 .option_flex .item .text_box .tte01 span {
    font-size: 14px;
    font-weight: bold;
  }

  .senmendai .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .senmendai .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .senmendai .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .senmendai .cont07 .option_flex .item .text_box .text03 span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 8px;
  }

  .senmendai .cont07 .option_flex .item figure {
    width: 345px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }

  .senmendai .cont07 .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .senmendai .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 15px;
    line-height: 1;
  }

  .senmendai .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .senmendai .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .senmendai .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont08選ばれる理由 */
  .senmendai .cont08 {
    padding: 80px 0 80px;
  }

  .senmendai .cont08 .inner {
    position: relative;
    padding: 0 20px;
  }

  .senmendai .cont08 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .senmendai .cont08 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .senmendai .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .senmendai .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 20px;
    color: #1d1d1d;
    padding-left: 15px;
    height: 32px;
    line-height: 32px;
    margin: 22px 0 0 98px;
  }

  .senmendai .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 62px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .senmendai .cont08 .text01 {
    margin-top: 45px;
    padding: 0 30px 20px;
  }

  .senmendai .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    margin-bottom: 30px;
  }

  .senmendai .cont08 .box .item::before {
        content: "";
        background: url(img/reason_01.png) center center / cover no-repeat;
        width: 100px;
        height: 94px;
        position: absolute;
        left: -2px;
        top: -2px;
        transform: scale(0.7);
  }

  .senmendai .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .senmendai .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .senmendai .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .senmendai .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .senmendai .cont08 .box .item:first-of-type {
    margin-top: 60px;
  }

  .senmendai .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .senmendai .cont08 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .senmendai .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .senmendai .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .senmendai .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .senmendai .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont09ご利用の流れ */
  .senmendai .cont09 {
    background: var(--main-light-color);
    padding: 80px 0px 80px;
  }

  .senmendai .cont09 .inner {
    position: relative;
  }

  .senmendai .cont09 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .senmendai .cont09 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .senmendai .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .senmendai .cont09 .box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }

  .senmendai .cont09 .box .item {
    position: relative;
    width: 400px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 30px 30px;
  }

  .senmendai .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: var(--main-color);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 35px;
    height: 15px;
  }

  .senmendai .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .senmendai .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .senmendai .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .senmendai .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .senmendai .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .senmendai .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .senmendai .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .senmendai .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .senmendai .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .senmendai .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .senmendai .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }


  /* cont10 よくある質問*/
  .senmendai .cont10 {
    padding: 80px 20px 80px;
  }

  .senmendai .cont10 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .senmendai .cont10 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .senmendai .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .senmendai .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 27px;
  }

  .senmendai .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .senmendai .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 30px 25px 30px 45px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1.3;
  }

  .senmendai .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .senmendai .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .senmendai .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .senmendai .cont10 .qa_box .ans {
    display: none;
    padding: 0 25px 0 45px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
    position: relative;
  }

  .senmendai .cont10 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .senmendai .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .senmendai .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont11イークリーンについて */

  .senmendai .cont11 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
  }

  .senmendai .cont11 .inner {
    padding: 0 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 857px;
  }

  .senmendai .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 163.1px;
    height: 128.8px;
    bottom: -163px;
    right: -3px;
    transform: scale(0.8);
  }

  .senmendai .cont11 figure {
    width: 420px;
    position: absolute;
    left: 0;
    border: 2px solid var(--main-color);
    border-left: none;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    box-sizing: border-box;
    order: 1;
  }

   .senmendai .cont11 figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -50px 50%;
    transform: scale(1.4);
  }

  .senmendai .cont11 .text_box {
    padding: 50px 30px;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    z-index: 2;
    order: 2;
    position: absolute;
    right: 0;
    width: 420px;
    bottom: 0;
  }

  .senmendai .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .senmendai .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .senmendai .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .senmendai .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .senmendai .cont11 .text_box .tel,
  .senmendai .cont11 .text_box .mail,
  .senmendai .cont11 .text_box .time,
  .senmendai .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .senmendai .cont11 .text_box .place {
    line-height: 1.2;
    margin-top: 7px;
  }


  .senmendai .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .senmendai .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .senmendai .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .senmendai .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 1px;
    transform: translateY(-50%);
  }

  .senmendai .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .senmendai .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .senmendai .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .senmendai .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont12ブログ一覧 */

  .senmendai .cont12 {
    padding: 80px 0px;
    z-index: 10;
    position: relative;
  }

  .senmendai .cont12 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .senmendai .cont12 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 30px;
  }

  .senmendai .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
    z-index: -1;
  }

  .senmendai .cont12 .text01 {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
  }

  .senmendai .cont12 .blog_box {
    margin-top: 49px;
  }

  .senmendai .cont12 .blog_box .swiper-slide {
    display: block;
    width: 330px;
  }

  .senmendai .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .senmendai .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 20px;
    order: 2;
    line-height: 1;
  }

  .senmendai .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 12px 0 0;
    order: 3;
  }

  .senmendai .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .senmendai .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .senmendai .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .senmendai .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .senmendai .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .senmendai .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .senmendai .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .senmendai .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .senmendai .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .senmendai .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .senmendai .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .senmendai .cont12 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont13　対応エリア */
 .senmendai .cont13 {
    background: var(--main-light-color);
  }

  .senmendai .cont13 .inner {
    padding: 80px 20px;
  }

  .senmendai .cont13 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .senmendai .cont13 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .senmendai .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 144.2px;
    height: 39.2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px));
    z-index: -1;
  }

  .senmendai .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 50px;
  }

  .senmendai .cont13 .box .text_box {
    padding-top: 329px;
  }

  .senmendai .cont13 .box figure {
    position: absolute;
    /* left: -300px; */
    top: 0px;
  }

  .senmendai .cont13 .box .text_box p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 2.1;
  }

  .senmendai .cont13 .area {
    height: 328px;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 30px;
  }

  .senmendai .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 4px 4px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .senmendai .cont13 .area .area_list {
    text-align-last: left;
    height: 255px;
    overflow-y: auto;
    margin: 25px 5px 0px 15px;
    padding-right: 20px;
  }

  .senmendai .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 0px;
  }

  .senmendai .cont13 .area .area_list li {
    line-height: 1;
    font-size: 14px;
  }

  .senmendai .cont13 .area .area_list>li {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  .senmendai .contact_box{
    margin: 0 auto 50px;
  }

 

    /*洗濯機クリーニング---------------------------------------------- */

  /* key */
  .sentakuki .key .text01::after {
    background: url("img/common_key_text_sp.png");
    width: 519px;
    height: 74px;
  }

  /* cont01 */
  .sentakuki .cont01 {
    margin-top: 20px;
    padding: 265px 20px 80px;
    display: flex;
    gap: 18px;
    position: relative;
  }

  .sentakuki .cont01 h2 {
    font-size: 18px;
    font-weight: bold;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
    margin-top: 35px;
  }

  .sentakuki .cont01 h2::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 58px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 49%;
    transform: translateY(-50%);
  }

  .sentakuki .cont01 .text01 {
    font-size: 16px;
    line-height: 2.2;
    margin-top: 15px;
    text-align: justify;
  }

  .sentakuki .cont01 figure {
    position: absolute;
    top: 0;
    left: -2px;
    width: 420px;
    border-radius: 0 10px 10px 0;
    border: 2px solid var(--main-color);
    border-left: none;
    overflow: hidden;
    box-sizing: border-box;
  }

  @media screen and (min-width: 1800px) {
    .sentakuki .cont01 figure {
      border-radius: 10px;
      border-right: 3px solid var(--main-color);
    }
  }


  /* cont02 */
  .sentakuki .cont02 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
    background-size: 88px auto;
  }

  .sentakuki .cont02 h2 {
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .sentakuki .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 230px;
    top: -199px;
    right: -61px;
    transform: scale(0.5);
  }

  .sentakuki .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco01.png) center center / cover no-repeat;
    width: 198px;
    height: 222px;
    top: -199px;
    left: -58px;
    transform: scale(0.5);
  }

  .sentakuki .cont02 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .sentakuki .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text01.png) center center / cover no-repeat;
    width: 336px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .sentakuki .cont02 .readtext {
    margin-top: 27px;
    font-size: 16px;
    text-align: center;
  }

  .sentakuki .cont02 .box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    margin-top: 10px;
  }

  .sentakuki .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 400px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
  }

  .sentakuki .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;

  }

  .sentakuki .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .sentakuki .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .sentakuki .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .sentakuki .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .sentakuki .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .sentakuki .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .sentakuki .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .sentakuki .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 400px;
    height: 225px;
  }

  .sentakuki .cont02 .box .text_box01 figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  /* cont03 */
  .sentakuki .cont03 {
    padding: 80px 20px 80px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .sentakuki .cont03 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .sentakuki .cont03 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .sentakuki .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .sentakuki .cont03 .text01 {
    text-align: center;
    font-size: 16px;
    margin-top: 27px;
    line-height: 1.8;
  }

  .sentakuki .cont03 .item {
    position: relative;
  }

  .sentakuki .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .sentakuki .cont03 h3 {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sentakuki .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .sentakuki .cont03 .category_01,
  .sentakuki .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    margin-top: 15px;
  }

  .sentakuki .cont03 .category_01 {
    padding: 7px 14px;
    background: var(--main-color);
  }

  .sentakuki .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .sentakuki .cont03 .text02 {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sentakuki .cont03 .box .item {
    position: relative;
    padding-top: 145px;
    margin-top: 40px;
  }

  .sentakuki .cont03 .box .item:first-of-type {
    margin-top: 38px;
  }


  .sentakuki .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .sentakuki .cont03 .box .img_box .before {
    position: relative;
  }

  .sentakuki .cont03 .box .img_box .after {
    position: relative;
  }

  .sentakuki .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .sentakuki .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .sentakuki .cont03 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .sentakuki .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .sentakuki .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont04 キッチンクリーニングの費用*/

  .sentakuki .cont04 {
    background: var(--main-light-color);
    padding: 80px 0 0px;
  }

  .sentakuki .cont04 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 40px;
  }

  .sentakuki .cont04 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .sentakuki .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .sentakuki .cont04 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .sentakuki .cont04 .box {
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .sentakuki .cont04 .box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

  .sentakuki .cont04 .flex {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .sentakuki .cont04 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 180px;
  }

  .sentakuki .cont04 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .sentakuki .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1;
    padding-left: 105px;
    position: relative;
  }
  .sentakuki .cont04 .box .price_box .price_text01::before {
    content: "";
    background: url(img/sentakuki_img09.png);
    width: 140px;
    height: 35px;
    position: absolute;
    left: -20px;
    transform: scale(0.6);
  }
  

  .sentakuki .cont04 .box .price_box .price_text01 .span01 {
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .sentakuki .cont04 .box .price_box .price_text01 .span02 {
    font-size: 28px;
    font-weight: bold;
    color: var(--main-color);
  }

  .sentakuki .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .sentakuki .cont04 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .sentakuki .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .sentakuki .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .sentakuki .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 355px;
  }

  .sentakuki .cont04 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .sentakuki .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 62px;
    background: var(--main-color);
  }


  .sentakuki .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  .sentakuki .cont04 .box:nth-of-type(1) {
    margin-bottom: 40px;
  }

  .sentakuki .cont04 .tax_text01 {
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
  }

  /* cont05 セットサービス */
  .sentakuki .cont05 {
    background: var(--main-light-color);
    padding: 110px 0 0px;
  }
  .sentakuki .cont05 .inner {
    padding: 0px 20px;
  }

  .sentakuki .cont05 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .sentakuki .cont05 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .sentakuki .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .sentakuki .cont05 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .sentakuki .cont05 .text_box {
    position: relative;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    margin-bottom: 60px;
    text-align: center;
  }

  .sentakuki .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: -20px;
    transform: scale(0.6);
    left: -18px;
  }

  .sentakuki .cont05 .text_box .text01 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    margin: 0 15px 15px 65px;
  }

  .sentakuki .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .sentakuki .cont05 .text_box .text01 .span02 {
    font-size: 28px;
    font-weight: bold;
  }

  .sentakuki .cont05 .text_box .text02 {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }

  .sentakuki .cont05 .box {
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .sentakuki .cont05 .box:last-of-type {
    margin-bottom: 0;
  }


  .sentakuki .cont05 .box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

  .sentakuki .cont05 .box h3 span {
    font-size: 16px;
    font-weight: bold;
    padding: 5px 18px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 18px;
  }

  .sentakuki .cont05 .box:nth-of-type(5) h3 span {
    background-color: #34baeb;
  }

  .sentakuki .cont05 .box .flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sentakuki .cont05 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 178px;
  }

  .sentakuki .cont05 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .sentakuki .cont05 .box .price_box .price_text01 {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .sentakuki .cont05 .box .price_box .price_text01 span {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .sentakuki .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 18px;
  }

  .sentakuki .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .sentakuki .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .sentakuki .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 20px;
    line-height: 1;
  }

  .sentakuki .cont05 .box .price_box .price_text02 span {
    font-size: 28px;
    font-weight: bold;
  }

  .sentakuki .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 355px;
    font-size: 14px;
  }

  .sentakuki .cont05 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .sentakuki .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .sentakuki .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
    text-align: left;
  }

  .sentakuki .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 355px;
  }

  .sentakuki .cont05 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .sentakuki .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 110px;
    background: var(--main-color);
  }

  .sentakuki .cont05 .box:nth-of-type(4) .price_box .range_box dt::after {
    height: 70px;
  }

    .sentakuki .cont05 .box:nth-of-type(5) .price_box .range_box dt::after {
    height: 215px;
  }


  .sentakuki .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 9px 9px 20px;
    flex: 1;
    line-height: 1.6;
    text-align: left;
    font-size: 14px;
  }

  .sentakuki .cont05 .box {
    margin-bottom: 70px;
  }


  /* cont06 あわせて頼みたいサービス */
  .sentakuki .cont06 {
    background: var(--main-light-color);
    padding: 110px 0 0px;
  }

  .sentakuki .cont06 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    color: #1d1d1d;
    margin-bottom: 30px;
  }

  .sentakuki .cont06 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .sentakuki .cont06 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.8);
    z-index: -1;
  }

  .sentakuki .cont06 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .sentakuki .cont06 .option_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .sentakuki .cont06 .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    gap: 20px;
  }

  .sentakuki .cont06 .option_flex .item .text_box {
    position: relative;
    margin-right: 8px;
    width: 345px;
  }

  /* .sentakuki .cont06 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  } */

  .sentakuki .cont06 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 20px;
  }

  .sentakuki .cont06 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .sentakuki .cont06 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .sentakuki .cont06 .option_flex .item .text_box .text03 {
   font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .sentakuki .cont06 .option_flex .item .text_box .text03 span {
    font-size: 38px;
    font-weight: bold;
    margin-left: 8px;
  }

  .sentakuki .cont06 .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 32px;
  }

  .sentakuki .cont06 .option_flex .item figure {
    width: 345px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }
    .sentakuki .cont06 .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  /* cont07 その他単品*/

  .sentakuki .cont07 {
    background: var(--main-light-color);
    padding: 110px 0 80px;
  }

  .sentakuki .cont07 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
  }

  .sentakuki .cont07 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .sentakuki .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 620px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
    z-index: -1;
  }

  .sentakuki .cont07 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .sentakuki .cont07 .option_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .sentakuki .cont07 .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    gap: 20px;
  }

  .sentakuki .cont07 .option_flex .item .text_box {
    position: relative;
    margin-right: 8px;
    width: 345px;
  }

  /* .sentakuki .cont07 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  } */

  .sentakuki .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 20px;
  }
  .sentakuki .cont07 .option_flex .item .text_box .tte01 span {
    font-size: 14px;
    font-weight: bold;
  }

  /* .sentakuki .cont07 .option_flex .item:nth-of-type(5) .text_box .tte01 span {
    font-size: 18px;
    font-weight: bold;
  } */

  .sentakuki .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .sentakuki .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .sentakuki .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .sentakuki .cont07 .option_flex .item .text_box .text03 span {
    font-size: 38px;
    font-weight: bold;
    margin-left: 8px;
  }

  .sentakuki .cont07 .option_flex .item figure {
    width: 345px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }

  .sentakuki .cont07 .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sentakuki .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 15px;
    line-height: 1;
  }

  .sentakuki .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .sentakuki .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .sentakuki .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  .sentakuki .cont07 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .sentakuki .cont07 .button a:hover::before {
    background: var(--main-color);
  }


  /* cont08選ばれる理由 */
  .sentakuki .cont08 {
    padding: 80px 0 80px; 
  }

  .sentakuki .cont08 .inner {
    position: relative;
    padding: 0 20px;
  }

  .sentakuki .cont08 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .sentakuki .cont08 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .sentakuki .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .sentakuki .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 20px;
    color: #1d1d1d;
    padding-left: 15px;
    height: 32px;
    line-height: 32px;
    margin: 22px 0 0 98px;
  }

  .sentakuki .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 62px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .sentakuki .cont08 .text01 {
    margin-top: 38px;
    padding: 0 30px 20px;
  }

  .sentakuki .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    margin-bottom: 30px;
  }

  .sentakuki .cont08 .box .item::before {
    content: "";
    background: url(img/reason_01.png) center center / cover no-repeat;
    width: 100px;
    height: 94px;
    position: absolute;
    left: -2px;
    top: -2px;
    transform: scale(0.8);
  }

  .sentakuki .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .sentakuki .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .sentakuki .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .sentakuki .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .sentakuki .cont08 .box .item:first-of-type {
    margin-top: 50px;
  }

  .sentakuki .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .sentakuki .cont08 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .sentakuki .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .sentakuki .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }



 /* cont09ご利用の流れ */
  .sentakuki .cont09 {
    background: var(--main-light-color);
    padding: 80px 0px 80px;
  }

  .sentakuki .cont09 .inner {
    position: relative;
  }

  .sentakuki .cont09 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .sentakuki .cont09 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .sentakuki .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .sentakuki .cont09 .box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }

  .sentakuki .cont09 .box .item {
    position: relative;
    width: 400px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 30px 30px;
  }

  .sentakuki .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: var(--main-color);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 35px;
    height: 15px;
  }

  .sentakuki .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .sentakuki .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .sentakuki .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .sentakuki .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .sentakuki .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .sentakuki .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .sentakuki .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .sentakuki .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .sentakuki .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .sentakuki .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .sentakuki .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }


  /* cont10 よくある質問*/
  .sentakuki .cont10 {
    padding: 80px 20px 80px;
  }

  .sentakuki .cont10 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .sentakuki .cont10 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .sentakuki .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .sentakuki .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 27px;
  }

  .sentakuki .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .sentakuki .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 30px 25px 30px 45px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1.3;
  }

  .sentakuki .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .sentakuki .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .sentakuki .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .sentakuki .cont10 .qa_box .ans {
    display: none;
    padding: 0 25px 0 45px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
    position: relative;
  }

  .sentakuki .cont10 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .sentakuki .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .sentakuki .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont11イークリーンについて */

  .sentakuki .cont11 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
  }

  .sentakuki .cont11 .inner {
    padding: 0 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 857px;
  }

  .sentakuki .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 163.1px;
    height: 128.8px;
    bottom: -163px;
    right: -3px;
    transform: scale(0.8);
  }

  .sentakuki .cont11 figure {
    width: 420px;
    position: absolute;
    left: 0;
    border: 2px solid var(--main-color);
    border-left: none;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    box-sizing: border-box;
    order: 1;
  }

   .sentakuki .cont11 figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -50px 50%;
    transform: scale(1.4);
  }

  .sentakuki .cont11 .text_box {
    padding: 50px 30px;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    z-index: 2;
    order: 2;
    position: absolute;
    right: 0;
    width: 420px;
    bottom: 0;
  }

  .sentakuki .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .sentakuki .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .sentakuki .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .sentakuki .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .sentakuki .cont11 .text_box .tel,
  .sentakuki .cont11 .text_box .mail,
  .sentakuki .cont11 .text_box .time,
  .sentakuki .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .sentakuki .cont11 .text_box .place {
    line-height: 1.2;
    margin-top: 7px;
  }


  .sentakuki .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .sentakuki .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .sentakuki .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .sentakuki .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 1px;
    transform: translateY(-50%);
  }

  .sentakuki .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .sentakuki .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .sentakuki .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .sentakuki .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont12ブログ一覧 */

  .sentakuki .cont12 {
    padding: 80px 0px;
    z-index: 10;
    position: relative;
  }

  .sentakuki .cont12 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .sentakuki .cont12 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 30px;
  }

  .sentakuki .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
    z-index: -1;
  }

  .sentakuki .cont12 .text01 {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
  }

  .sentakuki .cont12 .blog_box {
    margin-top: 49px;
  }

  .sentakuki .cont12 .blog_box .swiper-slide {
    display: block;
    width: 330px;
  }

  .sentakuki .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .sentakuki .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 20px;
    order: 2;
    line-height: 1;
  }

  .sentakuki .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 12px 0 0;
    order: 3;
  }

  .sentakuki .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .sentakuki .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .sentakuki .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .sentakuki .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .sentakuki .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .sentakuki .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .sentakuki .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .sentakuki .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .sentakuki .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .sentakuki .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .sentakuki .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .sentakuki .cont12 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont13　対応エリア */
.sentakuki .cont13 {
    background: var(--main-light-color);
    padding: 0 20px;
  }

  .sentakuki .cont13 .inner {
    padding: 80px 0 50px;
  }

  .sentakuki .cont13 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .sentakuki .cont13 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .sentakuki .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 144.2px;
    height: 39.2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px));
    z-index: -1;
  }

  .sentakuki .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 50px;
  }

  .sentakuki .cont13 .box .text_box {
    padding-top: 329px;
  }

  .sentakuki .cont13 .box figure {
    position: absolute;
    /* left: -300px; */
    top: 0px;
  }

  .sentakuki .cont13 .box .text_box p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 2.1;
  }

  .sentakuki .cont13 .area {
    height: 328px;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 30px;
  }

  .sentakuki .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 4px 4px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .sentakuki .cont13 .area .area_list {
    text-align-last: left;
    height: 255px;
    overflow-y: auto;
    margin: 25px 5px 0px 15px;
    padding-right: 20px;
  }

  .sentakuki .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 0px;
  }

  .sentakuki .cont13 .area .area_list li {
    line-height: 1;
    font-size: 14px;
  }

  .sentakuki .cont13 .area .area_list>li {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  .sentakuki .contact_box{
    margin: 0 auto 50px;
  }



  /* toilet------------------------------------------------------- */
/* key */
  .toilet .key .text01::after {
    background: url("img/common_key_text_sp.png");
    width: 519px;
    height: 74px;
  }

  /* cont01 */
  .toilet .cont01 {
    padding: 285px 20px 80px;
    position: relative;
  }

  .toilet .cont01 h2 {
    font-size: 18px;
    font-weight: bold;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
    margin-top: 35px;
  }

  .toilet .cont01 h2::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 49%;
    transform: translateY(-50%);
  }

  .toilet .cont01 .text01 {
    font-size: 16px;
    line-height: 2.2;
    margin-top: 15px;
  }

  .toilet .cont01 figure {
    position: absolute;
    right: 0;
    top: 20px;
    width: 420px;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* cont02 */
  .toilet .cont02 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
    background-size: 88px auto;
  }

  .toilet .cont02 h2 {
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .toilet .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 230px;
    top: -199px;
    right: -55px;
    transform: scale(0.4);
  }

  .toilet .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco01.png) center center / cover no-repeat;
    width: 198px;
    height: 222px;
    top: -199px;
    left: -47px;
    transform: scale(0.4);
  }

  .toilet .cont02 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .toilet .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/common_key_text_sp.png) center center / cover no-repeat;
    width: 519px;
    height: 74px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.5);
    z-index: -1;
  }

  .toilet .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .toilet .cont02 .box {
    display: block;
    justify-content: center;
    margin-top: 50px;
  }

  .toilet .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 400px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
    margin-bottom: 40px;
  }

  .toilet .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;
  }

  .toilet .cont02 .box .text_box01:nth-of-type(3) {
    margin-bottom: 0;
  }

  .toilet .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .toilet .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .toilet .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .toilet .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .toilet .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 19px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .toilet .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .toilet .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .toilet .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
   .toilet .cont02 .box .text_box01 figure img{
    width: 100%;
  }


  /* cont03 */
  .toilet .cont03 {
    padding: 80px 20px 80px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .toilet .cont03 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .toilet .cont03 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .toilet .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .toilet .cont03 .text01 {
    text-align: center;
    font-size: 16px;
    margin-top: 27px;
    line-height: 2;
  }

  .toilet .cont03 .item {
    position: relative;
  }

  .toilet .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 61px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .toilet .cont03 h3 {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .toilet .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .toilet .cont03 .category_01,
  .toilet .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    margin-top: 15px;
  }

  .toilet .cont03 .category_01 {
    padding: 7px 14px;
    background: var(--main-color);
  }

  .toilet .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .toilet .cont03 .text02 {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* .toilet .cont03 .box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 55px auto 0;
  } */

  .toilet .cont03 .box .item {
    position: relative;
    padding-top: 130px;
    margin-top: 40px;
  }

  .toilet .cont03 .box .item:first-of-type {
    margin-top: 38px;
  }

  .toilet .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .toilet .cont03 .box .img_box .before {
    position: relative;
  }

  .toilet .cont03 .box .img_box .after {
    position: relative;
  }

  .toilet .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .toilet .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .toilet .cont03 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .toilet .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .toilet .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  /* cont04 浴槽・浴室クリーニングの費用*/

  .toilet .cont04 {
    background: var(--main-light-color);
    padding: 80px 0 0px;
  }
  .toilet .cont04 .inner{
    padding: 0 20px;
  }
  .toilet .cont04 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 40px;
  }

  .toilet .cont04 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .toilet .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .toilet .cont04 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .toilet .cont04 .box {
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .toilet .cont04 .box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

  .toilet .cont04 .flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .toilet .cont04 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 180px;
  }

  .toilet .cont04 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .toilet .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
  }

  .toilet .cont04 .box .price_box .price_text01 .span01 {
        font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .toilet .cont04 .box .price_box .price_text01 .span02 {
    font-size: 28px;
    font-weight: bold;
    color: var(--main-color);
  }

  .toilet .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .toilet .cont04 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .toilet .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .toilet .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .toilet .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 355px;
  }

  .toilet .cont04 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .toilet .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 25px;
    background: var(--main-color);
  }

  .toilet .cont04 .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 35px;
  }

  .toilet .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  /* .toilet .cont04 .box:nth-of-type(1) {
    margin-bottom: 40px;
  } */

  .toilet .cont04 .box .ttl {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    margin: 50px auto 30px;
    text-align: center;
    position: relative;
  }

  .toilet .cont04 .box .ttl::before{
    content: "";
    background: url(img/common_deco13.png) center / cover no-repeat;
    width: 53px;
    height: 48px;
    position: absolute;
    top: -35px;
    left: 7px;
    transform: scale(0.5);
}

  .toilet .cont04 .box .option_flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 25px 25px;
    gap: 25px;
  }
  .toilet .cont04 .box .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    background: var(--main-light-color);
    border-radius: 10px;
    padding: 20px;
    width: 315px;
   }

  .toilet .cont04 .box .option_flex .item .text_box{
    width: 310px;
   }
  .toilet .cont04 .box .option_flex .item .text_box .tte01{
    font-size: 19px;
    font-weight: bold;
    padding-left: 17px;
    position: relative;
   }
  .toilet .cont04 .box .option_flex .item .text_box .tte01::before{
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
   }
  .toilet .cont04 .box .option_flex .item figure{
    width: 315px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }
 .toilet .cont04 .box .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
  .toilet .cont04 .box .option_flex .item figure img:nth-last-of-type(4){
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
 }
  .toilet .cont04 .box .option_flex .item .text_box .text02{
    margin-top: 7px;
    font-size: 16px;
  }

  .toilet .cont04 .box .option_flex .item .text_box .text03{
    margin-right: 5px;
    text-align: right;
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--main-color);
  }
   .toilet .cont04 .box .option_flex .item .text_box .text03 span{
    font-size: 40px;
    font-weight: bold;
  }
  

  .toilet .cont04 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 20px;
  }

  /* cont05 セットサービス */
  .toilet .cont05 {
    background: var(--main-light-color);
    padding: 110px 0 0px;
  }

  .toilet .cont05 .inner {
    padding: 0px 20px;
  }

  .toilet .cont05 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .toilet .cont05 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .toilet .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .toilet .cont05 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .toilet .cont05 .text_box {
    position: relative;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    margin-bottom: 60px;
    text-align: center;
  }

  .toilet .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: -20px;
    transform: scale(0.6);
    left: -18px;
  }

  .toilet .cont05 .text_box .text01 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 15px 15px 65px;
  }

  .toilet .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .toilet .cont05 .text_box .text01 .span02 {
    font-size: 28px;
    font-weight: bold;
  }

  .toilet .cont05 .text_box .text02 {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
  }

  .toilet .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .toilet .cont05 .box h3 {
   font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

 .toilet .cont05 .box:nth-of-type(5) h3 {
    font-size: 17px;
  }

  .toilet .cont05 .box h3 span {
    font-size: 16px;
    font-weight: bold;
    padding: 5px 18px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 18px;
  }

  .toilet .cont05 .box:nth-of-type(5) h3 span {
    background-color: #34baeb;
  }

  .toilet .cont05 .box .flex {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .toilet .cont05 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 178px;
  }

  .toilet .cont05 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .toilet .cont05 .box .price_box .price_text01 {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .toilet .cont05 .box .price_box .price_text01 span {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .toilet .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 18px;
  }

  .toilet .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .toilet .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -37px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .toilet .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 10px;
    line-height: 1;
  }

  .toilet .cont05 .box .price_box .price_text02 span {
    font-size: 28px;
    font-weight: bold;
  }

  .toilet .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .toilet .cont05 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .toilet .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .toilet .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .toilet .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .toilet .cont05 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .toilet .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 86px;
    background: var(--main-color);
  }

  .toilet .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 67px;
  }
  .toilet .cont05 .box:nth-of-type(4) .price_box .range_box dt::after {
    height: 88px;
  }
  .toilet .cont05 .box:nth-of-type(5) .price_box .range_box dt::after {
    height: 165px;
  }

  .toilet .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  .toilet .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 12px;
  }

  .toilet .cont05 .box {
    margin-bottom: 30px;
  }
  .toilet .cont05 .box:nth-of-type(5) {
    margin-bottom: 20px;
  }
  .toilet .cont05 .tax_text01 {
    text-align: left;
    line-height: 1.5;
  }

  /* cont07 その他単品*/

  .toilet .cont07 {
    background: var(--main-light-color);
    padding: 110px 0 0;
  }
  .toilet .cont07 .inner {
    padding: 0 20px 80px;
  }
  .toilet .cont07 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
  }

  .toilet .cont07 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .toilet .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 620px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
    z-index: -1;
  }

  .toilet .cont07 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .toilet .cont07 .option_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .toilet .cont07 .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    gap: 20px;
  }

  .toilet .cont07 .option_flex .item .text_box {
    position: relative;
    margin-right: 8px;
    width: 345px;
  }

  .toilet .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 20px;
  }

  .toilet .cont07 .option_flex .item .text_box .tte01 span {
    font-size: 14px;
    font-weight: bold;
  }

  .toilet .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .toilet .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .toilet .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .toilet .cont07 .option_flex .item .text_box .text03 span {
    font-size: 38px;
    font-weight: bold;
    margin-left: 8px;
  }

  .toilet .cont07 .option_flex .item figure {
    width: 345px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }

  .toilet .cont07 .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .toilet .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 15px;
    line-height: 1;
  }

  .toilet .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .toilet .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .toilet .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont08選ばれる理由 */
  .toilet .cont08 {
    padding: 80px 0 80px;
  }

  .toilet .cont08 .inner {
    position: relative;
    padding: 0 20px;
  }

  .toilet .cont08 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .toilet .cont08 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .toilet .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .toilet .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 20px;
    color: #1d1d1d;
    padding-left: 15px;
    height: 32px;
    line-height: 32px;
    margin: 22px 0 0 98px;
  }

  .toilet .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 62px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .toilet .cont08 .text01 {
    margin-top: 45px;
    padding: 0 30px 20px;
  }

  .toilet .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    margin-bottom: 30px;
  }

  .toilet .cont08 .box .item::before {
    content: "";
    background: url(img/reason_01.png) center center / cover no-repeat;
    width: 100px;
    height: 94px;
    position: absolute;
    left: -2px;
    top: -2px;
    transform: scale(0.7);
  }

  .toilet .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .toilet .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .toilet .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .toilet .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .toilet .cont08 .box .item:first-of-type {
    margin-top: 60px;
  }

  .toilet .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .toilet .cont08 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .toilet .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .toilet .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .toilet .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .toilet .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont09ご利用の流れ */
  .toilet .cont09 {
    background: var(--main-light-color);
    padding: 80px 0px 80px;
  }

  .toilet .cont09 .inner {
    position: relative;
  }

  .toilet .cont09 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .toilet .cont09 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .toilet .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .toilet .cont09 .box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }

  .toilet .cont09 .box .item {
    position: relative;
    width: 400px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 30px 30px;
  }

  .toilet .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: var(--main-color);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 35px;
    height: 15px;
  }

  .toilet .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .toilet .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .toilet .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .toilet .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .toilet .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .toilet .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .toilet .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .toilet .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .toilet .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .toilet .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .toilet .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }


  /* cont10 よくある質問*/
  .toilet .cont10 {
    padding: 80px 20px 80px;
  }

  .toilet .cont10 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .toilet .cont10 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .toilet .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .toilet .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 27px;
  }

  .toilet .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .toilet .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 30px 25px 30px 45px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1.3;
  }

  .toilet .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .toilet .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .toilet .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .toilet .cont10 .qa_box .ans {
    display: none;
    padding: 0 25px 0 45px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
    position: relative;
  }

  .toilet .cont10 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .toilet .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .toilet .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont11イークリーンについて */

  .toilet .cont11 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
  }

  .toilet .cont11 .inner {
    padding: 0 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 857px;
  }

  .toilet .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 163.1px;
    height: 128.8px;
    bottom: -163px;
    right: -3px;
    transform: scale(0.8);
  }

  .toilet .cont11 figure {
    width: 420px;
    position: absolute;
    left: 0;
    border: 2px solid var(--main-color);
    border-left: none;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    box-sizing: border-box;
    order: 1;
  }

   .toilet .cont11 figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -50px 50%;
    transform: scale(1.4);
  }

  .toilet .cont11 .text_box {
    padding: 50px 30px;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    z-index: 2;
    order: 2;
    position: absolute;
    right: 0;
    width: 420px;
    bottom: 0;
  }

  .toilet .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .toilet .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .toilet .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .toilet .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .toilet .cont11 .text_box .tel,
  .toilet .cont11 .text_box .mail,
  .toilet .cont11 .text_box .time,
  .toilet .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .toilet .cont11 .text_box .place {
    line-height: 1.2;
    margin-top: 7px;
  }


  .toilet .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .toilet .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .toilet .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .toilet .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 1px;
    transform: translateY(-50%);
  }

  .toilet .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .toilet .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .toilet .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .toilet .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont12ブログ一覧 */

  .toilet .cont12 {
    padding: 80px 0px;
    z-index: 10;
    position: relative;
  }

  .toilet .cont12 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .toilet .cont12 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 30px;
  }

  .toilet .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
    z-index: -1;
  }

  .toilet .cont12 .text01 {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
  }

  .toilet .cont12 .blog_box {
    margin-top: 49px;
  }

  .toilet .cont12 .blog_box .swiper-slide {
    display: block;
    width: 330px;
  }

  .toilet .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .toilet .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 20px;
    order: 2;
    line-height: 1;
  }

  .toilet .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 12px 0 0;
    order: 3;
  }

  .toilet .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .toilet .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .toilet .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .toilet .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .toilet .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .toilet .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .toilet .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .toilet .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .toilet .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .toilet .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .toilet .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .toilet .cont12 .button a:hover::before {
    background: var(--main-color);
  }

 /* cont13　対応エリア */

    .toilet .cont13 {
    background: var(--main-light-color);
  }

  .toilet .cont13 .inner {
    padding: 80px 20px;
  }

  .toilet .cont13 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .toilet .cont13 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .toilet .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 144.2px;
    height: 39.2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px));
    z-index: -1;
  }

  .toilet .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 50px;
  }

  .toilet .cont13 .box .text_box {
    padding-top: 329px;
  }

  .toilet .cont13 .box figure {
    position: absolute;
    /* left: -300px; */
    top: 0px;
  }

  .toilet .cont13 .box .text_box p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 2.1;
  }

  .toilet .cont13 .area {
    height: 328px;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 30px;
  }

  .toilet .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 4px 4px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .toilet .cont13 .area .area_list {
    text-align-last: left;
    height: 255px;
    overflow-y: auto;
    margin: 25px 5px 0px 15px;
    padding-right: 20px;
  }

  .toilet .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 0px;
  }

  .toilet .cont13 .area .area_list li {
    line-height: 1;
    font-size: 14px;
  }

  .toilet .cont13 .area .area_list>li {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }


 /* 窓・サッシ------------------------------------------------------- */
/* key */
  .mado-sassi .key .text01::after {
    background: url("img/common_key_text_sp.png");
    width: 519px;
    height: 74px;
  }

  /* cont01 */
  .mado-sassi .cont01 {
    padding: 285px 20px 80px;
    position: relative;
  }

  .mado-sassi .cont01 h2 {
    font-size: 18px;
    font-weight: bold;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
    margin-top: 35px;
  }

  .mado-sassi .cont01 h2::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 49%;
    transform: translateY(-50%);
  }

  .mado-sassi .cont01 .text01 {
    font-size: 16px;
    line-height: 2.2;
    margin-top: 15px;
  }

  .mado-sassi .cont01 figure {
    position: absolute;
    right: 0;
    top: 20px;
    width: 420px;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* cont02 */
  .mado-sassi .cont02 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
    background-size: 88px auto;
  }

  .mado-sassi .cont02 h2 {
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .mado-sassi .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 230px;
    top: -199px;
    right: -55px;
    transform: scale(0.4);
  }

  .mado-sassi .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/mado-sassi_deco01.png) center center / cover no-repeat;
    width: 198px;
    height: 222px;
    top: -199px;
    left: -47px;
    transform: scale(0.4);
  }

  .mado-sassi .cont02 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .mado-sassi .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/common_key_text_sp.png) center center / cover no-repeat;
    width: 519px;
    height: 74px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.5);
    z-index: -1;
  }

  .mado-sassi .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .mado-sassi .cont02 .box {
    display: block;
    justify-content: center;
    margin-top: 50px;
  }

  .mado-sassi .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 400px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
    margin-bottom: 40px;
  }

  .mado-sassi .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;
  }

  .mado-sassi .cont02 .box .text_box01:nth-of-type(3) {
    margin-bottom: 0;
  }

  .mado-sassi .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .mado-sassi .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .mado-sassi .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .mado-sassi .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .mado-sassi .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 19px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .mado-sassi .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .mado-sassi .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .mado-sassi .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
   .mado-sassi .cont02 .box .text_box01 figure img{
    width: 100%;
  }


  /* cont03 */
  .mado-sassi .cont03 {
    padding: 80px 20px 80px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .mado-sassi .cont03 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .mado-sassi .cont03 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .mado-sassi .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .mado-sassi .cont03 .text01 {
    text-align: center;
    font-size: 16px;
    margin-top: 27px;
    line-height: 2;
  }

  .mado-sassi .cont03 .item {
    position: relative;
  }

  .mado-sassi .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 61px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .mado-sassi .cont03 h3 {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mado-sassi .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .mado-sassi .cont03 .category_01,
  .mado-sassi .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    margin-top: 15px;
  }

  .mado-sassi .cont03 .category_01 {
    padding: 7px 14px;
    background: var(--main-color);
  }

  .mado-sassi .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .mado-sassi .cont03 .text02 {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* .mado-sassi .cont03 .box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 55px auto 0;
  } */

  .mado-sassi .cont03 .box .item {
    position: relative;
    padding-top: 130px;
    margin-top: 40px;
  }

  .mado-sassi .cont03 .box .item:first-of-type {
    margin-top: 38px;
  }

  .mado-sassi .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .mado-sassi .cont03 .box .img_box .before {
    position: relative;
  }

  .mado-sassi .cont03 .box .img_box .after {
    position: relative;
  }

  .mado-sassi .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .mado-sassi .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .mado-sassi .cont03 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .mado-sassi .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .mado-sassi .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  /* cont04 浴槽・浴室クリーニングの費用*/

  .mado-sassi .cont04 {
    background: var(--main-light-color);
    padding: 80px 0 0px;
  }
  .mado-sassi .cont04 .inner{
    padding: 0 20px;
  }
  .mado-sassi .cont04 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 40px;
  }

  .mado-sassi .cont04 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .mado-sassi .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .mado-sassi .cont04 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .mado-sassi .cont04 .box {
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .mado-sassi .cont04 .box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

  .mado-sassi .cont04 .flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mado-sassi .cont04 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 180px;
  }

  .mado-sassi .cont04 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .mado-sassi .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
  }

  .mado-sassi .cont04 .box .price_box .price_text01 .span01 {
        font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .mado-sassi .cont04 .box .price_box .price_text01 .span02 {
    font-size: 28px;
    font-weight: bold;
    color: var(--main-color);
  }

  .mado-sassi .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .mado-sassi .cont04 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .mado-sassi .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .mado-sassi .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .mado-sassi .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 355px;
  }

  .mado-sassi .cont04 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .mado-sassi .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: var(--main-color);
  }

  .mado-sassi .cont04 .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 35px;
  }

  .mado-sassi .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  /* .mado-sassi .cont04 .box:nth-of-type(1) {
    margin-bottom: 40px;
  } */

  .mado-sassi .cont04 .box .ttl {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    margin: 50px auto 30px;
    text-align: center;
    position: relative;
  }

  .mado-sassi .cont04 .box .ttl::before{
    content: "";
    background: url(img/common_deco13.png) center / cover no-repeat;
    width: 53px;
    height: 48px;
    position: absolute;
    top: -35px;
    left: 7px;
    transform: scale(0.5);
}

  .mado-sassi .cont04 .box .option_flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 25px 25px;
    gap: 25px;
  }
  .mado-sassi .cont04 .box .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    background: var(--main-light-color);
    border-radius: 10px;
    padding: 20px;
    width: 315px;
   }

  .mado-sassi .cont04 .box .option_flex .item .text_box{
    width: 310px;
   }
  .mado-sassi .cont04 .box .option_flex .item .text_box .tte01{
    font-size: 19px;
    font-weight: bold;
    padding-left: 17px;
    position: relative;
   }
  .mado-sassi .cont04 .box .option_flex .item .text_box .tte01::before{
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
   }
  .mado-sassi .cont04 .box .option_flex .item figure{
    width: 315px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }
 .mado-sassi .cont04 .box .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
  .mado-sassi .cont04 .box .option_flex .item figure img:nth-last-of-type(4){
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
 }
  .mado-sassi .cont04 .box .option_flex .item .text_box .text02{
    margin-top: 7px;
    font-size: 16px;
  }

  .mado-sassi .cont04 .box .option_flex .item .text_box .text03{
    margin-right: 5px;
    text-align: right;
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--main-color);
  }
   .mado-sassi .cont04 .box .option_flex .item .text_box .text03 span{
    font-size: 40px;
    font-weight: bold;
  }
  

  .mado-sassi .cont04 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 20px;
  }

  /* cont05 セットサービス */
  .mado-sassi .cont05 {
    background: var(--main-light-color);
    padding: 110px 0 0px;
  }

  .mado-sassi .cont05 .inner {
    padding: 0px 20px;
  }

  .mado-sassi .cont05 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .mado-sassi .cont05 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .mado-sassi .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .mado-sassi .cont05 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .mado-sassi .cont05 .text_box {
    position: relative;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    margin-bottom: 60px;
    text-align: center;
  }

  .mado-sassi .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: -20px;
    transform: scale(0.6);
    left: -18px;
  }

  .mado-sassi .cont05 .text_box .text01 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 15px 15px 65px;
  }

  .mado-sassi .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .mado-sassi .cont05 .text_box .text01 .span02 {
    font-size: 28px;
    font-weight: bold;
  }

  .mado-sassi .cont05 .text_box .text02 {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
  }

  .mado-sassi .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .mado-sassi .cont05 .box h3 {
   font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

 .mado-sassi .cont05 .box:nth-of-type(5) h3 {
    font-size: 17px;
  }

  .mado-sassi .cont05 .box h3 span {
    font-size: 16px;
    font-weight: bold;
    padding: 5px 18px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 18px;
  }

  .mado-sassi .cont05 .box:nth-of-type(5) h3 span {
    background-color: #34baeb;
  }

  .mado-sassi .cont05 .box .flex {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .mado-sassi .cont05 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 178px;
  }

  .mado-sassi .cont05 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .mado-sassi .cont05 .box .price_box .price_text01 {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .mado-sassi .cont05 .box .price_box .price_text01 span {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .mado-sassi .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 18px;
  }

  .mado-sassi .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .mado-sassi .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -37px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .mado-sassi .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 10px;
    line-height: 1;
  }

  .mado-sassi .cont05 .box .price_box .price_text02 span {
    font-size: 28px;
    font-weight: bold;
  }

  .mado-sassi .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .mado-sassi .cont05 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .mado-sassi .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .mado-sassi .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .mado-sassi .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .mado-sassi .cont05 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .mado-sassi .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 86px;
    background: var(--main-color);
  }

  .mado-sassi .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 67px;
  }
  .mado-sassi .cont05 .box:nth-of-type(4) .price_box .range_box dt::after {
    height: 60px;
  }
  .mado-sassi .cont05 .box:nth-of-type(5) .price_box .range_box dt::after {
    height: 165px;
  }

  .mado-sassi .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  .mado-sassi .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 12px;
  }

  .mado-sassi .cont05 .box {
    margin-bottom: 30px;
  }
  .mado-sassi .cont05 .box:nth-of-type(5) {
    margin-bottom: 20px;
  }
  .mado-sassi .cont05 .tax_text01 {
    text-align: left;
    line-height: 1.5;
  }

  /* cont07 その他単品*/

  .mado-sassi .cont07 {
    background: var(--main-light-color);
    padding: 110px 0 0;
  }
  .mado-sassi .cont07 .inner {
    padding: 0 20px 80px;
  }
  .mado-sassi .cont07 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
  }

  .mado-sassi .cont07 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .mado-sassi .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 620px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
    z-index: -1;
  }

  .mado-sassi .cont07 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .mado-sassi .cont07 .option_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .mado-sassi .cont07 .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    gap: 20px;
  }

  .mado-sassi .cont07 .option_flex .item .text_box {
    position: relative;
    margin-right: 8px;
    width: 345px;
  }

  .mado-sassi .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 20px;
  }

  .mado-sassi .cont07 .option_flex .item .text_box .tte01 span {
    font-size: 14px;
    font-weight: bold;
  }

  .mado-sassi .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .mado-sassi .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .mado-sassi .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .mado-sassi .cont07 .option_flex .item .text_box .text03 span {
    font-size: 38px;
    font-weight: bold;
    margin-left: 8px;
  }

  .mado-sassi .cont07 .option_flex .item figure {
    width: 345px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }

  .mado-sassi .cont07 .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mado-sassi .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 15px;
    line-height: 1;
  }

  .mado-sassi .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .mado-sassi .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .mado-sassi .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont08選ばれる理由 */
  .mado-sassi .cont08 {
    padding: 80px 0 80px;
  }

  .mado-sassi .cont08 .inner {
    position: relative;
    padding: 0 20px;
  }

  .mado-sassi .cont08 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .mado-sassi .cont08 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .mado-sassi .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .mado-sassi .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 20px;
    color: #1d1d1d;
    padding-left: 15px;
    height: 32px;
    line-height: 32px;
    margin: 22px 0 0 98px;
  }

  .mado-sassi .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 62px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .mado-sassi .cont08 .text01 {
    margin-top: 45px;
    padding: 0 30px 20px;
  }

  .mado-sassi .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    margin-bottom: 30px;
  }

  .mado-sassi .cont08 .box .item::before {
    content: "";
    background: url(img/reason_01.png) center center / cover no-repeat;
    width: 100px;
    height: 94px;
    position: absolute;
    left: -2px;
    top: -2px;
    transform: scale(0.7);
  }

  .mado-sassi .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .mado-sassi .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .mado-sassi .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .mado-sassi .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .mado-sassi .cont08 .box .item:first-of-type {
    margin-top: 60px;
  }

  .mado-sassi .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .mado-sassi .cont08 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .mado-sassi .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .mado-sassi .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .mado-sassi .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .mado-sassi .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont09ご利用の流れ */
  .mado-sassi .cont09 {
    background: var(--main-light-color);
    padding: 80px 0px 80px;
  }

  .mado-sassi .cont09 .inner {
    position: relative;
  }

  .mado-sassi .cont09 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .mado-sassi .cont09 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .mado-sassi .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .mado-sassi .cont09 .box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }

  .mado-sassi .cont09 .box .item {
    position: relative;
    width: 400px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 30px 30px;
  }

  .mado-sassi .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: var(--main-color);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 35px;
    height: 15px;
  }

  .mado-sassi .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .mado-sassi .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .mado-sassi .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .mado-sassi .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .mado-sassi .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .mado-sassi .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .mado-sassi .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .mado-sassi .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .mado-sassi .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .mado-sassi .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .mado-sassi .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }


  /* cont10 よくある質問*/
  .mado-sassi .cont10 {
    padding: 80px 20px 80px;
  }

  .mado-sassi .cont10 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .mado-sassi .cont10 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .mado-sassi .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .mado-sassi .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 27px;
  }

  .mado-sassi .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .mado-sassi .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 30px 25px 30px 45px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1.3;
  }

  .mado-sassi .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .mado-sassi .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .mado-sassi .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .mado-sassi .cont10 .qa_box .ans {
    display: none;
    padding: 0 25px 0 45px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
    position: relative;
  }

  .mado-sassi .cont10 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .mado-sassi .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .mado-sassi .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont11イークリーンについて */

  .mado-sassi .cont11 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
  }

  .mado-sassi .cont11 .inner {
    padding: 0 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 857px;
  }

  .mado-sassi .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 163.1px;
    height: 128.8px;
    bottom: -163px;
    right: -3px;
    transform: scale(0.8);
  }

  .mado-sassi .cont11 figure {
    width: 420px;
    position: absolute;
    left: 0;
    border: 2px solid var(--main-color);
    border-left: none;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    box-sizing: border-box;
    order: 1;
  }

   .mado-sassi .cont11 figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -50px 50%;
    transform: scale(1.4);
  }

  .mado-sassi .cont11 .text_box {
    padding: 50px 30px;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    z-index: 2;
    order: 2;
    position: absolute;
    right: 0;
    width: 420px;
    bottom: 0;
  }

  .mado-sassi .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .mado-sassi .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .mado-sassi .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .mado-sassi .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .mado-sassi .cont11 .text_box .tel,
  .mado-sassi .cont11 .text_box .mail,
  .mado-sassi .cont11 .text_box .time,
  .mado-sassi .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .mado-sassi .cont11 .text_box .place {
    line-height: 1.2;
    margin-top: 7px;
  }


  .mado-sassi .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .mado-sassi .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .mado-sassi .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .mado-sassi .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 1px;
    transform: translateY(-50%);
  }

  .mado-sassi .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .mado-sassi .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .mado-sassi .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .mado-sassi .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont12ブログ一覧 */

  .mado-sassi .cont12 {
    padding: 80px 0px;
    z-index: 10;
    position: relative;
  }

  .mado-sassi .cont12 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .mado-sassi .cont12 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 30px;
  }

  .mado-sassi .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
    z-index: -1;
  }

  .mado-sassi .cont12 .text01 {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
  }

  .mado-sassi .cont12 .blog_box {
    margin-top: 49px;
  }

  .mado-sassi .cont12 .blog_box .swiper-slide {
    display: block;
    width: 330px;
  }

  .mado-sassi .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .mado-sassi .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 20px;
    order: 2;
    line-height: 1;
  }

  .mado-sassi .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 12px 0 0;
    order: 3;
  }

  .mado-sassi .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .mado-sassi .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .mado-sassi .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .mado-sassi .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .mado-sassi .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .mado-sassi .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .mado-sassi .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .mado-sassi .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .mado-sassi .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .mado-sassi .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .mado-sassi .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .mado-sassi .cont12 .button a:hover::before {
    background: var(--main-color);
  }

 /* cont13　対応エリア */

    .mado-sassi .cont13 {
    background: var(--main-light-color);
  }

  .mado-sassi .cont13 .inner {
    padding: 80px 20px;
  }

  .mado-sassi .cont13 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .mado-sassi .cont13 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .mado-sassi .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 144.2px;
    height: 39.2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px));
    z-index: -1;
  }

  .mado-sassi .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 50px;
  }

  .mado-sassi .cont13 .box .text_box {
    padding-top: 329px;
  }

  .mado-sassi .cont13 .box figure {
    position: absolute;
    /* left: -300px; */
    top: 0px;
  }

  .mado-sassi .cont13 .box .text_box p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 2.1;
  }

  .mado-sassi .cont13 .area {
    height: 328px;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 30px;
  }

  .mado-sassi .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 4px 4px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .mado-sassi .cont13 .area .area_list {
    text-align-last: left;
    height: 255px;
    overflow-y: auto;
    margin: 25px 5px 0px 15px;
    padding-right: 20px;
  }

  .mado-sassi .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 0px;
  }

  .mado-sassi .cont13 .area .area_list li {
    line-height: 1;
    font-size: 14px;
  }

  .mado-sassi .cont13 .area .area_list>li {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }



   /*網戸張替え---------------------------------------------- */

  /* key */
  .amido .key .text01::after {
    background: url("img/common_key_text_sp.png");
    width: 519px;
    height: 74px;
  }

  /* cont01 */
  .amido .cont01 {
    margin-top: 20px;
    padding: 265px 20px 80px;
    display: flex;
    gap: 18px;
    position: relative;
  }

  .amido .cont01 h2 {
    font-size: 18px;
    font-weight: bold;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
    margin-top: 35px;
  }

  .amido .cont01 h2::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 58px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 49%;
    transform: translateY(-50%);
  }

  .amido .cont01 .text01 {
    font-size: 16px;
    line-height: 2.2;
    margin-top: 15px;
    text-align: justify;
  }

  .amido .cont01 figure {
    position: absolute;
    top: 0;
    left: -2px;
    width: 420px;
    border-radius: 0 10px 10px 0;
    border: 2px solid var(--main-color);
    border-left: none;
    overflow: hidden;
    box-sizing: border-box;
  }

  @media screen and (min-width: 1800px) {
    .amido .cont01 figure {
      border-radius: 10px;
      border-right: 3px solid var(--main-color);
    }
  }


  /* cont02 */
  .amido .cont02 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
    background-size: 88px auto;
  }

  .amido .cont02 h2 {
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .amido .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 230px;
    top: -199px;
    right: -61px;
    transform: scale(0.5);
  }

  .amido .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/amido_deco01.png) center center / cover no-repeat;
    width: 150px;
    height: 110px;
    top: -137px;
    left: -20px;
    transform: scale(0.7);
    }
  

  .amido .cont02 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .amido .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text01.png) center center / cover no-repeat;
    width: 336px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .amido .cont02 .readtext {
    margin-top: 27px;
    font-size: 16px;
    text-align: center;
  }

  .amido .cont02 .box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    margin-top: 10px;
  }

  .amido .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 400px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
  }

  .amido .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;

  }

  .amido .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .amido .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .amido .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .amido .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .amido .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .amido .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .amido .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .amido .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 400px;
    height: 225px;
  }

  .amido .cont02 .box .text_box01 figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  /* cont03 */
  .amido .cont03 {
    padding: 80px 20px 80px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .amido .cont03 .inner{
    padding: 0 20px 80px;
  }

  .amido .cont03 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .amido .cont03 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .amido .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .amido .cont03 .text01 {
    text-align: center;
    font-size: 16px;
    margin-top: 27px;
    line-height: 1.8;
  }

  .amido .cont03 .item {
    position: relative;
  }

  .amido .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 56px;
    left: 50%;
    transform: translatex(-50%);
    z-index: 1;
  }

  .amido .cont03 h3 {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .amido .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .amido .cont03 .category_01,
  .amido .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    margin-top: 15px;
  }

  .amido .cont03 .category_01 {
    padding: 7px 14px;
    background: var(--main-color);
  }

  .amido .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .amido .cont03 .text02 {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .amido .cont03 .box .item {
    position: relative;
    padding-top: 145px;
    margin-top: 40px;
  }

  .amido .cont03 .box .item:first-of-type {
    margin-top: 38px;
  }


  .amido .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .amido .cont03 .box .img_box .before {
    position: relative;
  }

  .amido .cont03 .box .img_box .after {
    position: relative;
  }

  .amido .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .amido .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .amido .cont03 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .amido .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .amido .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont04 キッチンクリーニングの費用*/

  .amido .cont04 {
    background: var(--main-light-color);
    padding: 80px 0 0px;
  }

  .amido .cont04 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 40px;
  }

  .amido .cont04 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .amido .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .amido .cont04 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .amido .cont04 .box {
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .amido .cont04 .box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

  .amido .cont04 .flex {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .amido .cont04 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 180px;
  }

  .amido .cont04 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .amido .cont04 .box .price_box .price_text01 {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1;
    padding-left: 100px;
    position: relative;
  }

  .amido .cont04 .box .price_box .price_text01:first-of-type:before {
    content: "";
    background: url(img/amido_deco03.png);
    width:240px;
    height: 55px;
    position: absolute;
    top: -9px;
    left: -36px;
    transform: scale(0.55);
  }

    .amido .cont04 .box .price_box .price_text01:nth-of-type(2):before {
    content: "";
    background: url(img/amido_deco04.png);
    width:240px;
    height: 55px;
    position: absolute;
    top: -10px;
    left: -36px;
    transform: scale(0.55);
  }
  

  .amido .cont04 .box .price_box .price_text01 .span01 {
    font-size: 30px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 95px;
    line-height: 1.3;
  }

  .amido .cont04 .box .price_box .price_text01 .span02 {
    font-size: 28px;
    font-weight: bold;
    color: var(--main-color);
  }

  .amido .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .amido .cont04 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .amido .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .amido .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .amido .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 355px;
  }

  .amido .cont04 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .amido .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: var(--main-color);
  }


  .amido .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  .amido .cont04 .tax_text01 {
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
  }

  /* cont05 セットサービス */
  .amido .cont05 {
    background: var(--main-light-color);
    padding: 110px 0 0px;
  }
  .amido .cont05 .inner {
    padding: 0px 20px;
  }

  .amido .cont05 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .amido .cont05 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .amido .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .amido .cont05 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .amido .cont05 .text_box {
    position: relative;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    margin-bottom: 60px;
    text-align: center;
  }

  .amido .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: -20px;
    transform: scale(0.6);
    left: -18px;
  }

  .amido .cont05 .text_box .text01 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 15px 15px 65px;
  }

  .amido .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .amido .cont05 .text_box .text01 .span02 {
    font-size: 28px;
    font-weight: bold;
  }

  .amido .cont05 .text_box .text02 {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }

  .amido .cont05 .box {
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .amido .cont05 .box:last-of-type {
    margin-bottom: 0;
  }


  .amido .cont05 .box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

  .amido .cont05 .box h3 span {
    font-size: 16px;
    font-weight: bold;
    padding: 5px 18px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 18px;
  }

  .amido .cont05 .box:nth-of-type(5) h3 span {
    background-color: #34baeb;
  }

  .amido .cont05 .box .flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .amido .cont05 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 178px;
  }

  .amido .cont05 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .amido .cont05 .box .price_box .price_text01 {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .amido .cont05 .box .price_box .price_text01 span {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .amido .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 18px;
  }

  .amido .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .amido .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .amido .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 20px;
    line-height: 1;
  }

  .amido .cont05 .box .price_box .price_text02 span {
    font-size: 28px;
    font-weight: bold;
  }

  .amido .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 355px;
    font-size: 14px;
  }

  .amido .cont05 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
  }

  .amido .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .amido .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 12px 0 12px 20px;
    flex: 1;
    line-height: 1;
    text-align: left;
  }

  .amido .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 355px;
  }

  .amido .cont05 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .amido .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 110px;
    background: var(--main-color);
  }

  .amido .cont05 .box:nth-of-type(4) .price_box .range_box dt::after {
    height: 70px;
  }

    .amido .cont05 .box:nth-of-type(5) .price_box .range_box dt::after {
    height: 215px;
  }


  .amido .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 9px 9px 9px 20px;
    flex: 1;
    line-height: 1.6;
    text-align: left;
    font-size: 14px;
  }

  .amido .cont05 .box {
    margin-bottom: 70px;
  }


  /* cont06 あわせて頼みたいサービス */
  .amido .cont06 {
    background: var(--main-light-color);
    padding: 110px 0 0px;
  }

  .amido .cont06 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    color: #1d1d1d;
    margin-bottom: 30px;
  }

  .amido .cont06 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .amido .cont06 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.8);
    z-index: -1;
  }

  .amido .cont06 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .amido .cont06 .option_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .amido .cont06 .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    gap: 20px;
  }

  .amido .cont06 .option_flex .item .text_box {
    position: relative;
    margin-right: 8px;
    width: 345px;
  }

  /* .amido .cont06 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  } */

  .amido .cont06 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 20px;
  }

  .amido .cont06 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .amido .cont06 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .amido .cont06 .option_flex .item .text_box .text03 {
   font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .amido .cont06 .option_flex .item .text_box .text03 span {
    font-size: 38px;
    font-weight: bold;
    margin-left: 8px;
  }

  .amido .cont06 .option_flex .item:nth-of-type(4) .text_box .text03 {
    margin-top: 32px;
  }

  .amido .cont06 .option_flex .item figure {
    width: 345px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }
    .amido .cont06 .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  /* cont07 その他単品*/

  .amido .cont07 {
    background: var(--main-light-color);
    padding: 110px 0 0;
  }

  .amido .cont07 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
  }

  .amido .cont07 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .amido .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 620px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
    z-index: -1;
  }

  .amido .cont07 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .amido .cont07 .option_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .amido .cont07 .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    gap: 20px;
  }

  .amido .cont07 .option_flex .item .text_box {
    position: relative;
    margin-right: 8px;
    width: 345px;
  }

  /* .amido .cont07 .option_flex .item:nth-of-type(4) .text_box {
    top: 51%;
  } */

  .amido .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 20px;
  }
  .amido .cont07 .option_flex .item .text_box .tte01 span {
    font-size: 14px;
    font-weight: bold;
  }

  /* .amido .cont07 .option_flex .item:nth-of-type(5) .text_box .tte01 span {
    font-size: 18px;
    font-weight: bold;
  } */

  .amido .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .amido .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .amido .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .amido .cont07 .option_flex .item .text_box .text03 span {
    font-size: 38px;
    font-weight: bold;
    margin-left: 8px;
  }

  .amido .cont07 .option_flex .item figure {
    width: 345px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }

  .amido .cont07 .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .amido .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 15px;
    line-height: 1;
  }

  .amido .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .amido .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .amido .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  .amido .cont07 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .amido .cont07 .button a:hover::before {
    background: var(--main-color);
  }


  /* cont08選ばれる理由 */
  .amido .cont08 {
    padding: 80px 0 80px; 
  }

  .amido .cont08 .inner {
    position: relative;
    padding: 0 20px;
  }

  .amido .cont08 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .amido .cont08 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .amido .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .amido .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 20px;
    color: #1d1d1d;
    padding-left: 15px;
    height: 32px;
    line-height: 32px;
    margin: 22px 0 0 98px;
  }

  .amido .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 62px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .amido .cont08 .text01 {
    margin-top: 38px;
    padding: 0 30px 20px;
  }

  .amido .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    margin-bottom: 30px;
  }

  .amido .cont08 .box .item::before {
    content: "";
    background: url(img/reason_01.png) center center / cover no-repeat;
    width: 100px;
    height: 94px;
    position: absolute;
    left: -2px;
    top: -2px;
    transform: scale(0.8);
  }

  .amido .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .amido .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .amido .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .amido .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .amido .cont08 .box .item:first-of-type {
    margin-top: 50px;
  }

  .amido .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .amido .cont08 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .amido .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .amido .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }



 /* cont09ご利用の流れ */
  .amido .cont09 {
    background: var(--main-light-color);
    padding: 80px 0 80px;
  }

  .amido .cont09 .inner {
    position: relative;
  }

  .amido .cont09 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .amido .cont09 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .amido .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .amido .cont09 .box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }

  .amido .cont09 .box .item {
    position: relative;
    width: 400px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 30px 30px;
  }

  .amido .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: var(--main-color);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 35px;
    height: 15px;
  }

  .amido .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .amido .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .amido .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .amido .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .amido .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .amido .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .amido .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .amido .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .amido .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .amido .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .amido .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }


  /* cont10 よくある質問*/
  .amido .cont10 {
    padding: 80px 20px 80px;
  }

  .amido .cont10 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .amido .cont10 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .amido .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .amido .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 27px;
  }

  .amido .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .amido .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 30px 25px 30px 45px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1.3;
  }

  .amido .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .amido .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .amido .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .amido .cont10 .qa_box .ans {
    display: none;
    padding: 0 25px 0 45px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
    position: relative;
  }

  .amido .cont10 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .amido .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .amido .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont11イークリーンについて */

  .amido .cont11 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
  }

  .amido .cont11 .inner {
    padding: 0 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 857px;
  }

  .amido .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 163.1px;
    height: 128.8px;
    bottom: -163px;
    right: -3px;
    transform: scale(0.8);
  }

  .amido .cont11 figure {
    width: 420px;
    position: absolute;
    left: 0;
    border: 2px solid var(--main-color);
    border-left: none;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    box-sizing: border-box;
    order: 1;
  }

   .amido .cont11 figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -50px 50%;
    transform: scale(1.4);
  }

  .amido .cont11 .text_box {
    padding: 50px 30px;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    z-index: 2;
    order: 2;
    position: absolute;
    right: 0;
    width: 420px;
    bottom: 0;
  }

  .amido .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .amido .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .amido .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .amido .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .amido .cont11 .text_box .tel,
  .amido .cont11 .text_box .mail,
  .amido .cont11 .text_box .time,
  .amido .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .amido .cont11 .text_box .place {
    line-height: 1.2;
    margin-top: 7px;
  }


  .amido .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .amido .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .amido .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .amido .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 1px;
    transform: translateY(-50%);
  }

  .amido .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .amido .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .amido .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .amido .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont12ブログ一覧 */

  .amido .cont12 {
    padding: 80px 0px;
    z-index: 10;
    position: relative;
  }

  .amido .cont12 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .amido .cont12 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 30px;
  }

  .amido .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
    z-index: -1;
  }

  .amido .cont12 .text01 {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
  }

  .amido .cont12 .blog_box {
    margin-top: 49px;
  }

  .amido .cont12 .blog_box .swiper-slide {
    display: block;
    width: 330px;
  }

  .amido .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .amido .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 20px;
    order: 2;
    line-height: 1;
  }

  .amido .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 12px 0 0;
    order: 3;
  }

  .amido .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .amido .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .amido .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .amido .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .amido .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .amido .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .amido .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .amido .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .amido .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .amido .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .amido .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .amido .cont12 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont13　対応エリア */
.amido .cont13 {
    background: var(--main-light-color);
  }

  .amido .cont13 .inner {
    padding: 80px 20px;
  }

  .amido .cont13 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .amido .cont13 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .amido .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 144.2px;
    height: 39.2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px));
    z-index: -1;
  }

  .amido .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 50px;
  }

  .amido .cont13 .box .text_box {
    padding-top: 329px;
  }

  .amido .cont13 .box figure {
    position: absolute;
    /* left: -300px; */
    top: 0px;
  }

  .amido .cont13 .box .text_box p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 2.1;
  }

  .amido .cont13 .area {
    height: 328px;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 30px;
  }

  .amido .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 4px 4px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .amido .cont13 .area .area_list {
    text-align-last: left;
    height: 255px;
    overflow-y: auto;
    margin: 25px 5px 0px 15px;
    padding-right: 20px;
  }

  .amido .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 0px;
  }

  .amido .cont13 .area .area_list li {
    line-height: 1;
    font-size: 14px;
  }

  .amido .cont13 .area .area_list>li {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  .amido .contact_box{
    margin: 0 auto 50px;
  }



  /* 障子・ふすま・畳張替え------------------------------------------------------- */
/* key */
  .shoji-fusuma-tatami .key .text01::after {
    background: url("img/common_key_text_sp.png");
    width: 519px;
    height: 74px;
  }

  /* cont01 */
  .shoji-fusuma-tatami .cont01 {
    padding: 285px 20px 80px;
    position: relative;
  }

  .shoji-fusuma-tatami .cont01 h2 {
    font-size: 18px;
    font-weight: bold;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
    margin-top: 35px;
  }

  .shoji-fusuma-tatami .cont01 h2::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 49%;
    transform: translateY(-50%);
  }

  .shoji-fusuma-tatami .cont01 .text01 {
    font-size: 16px;
    line-height: 2.2;
    margin-top: 15px;
  }

  .shoji-fusuma-tatami .cont01 figure {
    position: absolute;
    right: 0;
    top: 20px;
    width: 420px;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* cont02 */
  .shoji-fusuma-tatami .cont02 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
    background-size: 88px auto;
  }

  .shoji-fusuma-tatami .cont02 h2 {
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .shoji-fusuma-tatami .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/shoji-fusuma-tatami_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 286px;
    top: -218px;
    right: -55px;
    transform: scale(0.4);
  }

  .shoji-fusuma-tatami .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/shoji-fusuma-tatami_deco01.png) center center / cover no-repeat;
    width: 210px;
    height: 137px;
    top: -137px;
    left: -43px;
    transform: scale(0.5);
  }

  .shoji-fusuma-tatami .cont02 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .shoji-fusuma-tatami .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/common_key_text_sp.png) center center / cover no-repeat;
    width: 519px;
    height: 74px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.5);
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .shoji-fusuma-tatami .cont02 .box {
    display: block;
    justify-content: center;
    margin-top: 50px;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 400px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
    margin-bottom: 40px;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01:nth-of-type(3) {
    margin-bottom: 0;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }


  .shoji-fusuma-tatami .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .shoji-fusuma-tatami .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
   .shoji-fusuma-tatami .cont02 .box .text_box01 figure img{
    width: 100%;
  }


  /* cont03 */
  .shoji-fusuma-tatami .cont03 {
    padding: 80px 20px 80px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .shoji-fusuma-tatami .cont03 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .shoji-fusuma-tatami .cont03 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .shoji-fusuma-tatami .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont03 .text01 {
    text-align: center;
    font-size: 16px;
    margin-top: 27px;
    line-height: 2;
  }

  .shoji-fusuma-tatami .cont03 .item {
    position: relative;
  }

  .shoji-fusuma-tatami .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 61px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .shoji-fusuma-tatami .cont03 h3 {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .shoji-fusuma-tatami .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .shoji-fusuma-tatami .cont03 .category_01,
  .shoji-fusuma-tatami .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    margin-top: 15px;
  }

  .shoji-fusuma-tatami .cont03 .category_01 {
    padding: 7px 14px;
    background: var(--main-color);
  }

  .shoji-fusuma-tatami .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .shoji-fusuma-tatami .cont03 .text02 {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .shoji-fusuma-tatami .cont03 .box .item {
    position: relative;
    padding-top: 130px;
    margin-top: 40px;
  }

  .shoji-fusuma-tatami .cont03 .box .item:first-of-type {
    margin-top: 38px;
  }

  .shoji-fusuma-tatami .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .shoji-fusuma-tatami .cont03 .box .img_box .before {
    position: relative;
  }

  .shoji-fusuma-tatami .cont03 .box .img_box .after {
    position: relative;
  }

  .shoji-fusuma-tatami .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .shoji-fusuma-tatami .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .shoji-fusuma-tatami .cont03 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .shoji-fusuma-tatami .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .shoji-fusuma-tatami .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  /* cont04 障子・ふすま・畳張替えの費用*/

  .shoji-fusuma-tatami .cont04 {
    background: var(--main-light-color);
    padding: 0;
  }

 .shoji-fusuma-tatami .cont04 .inner{
    padding: 80px 20px 0;
  }

  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2){
    padding: 100px 20px 0;
  }

  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(3){
    padding: 100px 20px 20px;
  }
  .shoji-fusuma-tatami .cont04 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 40px;
  }

  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(1) h2::before {
    position: absolute;
    content: "";
    background: url(img/shoji-fusuma-tatami_deco04.png) center center / cover no-repeat;
    width: 84px;
    height: 220px;
    top: -108px;
    right: 0px;
    transform: scale(0.5);
  }

  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(1)::after {
    position: absolute;
    content: "";
    background: url(img/shoji-fusuma-tatami_deco03.png) center center / cover no-repeat;
    width: 188px;
    height: 130px;
    top: -50px;
    left: -23px;
    transform: scale(0.5);
  }
  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2)::before {
    position: absolute;
    content: "";
    background: url(img/shoji-fusuma-tatami_deco05.png) center center / cover no-repeat;
    width: 84px;
    height: 226px;
    top: -47px;
    right: 3px;
    transform: scale(0.5);
  }

  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2)::after {
    position: absolute;
    content: "";
    background: url(img/shoji-fusuma-tatami_deco03.png) center center / cover no-repeat;
    width: 188px;
    height: 130px;
    top: -9px;
    left: -22px;
    transform: scale(0.5);
  }
  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(3)::before {
    position: absolute;
    content: "";
    background: url(img/shoji-fusuma-tatami_deco07.png) center center / cover no-repeat;
    width: 251px;
    height: 80px;
    top: 5px;
    right: -45px;
    transform: scale(0.5);
  }

  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(3)::after {
    position: absolute;
    content: "";
    background: url(img/shoji-fusuma-tatami_deco06.png) center center / cover no-repeat;
    top: 0px;
    width: 210px;
    height: 108px;
    left: -33px;
    transform: scale(0.5);
    }
  

  .shoji-fusuma-tatami .cont04 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .shoji-fusuma-tatami .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont04 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .shoji-fusuma-tatami .cont04 .box {
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .shoji-fusuma-tatami .cont04 .box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

  .shoji-fusuma-tatami .cont04 .flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .shoji-fusuma-tatami .cont04 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 180px;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .price_text01 {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .price_text01 .span01 {
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .price_text01 .span02 {
    font-size: 28px;
    font-weight: bold;
    color: var(--main-color);
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 15px;
    width: 355px;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 145px;
    background: var(--main-color);
  }

  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .price_box .range_box dt::after {
    height: 127px;
  }

  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(3) .price_box .range_box dt::after {
    height: 75px;
  }

  .shoji-fusuma-tatami .cont04 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  .shoji-fusuma-tatami .cont04 .box:nth-of-type(1) {
    margin-bottom: 40px;
  }

  .shoji-fusuma-tatami .cont04 .box .ttl {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    margin: 50px auto 30px;
    text-align: center;
    position: relative;
  }

  .shoji-fusuma-tatami .cont04 .box .ttl::before{
    content: "";
    background: url(img/common_deco13.png) center / cover no-repeat;
    width: 53px;
    height: 48px;
    position: absolute;
    top: -35px;
    left: 50px;
    transform: scale(0.5);
}
 .shoji-fusuma-tatami .cont04 .box .class_box {
    display: flex;
    flex-wrap: wrap;
    margin: 0 25px;
    gap: 30px;
  }
  .shoji-fusuma-tatami .cont04 .box .class_box .service_box {
    background: var(--main-light-color);
    display: flex;
    justify-content: space-between;
    width: 350px;
    height: 65px;
    margin: 0 auto;
    text-align: center;
   }
  .shoji-fusuma-tatami .cont04 .box .class_box .service_box dt {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    align-self: center;
    position: relative;
    padding-left: 24px;
    line-height: 1.3;
   }
  .shoji-fusuma-tatami .cont04 .box .class_box .service_box dt::before{
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 30px;
    border-radius: 2px;
    background: var(--main-color);
   }
  .shoji-fusuma-tatami .cont04 .box .class_box .service_box dd {
    font-size: 24px;
    font-weight: bold;
    text-align: right;
    align-self: center;
    position: relative;
    padding-right: 15px;
    color: #06aa5f;
   }
  .shoji-fusuma-tatami .cont04 .inner .box .class_box .service_box .span03{
    font-size: 14px;
    font-weight: bold;
   }
   .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box  {
    display: flex;
    width: 400px;
    margin: 0 auto;
    text-align: center;
   }
   
   .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box{
    background: var(--main-light-color);
    width: 350                  px;
    height: 280px;
    padding: 20px;
    border: none;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
   }

  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box figure{
    width: 310px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden; 
  }
 .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box figure img{
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box .price{
    display: flex;
    width: 310px;
    justify-content: space-between;
    position: relative;
    margin-top: 5px;
  }
   .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box:nth-of-type(1) .price::before{
    content: "";
    background: url(img/shoji-fusuma-tatami_deco08.png) center / cover no-repeat;
    width: 109px;
    height: 32px;
    position: absolute;
    top: 42px;
    left: 2px;
    transform: scale(0.7);
  }
   .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box:nth-of-type(2) .price::before{
    content: "";
    background: url(img/shoji-fusuma-tatami_deco09.png) center / cover no-repeat;
    width: 162px;
    height: 32px;
    position: absolute;
    top: 42px;
    left: 2px;
    transform: scale(0.7);
  }
   .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box:nth-of-type(3) .price::before{
    content: "";
    background: url(img/shoji-fusuma-tatami_deco10.png) center / cover no-repeat;
    width: 172px;
    height: 32px;
    position: absolute;
    top: 42px;
    left: 2px;
    transform: scale(0.7);
  }
  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box .price .ttl01{
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    align-self: center;
    position: relative;
    padding-left: 20px;
  }
  .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box .price .ttl01::before{
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    border-radius: 2px;
    background: var(--main-color);
  }
   .shoji-fusuma-tatami .cont04 .inner:nth-of-type(2) .box .class_box .service_box .price .text03{
    font-size: 24px;
    font-weight: bold;
    text-align: right;
    align-self: center;
    position: relative;
    color: #06aa5f;
    margin-right: 7px;
  }

 

  .shoji-fusuma-tatami .cont04 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-block: 10px 20px;
  }

  /* cont05 セットサービス */
  .shoji-fusuma-tatami .cont05 {
    background: var(--main-light-color);
    padding: 110px 0 0px;
  }

  .shoji-fusuma-tatami .cont05 .inner {
    padding: 0px 20px;
  }

  .shoji-fusuma-tatami .cont05 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
    line-height: 1.3;
  }

  .shoji-fusuma-tatami .cont05 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .shoji-fusuma-tatami .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont05 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .shoji-fusuma-tatami .cont05 .text_box {
    position: relative;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    margin-bottom: 60px;
    text-align: center;
  }

  .shoji-fusuma-tatami .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: -20px;
    transform: scale(0.6);
    left: -18px;
  }

  .shoji-fusuma-tatami .cont05 .text_box .text01 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 15px 15px 65px;
  }

  .shoji-fusuma-tatami .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .shoji-fusuma-tatami .cont05 .text_box .text01 .span02 {
    font-size: 28px;
    font-weight: bold;
  }

  .shoji-fusuma-tatami .cont05 .text_box .text02 {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
  }

  .shoji-fusuma-tatami .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .shoji-fusuma-tatami .cont05 .box h3 {
   font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

 .shoji-fusuma-tatami .cont05 .box:nth-of-type(5) h3 {
    font-size: 17px;
  }

  .shoji-fusuma-tatami .cont05 .box h3 span {
    font-size: 16px;
    font-weight: bold;
    padding: 5px 18px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 18px;
  }

  .shoji-fusuma-tatami .cont05 .box:nth-of-type(5) h3 span {
    background-color: #34baeb;
  }

  .shoji-fusuma-tatami .cont05 .box .flex {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .shoji-fusuma-tatami .cont05 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 178px;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .price_text01 {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .price_text01 span {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 18px;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -37px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 10px;
    line-height: 1;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .price_text02 span {
    font-size: 28px;
    font-weight: bold;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 86px;
    background: var(--main-color);
  }

  .shoji-fusuma-tatami .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 67px;
  }
  .shoji-fusuma-tatami .cont05 .box:nth-of-type(4) .price_box .range_box dt::after {
    height: 60px;
  }
  .shoji-fusuma-tatami .cont05 .box:nth-of-type(5) .price_box .range_box dt::after {
    height: 165px;
  }

  .shoji-fusuma-tatami .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  .shoji-fusuma-tatami .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 12px;
  }

  .shoji-fusuma-tatami .cont05 .box {
    margin-bottom: 30px;
  }
  .shoji-fusuma-tatami .cont05 .box:nth-of-type(5) {
    margin-bottom: 20px;
  }
  .shoji-fusuma-tatami .cont05 .tax_text01 {
    text-align: left;
    line-height: 1.5;
  }

  /* cont07 その他単品*/

  .shoji-fusuma-tatami .cont07 {
    background: var(--main-light-color);
    padding: 110px 0 0;
  }
  .shoji-fusuma-tatami .cont07 .inner {
    padding: 0 20px 80px;
  }
  .shoji-fusuma-tatami .cont07 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
  }

  .shoji-fusuma-tatami .cont07 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .shoji-fusuma-tatami .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 620px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont07 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .shoji-fusuma-tatami .cont07 .option_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    gap: 20px;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item .text_box {
    position: relative;
    margin-right: 8px;
    width: 345px;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 20px;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item .text_box .tte01 span {
    font-size: 14px;
    font-weight: bold;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item .text_box .text03 span {
    font-size: 38px;
    font-weight: bold;
    margin-left: 8px;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item figure {
    width: 345px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }

  .shoji-fusuma-tatami .cont07 .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .shoji-fusuma-tatami .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 15px;
    line-height: 1;
  }

  .shoji-fusuma-tatami .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .shoji-fusuma-tatami .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .shoji-fusuma-tatami .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont08選ばれる理由 */
  .shoji-fusuma-tatami .cont08 {
    padding: 80px 0 80px;
  }

  .shoji-fusuma-tatami .cont08 .inner {
    position: relative;
    padding: 0 20px;
  }

  .shoji-fusuma-tatami .cont08 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .shoji-fusuma-tatami .cont08 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .shoji-fusuma-tatami .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 20px;
    color: #1d1d1d;
    padding-left: 15px;
    height: 32px;
    line-height: 32px;
    margin: 22px 0 0 98px;
  }

  .shoji-fusuma-tatami .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 62px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .shoji-fusuma-tatami .cont08 .text01 {
    margin-top: 45px;
    padding: 0 30px 20px;
  }

  .shoji-fusuma-tatami .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    margin-bottom: 30px;
  }

  .shoji-fusuma-tatami .cont08 .box .item::before {
        content: "";
        background: url(img/reason_01.png) center center / cover no-repeat;
        width: 100px;
        height: 94px;
        position: absolute;
        left: -2px;
        top: -2px;
        transform: scale(0.7);
  }

  .shoji-fusuma-tatami .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .shoji-fusuma-tatami .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .shoji-fusuma-tatami .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .shoji-fusuma-tatami .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .shoji-fusuma-tatami .cont08 .box .item:first-of-type {
    margin-top: 60px;
  }

  .shoji-fusuma-tatami .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .shoji-fusuma-tatami .cont08 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .shoji-fusuma-tatami .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .shoji-fusuma-tatami .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .shoji-fusuma-tatami .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .shoji-fusuma-tatami .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont09ご利用の流れ */
  .shoji-fusuma-tatami .cont09 {
    background: var(--main-light-color);
    padding: 80px 0px 80px;
  }

  .shoji-fusuma-tatami .cont09 .inner {
    position: relative;
  }

  .shoji-fusuma-tatami .cont09 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .shoji-fusuma-tatami .cont09 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .shoji-fusuma-tatami .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont09 .box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }

  .shoji-fusuma-tatami .cont09 .box .item {
    position: relative;
    width: 400px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 30px 30px;
  }

  .shoji-fusuma-tatami .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: var(--main-color);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 35px;
    height: 15px;
  }

  .shoji-fusuma-tatami .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .shoji-fusuma-tatami .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .shoji-fusuma-tatami .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .shoji-fusuma-tatami .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .shoji-fusuma-tatami .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .shoji-fusuma-tatami .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .shoji-fusuma-tatami .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .shoji-fusuma-tatami .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .shoji-fusuma-tatami .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .shoji-fusuma-tatami .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .shoji-fusuma-tatami .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }


  /* cont10 よくある質問*/
  .shoji-fusuma-tatami .cont10 {
    padding: 80px 20px 80px;
  }

  .shoji-fusuma-tatami .cont10 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .shoji-fusuma-tatami .cont10 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .shoji-fusuma-tatami .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 27px;
  }

  .shoji-fusuma-tatami .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .shoji-fusuma-tatami .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 30px 25px 30px 45px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1.3;
  }

  .shoji-fusuma-tatami .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .shoji-fusuma-tatami .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .shoji-fusuma-tatami .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .shoji-fusuma-tatami .cont10 .qa_box .ans {
    display: none;
    padding: 0 25px 0 45px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
    position: relative;
  }

  .shoji-fusuma-tatami .cont10 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .shoji-fusuma-tatami .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .shoji-fusuma-tatami .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont11イークリーンについて */

  .shoji-fusuma-tatami .cont11 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
  }

  .shoji-fusuma-tatami .cont11 .inner {
    padding: 0 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 857px;
  }

  .shoji-fusuma-tatami .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 163.1px;
    height: 128.8px;
    bottom: -163px;
    right: -3px;
    transform: scale(0.8);
  }

  .shoji-fusuma-tatami .cont11 figure {
    width: 420px;
    position: absolute;
    left: 0;
    border: 2px solid var(--main-color);
    border-left: none;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    box-sizing: border-box;
    order: 1;
  }

   .shoji-fusuma-tatami .cont11 figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -50px 50%;
    transform: scale(1.4);
  }

  .shoji-fusuma-tatami .cont11 .text_box {
    padding: 50px 30px;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    z-index: 2;
    order: 2;
    position: absolute;
    right: 0;
    width: 420px;
    bottom: 0;
  }

  .shoji-fusuma-tatami .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .shoji-fusuma-tatami .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .shoji-fusuma-tatami .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .shoji-fusuma-tatami .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .shoji-fusuma-tatami .cont11 .text_box .tel,
  .shoji-fusuma-tatami .cont11 .text_box .mail,
  .shoji-fusuma-tatami .cont11 .text_box .time,
  .shoji-fusuma-tatami .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .shoji-fusuma-tatami .cont11 .text_box .place {
    line-height: 1.2;
    margin-top: 7px;
  }


  .shoji-fusuma-tatami .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .shoji-fusuma-tatami .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .shoji-fusuma-tatami .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .shoji-fusuma-tatami .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 1px;
    transform: translateY(-50%);
  }

  .shoji-fusuma-tatami .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .shoji-fusuma-tatami .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .shoji-fusuma-tatami .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .shoji-fusuma-tatami .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont12ブログ一覧 */

  .shoji-fusuma-tatami .cont12 {
    padding: 80px 0px;
    z-index: 10;
    position: relative;
  }

  .shoji-fusuma-tatami .cont12 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .shoji-fusuma-tatami .cont12 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 30px;
  }

  .shoji-fusuma-tatami .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont12 .text01 {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
  }

  .shoji-fusuma-tatami .cont12 .blog_box {
    margin-top: 49px;
  }

  .shoji-fusuma-tatami .cont12 .blog_box .swiper-slide {
    display: block;
    width: 330px;
  }

  .shoji-fusuma-tatami .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .shoji-fusuma-tatami .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 20px;
    order: 2;
    line-height: 1;
  }

  .shoji-fusuma-tatami .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 12px 0 0;
    order: 3;
  }

  .shoji-fusuma-tatami .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .shoji-fusuma-tatami .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .shoji-fusuma-tatami .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .shoji-fusuma-tatami .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .shoji-fusuma-tatami .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .shoji-fusuma-tatami .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .shoji-fusuma-tatami .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .shoji-fusuma-tatami .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .shoji-fusuma-tatami .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .shoji-fusuma-tatami .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .shoji-fusuma-tatami .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .shoji-fusuma-tatami .cont12 .button a:hover::before {
    background: var(--main-color);
  }

 /* cont13　対応エリア */

    .shoji-fusuma-tatami .cont13 {
    background: var(--main-light-color);
  }

  .shoji-fusuma-tatami .cont13 .inner {
    padding: 80px 20px;
    margin-bottom: 50px;
  }

  .shoji-fusuma-tatami .cont13 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .shoji-fusuma-tatami .cont13 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .shoji-fusuma-tatami .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 144.2px;
    height: 39.2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px));
    z-index: -1;
  }

  .shoji-fusuma-tatami .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 50px;
  }

  .shoji-fusuma-tatami .cont13 .box .text_box {
    padding-top: 329px;
  }

  .shoji-fusuma-tatami .cont13 .box figure {
    position: absolute;
    /* left: -300px; */
    top: 0px;
  }

  .shoji-fusuma-tatami .cont13 .box .text_box p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 2.1;
  }

  .shoji-fusuma-tatami .cont13 .area {
    height: 328px;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 30px;
  }

  .shoji-fusuma-tatami .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 4px 4px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .shoji-fusuma-tatami .cont13 .area .area_list {
    text-align-last: left;
    height: 255px;
    overflow-y: auto;
    margin: 25px 5px 0px 15px;
    padding-right: 20px;
  }

  .shoji-fusuma-tatami .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 0px;
  }

  .shoji-fusuma-tatami .cont13 .area .area_list li {
    line-height: 1;
    font-size: 14px;
  }

  .shoji-fusuma-tatami .cont13 .area .area_list>li {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  .shoji-fusuma-tatami .contact_box{
    margin: 0 auto;
  }

/* 賃貸不動産退去時クリーニング------------------------------------------------------- */
/* key */
  .chintai .key .text01::after {
    background: url("img/common_key_text_sp.png");
    width: 519px;
    height: 74px;
  }

  /* cont01 */
  .chintai .cont01 {
    padding: 284px 20px 80px;
    position: relative;
  }

  .chintai .cont01 h2 {
    font-size: 18px;
    font-weight: bold;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
    margin-top: 35px;
  }

  .chintai .cont01 h2::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 80px;
    background: var(--main-color);
    border-radius: 4px;
    left: 0;
    top: 49%;
    transform: translateY(-50%);
  }

  .chintai .cont01 .text01 {
    font-size: 16px;
    line-height: 2.2;
    margin-block: 15px;
  }

  .chintai .cont01 > figure {
    position: absolute;
    right: 0;
    top: 20px;
    width: 420px;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* cont02 */
  .chintai .cont02 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
    background-size: 88px auto;
  }

  .chintai .cont02 h2 {
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .chintai .cont02 h2::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_deco02.png) center center / cover no-repeat;
    width: 204px;
    height: 230px;
    top: -199px;
    right: -55px;
    transform: scale(0.4);
  }

  .chintai .cont02 h2::after {
    position: absolute;
    content: "";
    background: url(img/bath_deco01.png) center center / cover no-repeat;
    width: 190px;
    height: 137px;
    top: -147px;
    left: -43px;
    transform: scale(0.6);
  }

  .chintai .cont02 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .chintai .cont02 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/common_key_text_sp.png) center center / cover no-repeat;
    width: 519px;
    height: 74px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.5);
    z-index: -1;
  }

  .chintai .cont02 .readtext {
    margin-top: 44px;
    font-size: 18px;
    text-align: center;
  }

  .chintai .cont02 .box {
    display: block;
    justify-content: center;
    margin-top: 50px;
  }

  .chintai .cont02 .box .text_box01 {
    position: relative;
    border: 3px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 400px;
    padding: 226px 28px 33px 28px;
    overflow: hidden;
    margin-bottom: 40px;
  }

  .chintai .cont02 .box .text_box01:nth-of-type(2) {
    padding: 226px 24px 33px 28px;
  }

  .chintai .cont02 .box .text_box01:nth-of-type(3) {
    margin-bottom: 0;
  }

  .chintai .cont02 .box .text_box01::before {
    position: absolute;
    content: "";
    top: 186px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 40px;
  }

  .chintai .cont02 .box .text_box01:nth-of-type(1):before {
    background: url(img/point01.png) center center no-repeat #fff;
    background-size: 36px 43px;
  }

  .chintai .cont02 .box .text_box01:nth-of-type(2):before {
    background: url(img/point02.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .chintai .cont02 .box .text_box01:nth-of-type(3):before {
    background: url(img/point03.png) center center no-repeat #fff;
    background-size: 40px 43px;
  }

  .chintai .cont02 .box .text_box01 h3 {
    position: relative;
    font-size: 19px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 20px;
    margin-top: 35px;
    line-height: 32px;
  }

  .chintai .cont02 .box .text_box01 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .chintai .cont02 .box .text_box01 .text02 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 2;
  }

  .chintai .cont02 .box .text_box01 figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
   .chintai .cont02 .box .text_box01 figure img{
    width: 100%;
  }


  /* cont03 */
  .chintai .cont03 {
    padding: 80px 20px 80px;
    margin: 0 auto;
    max-width: 1380px;
  }

  .chintai .cont03 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .chintai .cont03 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .chintai .cont03 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text05.png) center center / cover no-repeat;
    width: 294px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .chintai .cont03 .text01 {
    text-align: center;
    font-size: 16px;
    margin-top: 27px;
    line-height: 2;
  }

  .chintai .cont03 .item {
    position: relative;
  }

  .chintai .cont03 .item::before {
    position: absolute;
    content: "";
    background: url(img/common_deco11.png) center center / cover no-repeat;
    width: 16px;
    height: 30px;
    top: 61px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .chintai .cont03 h3 {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 32px;
    height: 32px;
    padding-left: 15px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .chintai .cont03 h3::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 32px;
    left: 0;
    top: 0;
    border-radius: 3px;
  }

  .chintai .cont03 .category_01,
  .chintai .cont03 .category_02 {
    display: inline-block;
    line-height: 1;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    margin-top: 15px;
  }

  .chintai .cont03 .category_01 {
    padding: 7px 14px;
    background: var(--main-color);
  }

  .chintai .cont03 .category_02 {
    padding: 7px 22px;
    background: #7aad96;
  }

  .chintai .cont03 .text02 {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }


  .chintai .cont03 .box .item {
    position: relative;
    padding-top: 130px;
    margin-top: 40px;
  }

  .chintai .cont03 .box .item:first-of-type {
    margin-top: 38px;
  }

  .chintai .cont03 .box .img_box {
    position: absolute;
    display: flex;
    top: 0;
  }

  .chintai .cont03 .box .img_box .before {
    position: relative;
  }

  .chintai .cont03 .box .img_box .after {
    position: relative;
  }

  .chintai .cont03 .box .img_box .after::after {
    position: absolute;
    content: "";
    background: url("img/after_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .chintai .cont03 .box .img_box .before::after {
    position: absolute;
    content: "";
    background: url("img/before_text.png") no-repeat;
    width: 99px;
    height: 28px;
    top: 0;
    left: 0;
  }

  .chintai .cont03 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .chintai .cont03 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .chintai .cont03 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }

  /* cont04 クリーニングの賃貸不動産リーニングの費用*/

  .chintai .cont04 {
    background: var(--main-light-color);
    padding: 80px 0 0px;
  }
  .chintai .cont04 .inner{
    padding: 0 20px;
  }
  .chintai .cont04 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 40px;
  }

  .chintai .cont04 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .chintai .cont04 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/aircon_text02.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .chintai .cont04 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .chintai .cont04 .box {
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .chintai .cont04 .box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

  .chintai .cont04 .flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .chintai .cont04 .box .price_box {
    width: 340px;  
    padding: 30px;
    text-align: center;
  }

  .chintai .cont04 .box .price_box .price_text01 {
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding-left: 120px;
     position: relative;
  }
  .chintai .cont04 .box .price_box .price_text01::before {
    content: "";
    width: 140px;
    height: 45px;
    position: absolute;
    top: -5px;
    left: 0px;
    transform: scale(0.65);
  }

  .chintai .cont04 .box .price_box .price_text01:first-of-type::before {
    background: url(img/chintai_deco01.png);
  }
 .chintai .cont04 .box .price_box .price_text01:nth-of-type(2)::before {                                                                                                                    
    background: url(img/chintai_deco02.png) ;
  }
 .chintai .cont04 .box .price_box .price_text01:nth-of-type(3)::before {                                                                                                                    
    background: url(img/chintai_deco03.png);
  }
 .chintai .cont04 .box .price_box .price_text01:nth-of-type(4)::before {                                                                                                                    
    background: url(img/chintai_deco04.png);
  }
 .chintai .cont04 .box .price_box .price_text01:nth-of-type(5)::before {                                                                                                                    
    background: url(img/chintai_deco05.png);
  }

  .chintai .cont04 .box .price_box .price_text01 .span01 {
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    margin-left: 10px;
  }

  .chintai .cont04 .box .price_box .price_text01 .span02 {
    font-size: 28px;
    font-weight: bold;
    color: var(--main-color);
  }


  .chintai .cont04 .box .flex .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-block: 0 30px;
    width: 355px;
  }

  .chintai .cont04 .box .flex .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .chintai .cont04 .box .flex .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: var(--main-color);
  }

  .chintai .cont04 .box:nth-of-type(2) .price_box .range_box dt::after {
    height: 35px;
  }

  .chintai .cont04 .box .flex .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  .chintai .cont04 .box .ttl {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    margin: 50px auto 30px;
    text-align: center;
    position: relative;
  }

  

  .chintai .cont04 .tax_text01 {
    font-size: 14px;
    text-align: left;
    margin-top: 15px;
    line-height: 1.1;
  }

  /* cont05 セットサービス */
  .chintai .cont05 {
    background: var(--main-light-color);
    padding: 110px 0 0px;
  }

  .chintai .cont05 .inner {
    padding: 0px 20px;
  }

  .chintai .cont05 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .chintai .cont05 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .chintai .cont05 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text02.png) center center / cover no-repeat;
    width: 286px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .chintai .cont05 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .chintai .cont05 .text_box {
    position: relative;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    margin-bottom: 60px;
    text-align: center;
  }

  .chintai .cont05 .text_box::before {
    content: "";
    background: url(img/kitchen_deco03.png);
    width: 134px;
    height: 153px;
    position: absolute;
    top: -20px;
    transform: scale(0.6);
    left: -18px;
  }

  .chintai .cont05 .text_box .text01 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 15px 15px 65px;
  }

  .chintai .cont05 .text_box .text01 .span01 {
    color: #006db2;
    font-weight: bold;
  }

  .chintai .cont05 .text_box .text01 .span02 {
    font-size: 32px;
    font-weight: bold;
  }

  .chintai .cont05 .text_box .text02 {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
  }

  .chintai .cont05 .box {
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .chintai .cont05 .box h3 {
   font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.07em;
    text-align: center;
    align-items: center;
    background-color: var(--main-color);
    height: 45px;
    border-radius: 6px 6px 0px 0px;
    line-height: 45px;
  }

 .chintai .cont05 .box:nth-of-type(5) h3 {
    font-size: 17px;
  }

  .chintai .cont05 .box h3 span {
    font-size: 16px;
    font-weight: bold;
    padding: 5px 18px;
    border-radius: 5px;
    background-color: #006db2;
    margin-right: 18px;
  }

  .chintai .cont05 .box:nth-of-type(5) h3 span {
    background-color: #34baeb;
  }

  .chintai .cont05 .box .flex {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .chintai .cont05 .flex figure {
    border-radius: 4px;
    margin: 20px;
    overflow: hidden;
    flex-shrink: 0;
    height: 178px;
  }

  .chintai .cont05 .box .price_box {
    padding: 0px 20px 20px;
    text-align: center;
  }

  .chintai .cont05 .box .price_box .price_text01 {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    text-align: left;
  }

  .chintai .cont05 .box .price_box .price_text01 span {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    color: #686868;
    letter-spacing: .5px;
  }

  .chintai .cont05 .box .price_box .price_text01 span .span01 {
    font-size: 18px;
  }

  .chintai .cont05 .box .price_box .price_text01>span::before {
    content: "";
    position: absolute;
    background: #686868;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .chintai .cont05 .box .price_box .price_text01 span .span01::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--main-color);
    right: -37px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 11px;
  }

  .chintai .cont05 .box .price_box .price_text02 {
    display: inline-block;
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    padding-left: 10px;
    line-height: 1;
  }

  .chintai .cont05 .box .price_box .price_text02 span {
    font-size: 28px;
    font-weight: bold;
  }

  .chintai .cont05 .box .price_box .time_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .chintai .cont05 .box .price_box .time_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .chintai .cont05 .box .price_box .time_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--main-color);
  }

  .chintai .cont05 .box .price_box .time_box dd {
    margin: 0;
    padding: 10px 0 10px 10px;
    flex: 1;
    line-height: 1;
    font-size: 14px;
    text-align: left;
  }

  .chintai .cont05 .box .price_box .range_box {
    display: flex;
    align-items: center;
    background: #e9fbf3;
    background: var(--main-light-color);
    border-radius: 5px;
    margin-top: 10px;
    width: 355px;
  }

  .chintai .cont05 .box .price_box .range_box dt {
    width: 107px;
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    padding: 13px 0px;
    position: relative;
    line-height: 1;
    font-size: 14px;
  }

  .chintai .cont05 .box .price_box .range_box dt::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 86px;
    background: var(--main-color);
  }

  .chintai .cont05 .box:nth-of-type(3) .price_box .range_box dt::after {
    height: 67px;
  }
  .chintai .cont05 .box:nth-of-type(4) .price_box .range_box dt::after {
    height: 60px;
  }
  .chintai .cont05 .box:nth-of-type(5) .price_box .range_box dt::after {
    height: 165px;
  }

  .chintai .cont05 .box .price_box .range_box dd {
    margin: 0;
    padding: 10px 10px 10px 10px;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    text-align: left;
  }

  .chintai .cont05 .box:nth-of-type(3) .price_box .range_box dd {
    font-size: 12px;
  }

  .chintai .cont05 .box {
    margin-bottom: 30px;
  }
  .chintai .cont05 .box:nth-of-type(5) {
    margin-bottom: 20px;
  }
  .chintai .cont05 .tax_text01 {
    text-align: left;
    line-height: 1.5;
  }

  /* cont07 その他単品*/

  .chintai .cont07 {
    background: var(--main-light-color);
    padding: 110px 0 0;
  }
  .chintai .cont07 .inner {
    padding: 0 20px 80px;
  }
  .chintai .cont07 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
    margin-bottom: 30px;
  }

  .chintai .cont07 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .chintai .cont07 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/kitchen_text03.png) center center / cover no-repeat;
    width: 620px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
    z-index: -1;
  }

  .chintai .cont07 .readtext {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
  }

  .chintai .cont07 .option_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .chintai .cont07 .option_flex .item {
    display: flex;
    flex-direction: column-reverse;
    width: 400px;
    border: 2px solid var(--main-color);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 25px;
    gap: 20px;
  }

  .chintai .cont07 .option_flex .item .text_box {
    position: relative;
    margin-right: 8px;
    width: 345px;
  }

  .chintai .cont07 .option_flex .item .text_box .tte01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #1d1d1d;
    padding-left: 17px;
    line-height: 20px;
  }

  .chintai .cont07 .option_flex .item .text_box .tte01 span {
    font-size: 14px;
    font-weight: bold;
  }

  .chintai .cont07 .option_flex .item .text_box .tte01::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    border-radius: 3px;
  }

  .chintai .cont07 .option_flex .item .text_box .text02 {
    font-size: 16px;
    margin-top: 19px;
    line-height: 1.7;
  }

  .chintai .cont07 .option_flex .item .text_box .text03 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1;
    margin-top: 15px;
    text-align: right;
  }

  .chintai .cont07 .option_flex .item .text_box .text03 span {
    font-size: 38px;
    font-weight: bold;
    margin-left: 8px;
  }

  .chintai .cont07 .option_flex .item:nth-of-type(1) .text_box .text03:nth-of-type(1)::before {
    content: "";
    background: url(img/chintai_deco06.png) center / cover no-repeat;
    width: 130px;
    height: 30px;
    position: absolute;
    top: 39px;
    left: 20px;
  }
  .chintai .cont07 .option_flex .item:nth-of-type(1) .text_box .text03:nth-of-type(2)::before {
    content: "";
    background: url(img/chintai_deco07.png) center / cover no-repeat;
    width: 130px;
    height: 30px;
    position: absolute;
    top: 90px;
    left: 20px;
  }
.chintai .cont07 .option_flex .item:nth-of-type(2) .text_box .text03:nth-of-type(1)::before {
    content: "";
    background: url(img/chintai_deco08.png) center / cover no-repeat;
    width: 130px;
    height: 30px;
    position: absolute;
    top: 39px;
    left: 20px;
  }
.chintai .cont07 .option_flex .item:nth-of-type(2) .text_box .text03:nth-of-type(2)::before {
    content: "";
    background: url(img/chintai_deco16.png) center / cover no-repeat;
    width: 120px;
    height: 30px;
    position: absolute;
    top: 90px;
    left: 20px;
  }
    .chintai .cont07 .option_flex .item:nth-of-type(3) .text_box .text03::before {
    content: "";
    background: url(img/chintai_deco06.png) center / cover no-repeat;
    width: 130px;
    height: 30px;
    position: absolute;
    top: 39px;
    left: 20px;
  }
    .chintai .cont07 .option_flex .item:nth-of-type(4) .text_box .text03:nth-of-type(1)::before {
    content: "";
    background: url(img/chintai_deco09.png) center / cover no-repeat;
    width: 100px;
    height: 30px;
    position: absolute;
    top: 39px;
    left: 20px;
  }
    .chintai .cont07 .option_flex .item:nth-of-type(4) .text_box .text03:nth-of-type(2)::before {
    content: "";
    background: url(img/chintai_deco10.png) center / cover no-repeat;
    width: 130px;
    height: 30px;
    position: absolute;
    top: 90px;
    left: 20px;
  }
 .chintai .cont07 .option_flex .item:nth-of-type(5) .text_box .text03:nth-of-type(1)::before {
    content: "";
    background: url(img/chintai_deco11.png) center / cover no-repeat;
    width: 90px;
    height: 30px;
    position: absolute;
    top: 39px;
    left: 20px;
  }
    .chintai .cont07 .option_flex .item:nth-of-type(5) .text_box .text03:nth-of-type(2)::before {
    content: "";
    background: url(img/chintai_deco12.png) center / cover no-repeat;
    width: 158px;
    height: 30px;
    position: absolute;
    top: 90px;
    left: 20px;
  }
.chintai .cont07 .option_flex .item:nth-of-type(6) .text_box .text03::before {
    content: "";
    background: url(img/chintai_deco13.png) center / cover no-repeat;
    width: 90px;
    height: 30px;
    position: absolute;
    top: 39px;
    left: 20px;
}
.chintai .cont07 .option_flex .item:nth-of-type(7) .text_box .text03:nth-of-type(1)::before {
    content: "";
    background: url(img/chintai_deco11.png) center / cover no-repeat;
    width: 90px;
    height: 30px;
    position: absolute;
    top: 39px;
    left: 20px;
}
    .chintai .cont07 .option_flex .item:nth-of-type(7) .text_box .text03:nth-of-type(2)::before {
    content: "";
    background: url(img/chintai_deco12.png) center / cover no-repeat;
    width: 158px;
    height: 30px;
    position: absolute;
    top: 90px;
    left: 20px;
}
    .chintai .cont07 .option_flex .item:nth-of-type(8) .text_box .text03:nth-of-type(1)::before {
    content: "";
    background: url(img/chintai_deco11.png) center / cover no-repeat;
    width: 90px;
    height: 30px;
    position: absolute;
    top: 39px;
    left: 20px;
}
    .chintai .cont07 .option_flex .item:nth-of-type(8) .text_box .text03:nth-of-type(2)::before {
    content: "";
    background: url(img/chintai_deco12.png) center / cover no-repeat;
    width: 158px;
    height: 30px;
    position: absolute;
    top: 90px;
    left: 20px;
}
    .chintai .cont07 .option_flex .item:nth-of-type(9) .text_box .text03:nth-of-type(1)::before {
    content: "";
    background: url(img/chintai_deco14.png) center / cover no-repeat;
    width: 110px;
    height: 30px;
    position: absolute;
    top: 39px;
    left: 20px;
}
  .chintai .cont07 .option_flex .item:nth-of-type(9) .text_box .text03:nth-of-type(2)::before {
    content: "";
    background: url(img/chintai_deco15.png) center / cover no-repeat;
    width: 110px;
    height: 30px;
    position: absolute;
    top: 90px;
    left: 20px;
  }

  .chintai .cont07 .option_flex .item figure {
    width: 345px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
  }

  .chintai .cont07 .option_flex .item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .chintai .cont07 .tax_text01 {
    font-size: 14px;
    text-align: right;
    margin-top: 15px;
    line-height: 1;
  }

  .chintai .cont07 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 30px auto 0;
  }

  .chintai .cont07 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
  }

  .chintai .cont07 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont08選ばれる理由 */
  .chintai .cont08 {
    padding: 80px 0 80px;
  }

  .chintai .cont08 .inner {
    position: relative;
    padding: 0 20px;
  }

  .chintai .cont08 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .chintai .cont08 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .chintai .cont08 h2 span::after {
    position: absolute;
    content: "";
    background: url(img/home_text03.png) center center / cover no-repeat;
    width: 322px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .chintai .cont08 h3 {
    position: relative;
    font-weight: bold;
    font-size: 20px;
    color: #1d1d1d;
    padding-left: 15px;
    height: 32px;
    line-height: 32px;
    margin: 22px 0 0 98px;
  }

  .chintai .cont08 h3::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 62px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .chintai .cont08 .text01 {
    margin-top: 45px;
    padding: 0 30px 20px;
  }

  .chintai .cont08 .box .item {
    position: relative;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    margin-bottom: 30px;
  }

  .chintai .cont08 .box .item::before {
        content: "";
        background: url(img/reason_01.png) center center / cover no-repeat;
        width: 100px;
        height: 94px;
        position: absolute;
        left: -2px;
        top: -2px;
        transform: scale(0.7);
  }

  .chintai .cont08 .box .item:nth-of-type(2):before {
    background: url("img/reason_02.png") center center / cover no-repeat;
  }

  .chintai .cont08 .box .item:nth-of-type(3):before {
    background: url("img/reason_03.png") center center / cover no-repeat;
  }

  .chintai .cont08 .box .item:nth-of-type(4):before {
    background: url("img/reason_04.png") center center / cover no-repeat;
  }

  .chintai .cont08 .box .item:nth-of-type(5):before {
    background: url("img/reason_05.png") center center / cover no-repeat;
  }

  .chintai .cont08 .box .item:first-of-type {
    margin-top: 60px;
  }

  .chintai .cont08 .box .item:last-of-type {
    margin-bottom: 0;
  }

  .chintai .cont08 .button {
    position: relative;
    width: 325px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .chintai .cont08 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .chintai .cont08 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .chintai .cont08 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .chintai .cont08 .button a:hover::before {
    background: var(--main-color);
  }

  /* cont09ご利用の流れ */
  .chintai .cont09 {
    background: var(--main-light-color);
    padding: 80px 0px 80px;
  }

  .chintai .cont09 .inner {
    position: relative;
  }

  .chintai .cont09 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .chintai .cont09 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .chintai .cont09 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text04.png) center center / cover no-repeat;
    width: 226px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px)) scale(0.7);
    z-index: -1;
  }

  .chintai .cont09 .box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }

  .chintai .cont09 .box .item {
    position: relative;
    width: 400px;
    height: 250px;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    padding: 65px 30px 30px;
  }

  .chintai .cont09 .box .item::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: var(--main-color);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 35px;
    height: 15px;
  }

  .chintai .cont09 .box .item:last-of-type::before {
    display: none;
  }

  .chintai .cont09 .box .item:nth-of-type(2) {
    padding: 65px 48px 30px;
  }

  .chintai .cont09 .box .item:nth-of-type(3) {
    padding: 60px 47px 30px;
  }

  .chintai .cont09 .box .item h3 {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #1d1d1d;
    line-height: 1;
    font-weight: bold;
  }

  .chintai .cont09 .box .item h3::before {
    position: absolute;
    content: "FLOW 01";
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .chintai .cont09 .box .item:nth-of-type(2) h3::before {
    content: "FLOW 02";
  }

  .chintai .cont09 .box .item:nth-of-type(3) h3::before {
    content: "FLOW 03";
  }

  .chintai .cont09 .box .item p {
    margin-top: 20px;
    font-size: 14px;
  }

  .chintai .cont09 .button {
    position: relative;
    width: 320px;
    height: 50px;
    text-align: center;
    margin: 40px auto 0;
  }

  .chintai .cont09 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .chintai .cont09 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }


  /* cont10 よくある質問*/
  .chintai .cont10 {
    padding: 80px 20px 80px;
  }

  .chintai .cont10 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .chintai .cont10 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .chintai .cont10 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text06.png) center center / cover no-repeat;
    width: 152px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
    z-index: -1;
  }

  .chintai .cont10 p {
    text-align: center;
    font-weight: bold;
    margin-top: 27px;
  }

  .chintai .cont10 .qa_box {
    margin-top: 50px;
    border-bottom: 1px dashed var(--main-color);
  }

  .chintai .cont10 .qa_box .qes {
    position: relative;
    width: 100%;
    padding: 30px 25px 30px 45px;
    border-top: 1px dashed var(--main-color);
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1.3;
  }

  .chintai .cont10 .qa_box .qes::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  .chintai .cont10 .qa_box .qes::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    background: url(img/faq_icon01.png) no-repeat;
    width: 20px;
    height: 20px;
    transition: .3s;
  }

  .chintai .cont10 .qa_box .qes.open::after {
    transform: translateY(-50%) rotate(180deg);
    background: url(img/faq_icon02.png) no-repeat;
  }

  .chintai .cont10 .qa_box .ans {
    display: none;
    padding: 0 25px 0 45px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
    position: relative;
  }

  .chintai .cont10 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 58px auto 0;
  }

  .chintai .cont10 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .chintai .cont10 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont11イークリーンについて */

  .chintai .cont11 {
    background: url(img/common_bg_01.png);
    padding: 80px 0;
  }

  .chintai .cont11 .inner {
    padding: 0 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 857px;
  }

  .chintai .cont11 .inner::before {
    position: absolute;
    content: "";
    background: url(img/common_deco12.png) center center / cover no-repeat;
    width: 163.1px;
    height: 128.8px;
    bottom: -163px;
    right: -3px;
    transform: scale(0.8);
  }

  .chintai .cont11 figure {
    width: 420px;
    position: absolute;
    left: 0;
    border: 2px solid var(--main-color);
    border-left: none;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    box-sizing: border-box;
    order: 1;
  }

   .chintai .cont11 figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -50px 50%;
    transform: scale(1.4);
  }

  .chintai .cont11 .text_box {
    padding: 50px 30px;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    z-index: 2;
    order: 2;
    position: absolute;
    right: 0;
    width: 420px;
    bottom: 0;
  }

  .chintai .cont11 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }

  .chintai .cont11 .text_box .text01 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    padding-left: 22px;
    margin-top: 26px;
  }

  .chintai .cont11 .text_box .text01::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 6px;
    height: 34px;
    border-radius: 3px;
    left: 0;
    top: 0;
  }

  .chintai .cont11 .text_box .info_box {
    margin-top: 24px;
  }

  .chintai .cont11 .text_box .tel,
  .chintai .cont11 .text_box .mail,
  .chintai .cont11 .text_box .time,
  .chintai .cont11 .text_box .place {
    position: relative;
    font-weight: bold;
    padding-left: 32px;
  }

  .chintai .cont11 .text_box .place {
    line-height: 1.2;
    margin-top: 7px;
  }


  .chintai .cont11 .text_box .tel::before {
    position: absolute;
    content: "";
    background: url("img/contact_tel_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .chintai .cont11 .text_box .mail::before {
    position: absolute;
    content: "";
    background: url("img/contact_mail_img01.png") center center / cover no-repeat;
    width: 18px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .chintai .cont11 .text_box .time::before {
    position: absolute;
    content: "";
    background: url("img/contact_time_img01.png") center center / cover no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: -0.5px;
    transform: translateY(-50%);
  }

  .chintai .cont11 .text_box .place::before {
    position: absolute;
    content: "";
    background: url("img/contact_place_img01.png") center center / cover no-repeat;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 1px;
    transform: translateY(-50%);
  }

  .chintai .cont11 .text_box .text02 {
    margin-top: 20px;
    text-align: justify;
  }

  .chintai .cont11 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin-top: 28px;
  }

  .chintai .cont11 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }

  .chintai .cont11 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
  }


  /* cont12ブログ一覧 */

  .chintai .cont12 {
    padding: 80px 0px;
    z-index: 10;
    position: relative;
  }

  .chintai .cont12 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .chintai .cont12 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 30px;
  }

  .chintai .cont12 h2 span::before {
    position: absolute;
    content: "";
    background: url(img/home_text07.png) center center / cover no-repeat;
    width: 209px;
    height: 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
    z-index: -1;
  }

  .chintai .cont12 .text01 {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
  }

  .chintai .cont12 .blog_box {
    margin-top: 49px;
  }

  .chintai .cont12 .blog_box .swiper-slide {
    display: block;
    width: 330px;
  }

  .chintai .cont12 .blog_box .swiper-slide a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5px;
    box-sizing: border-box;
  }

  .chintai .cont12 .blog_box .swiper-slide a h3 {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 20px;
    order: 2;
    line-height: 1;
  }

  .chintai .cont12 .blog_box .swiper-slide a .date {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 12px 0 0;
    order: 3;
  }

  .chintai .cont12 .blog_box .swiper-slide a .cate {
    height: 28px;
    background: var(--main-color);
    padding: 0 23px;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    margin: 20px 0 0;
    order: 4;
  }

  .chintai .cont12 .blog_box .swiper-slide a .text02 {
    font-size: 16px;
    line-height: 2;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 15px;
    order: 5;
  }

  .chintai .cont12 .blog_box .swiper-slide a figure {
    width: 330px;
    height: 220px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    order: 1;
  }

  .chintai .cont12 .swiper-button-prev {
    top: -103px;
    left: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url(img/common_arrow.png) 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transition: opacity 0.4s ease;
  }

  .chintai .cont12 .swiper-button-prev:hover {
    opacity: 0.7;
  }

  .chintai .cont12 .swiper-button-next {
    top: -103px;
    right: calc(50% + 420px);
    width: 80px;
    height: 80px;
    background: url("img/common_arrow.png") 28px center no-repeat var(--main-color);
    border-radius: 40px;
    transform: rotate(-180deg);
    transition: opacity 0.4s ease;
  }

  .chintai .cont12 .swiper-button-next:hover {
    opacity: 0.7;
  }


  .chintai .cont12 .button {
    position: relative;
    width: 360px;
    height: 50px;
    text-align: center;
    margin: 55px auto 0;
  }

  .chintai .cont12 .button a {
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  }

  .chintai .cont12 .button a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #fff;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 10px;
    transition: background-color 0.4s ease;
  }

  .chintai .cont12 .button a:hover {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

  .chintai .cont12 .button a:hover::before {
    background: var(--main-color);
  }

 /* cont13　対応エリア */

    .chintai .cont13 {
    background: var(--main-light-color);
  }

  .chintai .cont13 .inner {
    padding: 80px 20px;
  }

  .chintai .cont13 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #1d1d1d;
  }

  .chintai .cont13 h2 span {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #444;
    padding-bottom: 15px;
  }

  .chintai .cont13 h2 span::before {
    position: absolute;
    content: "";
    background: url("img/common_area_text01.png") center center / cover no-repeat;
    width: 144.2px;
    height: 39.2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 15px));
    z-index: -1;
  }

  .chintai .cont13 .box {
    position: relative;
    display: flex;
    justify-content: end;
    margin-top: 50px;
  }

  .chintai .cont13 .box .text_box {
    padding-top: 329px;
  }

  .chintai .cont13 .box figure {
    position: absolute;
    /* left: -300px; */
    top: 0px;
  }

  .chintai .cont13 .box .text_box p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 2.1;
  }

  .chintai .cont13 .area {
    height: 328px;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 33px;
    margin-top: 30px;
  }

  .chintai .cont13 .area h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 4px 4px 0 0;
    line-height: 40px;
    font-weight: bold;
  }

  .chintai .cont13 .area .area_list {
    text-align-last: left;
    height: 255px;
    overflow-y: auto;
    margin: 25px 5px 0px 15px;
    padding-right: 20px;
  }

  .chintai .cont13 .area .area_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 0px;
  }

  .chintai .cont13 .area .area_list li {
    line-height: 1;
    font-size: 14px;
  }

  .chintai .cont13 .area .area_list>li {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
  }

  .chintai .contact_box{
    margin: 0 auto 50px;
  }

 

  /*  料金表SP ------------------------------------------------------------------------*/
  /* key */
  .price .key .text01::after {
    background: url(img/price_key_text.png);
    width: 297px;
    height: 74px;
  }

  /* cont01 price_box*/
.price .cont01 {
  margin: 60px auto 80px;
}

.price .cont01 h2 {
  position: relative;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #1d1d1d;
}

.price .cont01 h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 15px;
}

.price .cont01 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 287px;
  height: 74px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px)) scale(0.5);
  z-index: -1;
}

.price .cont01 .readtext {
  font-size: 16px;
  line-height: 2;
  margin-block: 30px;
  text-align: center;
}

.price .cont01 .text_box {
  position: relative;
  width: 400px;
  border: 2px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 25px;
  margin-bottom: 50px;
  text-align: center;
}

.price .cont01 .text_box::before {
  content: "";
  background: url(img/kitchen_deco03.png);
  width: 134px;
  height: 153px;
  position: absolute;
  top: -20px;
  transform: scale(0.6);
  left: -18px;
}


.price .cont01 .text_box .text01 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 15px 15px 65px;
}

.price .cont01 .text_box .text01 .span01 {
  color: #006db2;
  font-weight: bold;
}

.price .cont01 .text_box .text01 .span02 {
  font-size: 32px;
  font-weight: bold;
}

.price .cont01 .text_box .text02 {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

.price .cont01 .box {
  background: #fff;
  border: 3px solid var(--main-color);
  border-radius: 10px;
  box-sizing: border-box;
}

.price .cont01 .box h3 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.07em;
  text-align: center;
  align-items: center;
  background-color: var(--main-color);
  height: 45px;
  border-radius: 6px 6px 0px 0px;
  line-height: 45px;
}

.price .cont01 .box h3 span {
  font-size: 16px;
  font-weight: bold;
  padding: 5px 18px;
  border-radius: 5px;
  background-color: #006db2;
  margin-right: 18px;
}

.price .cont01 .box:nth-of-type(5) h3 span {
  background-color: #34baeb;
}

.price .cont01 .box .flex {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.price .cont01 .flex figure {
  border-radius: 4px;
  margin: 20px;
  overflow: hidden;
  flex-shrink: 0;
  height: 178px;  
}

.price .cont01 .box .price_box {
  padding: 0px 20px 20px;
  text-align: center;
}

.price .cont01 .box .price_box .price_text01 {
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  line-height: 1.5;
  text-align: left;
}

.price .cont01 .box .price_box .price_text01 span {
  font-size: 14px;
  font-weight: bold;
  position: relative;
  color: #686868;
  letter-spacing: .5px;
}

.price .cont01 .box .price_box .price_text01 span .span01 {
  font-size: 18px;
}

.price .cont01 .box .price_box .price_text01>span::before {
  content: "";
  position: absolute;
  background: #686868;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}

.price .cont01 .box .price_box .price_text01 span .span01::after {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: var(--main-color);
  right: -37px;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  margin: auto 0;
  width: 7px;
  height: 11px;
}

.price .cont01 .box .price_box .price_text02 {
  display: inline-block;
  font-size: 38px;
  font-weight: bold;
  color: var(--main-color);
  padding-left: 10px;
  line-height: 1;
}

.price .cont01 .box .price_box .price_text02 span {
  font-size: 28px;
  font-weight: bold;
}

.price .cont01 .box .price_box .time_box {
  display: flex;
  align-items: center;
  background: #e9fbf3;
  background: var(--main-light-color);
  border-radius: 5px;
  margin-top: 10px;
  width: 355px;
}

.price .cont01 .box .price_box .time_box dt {
  width: 107px;
  flex-shrink: 0;
  color: var(--main-color);
  font-weight: bold;
  text-align: center;
  padding: 10px 0px;
  position: relative;
  line-height: 1;
  font-size: 14px;
}

.price .cont01 .box .price_box .time_box dt::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: var(--main-color);
}

.price .cont01 .box .price_box .time_box dd {
  margin: 0;
  padding: 10px 0 10px 10px;
  flex: 1;
  line-height: 1;
  font-size: 14px;
  text-align: left;
}

.price .cont01 .box .price_box .range_box {
  display: flex;
  align-items: center;
  background: #e9fbf3;
  background: var(--main-light-color);
  border-radius: 5px;
  margin-top: 10px;
  width: 355px;
}

.price .cont01 .box .price_box .range_box dt {
  width: 107px;
  flex-shrink: 0;
  color: var(--main-color);
  font-weight: bold;
  text-align: center;
  padding: 13px 0px;
  position: relative;
  line-height: 1;
  font-size: 14px;
}

.price .cont01 .box .price_box .range_box dt::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: var(--main-color);
}

.price .cont01 .box:nth-of-type(2) .price_box .range_box dt::after {
  height: 92px;
}

.price .cont01 .box:nth-of-type(3) .price_box .range_box dt::after {
  height: 115px;
}

.price .cont01 .box:nth-of-type(5) .price_box .range_box dt::after {
  height: 161px;
}

.price .cont01 .box .price_box .range_box dd {
  margin: 0;
  padding: 10px 10px 10px 10px;
  flex: 1;
  line-height: 1.4;
  font-size: 13px;
  text-align: left;
}

.price .cont01 .box:nth-of-type(3) .price_box .range_box dd {
  font-size: 14px;
  padding: 9px 25px 9px 20px;
}

.price .cont01 .box {
margin-bottom: 30px;
}
.price .cont01 .box:nth-of-type(5) {
  margin-bottom: 20px;
}
.price .cont01 .tax_text01 {
  text-align: left;
  line-height: 1.5;
}

/* cont02 */
.price .cont02 {
  background: var(--main-light-color);;
  padding: 80px 0;
}

.price .cont02 h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #1d1d1d;
  margin-bottom: 30px;
}

.price .cont02 h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 15px;
}

.price .cont02 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 237px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
  z-index: -1;
}

.price .cont02 .readtext {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}

.price .cont02 .box {
  position: relative;
  width: 400px;
  border: 1px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 auto;
}

.price .cont02 .box .class_box {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
.price .cont02 .box .class_box h3{
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  margin: 50px auto 0;
}
.price .cont02 .box .class_box h3:nth-of-type(2),
.price .cont02 .box .class_box h3:nth-of-type(3) {
  margin: 50px auto 0;
}

.price .cont02 .box .class_box:first-of-type h3{
  margin: 20px auto 0;
}
.price .cont02 .box > p{
  margin-top: 15px;
  font-size: 13px;
}
.price .cont02 .box .class_box .service_box {
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.price .cont02 .box .class_box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont02 .box .class_box .service_box dt span{
  font-size: 16px;
  font-weight: bold;
}

.price .cont02 .box .class_box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 44px;
  border-radius: 2px;
  background: var(--main-color);
}

.price .cont02 .box .class_box:nth-of-type(3) .service_box dt::before,
.price .cont02 .box .class_box:nth-of-type(4) .service_box dt::before{
  height: 24px;
}

.price .cont02 .box .class_box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
}

.price .cont02 .box .class_box .flex_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 auto;
}

.price .cont02 .box .class_box .flex_box .service_box {
  width: 360px;
  display: flex;
  flex-direction: column;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}
  
.price .cont02 .box .button {
  position: relative;
  width: 320px;
  height: 50px;
  text-align: center;
  margin: 30px auto 20px;
}

.price .cont02 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}

.price .cont02 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont03 */
.price .cont03 {
  background: #fff;
  padding: 80px 0;
}

.price .cont03 h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #1d1d1d;
  margin-bottom: 30px;
}

.price .cont03 h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 15px;
}

.price .cont03 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 237px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
  z-index: -1;
}

.price .cont03 .readtext {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}

.price .cont03 .box {
  position: relative;
  width: 400px;
  border: 1px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 auto;
}

.price .cont03 .box .service_box{
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.price .cont03 .box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont03 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: var(--main-color);
  }

  .price .cont03 .box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
  }

.price .cont03 .box .class_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price .cont03 .box .class_box h3{
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  margin: 50px auto 0;
  line-height: 1.3;
}

.price .cont03 .box p{
  margin-top: 10px;
  text-align: left;
  line-height: 1.2;
}

 .price .cont03 .box .class_box .service_box {
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

 .price .cont03 .box .class_box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont03 .box .class_box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 27px;
  border-radius: 2px;
  background: var(--main-color);
}  

.price .cont03 .box .class_box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
}

.price .cont03 .box .class_box .flex_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price .cont03 .box .button {
  position: relative;
  width: 320px;
  height: 50px;
  text-align: center;
  margin: 30px auto 20px;
}
.price .cont03 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}

.price .cont03 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont04 */
.price .cont04 {
  background: var(--main-light-color);
  padding: 80px 0;
}

.price .cont04 h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #1d1d1d;
  margin-bottom: 30px;
}

.price .cont04 h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 15px;
}

.price .cont04 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 237px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
  z-index: -1;
}

.price .cont04 .readtext {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}

.price .cont04 .box {
  position: relative;
  width: 400px;
  border: 1px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 auto;
}

.price .cont04 .box .service_box{
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.price .cont04 .box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont04 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: var(--main-color);
}

.price .cont04 .box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
}

.price .cont04 .box p {
  margin-top: 10px;
  text-align: left;
  line-height: 1.2;
}

.price .cont04 .box .button {
  position: relative;
  width: 320px;
  height: 50px;
  text-align: center;
  margin: 30px auto 20px;
}

.price .cont04 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}

.price .cont04 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont05 */
.price .cont05 {
  background: #fff;
  padding: 80px 0;
}

.price .cont05 h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #1d1d1d;
  margin-bottom: 30px;
}

.price .cont05 h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 15px;
}

.price .cont05 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 237px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
  z-index: -1;
}

.price .cont05 .readtext {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}

.price .cont05 .box {
  position: relative;
  width: 400px;
  border: 1px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 auto;
}

.price .cont05 .box .service_box{
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.price .cont05 .box .service_box:first-of-type{
  margin-bottom: 15px;
}


.price .cont05 .box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont05 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: var(--main-color);
}

.price .cont05 .box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
}

.price .cont05 .box .class_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price .cont05 .box .class_box h3{
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  margin: 50px auto 0;
  line-height: 1.3;
}

.price .cont05 .box p{
  margin-top: 10px;
  text-align: left;
  line-height: 1.2;
}

.price .cont05 .box .class_box .flex_box .service_box {
  display: flex;
  flex-direction: column;
}

.price .cont05 .box .button {
  position: relative;
  width: 320px;
  height: 50px;
  text-align: center;
  margin: 30px auto 20px;
}

.price .cont05 .box .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}

.price .cont05 .box .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont06 */
.price .cont06 {
  background: var(--main-light-color);;
  padding: 80px 0;
}

.price .cont06 h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #1d1d1d;
  margin-bottom: 30px;
}

.price .cont06 h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 15px;
}

.price .cont06 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 237px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
  z-index: -1;
}

.price .cont06 .readtext {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}

.price .cont06 .box {
  position: relative;
  width: 400px;
  border: 1px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 auto;
}

.price .cont06 .box .service_box{
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.price .cont06 .box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont06 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: var(--main-color);
}

.price .cont06 .box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
}

.price .cont06 .box p {
  margin-top: 10px;
  text-align: left;
  line-height: 1.2;
}

.price .cont06 .box .button {
  position: relative;
  width: 320px;
  height: 50px;
  text-align: center;
  margin: 30px auto 20px;
}

.price .cont06 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}

.price .cont06  .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont07 */
.price .cont07 {
  background: #fff;
  padding: 80px 0;
}

.price .cont07 h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #1d1d1d;
  margin-bottom: 30px;
}

.price .cont07 h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 15px;
}

.price .cont07 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 237px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
  z-index: -1;
}

.price .cont07 .readtext {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}

.price .cont07 .box {
  position: relative;
  width: 400px;
  border: 1px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 auto;
}

.price .cont07 .box .service_box{
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.price .cont07 .box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont07 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: var(--main-color);
}

.price .cont07 .box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
}

.price .cont07 .box p {
  margin-top: 10px;
  text-align: left;
  line-height: 1.2;
}

.price .cont07 .box .button {
  position: relative;
  width: 320px;
  height: 50px;
  text-align: center;
  margin: 30px auto 20px;
}

.price .cont07 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}

.price .cont07 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont08 */
.price .cont08 {
  background: var(--main-light-color);
  padding: 80px 0;
}

.price .cont08 h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #1d1d1d;
  margin-bottom: 30px;
}

.price .cont08 h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 15px;
}

.price .cont08 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 237px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
  z-index: -1;
}

.price .cont08 .readtext {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}

.price .cont08 .box {
  position: relative;
  width: 400px;
  border: 1px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 auto;
}

.price .cont08 .box .service_box{
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.price .cont08 .box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont08 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: var(--main-color);
}
.price .cont08 .box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
}

.price .cont08 .box .class_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price .cont08 .box .class_box h3{
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  margin: 50px auto 0;
  line-height: 1.3;
}

.price .cont08 .box p{
  margin-top: 10px;
  text-align: left;
  line-height: 1.2;
}

.price .cont08 .box .class_box .service_box {
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.price .cont08 .box .class_box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont08 .box .class_box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 27px;
  border-radius: 2px;
  background: var(--main-color);
}
  .price .cont08 .box .class_box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
}

.price .cont08 .box .class_box .flex_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price .cont08 .box .button {
  position: relative;
  width: 320px;
  height: 50px;
  text-align: center;
  margin: 30px auto 20px;
}

.price .cont08 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}

.price .cont08 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont07 */
.price .cont09 {
  background: #fff;
  padding: 80px 0;
}

.price .cont09 h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #1d1d1d;
  margin-bottom: 30px;
}

.price .cont09 h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 15px;
}

.price .cont09 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 237px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
  z-index: -1;
}

.price .cont09 .readtext {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}

.price .cont09 .box {
  position: relative;
  width: 400px;
  border: 1px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 auto;
}

.price .cont09 .box .service_box{
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.price .cont09 .box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont09 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: var(--main-color);
}

.price .cont09 .box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
}

.price .cont09 .box p {
  margin-top: 10px;
  text-align: left;
  line-height: 1.2;
}

.price .cont09 .box .button {
  position: relative;
  width: 320px;
  height: 50px;
  text-align: center;
  margin: 30px auto 20px;
}

.price .cont09 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}

.price .cont09 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont10 */
.price .cont10 {
  background: var(--main-light-color);
  padding: 80px 0;
}

.price .cont10 h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #1d1d1d;
  margin-bottom: 30px;
}

.price .cont10 h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 15px;
}

.price .cont10 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 237px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
  z-index: -1;
}

.price .cont10 .readtext {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}

.price .cont10 .box {
  position: relative;
  width: 400px;
  border: 1px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 auto;
}

.price .cont10 .box .service_box{
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.price .cont10 .box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont10 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: var(--main-color);
}

.price .cont10 .box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
}

.price .cont10 .box .class_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price .cont10 .box .class_box h3{
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  margin: 50px auto 0;
  line-height: 1.3;
}

.price .cont10 .box p{
  margin-top: 10px;
  text-align: left;
  line-height: 1.2;
}

.price .cont10 .box .class_box .service_box {
  display: flex;
  flex-direction: column;
}

.price .cont10 .box .class_box .flex_box .service_box:nth-of-type(3) {
  gap: 10px;
}

.price .cont10 .box .class_box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont10 .box .class_box .service_box dt span{
  font-weight: bold;
}

.price .cont10 .box .class_box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 27px;
  border-radius: 2px;
  background: var(--main-color);
}

.price .cont10 .box .class_box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1; 
} 

.price .cont10 .box .class_box .flex_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}



.price .cont10 .box .button {
  position: relative;
  width: 320px;
  height: 50px;
  text-align: center;
  margin: 30px auto 20px;
}

.price .cont10 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}

.price .cont10 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont11 */
.price .cont11 {
  background: #fff;
  padding: 80px 0;
}

.price .cont11 h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #1d1d1d;
  margin-bottom: 30px;
}

.price .cont11 h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 15px;
}

.price .cont11 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 237px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
  z-index: -1;
}

.price .cont11 .readtext {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}

.price .cont11 .box {
  position: relative;
  width: 400px;
  border: 1px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 auto;
}

.price .cont11 .box .service_box{
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.price .cont11 .box .service_box:first-of-type{
 gap: 5px;
}

.price .cont11 .box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont11 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: var(--main-color);
}

.price .cont11 .box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
}

.price .cont11 .box .class_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price .cont11 .box .class_box h3{
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  margin: 50px auto 0;
  line-height: 1.3;
}

.price .cont11 .box p{
  margin-top: 10px;
  text-align: left;
  line-height: 1.2;
}

.price .cont11 .box .class_box .service_box {
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.price .cont11 .box .class_box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont11 .box .class_box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 27px;
  border-radius: 2px;
  background: var(--main-color);
 }

.price .cont11 .box .class_box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
}

.price .cont11 .box .class_box .flex_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price .cont11 .box .class_box .flex_box .service_box {
  display: flex;
  flex-direction: column;
}


.price .cont11 .box .button {
  position: relative;
  width: 320px;
  height: 50px;
  text-align: center;
  margin: 30px auto 20px;
}

.price .cont11 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}

.price .cont11 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont12 */
.price .cont12 {
  background: var(--main-light-color);
  padding: 80px 0;
}

.price .cont12 h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #1d1d1d;
  margin-bottom: 30px;
}

.price .cont12 h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 15px;
}

.price .cont12 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 237px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
  z-index: -1;
}

.price .cont12 .readtext {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}

.price .cont12 .box {
  position: relative;
  width: 400px;
  border: 1px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 auto;
}

.price .cont12 .box .service_box{
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.price .cont12 .box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont12 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: var(--main-color);
}

.price .cont12 .box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
}

.price .cont12 .box .class_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price .cont12 .box .class_box h3{
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  margin: 50px auto 0;
  line-height: 1.3;
}

.price .cont12 .box p{
  margin-top: 10px;
  text-align: left;
  line-height: 1.1;
}

.price .cont12 .box .class_box .service_box {
  display: flex;
  flex-direction: column;
}

.price .cont12 .box .class_box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont12 .box .class_box .service_box dt span{
 font-weight: bold;
}

.price .cont12 .box .class_box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 27px;
  border-radius: 2px;
  background: var(--main-color);
}
.price .cont12 .box .class_box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1; 
}

.price .cont12 .box .class_box .flex_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price .cont12 .box .class_box .flex_box .service_box:nth-of-type(2) {
  gap: 5px;
}

.price .cont12 .box .button {
  position: relative;
  width: 320px;
  height: 50px;
  text-align: center;
  margin: 30px auto 20px;
}

.price .cont12 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}

.price .cont12 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont13 */
.price .cont13 {
  background: #fff;
  padding: 80px 0;
}

.price .cont13 h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #1d1d1d;
  margin-bottom: 30px;
}

.price .cont13 h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 15px;
}

.price .cont13 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 237px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
  z-index: -1;
}

.price .cont13 .readtext {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}

.price .cont13 .box {
  position: relative;
  width: 400px;
  border: 1px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 auto;
}

.price .cont13 .box .service_box{
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.price .cont13 .box .service_box:first-of-type {
  margin-bottom: 15px;
}

.price .cont13 .box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont13 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 45px;
  border-radius: 2px;
  background: var(--main-color);
}

.price .cont13 .box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
  margin-top: 7px;
}

.price .cont13 .box .tax_text01{
  text-align: left;
  margin-top: 15px;
}

.price .cont13 .box .button {
  position: relative;
  width: 320px;
  height: 50px;
  text-align: center;
  margin: 30px auto 20px;
}

.price .cont13 .box .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}

.price .cont13 .box .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont14 */
.price .cont14 {
  background: var(--main-light-color);
  padding: 80px 0;
}

.price .cont14 h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #1d1d1d;
  margin-bottom: 30px;
}

.price .cont14 h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 15px;
}

.price .cont14 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/price_text01.png) center center / cover no-repeat;
  width: 237px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
  z-index: -1;
}

.price .cont14 .readtext {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}

.price .cont14 .box {
  position: relative;
  width: 400px;
  border: 1px solid var(--main-color);
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 auto;
}

.price .cont14 .box .service_box{
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.price .cont14 .box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont14 .box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 44px;
  border-radius: 2px;
  background: var(--main-color);
}

.price .cont14 .box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
}

.price .cont14 .box .class_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price .cont14 .box .class_box h3{
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  margin: 10px auto 0;
}

.price .cont14 .box p{
margin-top: 10px;
text-align: left;
line-height: 1.1;
}

.price .cont14 .box .class_box .service_box {
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.price .cont14 .box .class_box .service_box dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.price .cont14 .box .class_box .service_box dt::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 44px;
  border-radius: 2px;
  background: var(--main-color);
}

.price .cont14 .box .class_box:first-of-type .service_box dt::before{
  height: 24px;
}

.price .cont14 .box .class_box .service_box dd {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 10px;
  color: #06aa5f;
  line-height: 1;
}

.price .cont14 .box .class_box .flex_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 auto;
}

.price .cont14 .box .class_box .flex_box .service_box {
  width: 360px;
  display: flex;
  flex-direction: column;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}


.price .cont14 .box .button {
  position: relative;
  width: 320px;
  height: 50px;
  text-align: center;
  margin: 30px auto 20px;
}

.price .cont14 .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}

.price .cont14 .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}


.price .side_service {
  display: none;
}

.yonmaruyon .cont01,
.yonichimaru .cont01{
	padding: 50px 0 80px;
	text-align: center;
}
.yonmaruyon .cont01 h2,
.yonichimaru .cont01 h2{
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: var(--main-color);
}
.yonmaruyon .cont01 .text,
.yonichimaru .cont01 .text{
	margin: 30px 0 0;
	font-weight: bold;
}
.yonmaruyon .cont01 .button ,
.yonichimaru .cont01 .button {
	margin-top: 40px;
}
.yonmaruyon .cont01 .button a,
.yonichimaru .cont01 .button a{
	width: 280px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
}


/* faq
------------------------------------------------------------------------*/
.faq .cont01,
.faq .cont02,
.faq .cont03 {
	box-sizing: border-box;
	margin: 70px 30px 0;
}
.faq .cont03 {
	margin: 70px 30px;
}
.faq .cont01 h2,
.faq .cont02 h2,
.faq .cont03 h2 {
	position: relative;
	font-size: 18px;
	font-weight: bold;
	color: #082a4a;
	padding-left: 55px;
	padding-bottom: 20px;
	line-height: 1.38;
}
.faq .cont01 h2:before,
.faq .cont02 h2:before,
.faq .cont03 h2:before {
	position: absolute;
	content: "";
	left: 0;
	top: -3px;
	width: 40px;
	height: 27px;
	background: url(img/key_deco01.png) center / contain no-repeat;
}
.faq .cont01 .box,
.faq .cont02 .box,
.faq .cont03 .box {
	padding: 30px 30px 30px 27px;
	border-top: 1px solid var(--main-color);
	position: relative;
	cursor: pointer;
}
.faq .cont01 .box:first-of-type,
.faq .cont02 .box:first-of-type,
.faq .cont03 .box:first-of-type {
	border-top: 2px solid var(--main-color);
}
.faq .cont01 .box:last-of-type,
.faq .cont02 .box:last-of-type,
.faq .cont03 .box:last-of-type {
	border-bottom: 1px solid var(--main-color);
}
.faq .cont01 .box span,
.faq .cont02 .box span,
.faq .cont03 .box span {
	position: absolute;
	top: 35px;
	right: 10px;
	width: 19px;
	height: 19px;
	background: var(--main-color);
	border-radius: 50%;
	transition: all .3s;
}
.faq .cont01 .box.active span,
.faq .cont02 .box.active span,
.faq .cont03 .box.active span {
	background: #bbbbbb;
	transition: all .3s;
}
.faq .cont01 .box span::before,
.faq .cont02 .box span::before,
.faq .cont03 .box span::before {
	content: "";
	width: 8px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq .cont01 .box span::after,
.faq .cont02 .box span::after,
.faq .cont03 .box span::after {
	content: "";
	width: 2px;
	height: 8px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	transition: all .3s;
}
.faq .cont01 .box.active span::after,
.faq .cont02 .box.active span::after,
.faq .cont03 .box.active span::after {
	opacity: 0;
	transition: all .3s;
}
.faq .cont01 .box p,
.faq .cont02 .box p,
.faq .cont03 .box p {
	position: relative;
}
.faq .cont01 .box .qus::before,
.faq .cont02 .box .qus::before,
.faq .cont03 .box .qus::before {
	content: 'Q';
	position: absolute;
	top: -2px;
	left: -20px;
	font-size: 18px;
	font-weight: bold;
	color: var(--main-color);
}
.faq .cont01 .box .qus,
.faq .cont02 .box .qus,
.faq .cont03 .box .qus {
	font-size: 16px;
	line-height: 1.6;
	font-weight: bold;
}
.faq .cont01 .box.active .qus,
.faq .cont02 .box.active .qus,
.faq .cont03 .box.active .qus {
	color: #bbbbbb;
}
.faq .cont01 .box .ans,
.faq .cont02 .box .ans,
.faq .cont03 .box .ans {
	line-height: 2;
	padding-top: 15px;
	display: none;
}
.faq .cont02 .cancel-table {
	width: 100%;
	margin: 20px 0;
	border-collapse: collapse;
}
.faq .cont02  .cancel-table tr,
.faq .cont02  .cancel-table td {
	border: 1px solid #ddd;
	padding: 5px;
	font-size: 14px;
}
.faq .cont02  .cancel-table th {
	background: #f5f5f5;
}



/* company
------------------------------------------------------------------------*/
/* company 共通 */
.company .cont01 h2,
.company .cont02 h2,
.company .cont03 h2 {
	font-size: 22px;
	text-align: center;
	padding-bottom: 25px;
	font-weight: bold;
	position: relative;
}
.company .cont01 h2::before,
.company .cont02 h2::before,
.company .cont03 h2::before {
	content: '';
	font-size: 12px;
	font-weight: bold;
	color: var(--main-color);
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
}
.company .cont01 h2::before {
	content: "GREETING";
}
.company .cont02 h2::before {
	content: "OUTLINE";
}
.company .cont03 h2::before {
	content: "Specified Commercial Transaction Law";
}
.company table {
	width: 100%;
	text-align: left;
	margin: 40px auto 0;
	font-size: 14px;
}
.company table tr {
	border-top: 1px solid #fff;
	padding: 20px;
	display: block;
}
.company table tr:last-of-type {
	border-bottom: 1px solid #fff;
}
.company table th {
	display: block;
	font-weight: bold;
	margin-bottom: 10px;
}
.company table td {
	display: block;
}


/* cont01 */
.company .cont01 {
	margin: 60px auto;
	padding: 0 30px;
}
.company .cont01 .flex {
	margin-top: 20px;
}
.company .cont01 .flex .text_box {
	padding-top: 25px;
	line-height: 1.9;
}
.company .cont01 .flex .text_box h3 {
	font-size: 18px;
	padding-bottom: 12px;
}
.company .cont01 .flex .text_box .text02 {
	text-align: right;
	font-size: 18px;
	margin-top: 15px;
	font-weight: bold;
}
.company .cont01 .flex .text_box .text02 span {
	font-size: 14px;
	font-weight: bold;
}
.company .cont01 .flex .img img {
	width: 100%;
	border-radius: 10px;
}


/* cont02 */
.company .cont02 {
	margin: 60px auto 80px;
	padding: 60px 0 80px;
	background: var(--main-light-color);
}


/* cont03 */
.company .cont03 {
	/* margin: 60px auto; */
	margin: 80px auto 0;
	padding: 0 30px;
}
.company .cont03 table tr {
	border-top: 1px solid var(--main-color);
}
.company .cont03 table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}


/* flow ------------------------------------------------------------------------*/
/* key */
.flow .key .text01::after {
  background: url("img/flow_key_text.png");
  width: 282px;
  height: 74px;
}

.flow .cont01{
 padding: 80px 20px;
}

.flow .cont01 h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  color: #082a4a;
  white-space: nowrap;
}

.flow .cont01 h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 15px;
}

.flow .cont01 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/flow_text01.png) center center / cover no-repeat;
  width: 226px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
  z-index: -1;
}

.flow .cont01 p {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  margin-top: 35px;
}


/* cont02 */
.flow .cont02 .inner {
  position: relative;
  padding: 0;
}

.flow .cont02 .flow01,
.flow .cont02 .flow03,
.flow .cont02 .flow05 {
  background: #e9fbf3;
}

.flow .cont02 .flow_box {
  position: relative;
  padding: 70px 0;
}

.flow .cont02 .flow_box::before {
  position: absolute;
  content: "";
  width: 44px;
  height: 32px;
  left: 47px;
  top: 347px;
  transform: scale(0.9);
}

.flow .cont02 .flow_box:nth-of-type(1)::before {
  background: url("img/common_no01.png") no-repeat;
  width: 39px;
}

.flow .cont02 .flow_box:nth-of-type(2)::before {
  background: url("img/common_no02.png") no-repeat;
}

.flow .cont02 .flow_box:nth-of-type(3)::before {
  background: url("img/common_no03.png") no-repeat;
}

.flow .cont02 .flow_box:nth-of-type(4)::before {
  background: url("img/common_no04.png") no-repeat;
}

.flow .cont02 .flow_box:nth-of-type(5)::before {
  background: url("img/common_no05.png") no-repeat;
}

.flow .cont02 .flow_box h3::after {
  position: absolute;
  content: "";
  background: var(--main-color);
  width: 4px;
  height: 36px;
  border-radius: 2px;
  left: 33px;
  top: 274px;
}

.flow .cont02 .flow_box figure img {
      width: 100%;
}

.flow .cont02 .flow_box .text_box {
  padding: 260px 30px 0;
}

.flow .cont02 .flow_box figure {
  position: absolute;
  width: 380px;
  text-align: center;
  top: 0;
    left: 50%;
      transform: translatex(-50%);
    border-radius: 10px;
  border: 3px solid #51aa81;
  overflow: hidden;
}

.flow .cont02 .flow_box h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
  color: #082a4a;
  white-space: nowrap;
  width: fit-content;
  margin: 20px 0 10px 79px;
}

.flow .cont02 .flow_box .text01 {
  font-size: 16px;
  color: #082a4a;
  margin-top: 10px;
  line-height: 1.8;
}

.flow .cont02 .flow_box.flow01 .info_box {
  margin-top: 20px;
}

.flow .cont02 .flow_box.flow01 .info_box .tel {
  text-align: center;
}

.flow .cont02 .flow_box.flow01 .info_box .tel a {
  font-size: 16px;
  line-height: 1.8;
  font-weight: bold;
}

.flow .cont02 .flow_box.flow01 .info_box .btn-01 {
  width: 220px;
  height: 50px;
  margin: 15px auto 0;
}

.flow .cont02 .flow_box.flow01 .info_box .btn-01 a {
  display: block;
  background: #06c755 url(img/header_icon02.png) left 26px top 14px no-repeat;
  padding: 0px 0 0 58px;
  box-sizing: border-box;
  border: 1px solid #06c755;
  border-radius: 10px;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1.5px;
}

.flow .cont02 .flow_box.flow02 .inner {
  position: relative;
}



.flow .cont02 .flow_box.flow04>.inner:not(.flow_04_sub) {
  position: relative;
}


.flow .cont02 .flow_box .flow_04_sub {
  background: var(--main-light-color);
  border: 3px solid var(--main-color);
  border-radius: 10px;
}

.flow .cont02 .flow_box .flow_04_sub .box {
  position: relative;
  margin-top: 50px;

}

.flow .cont02 .flow_box .flow_04_sub .box:first-of-type {
  margin-top: 25px;
}

.flow .cont02 .flow_box .flow_04_sub .box:last-of-type {
  margin-bottom: 50px;
}

.flow .cont02 .flow_box .flow_04_sub .text_box02 {
  padding: 219px 30px 0;
}

.flow .cont02 .flow_box .flow_04_sub .box figure {
  width: 100%;
}

.flow .cont02 .flow_box .flow_04_sub.inner {
  padding-top: 0;
  margin: 60px 15px 0;
}

.flow .cont02 .flow_box .flow_04_sub h4 {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: var(--main-color);
  text-align: center;
  line-height: 40px;
  border-radius: 3px 3px 0 0;
}

.flow .cont02 .flow_box .flow_04_sub h4::before {
  content: "";
  position: absolute;
  background: url(img/common_deco05.png) no-repeat;
  width: 131px;
  height: 151px;
  right: -22px;
  top: -72px;
  transform: scale(0.6);
}

.flow .cont02 .flow_box .flow_04_sub .ttl01 {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  color: var(--main-color);
  padding-left: 18px;
  line-height: 25px;
  width: fit-content;
  margin-top: 20px;
}

.flow .cont02 .flow_box .flow_04_sub .ttl01::before {
  position: absolute;
  content: "";
  background: var(--main-color);
  width: 3px;
  height: 100%;
  border-radius: 4px;
  left: 0;
  top: 0;
}

.flow .cont02 .flow_box .flow_04_sub .ttl01 span {
  font-size: 14px;
  font-weight: bold;
}

.flow .cont02 .flow_box .flow_04_sub .box .text02 {
  font-size: 16px;
  position: relative;
  color: #082a4a;
  margin-top: 10px;
}

.flow .cont02 .flow_box .flow_04_sub .box .text02::before {
  position: absolute;
  content: "";
  width: 105%;
  height: 1px;
  background: #959595;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.flow .cont02 .flow_box .flow_04_sub .box:nth-of-type(2) .text02::before,
.flow .cont02 .flow_box .flow_04_sub .box:last-of-type .text02::before {
  display: none;
}

.flow .cont02 .flow_box .flow_04_sub .text_box03 {
  margin: 30px;
  text-align: center;
  box-sizing: border-box;
}

.flow .cont02 .flow_box .flow_04_sub .text_box03 .ttl02 {
  width: 344px;
  color: #ffff00;
  background: #51aa81;
  line-height: 1.3;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0;
  border: 1px solid #51aa81;
}

.flow .cont02 .flow_box .flow_04_sub .text_box03 .text03 {
  width: 344px;
  background: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 17px 0;
  border: 1px solid #51aa81;
  border-top: none;
  line-height: 1.78;
}

.flow .cont02 .flow_box .flow_04_sub .text_box03 .text03 span {
  font-weight: bold;
  color: #51aa81;
}

.flow .cont02 .flow_box .flow_04_sub .box figure {
  width: 340px;
}

  .flow .cont02 .flow_box .flow_04_sub .box figure img{
  width: 100%;
}

  .flow .cont02 .flow05.flow_box .inner .text_box {
    padding: 260px 30px 0;
}

.flow .cont02 .flow05.flow_box::before {
  position: absolute;
  content: "";
  width: 44px;
  height: 32px;
  left: 47px;
  transform: scale(0.9);
}

.flow .cont02 .flow05.flow_box h3::after {
  position: absolute;
  content: "";
  background: var(--main-color);
  width: 4px;
  height: 36px;
  border-radius: 2px;
  left: 33px;
  top: 274px;
}


/* reason
------------------------------------------------------------------------*/
/* reason ------------------------------------------------------------------------*/
/* key */
.reason .key .text01::after {
  background: url("img/reason_key_text.png");
  width: 404px;
  height: 74px;
}

/* cont01 */
.reason .cont01 {
  position: relative;
  margin: 100px auto 85px;
  padding: 0 15px;
}

.reason .cont01::before {
  position: absolute;
  content: "";
  background: url(img/common_deco08.png) center center / cover no-repeat;
  width: 295px;
  height: 210px;
  top: -138px;
  right: -44px;
  transform: scale(0.4);
}

.reason .cont01 h2 {
  font-size: 16px;
  font-weight: bold;
  padding-left: 25px;
  position: relative;
  line-height: 1.5;
}

.reason .cont01 h2::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 65px;
  background: var(--main-color);
  border-radius: 4px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.reason .cont01 h2 span {
  display: block;
  font-weight: bold;
  font-size: 26px;
  color: var(--main-color);
}

.reason .cont01 p {
  margin-top: 20px;
  line-height: 2.3;
  font-size: 14px;
}


/* cont02 */
.reason .cont02 {
  background: var(--main-light-color);
}

.reason .cont02 .inner {
  padding: 80px 15px 110px;
}

.reason .cont02 .reason_box {
  position: relative;
  display: flex;
  padding-top: 250px;
  margin-top: 30px;
}

.reason .cont02 .reason_box:nth-of-type(1) {
  margin-bottom: 321px;
  margin-top: 0;
}

.reason .cont02 .reason_box:nth-of-type(2) {
  margin-bottom: 322px;
}

.reason .cont02 .reason_box:nth-of-type(3) {
  margin-bottom: 294px;
}

.reason .cont02 .reason_box:nth-of-type(4) {
  margin-bottom: 322px;
}

.reason .cont02 .reason_box:nth-of-type(5) {
  margin-bottom: 294px;
}

.reason .cont02 .reason_box:nth-of-type(7) {
  margin-bottom: 356px;
}

.reason .cont02 .reason_box:nth-of-type(8) {
  margin-bottom: 241px;
}

.reason .cont02 .reason_box .text_box {
  border-radius: 10px 0 0 10px;
  background: #fff;
  position: absolute;
  z-index: 1;
  right: -15px;
  width: 390px;
  padding: 25px 20px;
  margin-top: -30px;
  text-align: justify;
}

.reason .cont02 .reason_box .text_box h3 {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: #082a4a;
  padding-left: 82px;
  line-height: 1.38;
}

.reason .cont02 .reason_box .text_box h3::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
}

.reason .cont02 .reason_box .text_box h3::after {
  position: absolute;
  content: "";
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 47px;
  border-radius: 2px;
  background: var(--main-color);
}

.reason .cont02 .reason_box .text_box:nth-of-type(1) h3::before {
  background: url(img/reason_no01.png);
  width: 43px;
  height: 48px;
}

.reason .cont02 .reason_box:nth-of-type(2) .text_box h3::before {
  background: url(img/reason_no02.png);
  width: 49px;
  height: 50px;
}

.reason .cont02 .reason_box:nth-of-type(3) .text_box h3::before {
  background: url(img/reason_no03.png);
  width: 49px;
  height: 50px;
}

.reason .cont02 .reason_box:nth-of-type(4) .text_box h3::before {
  background: url(img/reason_no04.png);
  width: 51px;
  height: 50px;
}

.reason .cont02 .reason_box:nth-of-type(5) .text_box h3::before {
  background: url(img/reason_no05.png);
  width: 49px;
  height: 50px;
}


.reason .cont02 .reason_box:nth-of-type(7) .text_box h3::before {
  background: url(img/reason_no07.png);
  width: 49px;
  height: 50px;
}

.reason .cont02 .reason_box:nth-of-type(8) .text_box h3::before {
  background: url(img/reason_no08.png);
  width: 50px;
  height: 50px;
}



.reason .cont02 .reason_box .text_box .text01 {
  font-size: 16px;
  margin-top: 15px;
  line-height: 1.8;
}

.reason .cont02 .reason_box figure {
  position: absolute;
  left: -20px;
  width: 420px;
  top: 0;
}

.reason .cont02 .reason_box figure img {
  border-radius: 0 10px 10px 0;
  border: 3px solid var(--main-color);
}

.reason .cont02 .reason06_box {
  background: #fff;
  border-radius: 10px;
  padding: 35px 15px;
}

.reason .cont02 .reason06_box h3 {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: #082a4a;
  padding-left: 82px;
  line-height: 1.38;
}

.reason .cont02 .reason06_box h3::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  background: url(img/reason_no06.png);
  width: 50px;
  height: 50px;
}

.reason .cont02 .reason06_box h3::after {
  position: absolute;
  content: "";
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 47px;
  border-radius: 2px;
  background: var(--main-color);
}


.reason .cont02 .reason06_box .text01 {
  margin-top: 16px;
}

.reason .cont02 .reason06_box .reason06_sub_box {
  border: 1px solid var(--main-color);
  border-radius: 5px;
  margin-top: 25px;
  padding: 50px 15px 45px;
  text-align: center;
}

.reason .cont02 .reason06_box .reason06_sub_box .text02 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  color: #082a4a;
}

.reason .cont02 .reason06_box .reason06_sub_box .text02 span {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 20px;
  z-index: 0;
}

.reason .cont02 .reason06_box .reason06_sub_box .text02 span::before {
  position: absolute;
  content: "";
  background: url(img/reason_text01.png) center center / cover no-repeat;
  width: 415px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
  z-index: -1;
}

.reason .cont02 .reason06_box .reason06_sub_box .text03 {
  font-size: 16px;
  margin-top: 15px;
}

.reason .cont02 .reason06_box .reason06_sub_box .img_box {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.reason .cont02 .reason06_box .reason06_sub_box .img_box .before,
.reason .cont02 .reason06_box .reason06_sub_box .img_box .after {
  position: relative;
}

.reason .cont02 .reason06_box .reason06_sub_box .img_box .before::before {
  position: absolute;
  content: "";
  background: url(img/common_deco11.png) center center / cover no-repeat;
  width: 16px;
  height: 30px;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  z-index: 1;
}

  .reason .cont02 .reason06_box .reason06_sub_box .img_box .before::after {
  position: absolute;
  content: "";
  background: url(img/before_text.png) no-repeat;
  width: 99px;
  height: 28px;
  top: 0;
  left: 0;
}

.reason .cont02 .reason06_box .reason06_sub_box .img_box .after::after {
  position: absolute;
  content: "";
  background: url(img/after_text.png) no-repeat;
  width: 99px;
  height: 28px;
  top: 0;
  left: 0;
}

.reason .cont02 .reason06_box .reason06_sub_box .button {
  position: relative;
  height: 50px;
  text-align: center;
  margin: 25px auto 0;
}

.reason .cont02 .reason06_box .reason06_sub_box .button a {
  display: block;
  background: var(--main-color);
  line-height: 50px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
  font-size: 13px;
  padding-right: 13px;
}

.reason .cont02 .reason06_box .reason06_sub_box .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 14px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

.reason .cont02 .reason06_box .reason06_sub_box .button a span {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

.reason .cont02 .reason_box:nth-of-type(7) .text_box .button {
  position: relative;
  width: 378px;
  height: 45px;
  text-align: center;
  margin: 15px 0 0;
}

.reason .cont02 .reason_box:nth-of-type(7) .text_box .button a {
  display: block;
  background: var(--main-color);
  line-height: 45px;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
}

.reason .cont02 .reason_box:nth-of-type(7) .text_box .button a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
}

/* cont03 */
.reason .cont03 {
  position: relative;
  padding: 80px 0 0;
}

.reason .cont03::before {
  position: absolute;
  content: "";
  background: url(img/housecleaning_deco01.png) center / cover no-repeat;
  width: 330px;
  height: 420px;
  top: -207px;
  left: -90px;
  transform: scale(0.3);
}

.reason .cont03::after {
  position: absolute;
  content: "";
  background: url(img/housecleaning_deco03.png) center center / cover no-repeat;
  right: -55px;
  top: -210px;
  width: 260px;
  height: 348px;
  transform: scale(0.4);
}

.reason .cont03 h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #082a4a;
}

.reason .cont03 h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 15px;
  white-space: nowrap;
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
}

.reason .cont03 h2 span::before {
  position: absolute;
  content: "";
  background: url(img/reason_text02.png) center center / cover no-repeat;
  width: 580px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 15px)) scale(0.65);
  z-index: -1;
}

.reason .cont03 .text01 {
  font-size: 16px;
  line-height: 2.2;
  margin: 40px auto 30px;
  padding: 0 20px;
}



.reason .cont03 .scroll {
  overflow-x: auto;
  margin-left: 15px;
}

.reason .cont03 table {
  border-collapse: separate;
  width: 660px;
}

.reason .cont03 table th {
  vertical-align: middle;
}

.reason .cont03 table thead th.eclean {
  position: relative;
  background: var(--main-color);
  color: #fff;
  border: 4px solid var(--main-color);
  border-radius: 5px 5px 0 0;
  font-weight: bold;
  font-size: 18px;
}

.reason .cont03 table thead th.eclean::before {
  position: absolute;
  content: "";
  background: url(img/common_deco02.png) center center / cover no-repeat;
  top: -36px;
  right: 8px;
  height: 103px;
  width: 89px;
  transform: scale(0.3);
}

.reason .cont03 table tbody th {
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #51aa81;
  border-bottom: 1px solid #b0b0b0;
  box-sizing: border-box;
  padding: 0 20px;
  width: 160px;
  height: 40px;
  line-height: 1.6;
}

.reason .cont03 table tbody tr td{
  padding: 10px 20px;
  line-height: 1.6;
}

.reason .cont03 table tbody tr td.eclean {
  border-bottom: 1px solid #b0b0b0;
  border-left: 4px solid var(--main-color);
  border-right: 4px solid var(--main-color);
  box-sizing: border-box;
  background: var(--main-light-color);
  font-size: 15px;
  font-weight: bold;
  color: var(--main-color);
  vertical-align: middle;
  width: 260px;
  line-height: 1.6;
}

.reason .cont03 table tbody tr:last-of-type td.eclean {
  border-bottom: 4px solid var(--main-color);
}

.reason .cont03 table thead th.other {
  vertical-align: bottom;
}

.reason .cont03 table thead th.other span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c4c4c4;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  width: 260px;
}

.reason .cont03 table tbody tr td.other {
  border-bottom: 1px solid #b0b0b0;
  background: #f7f7f7;
  box-sizing: border-box;
  vertical-align: middle;
  font-size: 14px;
  width: 260px;
}


/* cont04 */
.reason p.cont04 {
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  height: 280px;
  line-height: 2;
  padding: 50px 0;
  box-sizing: border-box;
}

.reason p.cont04 span {
  font-weight: bold;
  font-size: 16px;
  color: var(--main-color);
  line-height: 2;
}

.reason p.cont04::before {
  position: absolute;
  content: "";
  background: url(img/common_deco02.png) center center / cover no-repeat;
  top: -21px;
  right: -8px;
  width: 89px;
  height: 103px;
  transform: scale(0.5);
}

.reason p.cont04::after {
  position: absolute;
  content: "";
  background: url(img/common_bg_01.png);
  background-size: 88px auto;
  width: 440px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 280px;
  z-index: -1;
}

/* works-archive
------------------------------------------------------------------------*/
	/* cont01 */
	.works-archive .cont01 {
		margin-top: 25px;
	}

	.works-archive .cont01 .btn {
		line-height: 68px;
		margin: 15px auto 0;
		width: 390px;
	}

	.works-archive .cont01 .btn:first-of-type {
		margin-top: 80px;
	}

	.works-archive .cont01 .btn a {
		position: relative;
		display: block;
		color: #fff;
		font-weight: bold;
		font-size: 18px;
		text-align: center;
		border-radius: 10px;
    background: #0091a2;
	}

	.works-archive .cont01 .btn a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	/* .works-archive .cont01 .btn:nth-of-type(1) a {
		background: #065aaa;
	}

	.works-archive .cont01 .btn:nth-of-type(2) a {
		background: #0091a2;
	}

	.works-archive .cont01 .btn:nth-of-type(3) a {
		background: #348de2;
	} */

	.works-archive .contact_box {
		margin-top: 100px;
	}

	.works-archive .cont02 .box {
		margin: 80px auto 0;
		padding: 0 20px;
	}

	.works-archive .cont02 .item {
		width: 100%;
		position: relative;
		margin-top: 50px;
	}

	.works-archive .cont02 .box .item:first-of-type {
		margin-top: 60px;
	}

	.works-archive .cont02 h3 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: var(--main-color);
		line-height: 26px;
		height: 26px;
		padding-left: 10px;
		margin-top: 15px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.works-archive .cont02 h3:before {
		content: "";
		position: absolute;
		background: var(--main-color);
		width: 3px;
		height: 26px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.works-archive .cont02 .category_01,
	.works-archive .cont02 .category_02 {
		display: inline-block;
		line-height: 1;
		font-size: 14px;
		color: #fff;
		font-weight: bold;
		margin-top: 12px;
	}

	.works-archive .cont02 .category_01 {
		padding: 8px 14px 7px;
		background: #0091a2;
	}

	.works-archive .cont02 .category_02 {
		padding: 8px 22px 7px;
		background: #51aa81;
	}

	.works-archive .cont02 .text02 {
		font-size: 16px;
		margin-top: 8px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.works-archive .cont02 .box .item a {
		display: flex;
		flex-direction: column-reverse;
	}

	.works-archive .cont02 .box .img_box {
		display: flex;
	}

	.works-archive .cont02 .box .img_box figure {
		position: relative;
	}

	.works-archive .cont02 .box .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		z-index: 1;
	}

	.works-archive .cont02 .box .img_box figure img {
		width: 205px;
	}

	.works-archive .cont02 .box .img_box .before img {
		border: 1px solid var(--main-color);
	}
	.works-archive .cont02 .box .img_box .before::after {
		position: absolute;
		content: "";
		background: url("img/before_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.works-archive .cont02 .box .img_box .after img {
		border: 1px solid var(--main-color);
	}
	.works-archive .cont02 .box .img_box .after::after {
		position: absolute;
		content: "";
		background: url("img/after_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.works-archive .cont02 .p_button_box {
		display: flex;
		justify-content: center;
		gap: 0 15px;
		margin: 50px auto 0;
	}

	.works-archive .cont02 .p_button a {
		display: block;
		width: 40px;
		height: 40px;
		background: #fff;
		border-radius: 50%;
		color: var(--main-color);
		font-size: 16px;
		line-height: 36px;
		text-align: center;
		border: 2px solid var(--main-color);
		box-sizing: border-box;
	}

	.works-archive .cont02 .p_button.current {
		display: block;
		width: 40px;
		height: 40px;
		background: var(--main-color);
		border-radius: 50%;
		color: #fff;
		font-size: 16px;
		line-height: 36px;
		text-align: center;
		border: 2px solid var(--main-color);
		box-sizing: border-box;
		pointer-events: none;
	}



/* works-single ------------------------------------------------------------------------*/
/* key */
.works-single .key .text01::after {
  background: url(img/reason_key_text.png);
  width: 404px;
  height: 74px;
}

/* cont01 */

.works-single .cont01 {
  padding: 0 15px;
}

.works-single .cont01 h2 {
  position: relative;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.2;
  background: var(--main-light-color);
  color: var(--main-color);
  padding: 18px 0 18px 39px;
  border-radius: 5px;
  margin-top: 80px;
}

.works-single .cont01 h2::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 53px;
  background: var(--main-color);
  border-radius: 3px;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.works-single .cont01 .cate01,
.works-single .cont01 .cate02 {
  display: inline-block;
  line-height: 28px;
  color: #fff;
  font-weight: bold;
  margin-top: 30px;
  font-size: 14px;
}

.works-single .cont01 .cate01 {
  padding: 0 30px;
  background: #0091a2;
}

.works-single .cont01 .cate02 {
  padding: 0 25px;
  background: #51aa81;
  margin-left: 10px;
}

.works-single .cont01 dl {
  display: flex;
  flex-wrap: wrap;
  width: 407px;
  margin-top: 18px;
}

.works-single .cont01 dl dt {
  position: relative;
  font-weight: bold;
  color: var(--main-color);
  padding-left: 33px;
  width: 162px;
  box-sizing: border-box;
}

.works-single .cont01 dl dt::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}


.works-single .cont01 dl dt.day::before {
  background: url("img/works-single_deco01.png") no-repeat;
  left: 2px;
  width: 17px;
  height: 18px;
}

.works-single .cont01 dl dt.work::before {
  background: url("img/works-single_deco02.png") no-repeat;
  left: 2px;
  width: 16px;
  height: 20px;
}

.works-single .cont01 dl dt.time::before {
  background: url("img/works-single_deco03.png") no-repeat;
  left: 0;
  width: 20px;
  height: 19px;
}

.works-single .cont01 dl dt.type::before {
  background: url("img/works-single_deco04.png") no-repeat;
  left: 1px;
  width: 19px;
  height: 12px;
}

.works-single .cont01 dl dt.maker::before {
  background: url("img/works-single_deco05.png") no-repeat;
  left: 1px;
  width: 19px;
  height: 20px;
}


.works-single .cont01 dl dd {
  position: relative;
  font-weight: bold;
  padding-left: 15px;
  width: 240px;
  box-sizing: border-box;
}

.works-single .cont01 dl dd::before {
  position: absolute;
  content: ":";
  font-weight: bold;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.works-single .cont01 .text01 {
  margin-top: 25px;
}

.works-single .cont01 .img_box {
  display: flex;
  margin-top: 35px;
}

.works-single .cont01 .img_box .before {
  position: relative;
}

.works-single .cont01 .img_box .after {
  position: relative;
}

.works-single .cont01 .img_box .before::after {
  position: absolute;
  content: "";
  background: url("img/before_text.png") no-repeat;
  width: 99px;
  height: 28px;
  top: 0;
  left: 0;
  transform: scale(0.8);
  transform-origin: left top;
}

.works-single .cont01 .img_box .after::after {
  position: absolute;
  content: "";
  background: url("img/after_text.png") no-repeat;
  width: 99px;
  height: 28px;
  top: 0;
  left: 0;
  transform: scale(0.8);
  transform-origin: left top;
}

.works-single .cont01 .img_box .before::before {
  position: absolute;
  content: "";
  background: url(img/common_deco11.png) center center / cover no-repeat;
  width: 16px;
  height: 30px;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  transform-origin: center;
  z-index: 1;
}

.works-single .cont01 .h3_box h3 {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #082a4a;
  padding-left: 23px;
  line-height: 36px;
  margin: 36px 0 15px 0;
}

.works-single .cont01 .h3_box h3::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 36px;
  background: var(--main-color);
  border-radius: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.works-single .cont01 .h3_box h3::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #082a4a;
  bottom: -15px;
  left: 0;
}

.works-single .cont01 .h3_box .text02 {
  margin-top: 32px;
}

.works-single .cont01 .h3_box .h4_box h4 {
  position: relative;
  font-size: 22px;
  font-weight: bold;
  color: #082a4a;
  padding-left: 15px;
  line-height: 25px;
  margin: 38px 0 15px 0;
}

.works-single .cont01 .h3_box .h4_box h4::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 25px;
  background: var(--main-color);
  border-radius: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.works-single .cont01 .h3_box .h4_box .h5_box h5 {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: #082a4a;
  padding-left: 21px;
  line-height: 1;
  margin: 40px 0 20px 0;
}

.works-single .cont01 .h3_box .h4_box .h5_box h5::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: var(--main-color);
  border-radius: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}


/* cot02 */
.works-single .cont02 {
  margin-top: 50px;
  padding: 0 20px;
}

.works-single .cont02 .prev_box,
.works-single .cont02 .next_box {
  position: relative;
  border-radius: 8px;
  border: 2px solid var(--main-color);
  box-sizing: border-box;
  background: var(--main-light-color);
}

.works-single .cont02 .next_box {
  border: 2px solid #51aa81;
  margin-top: 25px;
}

.works-single .cont02 .prev_box a,
.works-single .cont02 .next_box a {
  position: relative;
}

.works-single .cont02 .prev_box a::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  background: url("img/prev_next_btn01.png") no-repeat;
  left: -17.5px;
  top: 160px;
}

.works-single .cont02 .next_box a::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  background: url("img/prev_next_btn01.png") no-repeat;
  transform: rotate(-180deg);
  right: -17.5px;
  top: 160px;
}

.works-single .cont02 h3 {
  line-height: 42px;
  background: var(--main-color);
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  border-radius: 5px 5px 0 0;
}

.works-single .cont02 .next_box h3 {
  background: #51aa81;
}

.works-single .cont02 .ttl01 {
  line-height: 1.2;
  font-size: 20px;
  color: #082a4a;
  font-weight: bold;
  margin: 18px 15px 0;
}

.works-single .cont02 .cate01,
.works-single .cont02 .cate02 {
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  line-height: 22px;
  display: inline-block;
  border-radius: 3px;
  margin-top: 10px;
}

.works-single .cont02 .cate01 {
  padding: 0 24px;
  background: #0091a2;
  margin-left: 15px;
}

.works-single .cont02 .cate02 {
  padding: 0 22px;
  margin-left: 5px;
  background: #51aa81;
}

.works-single .cont02 .date {
  display: inline-block;
  margin-left: 3px;
  font-size: 14px;
  line-height: 22px;
  margin-top: 10px;
}

.works-single .cont02 .img_box {
  display: flex;
  justify-content: center;
  margin: 15px 15px 25px;
}

/* cont03 */
.works-single .cont03 {
  padding: 0 15px;
}

.works-single .cont03 h2 {
  position: relative;
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  background: var(--main-light-color);
  color: var(--main-color);
  padding: 18px 0 18px 39px;
  border-radius: 5px;
  margin-top: 50px;
}

.works-single .cont03 h2::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 36px;
  background: var(--main-color);
  border-radius: 3px;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.works-single .cont03 .cate_box {
  margin-top: 25px;
}

.works-single .cont03 .cate_box .btn {
  line-height: 68px;
  margin-top: 15px;
}

.works-single .cont03 .cate_box .btn a {
  position: relative;
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  border-radius: 10px;
}

.works-single .cont03 .cate_box .btn a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 10px;
  transition: background-color 0.4s ease;
}

.works-single .cont03 .cate_box .btn:nth-of-type(1) a {
  background: var(--main-color);
}

.works-single .cont03 .cate_box .btn:nth-of-type(2) a {
  background: #0091a2;
}

.works-single .cont03 .cate_box .btn:nth-of-type(3) a {
  background: #51aa81;
}

/* contact
------------------------------------------------------------------------*/
/* cont01 */
.contact .cont01 {
	width: 100%;
	padding: 0 30px;
	box-sizing: border-box;
	margin: 70px auto 0;
}
.contact .cont01 .tel-box {
	padding: 30px 0;
	border-top: 1px solid var(--main-color);
	/* border-bottom: 1px solid var(--main-color); */
}
.contact .cont01 .line-box {
	padding: 30px 0;
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
}
.contact .cont01 h2{
	font-size: 16px;
}
.contact .cont01 .tel-box h2::before {
	content: '■';
	color: var(--main-color);
	padding-right: 5px;
}
.contact .cont01 .line-box h2::before {
	content: '■';
	color: #00b12b;
	padding-right: 5px;
}
.contact .cont01 .tel-box p {
	margin-top: 5px;
	line-height: 1.5;
}
.contact .cont01 .tel-box a {
	display: inline-block;
	font-size: 30px;
}
.contact .cont01 .line-box p {
	margin-top: 15px;
}
.contact .cont01 .line-box a {
	display: inline-block;
	color: #fff;
	font-size: 16px;
	line-height: 1;
	padding: 15px 30px 15px 70px;
	border-radius: 30px;
	background: url(img/contact-line_sp.png) no-repeat center left 30px #00b12b;
}


/* cont02 */
.contact .cont02 {
	margin: 30px auto 70px;
	padding: 0 30px;
}
.contact .cont02 h2{
	font-size: 16px;
}
.contact .cont02 h2::before {
	content: '■';
	color: var(--main-color);
	padding-right: 5px;
}
.contact .cont02 .lead {
	margin-top: 15px;
	font-size: 14px;
	line-height: 1.8;
}
.contact .cont02 .lead li:nth-of-type(n+2) {
	margin-top: 10px;
}
.contact .cont02 table{
	width:100%;
	margin: 20px auto 0;
	font-size: 14px;
}
.contact .cont02 table tr {
	display: block;
	padding: 20px 0;
	border-top: 1px solid var(--main-color);
}
.contact .cont02 table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}
.contact .cont02 table tr:first-of-type {
	border-top: none;
}
.contact .cont02 table th{
	display: block;
	text-align: left;
	font-size: 16px;
	font-weight: bold;
	position: relative;
	margin-bottom: 15px;
	padding-left: 30px;
}
.contact .cont02 table th:before{
	content: "";
	width: 2px;
	height: 20px;
	background-color: var(--main-color);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
}
.contact .cont02 table th span{
	color: #fff;
	background: var(--main-color);
	border-radius: 5px;
	padding: 7px 15px;
	font-size: 12px;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.contact .cont02 table td{
	display: block;
}
.contact .cont02 table td .radio-box {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
.contact .cont02 table td .radio-box span {
	display: flex;
	align-items: center;
	gap: 0 5px;
}
.contact .cont02 table td .radio-box span input {
	margin: 0 !important;
}
.contact .cont02 table td input[type="text"],
.contact .cont02 table td input[type="email"],
.contact .cont02 table td input[type="tel"],
.contact .cont02 table td select,
.contact .cont02 table td textarea{
	width:100% !important;
	height: 60px !important;
	font-size:16px;
	font: inherit;
	padding: 5px;
	box-sizing: border-box;
	padding: 20px;
	border: none !important;
	background: #e2f1ff;
	border-radius: 5px !important;
}
.contact .cont02 table .hope-tr .hope-title {
    margin-block: 10px;
	font-size: 18px;
	margin-left: 5px;
}
.contact .cont02 table .hope-tr .hope-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap	;
}
.contact .cont02 table .hope-tr .hope-row span {
	font-size: 16px;
}
.contact .cont02 table .hope-tr .hope-row .month,
.contact .cont02 table .hope-tr .hope-row .day {
	width: 90px;
	max-width: 100px;
	flex: 0 0 100px;
}
.contact .cont02 table .hope-tr .hope-row .time {
	max-width: 312px;
}
.contact .cont02 table td textarea{
	height: 250px !important;
}
.contact .cont02 tr.address-contact td {
	position: relative;
	padding-top: 30px;
}
.contact .cont02 tr.address-contact td span {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 14px;
}
.contact .cont02 tr.address-contact input:first-of-type {
	width: 150px !important;
	margin-right: 5px;
}
.contact .cont02 tr.address-contact input:nth-of-type(2) {
	width: 220px !important;
}
.contact .cont02 tr.address-contact input:last-of-type {
	margin-top: 10px !important;
}
.contact .cont02 .privacy_check{
	text-align: center;
	padding: 50px 0 20px;
	font-size: 16px;
}
.contact .cont02 .privacy_check a {
	text-decoration: underline;
}
.contact .cont02 .privacy_check div.mfp_err {
	text-align: center;
	background: url(img/mfp_error.gif) no-repeat top 7px left 30px;
}
.contact .cont02 .privacy_check input {
	width: 15px;
	height: 15px;
	border-radius: 3px;
	margin: 0 5px !important;
}
.contact .cont02 .privacy_check label {
	margin: 0 5px !important;
}
.contact .cont02 .button{
	text-align: center;
}
.contact .cont02 .button input[type="submit"] {
	font-family: var(--main-font) !important;
	width: 360px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
}




/* common
------------------------------------------------------------------------*/

/* key */

/* pankuzu */
.pankuzu {
  margin-top: 10px;
  line-height: 1.3;
}

.pankuzu .inner {
  padding: 0 20px;
}

.pankuzu ul li {
  display: inline-block;
  margin-right: 10px;
  color: var(--main-color);
  font-size: 12px;
  font-weight: bold;
  max-width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pankuzu ul li a {
  color: #333;
  font-size: 12px;
  font-weight: bold;
}

.pankuzu ul li:not(:last-of-type)::after {
  content: "-";
  margin-left: 10px;
  flex-shrink: 0;
}

.pankuzu ul li:last-of-type {
  margin-right: 0;
}



/* contact-box */
.contact_box {
  justify-content: center;
  width: 380px;
  margin: 80px auto 50px;
  background: #fff;
  border: 3px solid var(--main-color);
  border-radius: 18px;
  padding: 60px 30px 55px;
  box-sizing: border-box;
}

.contact_box h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #082a4a;
}

.contact_box h2 span {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #444;
  padding-bottom: 30px;
}

.contact_box h2 span::before {
  position: absolute;
  content: "";
  background: url(img/contact_text01.png) center center / cover no-repeat;
  width: 230px;
  height: 35px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 15px));
  z-index: -1;
}

.contact_box .text01 {
  text-align: center;
  margin-top: 30px;
}

.contact_box .info_box {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact_box .info_box .tel {
  text-align: center;
  margin-left: 10px;
}

.contact_box .info_box .tel {
  text-align: center;
  line-height: 1;
  width: 280px;
}

.contact_box .info_box .tel img {
  padding-bottom: 7px;
  width: 100%;
}

.contact_box .info_box .tel a {
  font-weight: bold;
}

.contact_box .info_box .btn-01 {
  position: relative;
  width: 260px;
  height: 50px;
  text-align: center;
}

.contact_box .info_box .btn-01 a {
  display: block;
  background: #06c755 url(img/header_icon02.png) left 52px top 17px no-repeat;
  padding-left: 58px;
  border: 1px solid #06c755;
  border-radius: 10px;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1.5px;
}

.contact_box .info_box .btn-01 {
  position: relative;
  width: 280px;
  height: 50px;
  text-align: center;
}

.contact_box .info_box .btn-01 a {
  display: block;
  background: #06c755 url(img/header_icon02.png) left 50px top 14px no-repeat;
  padding-left: 36px;
  border: 1px solid #06c755;
  border-radius: 10px;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1.5px;
}

.contact_box .info_box .btn-02 {
  position: relative;
  width: 280px;
  height: 50px;
  text-align: center;
}

.contact_box .info_box .btn-02 a {
  display: block;
  background: #00804d url(img/contact_mail_img02.png) left 52px top 17px no-repeat;
  padding-left: 36px;
  border: 1px solid #00804d;
  border-radius: 10px;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1.5px;
}

/*  other_sight */
.other_sight {
  padding: 50px 0 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
}

.other_sight figure {
  width: 380px;
  max-width: calc(100% - 30px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.other_sight figure img {
  display: block;
  width: 100%;
  height: auto;
}

.other_sight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(img/common_bg_01.png);
  z-index: -1;
}

/* footer */
footer {
  background: #249260;
  color: #fff;
  position: relative;
}

footer .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 27px;
  padding: 80px 20px 70px;
  position: relative;
}


footer .address_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer .address_box figure {
  text-align: center;
}

footer p.tel,
footer p.mail,
footer p.time {
  position: relative;
  font-weight: bold;
  padding-left: 26px;
  line-height: 2;
  font-size: 16px;
  width: fit-content;
  margin: 0;

}

footer p.tel {
  margin-top: 50px;
}

footer p.tel::before {
  position: absolute;
  content: "";
  background: url(img/contact_tel02.png) center center / cover no-repeat;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

footer p.mail::before {
  position: absolute;
  content: "";
  background: url(img/contact_mail_img02.png) center center / cover no-repeat;
  width: 16px;
  height: 13px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

footer p.time::before {
  position: absolute;
  content: "";
  background: url(img/contact_time02.png) center center / cover no-repeat;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

footer p.place {
  margin-top: 25px;
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 40px;
}

footer p.place:first-of-type {
  margin-top: 48px;
}
footer p.place .span01 {
  font-size: 12px;
  padding-left: 14px;
  margin-bottom: 0;
  line-height: 1.5;
}

footer p.place span {
  position: relative;
  font-weight: bold;
  display: block;
  font-size: 16px;
  line-height: 24px;
  padding-left: 14px;
  margin-bottom: 8px;
}

	footer p.place span:nth-of-type(2):before {
  content: "";
  position: absolute;
  background: #fff;
  width: 3px;
  height: 39px;
  left: 0;
  top: -18px;
  border-radius: 2px;
}

footer .sitemap_box .text01,
footer .area_box .text01,
footer .blog_box .text01 {
  position: relative;
  width: fit-content;
  padding: 0 10px;
  font-weight: bold;
  font-size: 18px;
  line-height: 2;
}

footer .sitemap_box .text01::before,
footer .area_box .text01::before,
footer .blog_box .text01::before {
  content: "[";
  position: absolute;
  left: 0;
  top: 0;
}

footer .sitemap_box .text01::after,
footer .area_box .text01::after,
footer .blog_box .text01::after {
  content: "]";
  position: absolute;
  right: 0;
  top: 0;
}

footer .sitemap_box {
  /* margin-top: 10px; */
}

footer .sitemap_box ul {
  list-style-type: disc;
  margin-left: 18px;
  margin-top: 10px;
}

footer .sitemap_box li a {
  color: #fff;
  font-size: 14px;
  line-height: 2.3;
  font-weight: bold;
  position: relative;
}

footer .area_box {
  /* margin-top: 55px; */
  line-height: 2.5;
  font-size: 14px;

  width: 152px;
}

footer .area_list {
  padding-right: 25px;
  /* max-height: calc(32px * 14); */
  overflow-y: scroll;

  height: 593px;
  overflow-y: auto;
  margin-top: 13px;
  line-height: 1.9;
}

footer .area_list ul {
  list-style-type: disc;
  /* padding-right: 21px; */
}

footer .inner .area_box ul::-webkit-scrollbar {
  width: 3px;
}

footer .inner .area_box ul::-webkit-scrollbar-track {
  background-color: transparent;
}

footer .inner .area_box ul::-webkit-scrollbar-thumb {
  background-color: #959595;
}

footer .area_list li a {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 2.71;
  position: relative;
}

footer .area_list>li {
  position: relative;
  padding-left: 18px;
  font-weight: bold;
}

footer .area_list>li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  left: 0;
  top: 12px;
}


footer .blog_box {
  margin-top: 50px;
  line-height: 3;
  font-size: 14px;
}

footer .blog_box .blog_list {
  max-height: calc(32px * 18.5);
  overflow-y: scroll;
  /* padding: 0 25px 0 18px; */
  padding-right: 21px;
  margin-top: 18px;
  list-style-type: disc;
  list-style-position: inside;
}

footer .blog_box .blog_list li {
  width: 327px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
}

footer .blog_box .blog_list li a {
  font-weight: bold;
  color: #fff;
}


footer ul::-webkit-scrollbar {
  width: 3px
}

footer ul::-webkit-scrollbar-track {
  background-color: transparent;
}

footer ul::-webkit-scrollbar-thumb {
  background-color: #fff;
}




/* footer .inner .blog_box{
  width: 360px;
}
footer .inner .blog_box ul{
  margin-top: 10px;
} */


/* footer .blog_box .blog_list li {
  width: 192px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
}

footer .inner .blog_box ul li a{
  color: #fff;
  font-weight: bold;
  width: 350px;
  font-size: 14px;
  line-height: 2.71;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  position: relative;
} */

footer .copy {
  margin-top: 65px;
  text-align: center;
  /* margin-bottom: 50px; */
  font-size: 12px;
  line-height: 1;
}


/* common
------------------------------------------------------------------------*/


/* pankuzu */
.pankuzu {
  margin-top: 10px;
  line-height: 1.3;
}

.pankuzu .inner {
  padding: 0 20px;
}

.pankuzu ul li {
  display: inline-block;
  margin-right: 10px;
  color: var(--main-color);
  font-size: 12px;
  max-width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pankuzu ul li a {
  color: #333;
  font-size: 12px;
}

.pankuzu ul li:not(:last-of-type)::after {
  content: ">";
  margin-left: 10px;
  flex-shrink: 0;
}

.pankuzu ul li:last-of-type {
  margin-right: 0;
}

/* 一覧ページのページャー */
.archive-pager {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 380px;
  margin: 70px auto;
}

.archive-pager .page-numbers {
  background: var(--main-color);
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-sizing: border-box;
}

.archive-pager .page-numbers.current {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  background: #fff;
}

.archive-pager .page-numbers.prev,
.archive-pager .page-numbers.next {
  background: var(--main-dark-color);
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-sizing: border-box;
  padding-top: 3px;
}

.archive-pager .page-numbers.next {
  padding-left: 3px;
}

.single-pager {
  width: 100%;
  margin: 60px auto;
}

.single-pager .prev-pager-box {
  margin: 0 10px 30px;
}

.single-pager .next-pager-box {
  margin: 0 10px;
}

.single-pager a {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  text-align: left;
  font-size: 14px;
  position: relative;
  justify-content: flex-end;
}

.single-pager .prev-pager-box a {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.single-pager .prev-pager-box a::before,
.single-pager .next-pager-box a::before {
  content: "";
  width: 25px;
  height: 25px;
  background: var(--main-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.single-pager .prev-pager-box a::before {
  left: -10px;
}

.single-pager .next-pager-box a::before {
  right: -10px;
}

.single-pager .prev-pager-box a::after,
.single-pager .next-pager-box a::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.single-pager .prev-pager-box a::after {
  border-right: 6px solid #fff;
  left: -2px;
}

.single-pager .next-pager-box a::after {
  border-left: 6px solid #fff;
  right: -2px;
}

.single-pager .prev-pager-box a .text-box {
  padding-left: 20px;
}

.single-pager .next-pager-box a .text-box {
  padding-right: 20px;
}

.single-pager a h2 {
  line-height: 1.5;
  margin-bottom: 5px;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.single-pager a .img {
  flex-shrink: 0;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
}

.single-pager a .img img {
  width: 150px;
  border-radius: 5px;
}

  /* ここから各下層ページ
------------------------------------------------------------------------*/
  /* key */



  /*blog 共通項目
--------------------------------------------------------------------------*/
  .blog .flex {
    margin: 70px auto;
  }

  .blog .flex .side .side_box01,
  .blog .flex .side .side_box02,
  .blog .flex .side .side_box03 {
    margin: 70px 0;
  }

  .blog .flex .side .cont a {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
    margin-top: 20px;
  }

  .blog .flex .side h2 {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--main-color);
    position: relative;
  }

  .blog .flex .side h2::before {
    content: "";
    color: var(--main-color);
    font-size: 14px;
    position: absolute;
    top: 7px;
    left: 100px;
  }

  .blog .flex .side .side_box01 h2::before {
    content: "Popular Articles";
  }

  .blog .flex .side .side_box02 h2::before {
    content: "New Articles";
  }

  .blog .flex .side .side_box03 h2::before {
    content: "Category";
    left: 110px;
  }

  .blog .flex .side .cont .text_box {
    padding-left: 15px;
    font-size: 14px;
  }

  .blog .flex .side .cont .text_box h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 10px;
  }

  .blog .flex .side .cont .img {
    width: 150px;
    flex-shrink: 0;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
  }

  .blog .flex .side .cont .img img {
    max-width: 100%;
    border-radius: 5px;
  }

  .blog .flex .side .side_box01 .cont .img {
    position: relative;
  }

  .blog .flex .side .side_box01 .cont .img::before {
    content: "";
    width: 25px;
    height: 25px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: var(--main-color);
    line-height: 25px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
  }

  .blog .flex .side .side_box01 .cont:nth-of-type(1) .img::before {
    content: "1";
    background: #f2cd44;
  }

  .blog .flex .side .side_box01 .cont:nth-of-type(2) .img::before {
    content: "2";
    background: #ababab;
  }

  .blog .flex .side .side_box01 .cont:nth-of-type(3) .img::before {
    content: "3";
    background: #bc6c25;
  }

  .blog .flex .side .side_box01 .cont:nth-of-type(4) .img::before {
    content: "4";
  }

  .blog .flex .side .side_box01 .cont:nth-of-type(5) .img::before {
    content: "5";
  }

  .blog .flex .side .side_box02 .cont .img {
    position: relative;
  }

  .blog .flex .side .side_box02 .cont .img::before {
    content: "new";
    width: 50px;
    height: 25px;
    line-height: 1;
    font-size: 14px;
    box-sizing: border-box;
    padding-top: 5px;
    color: #fff;
    background: var(--main-color);
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
  }

  .blog .flex .side .side_box03 ul {
    margin-top: 15px;
  }

  .blog .flex .side .side_box03 ul li {
    position: relative;
    padding-left: 32px;
  }

  .blog .flex .side .side_box03 ul li:nth-of-type(n + 2) {
    margin-top: 15px;
  }

  .blog .flex .side .side_box03 ul li::before {
    content: "";
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: url(img/category_icon.png) no-repeat top 7px left 7px var(--main-color);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  /* blog_archive
------------------------------------------------------------------------*/

  .blog_archive .cont01 .cont {
    width: 330px;
    margin: 0 auto 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--main-color);
  }

  .blog_archive .cont01 .cont a {
    display: flex;
    flex-direction: column-reverse;
  }

  .blog_archive .cont01 .cont h2 {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-weight: bold;
  }

  .blog_archive .cont01 .cont .text_box .cate_box .cate {
    font-size: 12px;
    line-height: 1;
    color: #fff;
    background: var(--main-color);
    border-radius: 5px;
    min-width: 95px;
    padding: 7px 15px;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    margin: 10px 0;
  }

  .blog_archive .cont01 .cont .text {
    margin-top: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .blog_archive .cont01 .cont .img {
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
  }

  .blog_archive .cont01 .cont .img img {
    background: var(--main-light-color);
    border-radius: 5px;
  }

  /* ブログ詳細 css */
  .blog_single .cont01 h1 {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--main-color);
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 25px;
    font-weight: bold;
    position: relative;
  }

  .blog_single .cont01 .cate_box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 20px;
  }

  .blog_single .cont01 .cate_box .cate {
    text-align: center;
  }

  .blog_single .cont01 .cate_box .cate a {
    color: #fff;
    text-decoration: none;
    display: block;
    line-height: 1;
    font-size: 12px;
    min-width: 100px;
    padding: 7px 15px;
    border-radius: 5px;
    background: var(--main-color);
  }

  .blog_single .cont01 .cate_box .date {
    font-size: 14px;
    line-height: 1;
    margin: 0;
    font-weight: bold;
  }



  /* thanks
------------------------------------------------------------------------*/
  .thanks .cont01 {
    /* padding: 50px 15px 70px; */
    padding: 70px 15px 0;
    text-align: center;
  }

  .thanks .cont01 h2 {
    text-align: center;
    font-size: 18px;
  }

  .thanks .cont01 .text {
    margin: 30px 0 0;
    font-weight: bold;
  }

  .thanks .cont01 .button {
    margin-top: 40px;
  }

  .thanks .cont01 .button a {
    width: 280px;
    border-radius: 60px;
    line-height: 1;
    padding: 20px 0;
    font-size: 16px;
    box-sizing: border-box;
    cursor: pointer;
    margin: auto;
    border: none;
    display: block;
    color: #fff;
    background: var(--main-color);
  }

  /* privacy
------------------------------------------------------------------------*/
  .privacy .cont01 {
    padding: 70px 30px 0;
  }

  .privacy .cont01 h2 {
    font-size: 24px;
    text-align: center;
  }

  .privacy .cont01 .text01 {
    margin-top: 20px;
    font-size: 14px;
    line-height: 2;
  }

  .privacy .cont01 .box {
    margin-top: 30px;
    padding-bottom: 25px;
    border-bottom: 1px dashed var(--main-color);
  }

  .privacy .cont01 .box:first-of-type {
    margin-top: 30px;
  }

  .privacy .cont01 .box:last-of-type {
    border-bottom: none;
  }

  .privacy .cont01 .box h3 {
    font-size: 18px;
  }

  .privacy .cont01 .box .text02 {
    line-height: 2;
    margin-top: 10px;
    font-size: 14px;
  }

  .privacy .cont01 .box .text02 a {
    text-decoration: underline;
  }

  .privacy .cont01 .box ul {
    margin-top: 15px;
  }

  .privacy .cont01 .box ul li {
    font-size: 14px;
  }

  .privacy .cont01 .box ul li:nth-of-type(n + 2) {
    margin-top: 10px;
  }

  .privacy .cont01 .box .text03 {
    line-height: 2;
    display: inline-block;
    padding: 25px;
    background: var(--main-light-color);
    margin-top: 20px;
    font-size: 14px;
    /* margin-bottom: 40px; */
  }
}

/*SPの記述ここまで*/

/* swiper
----------------------------------------------------------*/

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical>.swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered>.swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

/* .swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
} */

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

/* .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
} */

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

/* .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
} */

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width,
      var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height,
      var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform,
    0.2s top;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform,
    0.2s left;
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform,
    0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode>.swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid>.swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column>.swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next+.swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/*mail form pro
----------------------------------------------------------*/
div#mfp_hidden {
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0px;
  margin: 0px;
}

div#mfp_hidden input {
  margin: 10px;
}

div.mfp_thanks {
  padding: 30px;
}

div.mfp_thanks p {
  line-height: 1.7em;
}

div.mfp_thanks ul.mfp_caution {
  margin: 0px;
  padding: 0px;
}

div.mfp_thanks ul.mfp_caution li {
  display: block;
  color: #c00;
  margin: 0px;
  padding: 5px 0px;
}

div#mfp_thanks {
  text-align: center;
  font-size: 18px;
  padding: 20px 0px;
}

div#mfp_thanks strong {
  color: #c00;
  font-size: 24px;
}

form#mailformpro dl dt {
  float: left;
  width: 160px;
  clear: both;
  font-size: 12px;
  padding: 10px 0px;
  text-align: right;
  border-top: solid 1px #ccc;
  margin: 0px;
}

form#mailformpro dl dd {
  border-top: solid 1px #ccc;
  margin: 0px;
  padding: 10px 5px 20px 170px;
  font-size: 12px;
  line-height: 1.5em;
  text-align: left;
}

form#mailformpro dl dd ul,
form#mailformpro dl dd ol {
  margin: 0px;
  padding: 0px;
}

form#mailformpro dl dd ul li,
form#mailformpro dl dd ol li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

form#mailformpro .must {
  display: block;
  background-color: #c00;
  border: solid 2px #c00;
  text-shadow: 0px 1px 2px #933;
  padding: 2px 5px;
  font-size: 10px;
  color: #fff;
  float: left;
  margin: 0px 5px;
  border-radius: 4px;
  box-shadow: 0px 0px 5px #ccc;
  background-image: url(img/mfp_header.png);
  background-size: 100% 100%;
}

form#mailformpro .optionally {
  display: block;
  background-color: #06c;
  border: solid 2px #06c;
  text-shadow: 0px 1px 2px #933;
  padding: 2px 5px;
  font-size: 10px;
  color: #fff;
  float: left;
  margin: 0px 5px;
  border-radius: 4px;
  box-shadow: 0px 0px 5px #ccc;
  background-image: url(img/mfp_header.png);
  background-size: 100% 100%;
}

form#mailformpro label {
  border-radius: 3px;
  margin: 3px;
  display: inline-block;
  white-space: nowrap;
}

table#mfp_confirm_table {
  border-spacing: 0px;
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
}

table#mfp_confirm_table tr.mfp_colored {
  background-color: #f6f7f9;
}

table#mfp_confirm_table tr.mfp_achroma {
  background-color: #fff;
}

table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td {
  text-align: left;
  border-top: solid 1px #ccc;
  padding: 9px;
}

table#mfp_confirm_table tr th {
  white-space: nowrap;
  width: 200px;
}

table#mfp_confirm_table tr td {
  line-height: 1.5em;
  word-break: break-all;
}

div#mfp_phase_confirm {
  clear: both;
}

div#mfp_phase_confirm h4 {
  font-size: 36px;
  padding: 10px 0px 0px 0px;
  text-align: center;
}

div#mfp_overlay {
  position: absolute;
  display: none;
  z-index: 10001;
}

div#mfp_overlay_inner {
  background-color: #fff;
  padding: 15px;
  margin: 0px auto;
  border-radius: 5px;
  box-shadow: 0px 0px 10px #000;
  width: 640px;
  max-width: 90%;
}

div#mfp_overlay_background {
  background-color: #000;
  position: absolute;
  display: none;
  z-index: 10001;
}

div#mfp_loading_screen {
  z-index: 20000;
  opacity: 0.8;
  display: none;
  background-color: #000;
  position: absolute;
}

div#mfp_loading {
  z-index: 20001;
  position: absolute;
  display: none;
  width: 40px;
  height: 40px;
  background-image: url(img/mfp_loading.gif);
}

.mfp_colored {
  background-color: #f6f7f9;
}

.mfp_achroma {
  background-color: #fff;
}

div.mfp_err {
  clear: both;
  display: none;
  text-align: left;
  margin: 5px 0px 0px 0px;
  padding: 3px 0px 5px 17px;
  color: #f00;
  font-size: 14px;
  line-height: normal;
  background-image: url(img/mfp_error.gif);
  background-repeat: no-repeat;
  background-position: 0px 7px;
}

.mfp_parent_error {
  border: solid 2px #f00;
}

form#mailformpro .problem {
  background-color: #fcc;
}

div#mfp_error {
  background-color: #fee;
  border: solid 1px #f00;
  padding: 10px;
  display: none;
}

div#mfp_error p {
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  text-align: center;
}

div#mfp_error p strong {
  font-size: 18px;
  color: #f00;
}

div#mfp_warning {
  background-color: #fee;
  border: solid 1px #f00;
  padding: 10px;
  display: none;
  border-radius: 5px;
}

div#mfp_warning p {
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  text-align: center;
}

div#mfp_warning p strong {
  font-size: 18px;
  color: #f00;
}

div#mfp_price {
  color: #c00;
  font-size: 36px;
  padding: 10px;
  font-weight: bolder;
}

div#mfp_price span {
  color: #666;
  font-size: 12px;
  font-weight: normal;
}

button.mfp_next,
button.mfp_prev {
  font-size: 18px;
  margin: 10px;
  padding: 5px 10px;
}

button.mfp_next {
  float: right;
}

button.mfp_prev {
  float: left;
}

ul#mfp_phase_stat {
  padding: 10px;
  text-align: center;
}

ul#mfp_phase_stat li {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  margin: 0px 5px;
  list-style: none;
  font-size: 14px;
}

ul#mfp_phase_stat li.mfp_phase_arrow {
  box-shadow: none;
  color: #999;
  padding: 8px 0px;
}

ul#mfp_phase_stat li.mfp_active_phase {
  box-shadow: 0px 1px 6px #000;
  background-image: url(img/mfp_header.png);
  background-size: 100% 100%;
  background-color: #0068b7;
  border: solid 2px #0068b7;
  font-weight: bolder;
  color: #fff;
  text-shadow: 0px 1px 3px #000;
}

ul#mfp_phase_stat li.mfp_inactive_phase {
  background-image: url(img/mfp_header.png);
  background-size: 100% 100%;
  background-color: #eee;
  border: solid 2px #eee;
  color: #999;
  box-shadow: 0px 1px 6px #ccc;
}

div#mfp_shopping_cart {
  border: solid 1px #ccc;
  margin: 0px;
  padding: 0px;
}

div#mfp_shopping_cart p {
  margin: 0px;
  text-align: center;
  padding: 20px 10px;
  font-size: 12px;
  background-color: #fee;
}

table.mfp_shoppingcart {
  border-spacing: 0px;
  border-collapse: collapse;
  width: 100%;
}

table.mfp_shoppingcart thead tr td {
  background-color: #eee;
  border-bottom: solid 1px #ccc;
  text-align: center;
  font-size: 12px;
  padding: 5px;
}

table.mfp_shoppingcart tbody tr th,
table.mfp_shoppingcart tbody tr td {
  font-size: 12px;
  padding: 5px;
  border-bottom: solid 1px #ccc;
}

table.mfp_shoppingcart tbody tr td select {
  display: block;
  margin: 0px auto;
  text-align: center;
}

table.mfp_shoppingcart tbody tr td select option {
  text-align: center;
}

table.mfp_shoppingcart tbody tr th span {
  display: block;
  font-weight: normal;
  font-size: 10px;
  color: #666;
  padding: 3px 0px;
}

table.mfp_shoppingcart tfoot tr td {
  padding: 5px;
  font-size: 16px;
  font-weight: bolder;
  color: #900;
}

td.msc_price {
  font-size: 12px;
  text-align: right;
}

div.mfp_buttons {
  clear: both;
  padding: 10px 0px;
  text-align: center;
}

div.mfp_buttons button#mfp_button_send {
  padding: 10px 100px;
  background-color: #3ac5ff;
  border: 1px solid #3ac5ff;
  color: #ffffff;
  cursor: pointer;
}

div.mfp_buttons button#mfp_button_cancel {
  padding: 10px 100px;
  border: 1px solid #3ac5ff;
  color: #3ac5ff;
  cursor: pointer;
  background: #fff;
}

.imagebutton {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  background: none;
}

.mfp_element_checkbox,
.mfp_element_radio {
  vertical-align: middle;
  margin: 0px 2px;
}

.mfp_element_file {
  font-size: 12px;
  display: inline-block;
  padding: 10px 10px;
  vertical-align: middle;
  border: solid 1px #ccc;
  border-radius: 3px;
  box-shadow: 0px 0px 5px #ccc inset;
  background: #eee;
}

.mfp_element_reset {
  color: #333;
}

button.mfp_next,
button.mfp_prev {
  font-size: 14px;
}

input#mfp_reserve_item,
input#mfp_reserve_date {
  display: none;
}

div#mfp_reserve_wrapper {
  position: relative;
  overflow: hidden;
  border: solid 1px #ccc;
}

div#mfp_reserve_inner {
  position: relative;
  padding: 0px 0px 0px 100px;
  overflow: auto;
}

div#mfp_reserve_wrapper table {
  border-spacing: 0px;
  border-collapse: collapse;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_label {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100px;
  background-color: #fee;
  z-index: 100;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value {
  padding: 0px 0px 0px 0px;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning {
  cursor: pointer;
}

@media screen and (min-width: 441px) {

  div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active:hover,
  div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning:hover {
    background-color: #e8eef9;
  }
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_current {
  background-color: #0068b7;
  color: #fff;
}

td.mfp_reserve_disabled {
  background-color: #ccc;
}

td.mfp_reserve_warning {
  background-color: #ffc;
}

div#mfp_reserve_wrapper table tr td,
div#mfp_reserve_wrapper table tr th {
  border: solid 1px #ccc;
  padding: 0px 5px;
  font-size: 12px;
  text-align: center;
  font-family: Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-weight: normal;
  height: 20px;
  text-align: left;
}

td.mfp_reserve_week_0 {
  color: #f00;
  background-color: #fee;
}

td.mfp_reserve_week_6 {
  color: #00f;
  background-color: #eef;
}

div.mfp_ok {
  border: solid 1px #111;
  display: inline-block;
  padding: 1px 10px;
  margin-top: 5px;
  color: #111;
  font-size: 12px;
  display: none;
}

div.prefcodeWrapper {
  position: relative;
}

div.prefcodeResult {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 5px;
  border: solid 1px #ccc;
  background-color: #fff;
  box-shadow: 0px 0px 5px #ccc;
  display: none;
}

div.prefcodeResult div {
  cursor: pointer;
}

@media screen and (min-width: 441px) {
  div.prefcodeResult div:hover {
    background-color: #c9ebfb;
  }
}

div.prefcodeResult div.prefcodeNext {
  background-color: #eee;
  text-align: center;
}

div.prefLoading {
  padding: 60px 100px;
  background: url(img/mfp_zip_loading.gif) no-repeat center center;
}

.hidefield {
  height: 0px;
  overflow: hidden;
}

.showfield {
  height: auto;
  overflow: visible;
}

div.mfp_attached_thumbnails {
  display: none;
  padding: 5px;
  margin: 5px auto;
  border: solid 1px #ccc;
  border-radius: 3px;
  box-shadow: 0px 0px 5px #ccc inset;
  background: #eee;
}

div.mfp_attached_thumbnails ul {
  margin: 0px;
  padding: 0px;
}

form#mailformpro dl dd div.mfp_attached_thumbnails ul li {
  display: inline-block;
  vertical-align: top;
  padding: 0px;
  border: solid 4px #fff;
  margin: 5px;
  box-shadow: 0px 2px 5px #999;
}

form#mailformpro dl dd div.mfp_attached_thumbnails ul li a {
  display: block;
  max-height: 100px;
  overflow: hidden;
}

div.mfp_attached_thumbnails ul li a img {
  display: block;
  max-width: 80px;
}

button.mfp_attached_reset {
  font-size: 14px;
}

div#mfp_OperationCheck div#mfp_OperationCheck_inner {
  display: none;
}

div#mfp_OperationCheck strong {
  background: #090;
  display: block;
  color: #222;
  text-align: center;
  border-radius: 3px;
}

div#mfp_OperationCheck * {
  padding: 0px;
  margin: 0px;
  font-size: 12px;
}

div#mfp_OperationCheck p {
  padding: 0px 5px;
  margin: 0px;
  font-size: 12px;
}

div#mfp_OperationCheck p a {
  color: #0c0;
  text-decoration: none;
}

@media screen and (min-width: 441px) {

  div#mfp_OperationCheck p a:hover,
  div#mfp_OperationCheck p button:hover {
    text-decoration: underline;
  }
}

div#mfp_OperationCheck p button {
  border: none;
  background: none;
  color: #0c0;
  cursor: pointer;
}

div#mfp_OperationCheck ul li,
div#mfp_OperationCheck ul li label,
div#mfp_OperationCheck ul li label input {
  line-height: 12px;
  font-size: 12px;
  list-style: none;
  vertical-align: middle;
}

div#mfp_OperationCheck ul li {
  padding: 5px 10px;
}

div#mfp_OperationCheck ul li {
  text-decoration: underline;
}

button#mfp_recorder_record,
button#mfp_recorder_clear,
button#mfp_recorder_restore {
  border-radius: 5px;
  padding: 5px 10px 5px 2em;
  border: solid 1px #ccc;
  background: gradient(linear, center top, center bottom, from(#eee), to(#ccc));
  background: -webkit-gradient(linear,
      center top,
      center bottom,
      from(#eee),
      to(#ccc));
  background: -moz-linear-gradient(top, #eee, #ccc);
  background: -ms-linear-gradient(top, #eee 0%, #ccc 100%);
  text-shadow: 0px 2px 0px #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  display: inline-block;
  margin: 5px auto;
}

button#mfp_recorder_record {
  background: url(img/mfp_record_disabled.png) no-repeat 5px center #eee;
  background-size: 24px 24px;
}

button#mfp_recorder_clear {
  background: url(img/mfp_record_remove.png) no-repeat 5px center #eee;
  background-size: 24px 24px;
}

button#mfp_recorder_restore {
  background: url(img/mfp_record_restore.png) no-repeat 5px center #eee;
  background-size: 24px 24px;
}

button.enabled#mfp_recorder_record,
button.enabled#mfp_recorder_clear,
button.enabled#mfp_recorder_restore {
  background: url(img/mfp_record_enabled.png) no-repeat 5px center #eee;
  background-size: 24px 24px;
}

div#mfp_recorder_wrap {
  border: solid 1px #ccc;
  padding: 10px;
  text-align: center;
  margin: 5px auto;
}

td.request_image {
  width: 100px;
}

td.request_image img {
  max-width: 100px;
}

span.mfp_tips {
  background-image: url(img/mfp_header.png);
  background-size: 100% 100%;
  background-color: #fcc;
  display: block;
  border-radius: 5px;
  padding: 10px;
  margin: 2px;
  box-shadow: 0px 2px 10px #999;
}

span.mfp_tips strong {
  color: #800040;
}

span.mfp_tips span {
  display: block;
  padding: 10px;
  color: #008080;
}

span.mfp_tips em {
  font-style: normal;
  color: #090;
  font-weight: bold;
}

@media screen and (max-width: 1240px) {
  div#mfp_overlay_background {
    width: 1240px !important;
    height: 100% !important;
  }

  div#mfp_overlay {
    width: 1240px !important;
  }
}

@media screen and (max-width: 800px) {
  form#mailformpro dl dt {
    float: none;
    width: auto;
    font-size: 12px;
    padding: 5px;
    text-align: left;
  }

  form#mailformpro dl dd {
    clear: both;
    border-top: none;
    padding: 5px 15px;
    font-size: 12px;
    line-height: 1.5em;
  }

  div.mfp_buttons button {
    font-size: 14px;
  }

  div#mfp_phase_confirm h4 {
    font-size: 18px;
  }

  ul#mfp_phase_stat {
    padding: 0px;
    text-align: left;
  }

  ul#mfp_phase_stat li {
    text-align: center;
    padding: 5px 0px;
    border-radius: 3px;
    margin: 5px;
    list-style: none;
    font-size: 14px;
    width: 28%;
  }

  ul#mfp_phase_stat li.mfp_phase_arrow {
    bos-shadow: none;
    display: none;
  }

  table#mfp_confirm_table tr th {
    white-space: nowrap;
    width: 150px;
  }

  div#mfp_thanks {
    text-align: center;
    font-size: 18px;
    padding: 20px 0px;
  }

  div#mfp_thanks strong {
    color: #c00;
    font-size: 24px;
    display: block;
  }
}

@media screen and (max-width: 441px) {
  div#mfp_overlay_background {
    width: 440px !important;
    height: 100% !important;
  }

  div#mfp_overlay {
    width: 440px !important;
  }

  div#mfp_overlay_inner {
    width: 390px;
    max-width: none;
  }

  div.mfp_buttons button#mfp_button_send {
    padding: 10px 0;
    width: 300px;
    margin-bottom: 10px;
  }

  div.mfp_buttons button#mfp_button_cancel {
    padding: 9px 0;
    width: 300px;
    margin-right: 3px;
  }
}