html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, 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, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video{
　　margin: 0;
　　padding: 0;
　　border: 0;
　　font-size: 100%;
　　font: inherit;
　　vertical-align: baseline;
　　outline: none;
　　-webkit-box-sizing: border-box;
　　-moz-box-sizing: border-box;
　　box-sizing: border-box;
}
html { height: 101%; }
body { font-size: 62.5%; line-height: 1; color: #000; font-family: "リュウミン R-KL" , "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; margin: 0!important; font-feature-settings: "palt";}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
strong { font-weight: bold; }
table { border-collapse: collapse; border-spacing: 0; }
img { border: 0; max-width: 100%; height: auto; display:block; }
h1{ margin: 0; }
h2{ font-size: 20px; line-height: 1.5; font-weight: normal; margin: 0;}
h3{ font-size: 16px; line-height: 1.5; font-weight: normal; margin: 0;}
p { font-size: 16px; line-height: 1.5; margin: 0; font-weight: normal; margin: 0;}
a{ text-decoration: none; color: #000; outline: none;}
ul{ padding: 0; margin: 0;}
video{width: 100%;}

html,body {
  -webkit-text-size-adjust: none;
}
.hide_sp{
  display: none;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.emphasis{
  font-size: 24px;
}

.text_white{
  color: #fff;
}

.text_gray{
  color: #c2c2c2;
}

.bg_white{
  background-color: #fff;
}

.bg_gray{
  background-color: #f1f1f1;
}

.bg_beige{
  background-color: #f0d98c;
}

.bg_green{
  background-color: #bfdcca;
}

.bg_blue{
  background-color: #b5d7ff;
}

/* 見出しの左右両端線ここから */
.head-border {
  position: relative;
  display: inline-block;
  padding: 0 30px;
  left: 50%;
  transform: translate(-50%, 0);
}
.head-border:before,
.head-border:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #000;
}
.head-border:before {
  left: 0;
}
.head-border:after {
  right: 0;
}
/* 見出しの左右両端線ここまで */

header{
  position: fixed;
  /* position: absolute; */
  top: 0px;
  width: 100%;
  z-index: 100;
}

header .inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  padding: 10px 0;
}

header .inner h1 img{
  width: 200px;
}

/* ハンバーガーボタン ここから */
.btn-trigger {
  position: relative;
  width: 30px;
  /* height: 30px; */
  height: 21px;
  cursor: pointer;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #a17d29;
  border-radius: 4px;
}
.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  /* top: 15px; */
  top: 10px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}
#nav-toggle.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
#nav-toggle.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-btn05-bar02 .8s forwards;
  animation: active-btn05-bar02 .8s forwards;
}
@-webkit-keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
#nav-toggle.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}
/* ハンバーガーボタン ここまで */

#gloval-nav {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 29px;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.open {
  overflow: hidden;
}

.open header .inner{
  justify-content: flex-end;
}

.open header.bg_white{
  background-color: rgba(0,0,0,0);
}

.open .btn-trigger span{
  background-color: #fff;
}

.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}

.open #gloval-nav{
  background: linear-gradient(#a27b26, #c49e59);
  /* height: 100vh; */
  /* position: relative; */
}

.open #gloval-nav ul{
  position: absolute;
  width: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.open #gloval-nav ul li p{
  text-align: center;
}

.open #gloval-nav ul li:first-child{
  margin: 0 0 50px;
}

.open #gloval-nav ul li:not(:first-child):not(:last-child){
  margin: 0 0 30px;
}

#mainvisual{
  position: relative;
  background-image: url(img/bg_mainvisual.jpg);
  background-size: cover;
  background-position-x: 80%;
  vertical-align: middle;
  background-repeat: no-repeat;
  height: 90vh;
  /* margin: 50px 0 0px; */
}

#mainvisual img{
  position: absolute;
  /* top: 10%; */
  bottom: 30px;
  left: 5px;
  transform: translate(0%,0%);
  /* width: 70%; */
  width: 90%;
  max-width: 500px;
}

