@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1100px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family:YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  color: #333;
}

a:hover,
button:hover {
  cursor: pointer;
}

/*
***************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
****************************
*/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  padding: 0;
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}


/* header */
header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background-color: #ffffff;
    box-shadow: 0 5px 5px rgb(0, 0, 0,0.3);
}
@media screen and (max-width: 767px) {
  header {
    height: 3.125rem;
  }
}
@media screen and (min-width: 768px) {
    .js-drawer{}
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 3.125rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 1.25rem;
  }
}

.header__logo {
  max-width: 17.2rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 13.8rem;
  }
}

.header__logo a {
  display: block;
  height: inherit;
}

.header__nav {
  height: inherit;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block!important;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .header__list {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: 100vh;
    min-height: 630px;
    padding-top: 6.875rem;
    background-color: #ffffda;
    gap: 3.75rem;
  }
}

.header__list-item {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.125;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__list-item {
    font-size: 1.5625rem;
    line-height: 0.36;
    height: auto;
    height: initial;
    color: #000;
  }
}

.header__list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.header__tel{
    width: auto;
}
.header__tel-ttl{
    width: 100%;
    font-size: 0.9em;
    background: #ed1c24;
    padding: 0.1em 0;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    border-radius: 50px;
}
.header__tel-flex{
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__tel-flex_icon{
    margin-right: 0.5em;
}
.header__tel-flex_icon img{
    max-width: 27px;
    padding-top: 0.3em;
}
.header__tel-flex_number{
    font-size: 1.9em;
    color: #ed1c24;
    font-weight: bold;
}

.header__btn {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2777777778;
  padding: 0.9375rem 1.875rem;
  text-align: center;
  letter-spacing: 0.05em;
  color: #ffffff;
  border-radius: 10px;
  background-color: #ec5900;
  -webkit-box-shadow: 2px 2px 0px 0px rgb(188, 188, 188);
          box-shadow: 2px 2px 0px 0px rgb(188, 188, 188);
}

.burger__btn {
  position: absolute;
  z-index: 9999;
  right: 20px;
  width: 40px;
  height: 25px;
}
.burger__btn span {
  position: absolute;
  display: block;
  width: 100%;
  height: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #000;
}
.burger__btn span:nth-child(1) {
  top: 0;
}
.burger__btn span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.burger__btn span:nth-child(3) {
  bottom: 0;
}

.burger__btn.is-active span:nth-child(1) {
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.burger__btn.is-active span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.burger__btn.is-active span:nth-child(3) {
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
    .header__btn {
        width: 70%;
    }
}

/* Footer */
footer {
    margin-top: 5rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
    background: #18536f;
    color: #fff;
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 1.5625rem;
    padding-bottom: 5rem;
  }
}

.footer__inner {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__contents {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .footer__contents {
    margin-left: 0;
  }
}
.footer__list-item {
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 2;
}

.footer__copylight {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .footer__copylight {
    text-align: center;
    margin-top: 1.25rem;
  }
}

.footer__contact {
  padding: 1.25rem;
  text-align: center;
  background-color: #e60012;
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 0.36;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

/*MV*/
.top {
    margin-top:5rem;
  position: relative;
    padding: 0;
}
@media screen and (max-width: 767px) {
    .top {
    margin-top:3rem;
}
}

.top .l-inner {
  display: contents;
    padding: 0;
}
.top .l-inner img{
    vertical-align: bottom;
}
.top__contents {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
    padding: 0;
}
@media screen and (max-width: 767px) {
    .top__contents {
        top: 30%;
        padding: 0 2em;
    }
}
.top__title {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.3333333333;
  color: #18536f;
    margin-bottom: 0.3em;
}
.top__title span{
    background:linear-gradient(transparent 60%, #ffff45 60%);
}
@media screen and (max-width: 767px) {
    .top__title {
        width: auto;
        margin: 3rem auto;
  font-size: 11vw;
    margin-bottom: 0.5em;
}
}
.top__sub-txt{
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.8rem;
    font-weight: bold;
    color: #18536f;
    margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
    .top__sub-txt{
        font-size: 1.2rem;
    }
}
.top__maker-area{
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 2em auto;
}
.top__maker-box{
    width: 553px;
    background: #fff;
    padding: 1.5em;
    border-radius: 1rem;
    box-shadow: 0 0 5px rgb(0, 0, 0,0.3);
}
@media screen and (max-width: 767px) {
    .top__maker-area{
        display: none;
    }
    .top__maker-area-sp{
    width: 100%;
    margin: 0 auto;
}
.top__maker-box-sp{
    width: 90%;
    background: #fff;
    padding: 1.5em;
    border-radius: 1rem;
    box-shadow: 0 0 5px rgb(0, 0, 0,0.3);
    margin: 1rem auto;
}
}
@media screen and (min-width: 768px) {
    .top__maker-area-sp{
        display: none;
    }
    .top__maker-box-sp{
        display: none;
    }
}

/*共通*/
.pos-comp__h2title{
    text-align: center;
    font-size: 2rem;
    color: #18536f;
}
.pos-comp__title-line{
    max-width: 82px;
    border-bottom: 3px solid #ec9200;
    margin: 0 auto 5rem;
}
@media screen and (max-width: 767px) {
    .pos-comp__h2title{
    font-size: 1.6rem;
}
}

.contact-btn a {
    margin: 3rem auto 0;
    padding: 1rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 31.3rem;
	color: #fff;
	font-size: 1.4em;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
    background-color: #ec5900;
    border-radius: 50px;
    -webkit-box-shadow: 2px 2px 0px 0px rgb(188, 188, 188);
          box-shadow: 2px 2px 0px 0px rgb(188, 188, 188);
}

.contact-btn a:hover {
	color: #f2f2f2;
}
@media screen and (max-width: 767px) {
    .contact-btn a {
        width: 90%;
    }
}
.color-white{color: white!important;}
.line-yerrow{
    border-bottom: 3px solid #ffff45;
}



/*1st View*/
.intro__area{
    margin: 0 auto;
    width: 100%;
    background: #ffffda;
    padding: 4.1rem 0 ;
}
.intro__area_flex{
    max-width: 1000px;
    margin: 0 auto;
    display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
@media screen and (max-width: 767px) {
    .intro__area_flex{
        display: block;
        padding: 0 1em;
    }
}

.intro__area_flex .intro__item{
    width: 50%;
}
.intro__area_flex .intro__item img{
    width: 100%;
}
@media screen and (max-width: 767px) {
    .intro__area_flex .intro__item{
        width: 100%;
    }
}

.intro__item_txt{
    color: #18536f;
    font-weight: 600;
    line-height: 1.88;
    margin-bottom: 2rem;
}

.intro__item_note{
    color: #d21717;
    font-size: 0.9rem;
    margin: 0 auto;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .intro__item_txt{
        margin-top: 1.5rem;
    }
    .intro__item_note{
        font-size: 0.8rem;
    }
}

.intro__dl-btn a {
    margin: 1rem auto;
    padding: 1rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 24.4rem;
	color: #fff;
	font-size: 1.4em;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
    background-color: #ec5900;
    border-radius: 50px;
    -webkit-box-shadow: 2px 2px 0px 0px rgb(188, 188, 188);
          box-shadow: 2px 2px 0px 0px rgb(188, 188, 188);
}

.intro__dl-btn a:hover {
	color: #f2f2f2;
}
@media screen and (max-width: 767px) {
    .intro__dl-btn a {
        width: 100%;
    }
}


/*2nd View*/
.merit__area{
    margin: 0 auto;
    width: 100%;
    padding: 4.1rem 0 ;
}

.merit__area_flex{
    max-width: 1000px;
    margin: 0 auto;
    display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.merit__area_flex .merit__item{
    width: 28%;
}
@media screen and (max-width: 767px) {
    .merit__area_flex{
        display:block;
    }
    .merit__area_flex .merit__item{
    width: 100%;
        padding: 0 1em;
    display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
}
.merit__area_flex .merit__item .merit__item_icon img{
    width: 100%;
}
.merit__area_flex .merit__item .merit__item_txt1{
  font-size: 1.1em;
    font-weight: 600;
  color: #18536f;
  line-height: 2.5;
  text-align: center;
    margin: 1em auto 0.5em;
}
.merit__area_flex .merit__item .merit__item_txt2{
    font-size: 1.4em;
    text-align: center;
    margin: 1em auto 1.5em;
}
@media screen and (max-width: 767px) {
    .merit__area_flex .merit__item .merit__item_txt-area{
        width: 55%;
        margin-bottom: 2em;
    }
    .merit__area_flex .merit__item .merit__item_icon{
         width: 40%;
    }
    .merit__area_flex .merit__item .merit__item_txt1{
  font-size: 0.9em;
  line-height:1.5;
  text-align: left;
    margin: 0 auto 0;
}
    .merit__area_flex .merit__item .merit__item_txt2{
    font-size: 1em;
        text-align: left;
    margin: 0.5em auto;
}
    .merit__area_flex .merit__item .merit__item_txt3{
        font-size: 0.9em;
    }
}

.merit__item_txt4{
    max-width: 300px;
    margin: 3.4em auto;
}

.merit__h3title{
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: 2.1em;
    color: #18536f;
}
.merit__h3title span{
    background:linear-gradient(transparent 60%, #ffff45 60%);
}
@media screen and (max-width: 767px) {
    .merit__h3title{
    font-size: 1.7em;
}
    .merit__item_txt4{
    max-width: 230px;
    margin: 3em auto;
}
}

/*3rd View*/
.osusume__area{
    margin: 0 auto;
    width: 100%;
    background: #d3effc;
    padding: 4.1rem 0 ;
}
@media screen and (max-width: 767px) {
    .osusume__area{
        padding: 4.1rem 1rem ;
    }
}

.osusume__box_flex{
    max-width: 1000px;
    margin: 0 auto 1.5em;
    display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: stretch;
	align-items: stretch;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 5px rgb(0, 0, 0,0.3);
    padding: 1.5em;
}
@media screen and (max-width: 767px) {
    .osusume__box_flex{
        width: 100%;
        display:block;
    }
}
.osusume__box_flex .osusume__item_photo{
    width: 18%;
}
@media screen and (max-width: 767px) {
    .osusume__box_flex .osusume__item_photo{
    width: 100%;
}
}
.osusume__box_flex .osusume__item_name{
    width: 28%;
}
@media screen and (max-width: 767px) {
    .osusume__box_flex .osusume__item_name{
    width: 100%;
}
}
.osusume__box_flex .osusume__item_name .pos__name{
    font-size: 1.4rem;
    border-bottom: 1px solid #bdbdbd;
    margin-bottom: .3em;
    font-weight: 600;
}
.osusume__box_flex .osusume__item_name .pos__maker-name{
    margin-bottom: 2.5em;
}
@media screen and (max-width: 767px) {
    .osusume__box_flex .osusume__item_name .pos__maker-name{
    margin-bottom: 1em;
}
}
.osusume__box_flex .osusume__item_name .pos__price_flex{
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: stretch;
	align-items: stretch;
}
.pos__price_item{
    margin-right: 1em;
}
.pos__price_ttl{
    font-size: 0.9rem;
}
.pos__price_cost{
    font-weight: bold;
}
.pos__price_cost span{
    font-size: 1.9em;
}

.osusume__box_flex .osusume__item_detail{
    width: 50%;
}
@media screen and (max-width: 767px) {
    .osusume__box_flex .osusume__item_detail{
    width: 100%;
}
}
.osusume__box_flex .osusume__item_detail .pos__detail_ttl{
    border: 1px solid #000;
    display: inline-block;
    margin: 0 0 .5em 0;
    padding: 0 1em;
}
@media screen and (max-width: 767px) {
    .osusume__box_flex .osusume__item_detail .pos__detail_ttl{
    margin: 1em 0 .5em 0;
}
}
.osusume__box_flex .osusume__item_detail .pos__detail_list li{
    background:url("../img/pos-comp_3rd_check_icon.jpg") no-repeat 0 0;
  background-size:auto 15px;
  padding-left: 20px;
    position:relative;
  top:1px;
  left:0;
    line-height: 1;
    margin-bottom: 1em;
    color: #18536f;
    font-weight: 600;
}

.pos__osusume-btn a {
    margin: 1rem auto 0;
    padding: .2rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 13.1rem;
	color: #fff;
	font-size: 1em;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
    background-color: #ec5900;
    border-radius: 50px;
    -webkit-box-shadow: 2px 2px 0px 0px rgb(188, 188, 188);
          box-shadow: 2px 2px 0px 0px rgb(188, 188, 188);
    left: 25%;
}

.pos__osusume-btn a:hover {
	color: #f2f2f2;
}
.pos__osusume-btn2{
    margin: 1rem auto 0;
    padding: .2rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 13.1rem;
	color: #fff;
	font-size: 1em;
	font-weight: 700;
	text-decoration: none;
    background-color: #bdbdbd;
    border-radius: 50px;
    left: 25%;
}
@media screen and (max-width: 767px) {
    .pos__osusume-btn a {
        left: 0%;
    }
    .pos__osusume-btn2{
        left: 0%;
    }
}
.pos__osusume_annotation{
    max-width: 1000px;
    margin: 0 auto;
}

/*4th View*/
.service__area{
    margin: 0 auto;
    width: 100%;
    background: #3eaadd;
    padding: 4.1rem 0 ;
}
@media screen and (max-width: 767px) {
    .service__area{
        padding: 4.1rem 1rem ;
    }
}

.service__inner{
    max-width: 1000px;
    margin: 0 auto;
}

.service__area-flex{
    margin: 0 auto;
    width: 100%;
    display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
@media screen and (max-width: 767px) {
    .service__area-flex{
        display:block;
    }
}
.service__item_box{
    width: 28%;
    background: #fff;
    border-radius: 15px;
    padding: 3em 1.5em 1.5em 1.5em;
    position: relative;
}
@media screen and (max-width: 767px) {
    .service__item_box{
        width: 100%;
        display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
    }
}
.service__item_arrow{
    width: 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .service__item_arrow{
        transform: rotate( 90deg );
        margin: 1em auto;
    }
}
.service__item_icon{
    width: 80%;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .service__item_icon{
        width: 40%;
        display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    }
    .service__item_detail{
        width: 55%;
    }
}
.service__item_h3ttl{
    text-align: center;
    color: #18536f;
    margin: .5em auto;
}
@media screen and (max-width: 767px) {
    .service__item_h3ttl{
        font-size: 1em;
    }
}
.service__item_txt{
    color: #18536f;
}
@media screen and (max-width: 767px) {
    
}
.service__item_number{
    position: absolute;
    top:-5%;
    left: 42%;
    width: 48px;
    height: 48px;
    display: flex;
	justify-content: center;
	align-items: center;
    border-radius:50%;
    background: #ec9200;
    color: #fff;
    font-size: 1.4em;
}
@media screen and (max-width: 767px) {
    .service__item_number{
        left: 43%;
    }
}

.service__chach-copy{
    text-align: center;
    margin: 2em auto 1em;
    width: 100%;
    color: #ffff45;
    font-size: 1.9em;
    text-decoration: underline;
    line-height: 2;
}
.service__copy2{
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.pos-comp_4th_downarrow{
    width: 141px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .service__chach-copy{
    font-size: 1.3em;
    line-height: 1.5;
}
    .pos-comp_4th_downarrow{
    width: 100px;
}
}

/*contact*/
.contact__area{
    margin: 0 auto;
    width: 100%;
    padding: 4.1rem 0 ;
}
@media screen and (max-width: 767px) {
    .service__area{
        padding: 4.1rem 1rem ;
    }
}

.pos__contact-form{
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .pos__contact-form{
        width: 100%;
        padding: 0 1.5em;
    }
}

.submit-btn-wrap{
    display:inline-block;
    position:relative;
    margin: 0 auto;
    top:50px;
   left: 50%;
   transform: translate(-50%,-50%);
}
.submit-btn-wrap:after{
    content: url("/pos/comparison/assets/img/form-btn__arrow.png");
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    color:#fff;
}
.submit-btn-wrap:hover::after{
    right:5%;
}
.Form-Btn {
  border-radius: 50px;
  border:none;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 380px;
  letter-spacing: 0.05em;
  background: #ec5900;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 250px;
    font-size: 16px;
  }
}
.Form-Btn:hover{
    -webkit-box-shadow: none;
          box-shadow: none;
      transform: translateY(5px);
    cursor: pointer;
}

.form-setsumei{
    color: #d9443d;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1em;
}

table {
  border-collapse: collapse;
}

.form-txt p {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 60px auto 40px;
}

input[type="submit"],
input[type="text"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}


input[type="text"],
textarea {
    border: 1px solid #cacaca;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 100%;
  transition: 0.8s;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
    input[type="text"],
textarea {
  background: #f8f8f8;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 100%;
  transition: 0.8s;
  border-radius: 0;
}
}

select{
    width: 100%;
    border: 1px solid #cacaca;
    padding: 12px 15px;
}

input[type="text"]:focus,
textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

textarea[name="content"] {
  display: inline-block;
  width: 100%;
  height: 200px;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
}

::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}

::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}

.form-table {
  width: 100%;
}

.form-table th,
.form-table td {
  border: 1px solid #d7d7d7;
  padding: 1em;
}

.form-table th {
  background: #bdbdbd;
  padding-left: 1em;
  position: relative;
  text-align: left;
  width: 300px;
    color: #fff;
}
.form-th{
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
.form-th li{
    list-style: none;
}
.form-th .hissu{
    background: #ff0000;
    font-size: 0.8em;
    padding: 0.3em;
}
@media screen and (max-width: 767px) {
.form-table th,
.form-table td {
  display: block;
  width: 100%;
  border-bottom: none;
}
    .form-table {
  margin-left: -20px;
  width: -webkit-calc(100% + 40px);
  width: calc(100% + 40px);
}
}

.prcy-link{
    max-width: 1000px;
    width: 100%;
    margin: -1em auto;
    text-align: center;
}
.prcy-link a{
    color: #18536f;
    text-decoration: underline;
}


@media screen and (max-width: 767px) {
    .pc{display: none}
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}
.u-mobile {
  display: none;
}
.sp{display: none!important}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

/*お問い合わせフォーム*/

.pos-form_area{
    height: 76vh;
    margin: 100px auto;
    max-width: 1000px;
      display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	padding: 0 1rem;
	
}

/*サンクス*/
.pos-thanks_area{
    height: 76vh;
    margin: 100px auto;
      display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
}
.pos-thanks_inner{
  margin: 0 auto 10rem;
  width: 100%;
  height: 3.2rem;
    text-align: center;
    line-height: 2em;
}
.return_btn a {
  border-radius: 100px;
  margin: 0 auto;
  padding-top: 1em;
  padding-bottom: 1em;
    text-align: center;
  max-width: 380px;
  width: 90%;
  display: block;
  letter-spacing: 0.05em;
  background: #ec5900;
  color: #fff;
  font-size: 26px;
}

@media screen and (max-width: 767px) {
    .pos-thanks_area{
        height: 65vh;
    }
    .pos-thanks_inner{
        margin: 0 auto 15rem;
        padding: 0 1rem;
    }
    .return_btn a {
        font-size: 18px;
    }
}