html {font-size: 62.5%;}

@media (max-width:360px) {
  html {
    font-size: 59.5%;
  }
}

:root {
  --body-color:#3B3B3B;
  --normal-weight: 400;
  --extra-weight: 800;
  --accent-color: #66AA00;
  --font-orange-color: #FF7500;
  --font-brouwn-color: #522600;
}

body {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--body-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

.blank { height: 15px; }
.blank2 { height: 30px; }
.blank3 { height: 45px; }
.blank4 { height: 60px; }
.blank6 { height: 90px; }
.blank8 { height: 120px; }
.blank10 { height: 150px; }
.blank12 { height: 180px; }

@media (max-width:575px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width:576px) and (max-width:767px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .hidden-lg {
    display: none !important;
  }
}

@media (min-width:1200px) {
  .hidden-xl {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .visible-xs {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .visible-xs, .visible-sm {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .visible-xs, .visible-sm, .visible-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .visible-xs, .visible-sm, .visible-md, .visible-lg {
    display: none !important;
  }
}

.p1 {
  padding-top: 0.1px;
}


.container {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    width: 570px;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .container {
    width: 750px;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .container {
    width: 990px;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
    max-width: 100%;
  }
}

.row {
  margin-left: 15px;
  margin-right: 15px;
}


@media (max-width:767px) {
  .row-with-margin-sm {
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (max-width:575px) {
  .row-with-margin-xs {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.mw {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.w580 {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.flex_full{
 display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
-webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: center;
margin: 0px auto 10px auto;
}
.flex_full .the-box{
width: 80%;
}

@media (max-width:767px) {
.flex_full{
 display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex_full .the-box{
width: 100%;
margin-bottom: 70px;
}
}

.center {
  text-align: center;
}

.anker {
  display: inline-block;
  margin-top: -100px!important;
  padding-top: 100px!important;
  height: 0;
}

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

.bg-orange,
.bg-white {
  background-repeat: repeat;
  background-size: 50%;
}

.bg-orange {
  background-image: url(img_demo/bg-o.jpg);
}

.bg-white {
  background-image: url(img_demo/bg-w-6.jpg);
}

@media(max-width:767px) {
  .bg-orange,
  .bg-white {
    background-size: 100%;
  }
}


.pc_hd {
    display: none !important;
  }
.sp_hd {
    display: block !important;
  }


@media (max-width:575px) {
  .pc_hd {
    display: block !important;
  }
  .sp_hd {
    display: none !important;
  }
}



.section-title {
  color: var(--accent-color);
  font-weight: var(--extra-weight);
  text-align: center;
}

.medimeal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 9999;
  box-shadow: 0 5px 20px 0 rgb(0 0 0 / 16%);
}

.medimeal-header .the-logo {
  flex-basis: 20%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF9300;
  color: #fff;
  font-size: 1.8vw;
  font-weight: var(--extra-weight);
  height: 100%;
  padding: 15px;
}

.medimeal-header .the-links {
  flex-basis: 100%;
  flex-shrink: 1;
}

.medimeal-header .the-txt-wrapper {
  display: block;
  flex-basis: 100%;
  flex-shrink: 1;
  padding: 0 15px;
}

.medimeal-header .the-link-buttons {
  display: flex;
}

.medimeal-header .the-sub-copy {
  color: var(--accent-color);
  font-weight: var(--extra-weight);
}

.medimeal-header .the-button {
  height: 80px;
  display: flex;
  align-items: center;
}

.medimeal-header a {
  color: var(--font-brouwn-color);
  font-weight: var(--extra-weight);
  text-decoration: none;
  transition: 0.2s ease;
  position: relative;
}

.medimeal-header .the-button-wrapper {
  flex-basis: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.medimeal-header .the-border-button ,
.medimeal-header .the-color-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px 0 20px;
  border-radius: 24px;
  height: 50px;
  position: relative;
}

.medimeal-header .the-border-button::after ,
.medimeal-header .the-color-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 30%;
}

.medimeal-header .the-border-button {
  color: var(--font-orange-color);
  border: 3px solid var(--font-orange-color);
  margin-right: 15px;
}

.medimeal-header .the-border-button::after {
  background-image: url(img_demo/arrow-o.svg);
}

.medimeal-header .the-color-button {
  color: #fff;
  background:linear-gradient(#FF9300,#FF7500);
  line-height: 1.2;
}

.medimeal-header .the-color-button::after {
  background-image: url(img_demo/arrow-w.svg);
}

.medimeal-header-end {
  margin-top: 80px;
}

@media (min-width: 992px) {
  .medimeal-header .the-icon {
    display: none;
  }

  .medimeal-header .the-links {
    display: block!important;
  }

  .medimeal-header .the-link-wrapper {
    display: flex;
    align-items: center;
  }

  .medimeal-header .the-link:not(:last-child) {
    margin-right: 20px;
  }

  .medimeal-header a:hover {
    opacity: 0.5;
  }

  .medimeal-header .the-sub-links > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
  }

  .medimeal-header .the-sub-links a {
    margin: 0 20px;
    color: #fff;
  }

  .medimeal-header .the-close {
    display: none;
  }
}

@media (max-width: 991px) {
  .medimeal-header {
    height: 50px;
  }

  .medimeal-header .the-icon {
    height: 50px;
    flex-basis: 50px;
    flex-shrink: 0;
  }

  .medimeal-header .the-logo {
    flex-basis: 25%;
    flex-shrink: 0;
    font-size: 16px;
    padding: 0;
    line-height: 1.2;
    padding: 5px;
  }

  .medimeal-header .the-txt-wrapper {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .medimeal-header .the-links {
    display: none;
  }

  .medimeal-header .the-links {
    background-color: rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    margin-top: 50px;
  }

  .medimeal-header .the-link-wrapper > div {
    border-bottom: solid 1px #eee;
  }

  .medimeal-header .the-link {
    height: auto;
    display: block;
    position: static;
    height: auto;
  }
  
  .medimeal-header .the-link a {
  text-align: center;
  padding: 13px 0;
  }

  .medimeal-header .the-link > a {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 2.0rem;
    font-weight: var(--extra-weight);
  }

  .medimeal-header .the-link:nth-child(odd) > a {
    background-color: #FAF2E4;
  }

  .medimeal-header .the-link:nth-child(even) > a {
    background-color: #fff;
  }

  .medimeal-header .the-link > a::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
  }

  .medimeal-header .the-link > a:hover::after {
    opacity: 0.5;
  }

  .medimeal-header .the-close {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }

  .medimeal-header .the-sub-copy {
    font-size: 1.2rem;
    padding: 0 10px;
    flex-basis: 100%;
    flex-shrink: 1;
  }

  .medimeal-header .the-close div {
    height: 50px;
  }

  .medimeal-header .the-button-wrapper {
    display: none;
  }

  .medimeal-header-end {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .medimeal-header .the-logo {
    flex-basis: 40%;
  }
}

.firstview .the-main-visual {
  background-image: url("img_demo/main-img_202601.png");
  height: 700px;
  background-size: 1650px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .firstview .the-main-visual {
    background-image: none;
    height: auto;
  }
}

.firstview .the-main-visual .contact_btn{
width: 450px;
margin: 0px auto;
position: relative;
top: 510px;
}
.firstview .the-main-visual .contact_btn a{
width: 100%;
}
@media (max-width: 991px) {
.firstview .the-main-visual .contact_btn{
display: none;
}
}

.medimeal-diffrence {
  padding: 60px 0;
}

.medimeal-diffrence .the-ribbon {
  max-width: 860px;
  margin: 0 auto;
}

.medimeal-diffrence .the-box {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 10px 0 rgba(0,0,0,0.16);
  padding: 90px 30px 60px 30px;
  margin-top: -70px;
}

.medimeal-diffrence .the-title {
  font-size: 38px;
  margin-bottom: 30px;
}

.medimeal-diffrence .the-flex-wrapper {
  display: flex;
}

.medimeal-diffrence .the-item {
  flex-basis: 45%;
  flex-shrink: 1;
}

.medimeal-diffrence .the-item:not(:last-child) {
  margin-right: 10%;
}

.medimeal-diffrence .the-img {
  margin-bottom: 20px;
}

.medimeal-diffrence .the-img img {
  border-radius: 20px;
}

.medimeal-diffrence .the-sub-title {
  color: var(--font-brouwn-color);
  font-size: 2.0rem;
  font-weight: var(--extra-weight);
  text-align: center;
  margin-bottom: 15px;
}

.medimeal-diffrence .the-txt p:not(:last-child) {
  margin-bottom: 1em;
}

@media (max-width: 991px) {
  .medimeal-diffrence .the-title {
    font-size: 26px;
  }

  .medimeal-diffrence .the-box {
    padding: 90px 30px 40px 30px;
  }

  .medimeal-diffrence .the-item {
    flex-basis: 47.5%;
  }

  .medimeal-diffrence .the-item:not(:last-child) {
    margin-right: 5%;
  }

  .medimeal-diffrence .the-sub-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  .medimeal-diffrence {
    padding-top: 15px;
  }

  .medimeal-diffrence .the-box {
    margin-top: -50px;
    padding: 70px 15px 30px 15px;
  }

  .medimeal-diffrence .the-title {
    font-size: 2.0rem;
    text-align: justify;
  }

  .medimeal-diffrence .the-flex-wrapper {
    display: block;
  }

  .medimeal-diffrence .the-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 50px;
  }
}

.your-worries .the-box {
  background-color: #EBDDD2;
  border-radius: 20px;
  padding: 70px 30px 40px 30px;
}

.your-worries .the-title {
  font-size: 3.8rem;
  font-weight: var(--extra-weight);
  color: var(--font-brouwn-color);
  text-align: center;
  margin-bottom: 40px;
}

.your-worries .the-title span {
  font-size: 2.4rem;
  display: block;
}

.your-worries .the-arrow {
  max-width: 470px;
  margin: 0 auto;
}

.your-worries .the-solution {
  background-image: url(img_demo/medimeal-pro.png);
  background-size: 1630px;
  background-repeat: no-repeat;
  background-position: center;
  height: 830px;
  padding-top: 60px;
}

@media (max-width:991px) {
  .your-worries .the-solution {
    background-image: none;
    height: auto;
  }
}

@media (max-width:767px) {
  .your-worries .the-box {
    padding: 50px 0px 30px 0px;
  }

  .your-worries .the-title {
    font-size: 3.0rem;
    padding: 0 15px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .your-worries .the-title span {
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
}

@media (max-width:575px) {
  .your-worries .the-arrow {
    max-width: 320px;
  }
}

.medimeal-overview {
  padding-top: 100px;
}

.medimeal-overview .the-box {
  padding: 50px 30px;
  background: #fff;
  border-radius: 20px;
}

.medimeal-overview .the-box-title {
  font-size: 38px;
  margin-bottom: 30px;
}

.medimeal-overview .the-img-wrapper {
  display: flex;
}

.medimeal-overview .the-img {
  flex-basis: 33.3%;
  flex-shrink: 1;
}

.medimeal-overview .the-img:not(:last-child) {
  margin-right: 30px;
}

.medimeal-overview .the-asterisk {
  font-size: 1.0rem;
}

.medimeal-overview .the-wrapper {
  display: flex;
  align-items: flex-start;
}

.medimeal-overview .the-postage-box {
  flex-basis: 100%;
  flex-shrink: 1;
  margin-right: 10%;
}

.postage-box {
  max-width: 580px;
  margin: 0 auto;
}

.postage-head {
  background-color: #89684C;
  color: #fff;
  font-size: 2.0rem;
  font-weight: var(--extra-weight);
  border-radius: 20px 20px 0 0;
  border-top: 5px solid #89684C;
  text-align: center;
  padding: 10px 0;
}

.postage-head span {
  font-size: 2rem;
  margin-right: 10px;
}

.postage-body {
  background-color: #fff;
  display: flex;
  align-items: center;
  border-radius: 0 0 20px 20px ;
  border-bottom: 5px solid #89684C;
  border-right: 5px solid #89684C;
  border-left: 5px solid #89684C;
  padding: 15px 30px;
}

.postage-body .the-list {
  flex-basis: 100%;
  flex-shrink: 1;
  list-style: disc;
  padding-left: 10px;
  line-height: 2.0;
}

.postage-body .the-car {
  flex-basis: 100px;
  flex-shrink: 0;
}

.medimeal-overview .the-woman {
  flex-basis: 50%;
  flex-shrink: 1;
}

@media (max-width:1199px) {
  .medimeal-overview .the-postage-box {
    margin-right: 5%;
  }

  .medimeal-overview .the-woman {
    flex-basis: 40%;
    margin-top: 30px;
  }
}

@media (max-width:991px) {
  .medimeal-overview .the-wrapper {
    display: block;
  }

  .medimeal-overview .the-woman {
    max-width: 580px;
    margin: auto;
  }

  .medimeal-overview .the-postage-box {
    margin-bottom: 30px;
    margin-right: auto;
  }

  .postage-body {
    display: block;
    padding: 15px 30px;
  }

  .postage-body .the-car {
    max-width: 76px;
    margin-left: auto;
  }
}

@media (max-width:767px) {
  .medimeal-overview {
    padding-top: 50px;
  }

  .medimeal-overview .the-box {
    padding: 50px 15px 30px 15px;
  }

  .medimeal-overview .the-box-title {
    font-size: 3.0rem;
    line-height: 1.5;
  }

  .medimeal-overview .the-img-wrapper {
    display: block;
  }

  .medimeal-overview .the-img:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .medimeal-overview .the-asterisk {
    display: inline-block;
    line-height: 1.5;
    margin: 10px 0;
  }

  .medimeal-overview .the-postage-box {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .postage-head {
    font-size: 3.4rem;
  }

  .postage-head span {
    font-size: 2.4rem;
  }
}

.omakase_plan{
background: url("img_demo/pixta_46001319_L.jpg") rgba(154,154,154,0.50)  center center;
background-size: cover;
margin: 0px auto;
height: 400px;
display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
 -webkit-box-pack: center;
     -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
}
.omakase_plan img{
width: 800px;
}

@media (max-width:767px) {
.omakase_plan{
height: 200px;
}
.omakase_plan img{
width: 100%;
}
}

.feature {
  padding: 70px 0 100px 0;
}

.feature .the-title {
  max-width: 280px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.feature .the-item {
  display: flex;
  align-items: flex-start;
}

.feature .the-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.feature .the-item:not(:last-child) {
  margin-bottom: 100px;
}

.feature .the-img {
  flex-basis: calc(50% - 45px);
  flex-shrink: 0;
}

.feature .the-img img {
  border-radius: 20px;
}

.feature .the-item:nth-child(odd) .the-img {
  margin-right: 45px;
}

.feature .the-item:nth-child(even) .the-img {
  margin-left: 45px;
}

.feature .the-heading {
  display: flex;
  align-items: center;
}

.feature .the-num {
  font-size: 10.0rem;
  font-weight: var(--extra-weight);
  color: #F48527;
  opacity: 0.3;
  margin-right: 10px;
  flex-basis: 80px;
  flex-shrink: 0;
  text-align: center;
  line-height: 1.4;
}

.feature .the-sub-title {
  display: inline-block;
  color: var(--font-brouwn-color);
  font-weight: var(--extra-weight);
  font-size: 2.6rem;
}

.feature sup {
  font-size: 1.2rem;
  font-weight: var(--extra-weight);
  vertical-align: super;
}

.feature .the-asterisk {
  font-size: 1.2rem;
}

.feature .the-txt p:not(:last-child) {
  margin-bottom: 1em;
}

.feature .the-txt b {
  color: var(--font-orange-color);
  font-weight: var(--extra-weight);
}

.feature .the-txt .kome{
font-size: 12px;
}

.feature .the-medimeal {
  border-radius: 20px;
  background-color: #fff;
  border: 2px solid #FADCA0;
  padding: 15px 20px 30px 20px;
  max-width: 450px;
  font-size: 1.2rem;
}

.feature .the-logo {
  max-width: 190px;
  margin-bottom: 10px;
}

@media (max-width:767px) {
  .feature {
    padding: 30px 0 50px 0;
  }

  .feature .the-title {
    margin-bottom: 30px;
    max-width: 250px;
  }

  .feature .the-item {
    display: block;
  }

  .feature .the-item:not(:last-child) {
    margin-bottom: 50px;
  }

  .feature .the-item:nth-child(odd) .the-img {
    margin-right: 0;
  }

  .feature .the-item:nth-child(even) .the-img {
    margin-left: 0;
  }

  .feature .the-txt-wrapper {
    margin-bottom: 20px;
  }

  .feature .the-heading {
    margin: 10px 0 20px 0;
  }

  .feature .the-num {
    flex-basis: 60px;
    font-size: 80px;
    line-height: 1.0;
  }

  .feature .the-sub-title {
    font-size: 2.0rem;
  }

  .feature .the-logo {
    max-width: 170px;
    margin: 0 auto 10px auto;
  }
}

.effect {
  padding: 100px 0;
}

.effect .the-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 30px 50px 30px;
  position: relative;
}

.effect .section-title{
font-size: 30px;
margin: 0px auto 20px auto;
}

.effect .plan_icon{
background: #FF7501;
line-height: 140%;
text-align: center;
border-radius: 50%;
width: 200px;
height: 100px;
 display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
       align-content: center;
-webkit-box-pack: center;
     -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
color: #fff;
font-size: 20px;
font-weight: bold;
position: absolute;
top: -50px;
left: 38%;
margin: 10px auto 0 auto;
}
@media (max-width:767px) {
.effect .plan_icon{
width: 150px;
height: 80px;
top: -40px;
left: 30%;
}
}

.effect .the-title {
  font-size: 3.8rem;
  padding-bottom: 20px;
  border-bottom: 1px solid #707070;
  margin-bottom: 20px;
}

.effect .the-title span {
  font-size: 2.4rem;
  display: block;
}

.effect .the-effect {
  font-size: 2rem;
  font-weight: var(--extra-weight);
  line-height: 1.2;
  text-align: center;
}

.effect .the-caption {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.effect .the-orange {
  color: var(--font-orange-color);
}

.effect .the-num {
  font-size: 5.0rem;
}

.effect .the-img {
  margin-bottom: 15px;
}

.effect .the-asterisk {
  font-size: 1.2rem;
}

@media (max-width:767px) {
  .effect {
    padding: 30px 0;
  }

  .effect .the-box ,
  .service-flow .the-box {
    padding: 20px 15px;
  }

  .effect .the-title {
    font-size: 3.0rem;
  }

  .effect .the-title span {
    font-size: 1.6rem;
  }

  .effect .the-effect {
    text-align: center;
  }
}

/*----------------お客様の声----------------*/
.voice_block {
  padding-bottom: 80px;
}
.voice_block .the-title {
  font-size: 3.4rem;
  margin: 0px auto 30px auto;
}
.voice_block .the-box {
  background-color: #fff;
  border-radius: 50px;
  padding: 30px 30px;
  margin:  0px auto 0px auto;
}
.voice_block .flex_full{
display: flex;
justify-content: space-between;
align-items: top;
flex-wrap: wrap;
margin: 0;
height: 100%;
}
.voice_block .flex_full .flex_left{
  width: 83%;
  margin: 0;
  padding: 0;
  height: 100%;
}
.voice_block .flex_full h3{
width: 100%;
margin: 0px 0px 20px 0px;
font-size: 25px;
line-height: 140%;
font-weight: bold;
color: var(--font-orange-color);
}
.voice_block .flex_full .com_hd{
width: 100%;
margin: 0px 0px 10px 0px;
font-size: 20px;
line-height: 140%;
font-weight: bold;
}
.voice_block .flex_full .name{
width: 100%;
margin: 0px 0px 10px 0px;
padding: 0px 0px 5px 0px;
font-size: 18px;
line-height: 140%;
font-weight: bold;
border-bottom: 2px dotted #ccc;
}
.voice_block .flex_full .flex_left .name span{
font-size: 18px;
color: #B2B2B2;
margin-left: 20px;
}
.voice_block .flex_full .flex_left p{
font-size: 13px;
line-height: 180%;
}
.voice_block .flex_full .flex_left .name_right{
display: flex;
margin: 10px 0px 0px auto;
font-size: 16px;
float: right;
font-weight: bold;
}
.voice_block .flex_full .flex_left .name_right dt{
margin-right: 15px;
}
.voice_block .flex_full .flex_left .name_right dd{
}
.voice_block .flex_full .flex_right{
  width: 15%;
  margin: 0;
  padding: 0 0 0px 0;
  overflow: hidden;
  text-align:center;
  height: 100%;
}
.voice_block .flex_full .flex_right img{
  width: 100%;
 vertical-align:top;
 border-radius: 20px;
 border: 1px solid #ececec;
  }

.swiper_voice {
  /*スライダーの幅と高さを調整*/
  width: 100%;
  margin: 0rem auto 0rem auto;
  padding: 0px 10px;
position: relative;
overflow: hidden;
  max-height: 800px; /* 最大の高さ */
  min-height: 300px; /* 最小の高さ */
}
.swiper_voice .swiper-wrapper{
}
.swiper_voice .swiper-slide {
  /*スライド要素の幅と高さを調整*/
  width: 100%;
  height: 100%;
  /*テキストの位置調整*/
  display: flex;
  justify-content: center;
  align-items: center;
  /*テキストの色と太さを指定*/
  font-weight: bold;
  padding: 0 0px;
  border-radius: 20px;
}
.swiper-button-prev.voice_slide{
}
.swiper-button-next.voice_slide{
}


@media (max-width:767px) {
  .voice_block {
    padding-bottom: 50px;
  }

.voice_block .the-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 10px;
  margin:  0px 10px 30px 10px;
}

.voice_block .flex_full{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin: 0;
padding: 0;
}
.voice_block .flex_full .flex_left{
  width: 100%;
  margin: 0 auto 0px auto;
  padding: 0;
}
.voice_block .flex_full .flex_left h3{
margin: 0px 0px 10px 0px;
font-size: 22px;
}
.voice_block .flex_full .flex_left .com_hd{
margin: 0px 0px 10px 0px;
font-size: 18px;
}
.voice_block .flex_full .flex_left .name{
margin: 0px 0px 10px 0px;
font-size: 16px;
line-height: 140%;
font-weight: bold;
}
.voice_block .flex_full .flex_left .name span{
font-size: 16px;
display: block;
margin-left: 0px;
}
.voice_block .flex_full .flex_left .name_right{
font-size: 16px;
}
.voice_block .flex_full .flex_right{
  width: 70%;
  margin: 20px auto 0 auto;
  padding: 0;
}

.swiper_voice {
  /*スライダーの幅と高さを調整*/
  width: 94%;
  margin: 0rem auto 0rem auto;
  padding: 0px 0px;
position: relative;
height: 100%;
  max-height: 1500px !important; /* 最大の高さ */
  min-height: auto; /* 最小の高さ */
}

}




/*----------------流れ----------------*/


.service-flow {
  padding-bottom: 100px;
}

.service-flow .the-title {
  font-size: 3.4rem;
}

.service-flow .the-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 30px;
}

.service-flow .the-item {
  display: flex;
  align-items: flex-start;
}

.service-flow .the-item:not(:last-child) {
  margin-bottom: 50px;
}

.service-flow .the-txt-wrapper {
  flex-basis: 100%;
  flex-shrink: 1;
}

.service-flow .the-img {
  flex-basis: 40%;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 15px rgba(0,0,0,0.1));
  margin-left: 20px;
}

.service-flow .the-heading {
  display: flex;
  align-items: center;
}

.service-flow .the-num {
  flex-basis: 40px;
  flex-shrink: 0;
  color: #F48527;
  opacity: 0.25;
  font-size: 6.0rem;
  font-weight: var(--extra-weight);
  margin-right: 10px;
}

.service-flow .the-sub-title {
  flex-basis: 100%;
  flex-shrink: 1;
  color: var(--font-brouwn-color);
  font-weight: var(--extra-weight);
  font-size: 2.4rem;
}

.service-flow .the-txt {
  text-align: justify;
}

.service-flow .the-txt p:not(:last-child) {
  margin-bottom: 1em;
}

@media (max-width:767px) {
  .service-flow {
    padding-bottom: 50px;
  }

  .service-flow .the-box {
    padding: 50px 15px;
  }

  .service-flow .the-item {
    display: block;
  }

  .service-flow .the-txt-wrapper {
    margin-bottom: 20px;
  }

  .service-flow .the-img {
    margin-left: auto;
    margin-right: auto;
    max-width: 225px;
  }

  .service-flow .the-title {
    font-size: 3.0rem;
  }
}

.faq {
  padding: 90px 0;
}

.faq .the-title {
  font-size: 3.8rem;
  margin-bottom: 30px;
}

.faq .the-item {
  border-radius: 20px;
  box-shadow: 0 3px 10px 0 rgba(0,0,0,0.05);
}

.faq .the-item:not(:last-child) {
  margin-bottom: 30px;
}

.faq .the-head ,
.faq .the-body {
  display: flex;
  align-items: flex-start;
  padding: 15px 20px;
}

.faq .the-head {
  background-color: #FFEDCB;
  border-radius: 20px 20px 0 0;
}

.faq .the-body {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
}

.faq .the-q ,
.faq .the-a {
  flex-basis: 25px;
  flex-shrink: 0;
  font-size: 3.0rem;
  font-weight: var(--extra-weight);
  margin-right: 10px;
  line-height: 1.0;
}

.faq .the-q,
.faq .the-question-title {
  color: var(--font-orange-color);
}

.faq .the-question-title {
  font-size: 2.0rem;
  font-weight: var(--extra-weight);
}

.faq .the-a ,
.faq .the-answer {
  color: #807766;
}

@media (max-width:767px) {
  .faq {
    padding: 30px 0 50px 0;
  }

  .faq .the-title {
    font-size: 3.0rem;
  }
}

.contact {
  padding: 100px 0;
}

.contact .the-title {
  font-size: 3.8rem;
}

.contact .the-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 30px;
}

.contact .plus-txt {
  font-size: 1.6rem;
  text-align: center;
 margin: 10px auto 30px auto;
}

.contact .the-link {
  color: var(--body-color);
  font-size: 1.6rem;
  display: block;
  text-align: center;
  margin-bottom: 50px;
}

.contact .the-sub-title {
  color: var(--font-brouwn-color);
  font-size: 2.4rem;
  font-weight: var(--extra-weight);
  text-align: center;
  margin-bottom: 15px;
}

.contact .the-tel-box {
  background-color: #FAF2E4;
  border-radius: 20px;
  color: var(--font-brouwn-color);
  padding: 20px 60px;
  text-align: center;
  font-weight: var(--extra-weight);
}

.contact .the-num {
  color: var(--font-orange-color);
  font-size: 5.2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  transition: 0.2s;
}

.contact .the-num:hover {
  opacity: 0.6;
}

.contact .the-num::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(img_demo/icon-phone-o.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 5px;
  margin-top: 5px;
}

.contact .the-txt span:not(:last-child) {
  margin-right: 15px;
}

.contact .the-border {
  color: #707070;
}

@media (max-width:767px) {
  .contact {
    padding: 50px 0;
  }

  .contact .the-box {
    padding: 50px 10px 10px 10px;
  }

  .contact .the-title {
    font-size: 3.0rem;
  }

  .contact .the-tel-box {
    padding: 30px 10px;
  }

.contact .plus-txt {
    font-size: 1.4rem;
  }

  .contact .the-txt {
    font-size: 1.4rem;
  }

  .contact .the-num {
    font-size: 3.1rem;
    position: relative;
    margin-bottom: 30px;
  }

  .contact .the-num::before {
    width: 28px;
    height: 28px;
  }

  .contact .the-num::after {
    content: "タップで発信";
    font-size: 1.2rem;
    display: block;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }

  .contact .the-txt span {
    display: block;
  }
}

.fixed-bar {
  display: none;
}

@media (max-width:991px) {
  .fixed-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-shadow: 0 -5px 15px 0 rgba(0,0,0,0.15);
  }

  .fixed-bar a {
    text-decoration: none;
    font-weight: var(--extra-weight);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 24px;
    height: 40px;
  }

  .fixed-bar .the-border-button {
    color: var(--font-orange-color);
    border: 2px solid var(--font-orange-color);
    margin-right: 5px;
  }

  .fixed-bar .the-color-button {
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(#FF9300,#FF7500);
  }

  .fixed-bar .the-border-button::after,
  .fixed-bar .the-color-button::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-size:100%;
    margin-left: -2px;
  }

  .fixed-bar .the-border-button::after {
    background-image: url(img_demo/arrow-o.svg);
  }

  .fixed-bar .the-color-button::after {
    background-image: url(img_demo/arrow-w.svg);
  }
}

@media (max-width:375px) {
  .fixed-bar a {
    font-size: 1.4rem;
  }
}

.form .line{
width: 100%;
margin: 20px auto 30px auto;
display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
    }

.form .line dt{
width: 23%;
margin: 0px 0px 0px 0px;
text-align: right;
font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif" sans-serif;
font-size: 16px;
font-weight: bold;
padding: 20px 1%;
}
.form .line dt .kome{
font-size: 10px;
line-height: 120%;
}
.form .line dd{
width: 73%;
margin: 0px 0px 0px 0px;
text-align: left;
padding: 20px 1%;
line-height: 190%;
}
.form .line dd label{
margin-right: 30px;
}
.form .line dd input{
padding: 3px;
border: 2px solid #ddd;
font-size: 15px;
border-radius: 3px;
}
.form .line dd textarea{
padding: 3px;
border: 2px solid #ddd;
font-size: 15px;
border-radius: 3px;
}
.form .line dd .kubun{
width: 100%;
margin: 0px 0px 0px 0px;
padding: 0px;
display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
}
.form .line dd .kubun dt{
width: 28%;
margin: 0px 0px 0px 0px;
text-align: left;
padding: 10px 1%;
line-height: 190%;
background: #ececec;
border-bottom: 2px solid #fff;
}
.form .line dd .kubun dd{
width: 68%;
margin: 0px 0px 0px 0px;
text-align: left;
padding: 10px 1%;
line-height: 190%;
border-bottom: 2px solid #fff;
}
.form .submit{
margin: 30px auto 0px auto;
text-align: center;
}

.form .submit input{
background: #ff8f33;
color: #fff;
font-weight: bold;
border: 0;
text-align: center;
border-radius: 0;
font-size: 20px;
padding: 15px 40px;
letter-spacing: 10px;
font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif" sans-serif;
}
.form .submit input:hover{
background: #666;
}

.form p{
line-height: 300%;
}
.form address{
border-top: 2px solid #333;
border-bottom: 2px solid #333;
padding: 20px 0px;
line-height: 200%;
margin: 0px auto 30px auto;
}
@media (max-width:767px) {
.form .line{
width: 100%;
margin: 0px auto 50px;
display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
}
.form .line dt{
width: 100%;
margin: 0px 0px 0px 0px;
text-align: left;
font-size: 16px;
color: #000;
font-weight: bold;
font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
padding: 10px 10px 0px 10px;
}
.form .line dt .kome{
font-size: 10px;
line-height: 120%;
}
.form .line dd{
width: 100%;
margin: 0px 0px 0px 0px;
text-align: left;
padding: 10px 10px;
}
.form .line dd input{
padding: 3px;
border: 2px solid #ddd;
font-size: 15px;
border-radius: 3px;
margin-bottom: 5px;
}
.form .line dd textarea{
padding: 3px;
border: 2px solid #ddd;
font-size: 15px;
border-radius: 3px;
}

.form .line dd .kubun{
width: 100%;
margin: 0px 0px 0px 0px;
padding: 0px;
display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
}
.form .line dd .kubun dt{
width: 98%;
margin: 0px auto;
text-align: left;
padding: 10px 1%;
line-height: 190%;
background: #ececec;
border-bottom: 2px solid #fff;
}
.form .line dd .kubun dd{
width: 98%;
margin: 0px auto;
text-align: left;
padding: 10px 1%;
line-height: 190%;
border-bottom: 2px solid #fff;
}

.form .submit{
text-align: center;
margin: 0px auto 100px auto;
}

.form input[type="text"][size="10"]{
    width: 30%;
}
.form input[type="text"][size="20"]{
    width: 40%;
}
.form input[type="text"][size="40"]{
    width: 70%;
}
.form input[type="text"][size="50"]{
    width: 80%;
}
.form input[type="text"][size="60"]{
    width: 80%;
}
.form input[type="text"][size="80"]{
    width: 100%;
}
.form textarea {
    width: 100%;
}

.form .submit input{
background: #ff8f33;
color: #fff;
font-weight: bold;
border: 0;
text-align: center;
border-radius: 0;
font-size: 20px;
padding: 15px 40px;
letter-spacing: 5px;
font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif" sans-serif;
}
.form .submit input:hover{
background: #666;
}

.form p{
line-height: 300%;
}
.form address{
border-top: 2px solid #333;
border-bottom: 2px solid #333;
padding: 20px 0px;
line-height: 200%;
margin: 0px auto 30px auto;
}

}


footer {
  background-color: #745133;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 10px 15px;
  line-height: 1.2;
}

@media (max-width:767px) {
  footer {
    margin-bottom: 50px;
  }
}

.kondate {
  padding: 30px 0;
}

.kondate .the-title {
  font-size: 3.8rem;
  margin-bottom: 30px;
}

.swiper {
  /*スライダーの幅と高さを調整*/
  width: 94%;
  height: auto;
  margin: 0.5rem auto 2rem;
  padding: 0px 0px;
}
.swiper-wrapper{
}
.swiper-slide {
  /*スライド要素の幅と高さを調整*/
  width: 100%;
  height: 100%;
  /*テキストの位置調整*/
  display: flex;
  justify-content: center;
  align-items: center;
  /*テキストの色と太さを指定*/
  font-weight: bold;
  padding: 0 0px;
}
.swiper-slide{
background: #fff;
padding: 10px;
border-radius: 10px;
box-shadow: 0px 0px 5px #ccc;
margin: 10px 0;
}
.swiper-slide img{
border-radius: 10px;
}
.swiper-slide ul{
margin: 10px auto 0 auto;
padding: 0;
}
.swiper-slide ul li{
margin: 0px auto;
padding: 0;
text-align: left;
font-size: 13px;
color: #000;
}
.swiper-button-prev{
color: #FF9319 !important;
}
.swiper-button-next{
color: #FF9319 !important;
}


.type_hd{
text-align: center;
margin: 0px auto 20px auto;
font-size: 30px;
font-weight: bold;
color: #74B200;
}
@media (max-width:767px) {
.type_hd{
font-size: 24px;
}
}

.flex_full.type_flex{
justify-content: space-between;
}
.flex_full .type_box{
width: 48%;
background: #FAEEBE;
padding: 20px;
border-radius: 20px;
display: flex;
flex-wrap: wrap;
}
.flex_full .type_box h3{
text-align: center;
margin: 0px auto 20px auto;
font-weight: bold;
font-size: 30px;
line-height: 100%;
color: #FC8200;
width: 100%;
}
.flex_full .type_box h3 span{
font-size: 18px;
}
.flex_full .type_box p{
width: 48%;
text-align: center;
line-height: 100%;
display: flex;
flex-wrap: wrap;
align-content: center;
align-items: center;
flex-direction: column;
}
.flex_full .type_box p span{
background: #82B900;
color: #fff;
padding: 10px;
border-radius: 5px;
font-weight: bold;
font-size: 16px;
}
.flex_full .type_box img{
width: 42%;
}

@media (max-width:767px) {
.flex_full.type_flex{
justify-content: space-between;
flex-wrap: wrap;
width: 90%;
margin: 0px auto;
}
.flex_full .type_box{
width: 100%;
margin: 0px auto 10px auto;
padding: 10px;
}
.flex_full .type_box p span{
font-size: 14px;
}
.flex_full .type_box img{
width: 48%;
height: auto;
}
}

.type_box .more_btn{
text-align: center;
margin: 10px auto 0 auto;
border-radius: 30px;
width: 80%;
}
.type_box .more_btn a{
display: block;
color: #fff;
background: #FC8200;
text-decoration: none;
padding: 10px 0;
border-radius: 30px;
font-weight: bold;
}

.pro_hd_full{
width: 100%;
text-align: center;
padding: 30px 0;
font-weight: bold;
background: #FC8200;
line-height: 140%;
margin: 0px auto 0px auto;
}
.pro_hd_full h2{
font-size: 36px;
line-height: 140%;
color: #fff;
}
.pro_hd_full h3{
font-size: 18px;
color: #fff;
}

@media (max-width:767px) {
.pro_hd_full h2{
font-size: 26px;
}
.pro_hd_full h3{
font-size: 16px;
}
}

.container .sishoku_btn{
text-align: center;
margin: 30px auto 0 auto;
border-radius: 50px;
width: 40%;
}
.container .sishoku_btn a{
display: block;
color: #fff;
background: #FC8200;
text-decoration: none;
padding: 10px 0;
border-radius: 50px;
font-size: 18px;
line-height: 140%;
font-weight: bold;
}

@media (max-width:767px) {
.container .sishoku_btn{
width: 80%;
}
}

.medi_hd_full{
width: 100%;
text-align: center;
padding: 30px 0;
font-weight: bold;
background: #74B200;
line-height: 140%;
margin: 0px auto 0px auto;
}
.medi_hd_full h2{
font-size: 28px;
line-height: 140%;
color: #fff;
}

@media (max-width:767px) {
.medi_hd_full h2{
font-size: 22px;
}
}

.tokuchou_flex{
margin: 0px auto 10px auto;
display: flex;
flex-wrap: wrap;
flex-direction: column;
align-content: center;
}
.tokuchou_flex .tokuchou_box{
width: 60%;
display: flex;
margin: 0px auto 20px auto;
}
.tokuchou_box h3{
}
.tokuchou_box .tokuchou_icon{
max-width: 80px;
height: 50px;
background: #FFF4CF;
padding: 0px 14px;
border-radius: 50px;
text-align: center;
display: flex;
justify-content: center;
margin-right: 20px;
}
.tokuchou_box .tokuchou_icon img{
width: 100%;
max-width: 30px;
}
.tokuchou_box dl dt{
font-size: 24px;
font-weight: bold;
}
.tokuchou_box dl dd{
font-size: 16px;
}

@media (max-width:767px) {
.tokuchou_flex .tokuchou_box{
width: 100%;
}
}

.catch{
text-align: center;
margin: 20px auto;
}
.catch h3{
text-align: center;
margin: 0px auto 0 auto;
font-size: 30px;
color: #FC8200;
font-weight: 600;
}
.catch h4{
text-align: center;
margin: 0px auto;
font-size: 24px;
}
.smart_img{
width: 70%;
margin: 0px auto;
border-radius: 10px;
overflow: hidden;
}
@media (max-width:767px) {
.catch h3{
font-size: 24px;
line-height: 140%;
}
.catch h4{
font-size: 16px;
line-height: 160%;
}
.smart_img{
width: 100%;
}
}


.pb100{
padding-bottom: 100px;
}


/*--------------プライバシー-------------*/
.pp_box {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
    /* border: 1px solid #ccc; */
    background: #f9f9f9;
    font-size: 14px;
}
.pp_box h4{
text-align: left;
margin: 10px auto 0 auto;
font-weight: 700;
}
.pp_box h5{
text-align: left;
margin: 0px auto;
font-size: 16px;
}
.pp_box p{
line-height: 140%;
}
.pp_box .table-normal{
width: 100%;
border: 1px solid #eee;
border-collapse: collapse;
}
.pp_box .table-normal th{
border: 1px solid #eee;
vertical-align: top;
width: 30%;
}
.pp_box .table-normal td{
border: 1px solid #eee;
padding: 10px;
vertical-align: top;
}

.contact .privacy h2{
text-align: center;
font-size: 26px;
font-weight: bold;
margin: 0px auto 10px auto;
}

.contact .privacy h3,
.contact .privacy h4,
.contact .privacy h5{
text-align: left;
}
.contact .privacy p{
text-align: left;
margin: 0px auto 10px auto;
}
.contact .privacy ul{
text-align: left;
padding: 0;
margin: 0 auto 30px auto;
}
.contact .privacy ul li{
text-align: left;
padding: 0;
margin: 0;
}
.contact .privacy table{
margin: 0px auto 20px auto;
border-collapse: collapse;
}
.contact .privacy table th{
border: 1px solid #ccc;
padding: 10px;
}
.contact .privacy table th:nth-child(1){
width: 30%;
}
.contact .privacy table td{
border: 1px solid #ccc;
padding: 10px;
}
.contact .privacy h4{
text-align: left;
font-weight: bold;
font-size: 18px;
margin: 20px auto 0px auto;
}
.contact .privacy h5{
text-align: left;
font-weight: bold;
font-size: 18px;
margin: 20px auto 0px auto;
}
.contact .privacy .pp_mark{
max-width: 80px;
margin: 10px auto 30px auto;
}