section:not(#mainvisual):not(#menue_pc) .inner{
  width: 90%;
  padding: 80px 0;
  margin: 0 auto;
}

section .section_title{
  text-align: center;
  margin: 0 0 30px;
}

section .section_title img{
  width: 150px;
  margin: 0 auto 10px;
}

#about ul{
  margin: 30px 0;
}

#about ul li{
  padding: 30px
}

/* #about ul li:not(:last-child){
  margin: 0 0 10px;
} */

#about ul li img{
  width: 100px;
  margin: 0 auto 10px;
}

#about ul li p{
  text-align: center;
}

#about ul li img + p{
  margin: 0 0 30px;
}

#about ul li .plan_contents{
  line-height: 1.5;
}

#service .service_contents{
  padding: 30px 0;
}

#service .service_contents .subtitle{
  text-align: center;
  margin: 0 0 30px;
}

#service .service_contents .subtitle img{
  width: 50px;
  margin: 0 auto 10px;
}

#service .service_contents .service_plan{
  /* display: flex;
  justify-content:center;
  align-items: center;
  margin: 0 0 30px; */
  margin: 0 0 30px;
}

#service .service_contents .service_plan li{
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#service .service_contents .service_plan li.bg_green,
#service .service_contents .service_plan li.bg_blue{
  /* margin: 0 0 0 10px; */
}


#service .service_contents .service_plan li img{
  width: 100px;
}

#service .service_contents .service_plan li p{
  width: 60px;
  margin: 0 0 0 30px;
  text-align: center;
}

#service .service_contents .service01_list{
  margin: 50px 0;
}

#service .service_contents .service01_list li{
  padding: 30px 10px;
  display: flex;
  align-items: center;
}

#service .service_contents .service01_list li:not(:last-child){
  margin: 0 0 15px;
}

#service .service_contents .service01_list li img{
  width: 80px;
  margin: 0 auto;
}

/* #service .service_contents .service01_list li img + div p{
  text-align: left;
} */

#service .service_contents .service01_list li img + div{
  width: 210px;
}

#service .service_contents .service01_list li img + div p:first-child{
  margin: 0 0 10px;
}

/* #service .service_contents .service01_list li p{
  text-align: center;
} */

#service .service_contents .service_example{
  margin: 50px 0;
}

#service .service_contents .service_example li{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  justify-content: space-around;
}

#service .service_contents .service_example li:not(:last-child){
  border-bottom: 2px solid #000;
  padding: 0 0 10px;
  margin: 0 0 10px;
}

#service .service_contents .service_example li p:first-child{
  text-align: left;
}

#service .service_contents .service_example li p:first-child:after{
  content: '';
  display: inline-block;
  width: 80px;
  height: 20px;
  background-image: url(img/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 10px 3px 10px;
}

#service .service_contents .service_example li p:last-child{
  text-align: right;
}

#service .service_contents .users_voice ul{
  margin: 30px 0;
}

#service .service_contents .users_voice ul li:not(:last-child){
  margin: 0 0 30px;
}

#service .service_contents .users_voice ul li .balloon {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 30px 20px;
  background: #FFF;
  box-sizing: border-box;
}

#service .service_contents .users_voice ul li .balloon:before {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 35px solid #FFF;
  z-index: 2;
}

#service .service_contents .users_voice ul li .balloon:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  z-index: 1;
}

#service .service_contents .users_voice ul li img{
  width: 100px;
  margin: 40px auto;
}

#service .service_contents .textbox_beige{
  margin: 30px 0;
  /* padding: 30px */
  padding: 10px;
}

#service .service_contents .compensation{
  margin: 50px 0;
}

#service .service_contents .compensation h2{
  margin: 0 auto 30px;
}

#service .service_contents .compensation .compensation_list01{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 30px 0 0;
}

#service .service_contents .compensation .compensation_list01 li{
  width: 49%;
  padding: 10px;
  box-sizing: border-box;
  margin: 0 0 5px;
}

#service .service_contents .compensation .compensation_list01 li p{
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#service .service_contents .compensation .compensation_list01 li img{
  width:  100px;
  margin: 0 auto;
}

#service .service_contents .compensation .compensation_list02{
  margin: 30px 0 0
}

#service .service_contents .compensation .compensation_list02 li{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 10px;
}

#service .service_contents .compensation .compensation_list02 li:not(:last-child){
  margin: 0 0 10px;
}

#service .service_contents .compensation .compensation_list02 li img{
  /* width: 200px; */
  width: 120px;
  /* margin: 0 auto; */
}

#service .service_contents .compensation .compensation_list02 li div{
  width: 200px;
  margin: 0 0 0 10px;
}

#service .service_contents .compensation .compensation_list02 li div p:first-child{
  margin: 0 0 10px;
}

/* #service .service_contents .compensation .compensation_list02 li p{
  text-align: center;
} */

#service .service_contents .point{
  margin: 30px auto;
}

#service .service_contents .point img{
  width: 50px;
  margin: 0 auto;
}

#service .service_contents .point p{
  text-align: center;
}

#service .service_contents .point_list{
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

#service .service_contents .point_list li{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

#service .service_contents .point_list li:not(:last-child){
  margin: 0 0 10px;
}

#service .service_contents .point_list li img{
  width: 40%;
  height: 100%;
  object-fit: cover;
}

#service .service_contents .point_list li div{
  width: 60%;
  height: 100%;
  padding: 30px 10px;
  box-sizing: border-box;
}

#service .service_contents .point_list li div h2{
  /* text-align: center; */
  margin: 0 0 10px;
  padding: 0;
  left: 0%;
  transform: translate(0%, 0);
}

#service .service_contents .point_list li div h2:before,
#service .service_contents .point_list li div h2:after{
  display: none;
}

#service .service_contents .service04_list li:not(:last-child){
  margin: 0 0 50px;
}

#service .service_contents .service04_list li:nth-child(1) img,
#service .service_contents .service04_list li:nth-child(2) img{
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  max-width: none;
}

#service .service_contents .service04_list li p{
  margin: 30px 0;
}

#service .service_contents .service04_list .benefits{
  position: relative;
  margin: 100px 0 0 0;
  /* padding: 30px; */
}

#service .service_contents .service04_list .benefits > h2{
  position: absolute;
  width: 150px;
  left: 50%;
  top: -50px;
  transform: translate(-50%,0);
}
/* #service .service_contents .service04_list .benefits img{
  margin: 0 0 30px;
} */

#service .service_contents .service04_list .benefits p{
  margin: 15px 0;
}

#service .service_contents .service04_list .benefits .emphasis{
  text-align: center;
}

#service .service_contents .service04_list .benefits .flex_pc > div{
  padding: 10px;
}

#service .service_contents .service04_list .benefits .flex_pc .head-border + p{
  text-align: center;
}

#service .service_contents .service04_list .benefits .textbox_beige{
  margin: 0;
}

#service .service_contents .service04_list .benefits .textbox_beige p{
  margin: 0;
  text-align: center;
}

/* #service .service_contents .service04_list .benefits .benefitIMG{
  position: absolute;
  top: -20px;
  left: -25px;
  width: 130px;
} */

#comparison .textbox_beige{
  margin: 30px 0;
  padding: 30px;
}

#comparison .comparison_list{
  margin: 30px 0 0;
}

#comparison .comparison_list li{
  /* padding: 30px; */
}

/* #comparison .comparison_list li:not(:last-child){
  margin: 0 0 10px
} */

#comparison .comparison_list li a{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

#comparison .comparison_list li a img{
  margin: 0;
}

#comparison .comparison_list li img,
#comparison .comparison_details li .subtitle img{
  width: 100px;
  margin: 0 auto;
}

#comparison .comparison_list li p{
  text-align: center;
  width: 120px;
  margin: 0 0 0 10px;
}

#comparison .comparison_details {
  margin: 50px 0 0;
}

#comparison .comparison_details li{
  padding: 50px 0 0;
}

#comparison .comparison_details li:not(:last-child){
  margin: 0 0 50px;
}

#comparison .comparison_details li .subtitle{
  text-align: center;
  margin: 0 0 30px;
}

#comparison .comparison_details li .comparison_details01{
  margin: 50px 0;
}

#comparison .comparison_details li .textbox_beige{
  padding: 5px;
  margin: 0 0 30px;
}

#comparison .comparison_details li .textbox_beige p{
  text-align: center;
}

#comparison .comparison_details li .round_beige{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0d98c;
  border-radius: 50%;
  margin: 30px auto;
  width: 150px;
  height: 150px;
}

#comparison .comparison_details li .round_beige h2,
#comparison .comparison_details li .round_beige p{
  text-align: center;
}

#comparison .comparison_details li .comparison_details02 img{
  margin: 30px 0;
}

#contacts .contact_list{
  margin: 30px 0 0;
}

#contacts .contact_list li{
  max-width: 350px;
  margin: 0 auto;
}

#contacts .contact_list li:not(:last-child){
  margin: 0 auto 30px;
}

#contacts .contact_list li h2{
  margin: 15px 0;
}

footer{
  background: linear-gradient(#a27b26, #c49e59);
}

footer .inner{
  padding: 80px 0;
}

footer ul{
  width: 200px;
  margin: 0 auto;
}

footer .logo{
  margin: 0 auto 50px;
  width: 150px;
}

footer ul li:not(:last-child){
  margin: 0 0 30px
}

footer ul li p,
footer .copyright{
  text-align: center;
}

footer .copyright{
  margin: 50px 0 0;
}

@media screen and (min-width: 520px){
  .hide_tb{
    display: none;
  }

  #mainvisual img{
    max-width: 400px;
  }

  #service .service_contents .service_plan{
    width: 300px;
    margin: 0 auto 30px;
  }

  #service .service_contents .service_plan li{
    /* width: 33%; */
  }

  #service .service_contents .service_plan li img{
    /* margin: 0 auto; */
  }

  #service .service_contents .service01_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #service .service_contents .service01_list li{
    width: 48%;
    /* height: 410px; */
    height: 250px;
    box-sizing: border-box;
  }

  #service .service_contents .service01_list li:last-child{
    margin: 0 0 0 10px;
  }

  #service .service_contents .service_example{
    max-width: 430px;
    margin: 50px auto;
  }

  #service .service_contents .compensation .compensation_list02 li img{
    width: 150px;
  }

  #contacts .contact_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #contacts .contact_list li{
    /* margin: 0 0 30px; */
    /* width: 49%; */
    /* width: 47%; */
    width: calc(50% - 15px);
  }

  #contacts .contact_list li:not(:last-child),
  #contacts .contact_list li:last-child{
    margin: 0 0 30px;
  }
  #contacts .contact_list li img{
    max-width: 250px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px){
  .hide_sp{
    display: block;
  }

  .hide_pc{
    display: none;
  }

  h2 {
    font-size: 24px;
  }

  p{
    font-size: 18px;
    text-align: center;
  }

  .emphasis {
    font-size: 32px;
  }

  .is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
  }

  .head-border:before,
  .head-border:after{
    width: 20px;
    height: 1px;
  }

  header{
    /* position: absolute; */
    position: inherit;
    padding: 15px 0;
  }

  header .inner{
    display: block;
  }

  header .inner h1 img {
    width: 150px;
    margin: 0 auto;
  }

  header .header_menue{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  header .header_menue li{
    margin: 0 15px;
  }

  header .header_menue li a,
  #menue_pc .inner ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }

  header .header_menue li a:after,
  #menue_pc .inner ul li a:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
  }

  header .header_menue li a:hover:after,
  #menue_pc .inner ul li a:hover::after {
    transform: scale(1, 1);
  }

  /* section:not(#mainvisual):not(#menue_pc) .inner{
    width: 90%!important;
  } */

  #mainvisual{
    height: 80vh;
    /* margin: 168px 0 0px; */
  }

  #mainvisual img{
    /* top: 50%;
    left: 30%; */
    /* top: 50%;
    left: 50%;
    transform: translate(-70%,-80%);
    max-width: 500px; */
    top: 50%;
    left: 50px;
    transform: translate(0%,-50%);
    width: 50%;
    max-width: 500px;
  }

  #menue_pc{
    background-color: #fff;
  }

  #menue_pc .inner{
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin: 0 auto;
  }

  #menue_pc .inner img{
    width: 180px
  }

  #menue_pc .inner ul{
    display: flex;
    align-items: center;
  }

  #menue_pc .inner ul li:not(:last-child){
    margin: 0 10px 0 0;
  }

  #menue_pc .inner ul li p{
    line-height: 1;
  }

  section:not(#mainvisual):not(#menue_pc) .inner,
  footer .inner{
    width: 90%;
    max-width: 800px;
    padding: 100px 0;
    margin: 0 auto;
  }

  section .section_title img {
    width: 200px;
  }

  #about ul{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  #about ul li {
    /* width: 32%;
    height: 330px; */
    padding: 20px;
    box-sizing: border-box;
  }

  #about ul li img + p {
    margin: 0 0 10px;
  }

  #service .service_contents {
    padding: 50px 0;
  }

  #service .service_contents .textbox_beige{
    padding: 5px;
  }

  #service .service_contents .subtitle{
    display: flex;
    justify-content: center;
    align-items: baseline;
  }

  #service .service_contents .subtitle img{
    width: 60px;
    margin: 0 10px 0 0;
  }

  #service .service_contents .service_plan{
    display: flex;
    justify-content: center;
    width: 100%;
  }

  #service .service_contents .service_plan li {
    /* width: 80px; */
    width: 200px;
  }

  #service .service_contents .service01_list li{
    display: block;
    height: auto;
  }

  #service .service_contents .service01_list li:not(:last-child),
  #service .service_contents .service01_list li:last-child{
    margin: 0 0 30px;
  }

  #service .service_contents .service01_list li img + div p:first-child{
    margin: 30px 0 10px;
  }

  #service .service_contents .service01_list li img + div{
    margin: 0 auto;
    width: 100%;
  }

  #service .service_contents .service_example{
    max-width: 100%;
  }

  #service .service_contents .users_voice ul li{
    display: flex;
    align-items: center;
  }

  #service .service_contents .users_voice ul li .balloon{
    margin: 0 50px 0 0;
  }

  #service .service_contents .users_voice ul li .balloon:before,
  #service .service_contents .users_voice ul li .balloon:after{
    content: "";
    position: absolute;
    top: 50%;
    /* right: -45px; */
    right: -60px;
    margin-top: -12px;
    border: 14px solid transparent;
    /* border-left: 35px solid #fff; */
    border-left: 55px solid #fff;
    z-index: 2;
    bottom: auto;
    left: auto;
    margin-left: 0;
  }

  #service .service_contents .users_voice ul li .balloon p{
    text-align: left;
  }

  #service .service_contents .users_voice ul li img{
    margin: 5px auto;
  }

  #service .service_contents .users_voice ul + p{
    text-align: left;
  }

  /* #service .service_contents .compensation .compensation_list01:after{
    content:'';
    display:block;
    width: 32%;
    height:0;
  } */

  #service .service_contents .compensation .compensation_list01 li{
    width: 19%;
    margin: 0 0 8px;
  }

  #service .service_contents .compensation .compensation_list02{
    display: flex;
    justify-content: space-between;
  }

  #service .service_contents .compensation .compensation_list02 li{
    display: block;
    width: 32%;
    box-sizing: border-box;
  }

  #service .service_contents .compensation .compensation_list02 li:not(:last-child){
    margin: 0;
  }

  #service .service_contents .compensation .compensation_list02 li img{
    margin: 0 auto;
  }

  #service .service_contents .compensation .compensation_list02 li div {
    width: 100%;
    margin: 0;
  }

  #service .service_contents .point_list{
    width: auto;
    margin: auto;
  }

  #service .service_contents .point_list li{
    display: flex;
  }

  #service .service_contents .point_list li:nth-child(even){
    flex-flow: row-reverse;
  }

  #service .service_contents .point_list li img{
    width: 45%;
  }

  #service .service_contents .point_list li div{
    width: 55%;
    /* padding: 70px 30px; */
    padding: 60px 10px;
    box-sizing: border-box;
  }

  #service .service_contents .point_list li div h2{
    /* text-align: center; */
    /* margin: 0 0 10px;
    padding: 0;
    left: 0%;
    transform: translate(0%, 0); */
    position: relative;
    display: inline-block;
    margin: 0 0 10px;
    padding: 0 30px;
    left: 50%;
    transform: translate(-50%, 0);
  }

  #service .service_contents .point_list li div h2:before,
  #service .service_contents .point_list li div h2:after{
    display: block;
  }

  #service .service_contents .service04_list li:not(:last-child) {
    margin: 0 0 80px;
  }

  #service .service_contents .service04_list li:nth-child(1) img,
  #service .service_contents .service04_list li:nth-child(2) img{
    width: 100%;
    margin: auto;
  }

  #service .service_contents .service04_list li img{
    object-fit: cover;
    height: 300px;
    width: 100%;
  }

  #service .service_contents .service04_list .benefits > h2{
    left: -30px;
    top: -25px;
    transform: translate(0,0);
  }

  #service .service_contents .service04_list .benefits p{
    margin: 0;
  }

  #service .service_contents .service04_list .benefits .emphasis{
    margin: 10px;
  }

  #service .service_contents .service04_list .benefits .flex_pc{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
  }

  #service .service_contents .service04_list .benefits .flex_pc img{
    width: 50%;
    height: 200px;
    margin: 0 10px 0 0;
  }

  #service .service_contents .service04_list .benefits .flex_pc > div{
    padding: 0;
  }

  #service .service_contents .service04_list .benefits .flex_pc > div .head-border{
    margin: 0 0 10px;
  }

  #service .service_contents .service04_list .benefits .flex_pc + .textbox_beige{
    margin: 0;
    padding: 10px;
  }

  #service .service_contents .service04_list .benefits .benefitIMG{
    top: -35px;
    left: -30px;
    width: 200px;
    height: auto;
  }

  #comparison .textbox_beige {
    padding: 5px;
  }

  #comparison .comparison_list{
    display: flex;
    justify-content: space-between;
  }

  #comparison .comparison_list li a{
    display: block;
    padding: 10px;
  }

  #comparison .comparison_list li a img{
    margin: 0 auto;
  }

  #comparison .comparison_list li p{
    width: auto;
    margin: 0;
  }

  #comparison .comparison_list li:not(:last-child) {
    margin: 0;
  }

  #comparison .comparison_list li {
    width: 32%;
    box-sizing: border-box;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 30%);
  }

  #comparison .comparison_list li:hover{
    opacity: 0.8;
  }

  #comparison .comparison_details li .textbox_beige{
    margin: 50px 0;
    padding: 5px 10px;
  }

  #comparison .flex_pc{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row-reverse;
    margin: 30px 0;
  }

  #comparison .flex_pc img{
    width: 70%;
  }

  /* #comparison .comparison_details .textbox_beige p{
    text-align: left!important;
  } */

  #comparison .comparison_details li {
    padding: 80px 0 0;
  }

  #comparison .comparison_details li .round_beige{
    margin: 0
  }

  #contacts .contact_list::before{
    order: 1;
  }

  #contacts .contact_list::before,
  #contacts .contact_list::after{
    content: "";
    width: calc(33.33% - 5px);
  }

  #contacts .contact_list li{
    width: calc(33.33% - 15px);
  }

  #contacts .contact_list h2{
    font-size: 18px;
  }

  #contacts .contact_list p{
    font-size: 14px;
    text-align: left;
    margin: 5px 0;
  }

  #comparison .comparison_details li .round_beige{
    width: 180px;
    height: 180px;
  }

  #contacts .contact_list p span{
    border-bottom: 1px solid #000;
  }

  #contacts .contact_list li a span {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }

  #contacts .contact_list li a span:after {
    position: absolute;
    bottom: -1px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #2997ff;
    border-bottom:none;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
  }

  #contacts .contact_list li a span:hover{
    color: #2997ff;
    border-bottom:none;
  }

  #contacts .contact_list li a span:hover::after {
    transform: scale(1, 1);
  }

  footer .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
  }

  footer .logo{
    margin: 0
  }

  footer ul{
    width: 500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  footer ul li:not(:last-child) {
    margin: 0;
  }

  footer ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }

  footer ul li a:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
  }

  footer ul li a:hover::after {
    transform: scale(1, 1);
  }

  footer .copyright {
    margin: 15px 0 0;
    text-align: right;
  }
}

@media screen and (min-width: 900px){
  header {
    padding: 20px 0;
  }

  header .inner{
    padding: 0 0 30px;
  }

  header .header_menue li {
    margin: 0 30px;
  }

  #mainvisual {
    height: 80vh;
  }

  #menue_pc .inner img {
    width: 250px;
  }

  #menue_pc .inner ul li:not(:last-child) {
    margin: 0 30px 0 0;
  }

  #about ul li {
    /* width: 30%;
    height: 340px; */
    padding: 30px;
  }

  #service .service_contents .service01_list li {
    width: 32%;
    padding: 50px 10px;
  }

  #service .service_contents .service01_list li:not(:last-child),
  #service .service_contents .service01_list li:last-child{
    margin: 0px 0 20px;
  }

  #service .service_contents .service01_list li img{
    width: 100px;
  }

  #service .service_contents .compensation .compensation_list01 li{
    padding: 30px 10px;
  }

  #service .service_contents .point_list li img {
    width: 50%;
  }

  #service .service_contents .point_list li div{
    width: 50%;
    padding: 50px 20px;
  }

  #service .service_contents .service04_list .benefits .flex_pc{
    justify-content: space-between;
  }

  #service .service_contents .service04_list .benefits .flex_pc div{
    padding: 0 30px;
  }

}

@media screen and (min-width: 1024px){
  header {
    padding: 30px 0;
  }

  #mainvisual {
    background-position-x: 200px;
  }

  #mainvisual img {
    /* top: 45%;
    max-width: 500px; */
    /* transform: translate(-90%,-80%); */
    top: 50%;
    left: 70px;
    transform: translate(0%,-50%);
  }

  #menue_pc .inner img {
    width: 300px;
  }

  section:not(#mainvisual):not(#menue_pc) .inner,
  footer .inner{
    max-width: 900px;
  }

  section:not(#mainvisual):not(#menue_pc) .innerr{
    padding: 150px 0;
  }

  #about ul{
    margin: 50px 0;
  }

  #service .service_contents .subtitle img{
    width: 80px;
  }

  #service .service_contents .service_plan li{
    width: 230px;
  }

  #service .service_contents .users_voice ul li img{
    width: 130px;
  }

  #service .service_contents .point_list li{
    height: 250px;
  }

  #service .service_contents .point_list li img{
    /* height: 250px; */
    object-fit: cover;
  }

  #service .service_contents .point_list li div {
    padding: 80px 30px;
  }

  #service .service_contents .service04_list li img{
    height: 400px;
  }

  #service .service_contents .service04_list .benefits > h2{
    width: 200px;
    top: -35px;
  }

  #service .service_contents .service04_list .benefits .flex_pc img{
    height: 230px;
  }

  #service .service_contents .service04_list .benefits .flex_pc div {
    padding: 0px 50px;
    width: 450px;
    box-sizing: border-box;
  }

  #service .service_contents .service04_list .benefits .emphasis{
    font-size: 40px;
    margin: 20px 10px;
  }


  #comparison .comparison_details li .round_beige{
    width: 200px;
    height: 200px;
  }

  #contacts .contact_list:after{
    display: block;
    content: "";
    /* width: 32%; */
    width: 30%;
  }

  /* #contacts .contact_list li{
    width: 32%;
  } */

  #contacts .contact_list li:not(:last-child),
  #contacts .contact_list li:last-child {
    margin: 0 0px 50px;
  }

  footer ul {
    width: 550px;
  }

  footer .logo {
    width: 200px;
  }
}

@media screen and (min-width: 1366px){
  #mainvisual {
    height: 90vh;
  }

  #mainvisual img{
    max-width: 600px;
    left: 80px;
  }

  section:not(#mainvisual):not(#menue_pc) .inner,
  footer .inner{
    max-width: 1000px;
  }

  #service .service_contents .users_voice ul li .balloon{
    padding: 30px 150px 30px 20px;
  }

  #service .service_contents .service04_list .benefits .flex_pc img{
    height: 280px;
  }
}

/* @media screen and (min-width: 1500px){
  #mainvisual{
    background-position: center;
    background-size: auto;
  }
} */

/* Webサイト（全国版）ここから */
.circle{
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto;
}

#about ul li{
  padding: 0;
}

#about ul li .circle h2{
  text-align: center;
}

#about ul li .circle h2 span{
  display: block;
  font-size: 16px;
}

#about ul li:nth-child(2) p{
  text-align: center;
  padding: 5px 0;
  font-size: 50px;
  line-height: 1;
}

#service .service_contents .service01_list {
  margin: 0 0 50px;
}

#service .service_contents .text_plus{
  margin: 30px auto;
  text-align: center;
  font-size: 80px;
  line-height: 1;
}

#service .service_contents .flex_pc .circle{
  text-align: center;
  margin: 30px auto;
}

#contacts .contact_list li h2 {
  margin: 5px 0;
}

#contacts .contact_list p{
  font-size: 14px;
}

#contacts .contact_list p span {
    border-bottom: 1px solid #000;
}

#contacts .contact_list li .detailsBTN{
  margin: 10px 0 0;
  padding: 10px;
  text-align: center;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 30%);
}

@media screen and (min-width: 500px){
  #about ul{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #about ul li:nth-child(2){
    margin: 0 10px;
  }

  /* #contacts .contact_list{
    justify-content: space-around;
  } */

  #contacts .contact_list li{
    position: relative;
    height: 350px;
    /* max-width: 220px; */
  }

  #contacts .contact_list li div{
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  #contacts .contact_list li .detailsBTN{
    font-size: 18px;
  }
}
@media screen and (min-width: 768px){
  .circle{
    width: 250px;
    height: 250px;
  }

  #about ul {
    margin: 50px 0;
  }

  #about ul li:nth-child(2) {
    margin: 0 30px;
  }

  #service .service_contents .text_plus{
    margin: 50px auto;
    font-size: 120px;
  }

  #service .service_contents .flex_pc{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #service .service_contents .flex_pc .circle{
    margin: 0;
  }

  #service .service_contents .flex_pc p{
    text-align: left;
    margin: 0 0 0 30px;
  }

  #contacts .contact_list li .bg_beige.detailsBTN:hover{
    opacity: 0.8;
  }
}

@media screen and (min-width: 1024px){
  .circle{
    width: 300px;
    height: 300px;
  }

  #service .service_contents .flex_pc p{
    margin: 0 0 0 50px;
  }

  #contacts .contact_list{
    justify-content: space-between;
  }

  #contacts .contact_list li{
    /* width: 30%; */
    max-width: none;
    height: 360px;
  }
}
/* Webサイト（全国版）ここまで */
