@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
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;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

p {
  white-space: normal;
  line-height: 1.8;
}

img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

input[type='email'],
input[type='tel'],
input[type='text'] {
  font-family: 'Yu Gothic Medium', '游ゴシック Medium', '游ゴシック体', 'YuGothic', 'メイリオ', 'Meiryo', sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  outline: none;
  border: none;
  font-size: 1.6rem;
  padding: 0 0 0 1em;
}

input[type='submit']::focus,
input[type='button']::focus {
  outline-offset: -2px;
}

button,
input[type='submit'] {
  font-family: 'Yu Gothic Medium', '游ゴシック Medium', '游ゴシック体', 'YuGothic', 'メイリオ', 'Meiryo', sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}

.wave {
  width: 100%;
  position: relative;
  height: 10px;
  margin-top: -50px;
}

.wave svg {
  height: 14vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.wave_2 {
  margin-top: -48px;
}

.wave_3 {
  margin-top: -48px;
}

/* sp */
.wave_sp {
  width: 100%;
  position: relative;
  height: 0;
  margin-top: -48px;
}

.wave_sp svg {
  height: 8vh;
}

/* sp menu ---
-------------------------*/
#nav-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 65px;
  height: 65px;
  cursor: pointer;
  background-color: #f6f6f6;
}

#nav-toggle > div {
  position: relative;
  width: 35px;
  margin: 0 auto;
}

#nav-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  background: #51b1bf;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}

#nav-toggle span:nth-child(1) {
  top: 17px;
}

#nav-toggle span:nth-child(2) {
  top: 27px;
}

#nav-toggle span:nth-child(3) {
  top: 37px;
}

#nav-toggle:hover span:nth-child(1) {
  top: 17px;
}

#nav-toggle:hover span:nth-child(3) {
  top: 37px;
}

#nav-toggle p {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: 0;
  text-align: center;
  line-height: 2;
  font-size: 1.2rem;
  color: #51b1bf;
  font-weight: bold;
}

.open #nav-toggle span {
  background: #51b1bf;
}

.open #nav-toggle span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.open #nav-toggle span:nth-child(2) {
  top: 23px;
  width: 0;
  left: 50%;
}

.open #nav-toggle span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

/* z-index */
#nav-toggle {
  z-index: 1000;
}

#container {
  z-index: 900;
}

#gloval-nav {
  background: #fff;
  color: #fff;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  overflow: hidden;
}

#gloval-nav {
  padding: 0 1em;
}

#gloval-nav ul {
  margin: 0.7em 0;
}

#gloval-nav ul li {
  margin: 0 0 0.7em;
}

/* open */
.open {
  position: fixed;
  overflow: hidden;
}

.open #gloval-nav {
  visibility: visible;
  opacity: 1;
  overflow-y: scroll;
}

.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}

.sp-menu_entry a {
  width: 100%;
  display: block;
  background-color: #ffb027;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.7em 0;
  border-radius: 5px;
  position: relative;
}

.sp-menu_entry a:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.32%22%20height%3D%2224.32%22%20viewBox%3D%220%200%2024.32%2024.32%22%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22a%22%20d%3D%22M23.674%2C6.821l-2.19%2C2.19a.571.571%2C0%2C0%2C1-.808%2C0L15.4%2C3.739a.571.571%2C0%2C0%2C1%2C0-.808l2.19-2.19a2.285%2C2.285%2C0%2C0%2C1%2C3.225%2C0L23.674%2C3.6A2.276%2C2.276%2C0%2C0%2C1%2C23.674%2C6.821ZM13.523%2C4.812%2C1.049%2C17.286.042%2C23.058a1.141%2C1.141%2C0%2C0%2C0%2C1.321%2C1.321l5.771-1.012L19.608%2C10.892a.571.571%2C0%2C0%2C0%2C0-.808L14.335%2C4.812a.576.576%2C0%2C0%2C0-.812%2C0ZM5.918%2C16.217a.662.662%2C0%2C0%2C1%2C0-.941l7.315-7.315a.665.665%2C0%2C1%2C1%2C.941.941L6.858%2C16.217a.662.662%2C0%2C0%2C1-.941%2C0ZM4.2%2C20.212h2.28v1.724l-3.064.537L1.942%2C21l.537-3.064H4.2Z%22%20transform%3D%22translate(-0.024%20-0.075)%22%2F%3E%3C%2Fsvg%3E');
  background-size: contain;
  vertical-align: text-bottom;
}

.sp-menu_tel a {
  width: 100%;
  display: block;
  background: #646464;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.7em 0;
  border-radius: 5px;
  position: relative;
}
.sp-menu_tel a:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(/wp-content/themes/locca/images/phone_icon_sp.svg);
  background-size: contain;
  vertical-align: middle;
  margin-right: 0.8em;
}

.sp-menu_btn {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
}

.sp-menu_btn .menu_btn {
  width: 48%;
}

.sp-menu_btn .menu_btn a {
  display: block;
  width: 100%;
  height: 97px;
  padding: 1em 0;
  background-color: #51b1bf;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
}

.sp-menu_btn .mypage img {
  margin-bottom: 0.5em;
}

.sp-menu_btn .contact img {
  margin-bottom: 1em;
}

html {
  width: 100%;
  font-size: 62.5%;
  overflow: auto;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: 'Yu Gothic Medium', '游ゴシック Medium', '游ゴシック体', 'YuGothic', 'メイリオ', 'Meiryo', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #646464;
  overflow: auto;
  position: relative;
  padding-top: 91px;
}

@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
    -webkit-text-size-adjust: 100%;
    padding-top: 65px;
  }
}

@media (max-width: 768px) {
  .sp-none {
    display: none !important;
  }
}

.pc-none {
  display: none !important;
}

@media (max-width: 768px) {
  .pc-none {
    display: block !important;
  }
}

.header {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: 0px 0px 6px #00000019;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 999;
}

h2 {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

h2 img {
  margin-bottom: 0.5em;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 2rem;
  text-align: center;
  color: #646464;
  font-weight: bold;
}

h4 img {
  margin-bottom: 0.5em;
}

@media (max-width: 768px) {
  h4 {
    font-size: 1.8rem;
  }
}

h5 {
  color: #646464;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
}

@media (max-width: 768px) {
  h5 {
    font-size: 1.8rem;
  }
}

.header_top {
  max-width: 1366px;
  height: 91px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .header_top {
    width: 100%;
    height: 65px;
    padding: 0;
    justify-content: flex-start;
    position: relative;
  }
  .header_top .head_logo {
    width: 34%;
  }
}

.kv {
  max-width: 100%;
  margin: 0 auto;
  /*position: relative;
	background-image: url('../images/kv.png');
	background-repeat: no-repeat;
	width: 100%;
	height: 700px;
	background-size: contain;
	background-position: 0 3px;
	position: relative;
	h2{
		font-size: 3.2rem;
		color: #FFF;
		font-weight: bold;
		text-align: center;
		position: absolute;
		top:43.6%;
		left:12%;
		line-height: 1.8;
			span{
				display: block;
				font-size: 2.1rem;
			}
		}
	@include sp {
		background-image: url('../images/kv-sp.png');
		h2{
			font-size: 1.8rem;
			span{
				font-size: 1.3rem;
			}
		}
	}*/
}

/* .kv img {
  margin-top: 3px;
} */

@media (max-width: 768px) {
  .kv {
    /* margin-top: 65px !important; */
  }
  .kv-pc {
    display: none;
  }
}

.kv-sp {
  display: none;
}

@media (max-width: 768px) {
  .kv-sp {
    display: block;
  }
}

.phone {
  width: 100%;
}

.phone ul {
  display: flex;
  justify-content: space-between;
}

.phone li {
  margin: 0 10px;
  align-self: center;
}

.phone li:first-child p {
  line-height: 1.3;
  text-align: center;
}

.phone li:nth-child(2) {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background-color: #ffb027;
  width: 235px;
  height: 58px;
  border: 2px solid #fff;
  box-shadow: 0 0 5px #00000026;
  box-sizing: border-box;
}

.phone li:nth-child(2) a {
  display: block;
  margin: 0 auto;
  width: 100%;
  line-height: 56px;
  text-align: center;
}

.phone li:nth-child(2) a:before {
  content: '';
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url('../images/pen-icon.png');
  background-size: contain;
  vertical-align: middle;
  margin-right: 0.2em;
}

.phone li:nth-child(2):hover {
  opacity: 0.8;
}

.phone li:last-child {
  align-self: stretch;
  margin: 0;
}

.phone li:last-child a {
  display: block;
  width: 91px;
  height: 91px;
  padding: 0.5em;
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
}

.phone li:last-child a img {
  max-width: 67%;
  height: auto;
}

.phone li:last-child:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .phone li {
    margin: 0;
  }
  .phone li:first-child {
    display: none;
  }
  .phone li:last-child {
    right: 0;
    position: absolute;
    top: 0;
  }
  .phone li:last-child a {
    width: 65px;
    height: 65px;
  }
  .phone li:last-child a img {
    max-width: 100%;
  }
}

.sp-phone {
  background-color: #ffb027;
  color: #fff;
  font-size: 12px;
  width: 138px;
  height: 39px;
  line-height: 39px;
  box-shadow: 0px 0px 3px #00000029;
  border: 1px solid #ffffff;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  font-family: 'Yu Gothic UI', 'Segoe UI', SegoeUI, 'Meiryo UI', sans-serif;
  position: absolute;
  right: 78px;
}

.sp-phone a:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('../images/pen-icon.png');
  /*background-image: url("../images/phone_icon_sp.svg");*/
  background-size: contain;
  vertical-align: middle;
  margin-right: 0.8em;
}

.number {
  font-family: 'Arial', 'ＭＳ ゴシック';
  font-size: 2.9rem;
  font-weight: bold;
  color: #646464;
  display: block;
}

.number:before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url('../images/icon-phone.png');
  background-size: contain;
  vertical-align: middle;
  margin-right: 0.2em;
}

.reception {
  font-size: 1.1rem;
  text-align: center;
  font-weight: bold;
  display: inline-block;
}

.reception_s {
  display: inline-block;
  font-weight: 500;
}

.content {
  width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

@media (max-width: 768px) {
  .content {
    width: 100%;
    padding: 20px !important;
  }
}

.menu {
  width: 600px;
  margin: 60px auto 20px;
}

.menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu li {
  /* width: 140px; エリア表示時の幅*/
  /* width: 240px; */
  /* height: 68px; */
  font-size: 14px;
  color: #646464;
  font-weight: bold;
  text-align: center;
  width: 150px;
  border-radius: 5px;
  position: relative;
}

.menu li a {
  display: block;
  width: 100%;
}
.menu li a .menu-icon {
  display: flex;
  height: 40px;
  margin-bottom: 8px;
  justify-content: center;
  align-items: center;
}
.menu li a .menu-txt {
  font-size: 16px;
}
.menu li a:after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border: 2px solid #51b1bf;
  border-color: #51b1bf #51b1bf transparent transparent;
  transform: rotate(135deg);
}
.menu li:before {
  content: '';
  position: absolute;
  display: inline-block;
  height: 70px;
  border-left: 1px solid #e3e3e3;
  left: 0;
  top: 12px;
}
.menu li:first-child:before {
  display: none;
}
.menu li:last-child:after {
  content: '';
  position: absolute;
  display: inline-block;
  height: 70px;
  border-left: 1px solid #e3e3e3;
  left: 0;
  top: 12px;
  border-right: none;
  pointer-events: none;
}
.menu li:last-child:before {
  display: none;
}
/* .menu li img {
  margin-bottom: 1em;
}

.menu li:last-child:after {
  content: '';
  position: absolute;
  display: inline-block;
  height: 14px;
  border-right: 1px solid #e3e3e3;
  right: 0;
  bottom: 0;
} */

@media (max-width: 768px) {
  .menu {
    width: 100%;
    margin: 0 auto;
  }
  .menu li {
    border: 1px solid #64646433;
    max-width: calc((100% - 5px * 3) / 4);
    flex: 0 0 calc((100% - 5px * 3) / 4);
  }
  .menu li a {
    padding-bottom: 5px;
  }
  .menu li a .menu-txt {
    font-size: 14px;
  }
  .menu li a .menu-icon {
    height: 60px;
    margin-bottom: 0;
  }
  .menu li:before {
    display: none;
  }
  .menu li:last-child:after {
    display: none;
  }
}

.full-cont {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  .full-cont {
    margin: 2em 0;
  }
}

@media (max-width: 768px) {
  .full-cont_sp {
    padding: 20px 0 0;
    margin: 0 auto 2em;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

@media (max-width: 768px) {
  .flex {
    width: 100%;
    flex-direction: column;
  }
}

.full_img {
  width: 50%;
}

.full_img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

@media (max-width: 768px) {
  .full_img {
    width: 100%;
  }
}

.full_txt {
  width: 50%;
  padding: 3% 3% 6%;
  background: linear-gradient(#51b1bf, #97dbde);
  position: relative;
}

.full_txt p {
  width: 100%;
  margin: 0 auto;
  color: #fff;
}

@media (max-width: 768px) {
  .full_txt {
    background: none;
    width: 100%;
  }
  /* .full_txt p {
    width: 100%;
  } */
}

.sk-server__sp h2 {
  margin: 1em 0;
}

.sk-server__sp img {
  width: 85%;
  border-radius: 5px;
}

.sk-server__sp .full_disc {
  width: 90%;
  margin: 0 auto;
  color: #fff;
  padding: 2em 0 3em;
}

@media (max-width: 768px) {
  .sk-server__sp .full_disc {
    padding: 2em 0 4em;
  }
}

.sub {
  font-size: 1.6rem;
  display: inline-block;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .sub {
    font-size: 1.4rem;
    margin-right: 0;
  }
}

.full_disc {
  text-align: left;
  padding-top: 3em;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .full_disc {
    display: none;
  }
}

.wave-white {
  width: 100%;
  position: absolute;
  bottom: -3px;
}

@media (max-width: 1240px) {
  .wave-white {
    bottom: -11px;
  }
}

@media (max-width: 768px) {
  .wave-white {
    bottom: -1px;
  }
}

.campaign-cont {
  align-items: flex-start;
  margin: 3em auto 3.2em;
  padding: 0 !important;
}

.campaign-cont h2 {
  color: #646464;
  position: relative;
}

@media (max-width: 768px) {
  .campaign-cont {
    margin: 5em auto 0;
  }
}

.feature-cont {
  align-items: flex-start;
  margin: 3em auto 3.2em;
}

.feature-cont h2 {
  color: #646464;
  margin-bottom: 1.6em;
  position: relative;
}

.feature-cont h2 img {
  width: 110px;
  height: auto;
  margin-bottom: 0.5em;
}

.feature-cont .flex {
  align-items: flex-start;
}

@media (max-width: 768px) {
  .feature-cont {
    margin: 5em auto 0;
    padding: 0;
  }
  .feature-cont h2 {
    margin-bottom: 1.3em;
  }
  .feature-cont h2 img {
    max-width: 72px;
  }
}

.feature-cont-img {
  max-width: 31.3%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0px 3px 6px #0000001a;
}

.feature-cont-img p {
  padding: 0 1em;
}

@media (max-width: 768px) {
  .feature-cont-img {
    max-width: 83%;
    margin: 0 auto 3em;
  }
  .feature-cont-img p {
    padding: 0 1em;
  }
}

.feature-cont h3,
.product-feature-area h3 {
  color: #51b1bf;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  padding: 0 1em;
  margin: 1em 0;
}

@media (max-width: 768px) {
  .feature-cont h3,
  .product-feature-area h3 {
    font-size: 1.6rem;
  }
}

.full_title_plan .full_title {
  padding-top: 3%;
}

@media (max-width: 768px) {
  .full_title_plan {
    margin: 1em 0 0;
    padding-bottom: 1.5em;
  }
  .full_title_plan .full_title img {
    max-width: 14%;
  }
}

.blu-bk__sp {
  background: linear-gradient(#51b1bf, #90d7db);
  position: relative;
}

@media (max-width: 768px) {
  .product__sp {
    flex-direction: column;
    padding-top: 4%;
  }
  .product__sp h2 {
    margin: 1em 0;
  }
  .product__sp h2 img {
    max-width: 10%;
  }
  .product__sp .full_title_price {
    order: 1;
  }
  .product__sp .full_img {
    order: 2;
  }
  .product__sp .sp-server__tab {
    order: 3;
    background-color: #fff;
  }
  .product__sp .server-img {
    margin: 0;
    width: 100%;
    padding: 2em 0 1em;
    background-color: #fff;
  }
  .product__sp .server-img_box {
    width: 35%;
  }
  .product__sp .server-img_box p {
    color: gray;
    font-size: 1.2rem;
  }
}

.fix_price {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  margin: 0 auto;
  padding: 10px;
  width: 58.5%;
  box-shadow: 0px 3px 6px #0000001a;
  border-radius: 5px;
  background-color: #fff;
}

@media (max-width: 1240px) {
  .fix_price {
    width: 58.5%;
    bottom: -17%;
  }
}

@media (max-width: 768px) {
  .fix_price {
    width: 85%;
    bottom: -270%;
  }
}

.grid {
  background-image: url('../images/grid-bg.png');
  background-repeat: repeat;
  background-size: 48px 48px;
}

@media (max-width: 768px) {
  .grid {
    background-size: 24px 24px;
  }
}

.grid-txt {
  width: 100%;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.grid-txt p {
  width: 100%;
  font-size: 1.8rem;
  color: #51b1bf;
  font-weight: bold;
  text-align: center;
  padding: 1em 0 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .grid-txt p {
    font-size: 1.4rem;
  }
}

.content-plan {
  width: 600px;
  margin: 7em auto 0;
}

.content-plan ul {
  display: flex;
  justify-content: space-between;
}

.content-plan li {
  width: 165px;
  height: 214px;
  text-align: center;
  border-radius: 5px;
  background-color: #efefd8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.8rem;
  color: #51b1bf;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  padding-top: 1em;
}

.content-plan li img {
  margin-bottom: 1em;
}

.content-plan li:first-child:after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url('../images/plus.png');
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: -25%;
}

.content-plan li:nth-child(2):after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url('../images/plus.png');
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: -25%;
}

@media (max-width: 768px) {
  .content-plan {
    margin: 11em auto 0;
    width: 100%;
  }
  .content-plan ul {
    justify-content: space-around;
    align-items: stretch;
  }
  .content-plan li {
    width: 26%;
    height: 130px;
    font-size: 1.3rem;
    padding: 1em 0 1em;
  }
  .content-plan li:first-child:after {
    width: 14px;
    height: 14px;
    top: 50%;
    right: -20%;
  }
  .content-plan li:first-child img {
    width: 80%;
  }
  .content-plan li:nth-child(2):after {
    width: 14px;
    height: 14px;
    top: 50%;
    right: -20%;
  }
  .content-plan li img {
    width: 50%;
  }
}

.product-plan {
  width: 65px;
  height: auto;
}

.round-p {
  display: block;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  background-color: #ff95a4;
  width: 74px;
  height: 74px;
  line-height: 74px;
  border-radius: 50%;
  position: absolute;
  top: -18%;
  right: 0;
  left: 0;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .round-p {
    top: -22%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 1.4rem;
  }
}

.content-table {
  width: 805px;
  margin: 6em auto 0 !important;
}

.content-table table {
  width: 100%;
  color: #646464;
  margin: 2em auto;
  font-size: 1.4rem;
}

.content-table td {
  border: 1px solid #e3e3e3;
  position: static;
  padding: 1em;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .content-table {
    width: 90%;
    margin: 6em auto 0 !important;
  }
  .content-table table {
    margin: 1em auto;
    font-size: 1.3rem;
  }
  .content-table td {
    padding: 1em 0;
  }
}

.table-parts {
  text-align: center;
}

.table-parts td:first-child {
  background-color: #f6f6f6;
}

@media (max-width: 768px) {
  .table-parts td:first-child {
    width: 34%;
  }
}

@media (max-width: 768px) {
  .sp-center {
    text-align: center;
  }
}

.table-spec {
  text-align: left;
}

.table-spec td {
  background: #fff;
  padding: 1em 2em;
}

@media (max-width: 768px) {
  .table-spec td {
    padding: 1em;
  }
}

.bg_l-yel {
  background-color: #fefeec !important;
}

.table-spec td.bg_l-gray {
  background-color: #f6f6f6;
}

.tb-att {
  display: block;
  text-align: left;
  color: #646464;
  font-size: 12px;
  margin: 0 auto;
}

.vertical {
  width: 7% !important;
}

.rent-commission {
  width: 100%;
  display: flex;
  color: #646464;
  font-size: 1.6rem;
  border-radius: 5px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2em;
  border: 1px solid #e3e3e3;
}

.rent-commission li {
  padding: 1em;
  width: 50%;
  box-sizing: border-box;
  text-align: center;
}

.rent-commission li:first-child {
  border-radius: 5px 0 0 5px;
  background-color: #f6f6f6;
  border-right: 1px solid #e3e3e3;
}

.rent-commission li:last-child {
  border-radius: 5px 0 0 5px;
}

@media (max-width: 768px) {
  .rent-commission {
    font-size: 1.4rem;
    margin-bottom: 2em;
  }
  .rent-commission li {
    padding: 1em 0.5em;
  }
}

.btn-wrap {
  justify-content: space-between;
}
.btn_entry,
.btn_entry--tel {
  width: 600px;
  margin: 0 auto;
}
.btn_entry a,
.btn_entry--tel a {
  width: 100%;
  border-radius: 5px;
  border: 2px solid #fff;
  box-shadow: 0px 0px 5px #00000026;
  background-color: #ffb027;
  color: #fff;
  padding: 1.53em 0;
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}
.btn_entry--tel a {
  background: #646464;
  font-size: 1.9rem;
  padding: 1em 0 0.7em;
}
.btn_entry--tel a span {
  display: block;
  font-size: 3rem;
  line-height: 1;
  margin-top: 7px;
  position: relative;
}
.btn_entry--tel a span::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2229.636%22%20height%3D%2229.636%22%20viewBox%3D%220%200%2029.636%2029.636%22%3E%3Cpath%20d%3D%22M.941%2C1.245%2C6.2.031a1.222%2C1.222%2C0%2C0%2C1%2C1.391.7L10.022%2C6.4a1.211%2C1.211%2C0%2C0%2C1-.349%2C1.417L6.607%2C10.326a18.75%2C18.75%2C0%2C0%2C0%2C8.965%2C8.965l2.509-3.066a1.213%2C1.213%2C0%2C0%2C1%2C1.417-.349L25.164%2C18.3a1.229%2C1.229%2C0%2C0%2C1%2C.708%2C1.4l-1.214%2C5.261a1.214%2C1.214%2C0%2C0%2C1-1.184.941A23.472%2C23.472%2C0%2C0%2C1%2C0%2C2.429%2C1.213%2C1.213%2C0%2C0%2C1%2C.941%2C1.245Z%22%20transform%3D%22translate(4.052%200)%20rotate(9)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M522.469%2C77.231h0c2.427%2C0%2C3.524%2C1.323%2C3.524%2C3.529%22%20transform%3D%22translate(-505.265%20-67.694)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3Cpath%20d%3D%22M522.469%2C77.231h0c4.891%2C0%2C7.1%2C2.665%2C7.1%2C7.109%22%20transform%3D%22translate(-503.419%20-71.993)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E');
  background-size: contain;
  vertical-align: middle;
  margin-bottom: 6px;
  margin-right: 0.2em;
}
.btn_entry a:before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.32%22%20height%3D%2224.32%22%20viewBox%3D%220%200%2024.32%2024.32%22%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22a%22%20d%3D%22M23.674%2C6.821l-2.19%2C2.19a.571.571%2C0%2C0%2C1-.808%2C0L15.4%2C3.739a.571.571%2C0%2C0%2C1%2C0-.808l2.19-2.19a2.285%2C2.285%2C0%2C0%2C1%2C3.225%2C0L23.674%2C3.6A2.276%2C2.276%2C0%2C0%2C1%2C23.674%2C6.821ZM13.523%2C4.812%2C1.049%2C17.286.042%2C23.058a1.141%2C1.141%2C0%2C0%2C0%2C1.321%2C1.321l5.771-1.012L19.608%2C10.892a.571.571%2C0%2C0%2C0%2C0-.808L14.335%2C4.812a.576.576%2C0%2C0%2C0-.812%2C0ZM5.918%2C16.217a.662.662%2C0%2C0%2C1%2C0-.941l7.315-7.315a.665.665%2C0%2C1%2C1%2C.941.941L6.858%2C16.217a.662.662%2C0%2C0%2C1-.941%2C0ZM4.2%2C20.212h2.28v1.724l-3.064.537L1.942%2C21l.537-3.064H4.2Z%22%20transform%3D%22translate(-0.024%20-0.075)%22%2F%3E%3C%2Fsvg%3E');
  background-size: contain;
  vertical-align: text-bottom;
  margin-right: 0.3em;
}

@media (max-width: 768px) {
  .btn_entry {
    width: 100%;
    margin: 0 auto;
  }
  .btn_entry--tel {
    margin-top: 20px;
  }
  .btn_entry a,
  .btn_entry--tel a {
    padding: 0.8em 0;
    font-size: 1.6rem;
  }
  .btn_entry a:before {
    width: 15px;
    height: 15px;
  }
}

.full_title_price {
  padding: 3% 0 5%;
}

@media (max-width: 768px) {
  .full_title_price {
    padding-top: 0;
  }
}

.server-img {
  width: 45.828%;
  margin: 1em auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.server-img img {
  max-width: 100px;
}

.server-img_box {
  width: 50%;
}

.server-img_box p {
  width: 100%;
  font-size: 13px;
  text-align: center;
}

/* tab */
.server-tab {
  width: 87.9%;
  margin: 0 auto 1em;
}

.tab-group {
  display: flex;
  justify-content: center;
}

.tab {
  flex-grow: 1;
  padding: 1em;
  text-align: center;
  cursor: pointer;
  background-color: #e3e3e3;
  border-radius: 5px 5px 0px 0px;
  font-weight: bold;
  color: #646464;
}

.tab_sp {
  flex-grow: 1;
  padding: 1em;
  text-align: center;
  cursor: pointer;
  background-color: #e3e3e3;
  border-radius: 5px 5px 0px 0px;
  font-weight: bold;
  color: #646464;
}

.panel-group {
  border-top: none;
  background: #fff;
  box-shadow: 0px 3px 6px #0000001a;
  border-radius: 0px 0px 5px 5px;
  padding: 2% 0;
}

.panel {
  display: none;
}

.panel p {
  color: #646464;
  width: 90%;
}

.panel_sp {
  display: none;
}

.panel_sp p {
  color: #646464;
  width: 95%;
  margin: 0 auto;
}

.tab.is-active {
  background: #51b1bf;
  color: #fff;
  transition: all 0.2s ease-out;
}

.tab_sp.is-active {
  background: #51b1bf;
  color: #fff;
  transition: all 0.2s ease-out;
}

.panel.is-show {
  display: block;
}

.panel_sp.is-show {
  display: block;
}

.content-feature {
  margin: 3em auto 0;
}

.content-feature h4 {
  position: relative;
}

@media (max-width: 768px) {
  .content-feature {
    padding: 10px 0;
  }
  .content-feature h4 img {
    width: 14.5%;
  }
}

.content-feature_flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3em auto 0;
}

.content-feature_flex:nth-child(4) {
  justify-content: center;
  align-self: center;
}

@media (max-width: 768px) {
  .content-feature_flex {
    flex-direction: column;
    margin: 2em auto 0;
  }
}

.content-feature__box {
  border-radius: 5px 5px 0 0;
  box-sizing: border-box;
  margin: 0 30px 30px 0;
  width: calc(34.333% - 30px);
}

.content-feature__box:nth-child(3n) {
  margin-right: 0;
}

@media (max-width: 768px) {
  .content-feature__box {
    width: 90%;
    margin: 0 auto 2em;
  }
  .content-feature__box:nth-child(3n) {
    margin-right: auto;
  }
  .content-feature__box:last-child {
    margin-bottom: 0;
  }
}

/* acc */
.accordion-container {
  margin: 0 auto;
  text-align: center;
}

.article-title {
  display: block;
  position: relative;
  margin: 0 auto;
  line-height: 48px;
  font-size: 1.6rem;
  cursor: pointer;
  background-color: #51b1bf;
  box-shadow: 0px 3px 6px #0000001a;
  color: #fff;
  font-weight: bold;
  border-radius: 0 0 5px 5px;
}

.article-title:after {
  content: '';
  display: block;
  width: 15px;
  height: 3px;
  border-radius: 5px;
  position: absolute;
  right: 5%;
  top: 50%;
  background: #fff;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.article-title:before {
  content: '';
  display: block;
  width: 15px;
  height: 3px;
  border-radius: 5px;
  background: #fff;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-content {
  display: none;
  margin: 0 auto;
  padding: 1em;
  box-sizing: border-box;
  box-shadow: 0px 3px 6px #0000001a;
  border-radius: 0 0 5px 5px;
}

.accordion-content p {
  text-align: left;
  margin: 0;
}

.accordion-content img {
  margin: 0.5em 0;
}

.content-spec {
  padding: 42px 0;
  background-color: #fbfbfb;
}

.content-spec h2 {
  font-size: 20px;
  color: #646464;
  text-align: center;
  margin: 0 0 1em;
}

@media (max-width: 768px) {
  .content-spec {
    padding: 32px 0 10px;
  }
}

.filter-title.open {
  border-radius: 5px 5px 0 0;
}

.article-title.open {
  box-shadow: 0px -1px 6px #0000001a;
  border-radius: 0;
}

.article-title.open:after {
  display: none;
}

.content-filter {
  padding: 50px 100px 0;
  color: #646464;
}

@media (max-width: 768px) {
  .content-filter {
    width: 90%;
    padding: 0;
  }
}

.filter-acc {
  margin: 2em 0;
}

.filter-acc h5 {
  font-size: 1.8rem;
  color: #51b1bf;
  margin-bottom: 0.5em;
}

.filter-acc p {
  text-align: left;
  position: relative;
  padding: 0 1em;
  margin: 0;
}

.filter-acc p span {
  width: 115px;
  display: inline-block;
}

.filter-acc p span:after {
  content: '';
  display: inline-block;
  position: absolute;
  height: 48px;
  border-right: 2px solid #fff;
  margin-left: 1em;
}

.filter-title {
  margin-bottom: 2em;
  border-radius: 5px;
}

.filter-title h3 {
  font-size: 2rem;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  width: 800px;
  height: 140px;
  line-height: 140px;
  background-image: url('../images/filter.png');
  background-repeat: no-repeat;
  background-size: 800px 140px;
}

@media (max-width: 768px) {
  .filter-title {
    width: 100%;
  }
  .filter-title h3 {
    font-size: 1.8rem;
    background-image: url('../images/filter_sp.png');
    width: 100%;
    height: 120px;
    line-height: 120px;
    background-size: contain;
    background-position: center;
  }
}

@media (max-width: 768px) {
  .filter-title_acc {
    width: 90%;
  }
}

.filter-cont {
  padding: 1.25em;
}

.filter-table {
  width: 100%;
  color: #646464;
  border: 1px solid #e3e3e3;
  margin: 2em auto 0;
  font-size: 1.4rem;
  box-sizing: border-box;
}

.filter-table td {
  border-bottom: 1px solid #e3e3e3;
  border-left: 1px solid #e3e3e3;
  padding: 1em;
}

.filter-table tr:first-child {
  text-align: left;
}

@media (max-width: 768px) {
  .filter-table {
    width: 100%;
  }
  .filter-table td {
    padding: 1em 0.5em;
  }
}

.filter-table_2col:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .filter-table_2col p {
    font-size: 1.3rem;
  }
}

.table_2col {
  width: 50%;
}

@media (max-width: 768px) {
  .table_2col {
    width: 100%;
    border-right: 1px solid #e3e3e3;
  }
}

.table_2col_l {
  width: 50%;
  border-right: none;
}

@media (max-width: 768px) {
  .table_2col_l {
    border-right: 1px solid #e3e3e3;
    width: 100%;
  }
}

.fill-img {
  width: 50%;
  margin: 1em auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .fill-img {
    width: 100%;
    align-items: flex-end;
  }
}

.fill-box {
  width: 33%;
}

.fill-box img {
  max-width: 43%;
  margin: 0 auto;
}

.fill-box p {
  font-size: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .fill-box img {
    margin: 0 auto;
  }
  .fill-box p {
    padding: 0;
  }
}

.fill-img__2col {
  align-items: flex-start;
  width: 100%;
  height: 200px;
}

@media (max-width: 768px) {
  .fill-img__2col {
    height: auto;
    flex-wrap: wrap;
  }
}

.fill-img__2col_left {
  width: 96%;
}

@media (max-width: 768px) {
  .fill-img__2col_left {
    width: 100%;
  }
}

.fill-2col {
  width: 33%;
}

.fill-2col p {
  font-size: 1rem;
  text-align: center;
}

.fill-2col img {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .fill-2col_sp {
    width: 50%;
  }
  .fill-2col_sp p {
    text-align: center;
  }
  .fill-2col_sp img {
    margin: 0 auto;
  }
}

.filter-title_center {
  margin-bottom: 60px;
}

.filter-title_center p {
  text-align: center;
}

@media (max-width: 768px) {
  .filter-title_center {
    margin-bottom: 2em;
  }
}

.clean-cont {
  padding: 0;
  box-shadow: none;
}

@media (max-width: 768px) {
  .clean-cont {
    box-sizing: border-box;
    overflow-y: scroll;
    transform: translateZ(0);
  }
}

.clean-table {
  width: 100%;
  color: #646464;
  border: 1px solid #e3e3e3;
  border-right: none;
  border-top: none;
  font-size: 1.4rem;
  text-align: left;
  box-sizing: border-box;
  border-collapse: separate;
  border-radius: 0 0 5px 5px;
}

.clean-table tr:first-child {
  background-color: #fefeec;
  border-top: none;
}

.clean-table tr:last-child {
  border-radius: 0 0 5px 5px;
}

.clean-table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
  border-bottom: none;
}

.clean-table tr:last-child td:nth-child(2) {
  border-bottom: none;
}

.clean-table tr:last-child td:nth-child(3) {
  border-bottom: none;
}

.clean-table td {
  border-bottom: 1px solid #e3e3e3;
  border-right: 1px solid #e3e3e3;
  padding: 1em;
}

.clean-table td:first-child {
  width: 35%;
  background-color: #f6f6f6;
}

.clean-table td:nth-child(2) {
  width: 20%;
}

@media (max-width: 768px) {
  .clean-table {
    width: 800px;
    box-sizing: border-box;
    border-right: unset;
  }
  .clean-table td {
    font-size: 1.3rem !important;
  }
  .clean-table td:first-child {
    width: 20%;
    background-color: #f6f6f6;
  }
  .clean-table td:nth-child(2) {
    width: 15%;
  }
}

@media (max-width: 768px) {
  .sp-scroll {
    overflow-y: scroll;
    transform: translateZ(0);
  }
}

.scroll-icon {
  display: none;
}

@media (max-width: 768px) {
  .scroll-icon {
    width: 100%;
    margin: 0.5em 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .scroll-icon p {
    width: 100%;
    margin: 0 auto;
    line-height: 36px;
    margin-left: 0.5em;
    padding: 0;
    font-size: 1.3rem;
    background-color: #f2f2f2;
    border-radius: 5px;
  }
  .scroll-icon img {
    width: 10.4%;
  }
}

.content-slide {
  padding: 60px 0;
}

@media (max-width: 768px) {
  .content-slide {
    padding: 2em 0;
  }
}

/*bx -----*/
.bx-wrapper {
  margin-bottom: 15px !important;
  box-shadow: none !important;
  border: none !important;
}

.bx-pager {
  width: 374px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.bx-pager a {
  display: block;
}

.bx-pager a img {
  max-width: 80px;
  height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 768px) {
  .bx-pager {
    width: 97%;
    justify-content: space-around;
    margin: 0 auto;
  }
}

.bx-wrapper .bx-prev {
  background: url('../images/arrow_l.svg') no-repeat 0 -2px !important;
}

@media (max-width: 768px) {
  .bx-wrapper .bx-prev {
    background-size: 17px 35px !important;
  }
}

.bx-wrapper .bx-next {
  background: url('../images/arrow_r.svg') no-repeat 0 -2px !important;
}

@media (max-width: 768px) {
  .bx-wrapper .bx-next {
    background-size: 17px 35px !important;
  }
}

.bx-wrapper .bx-controls-direction a {
  width: 27px !important;
  height: 50px !important;
}

.content-map {
  color: #646464;
  border-bottom: 1px solid #51b1bf;
  padding-bottom: 2em;
}

.content-map h3 {
  color: #fff;
  text-align: center;
  margin: 0.5em 0;
}

@media (max-width: 768px) {
  .content-map {
    padding-bottom: 0;
  }
  .content-map h3 {
    margin: 0 0 30px;
  }
}

.map-bg {
  background: url('../images/map.png'), linear-gradient(180deg, #51b1bf 0%, #91d8dc 20%, #ffffff 43%);
  padding: 50px 0;
  background-blend-mode: multiply;
  background-position: 50% 7%, left top;
  background-repeat: no-repeat, no-repeat;
  background-size: 417px 424px, 100% 100%;
}

.map-bg p {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .map-bg {
    padding: 30px 0 0;
    background-image: url('../images/map_sp.png'), linear-gradient(180deg, #51b1bf 0%, #91d8dc 20%, #ffffff 35%);
    margin-bottom: 40px;
    background-position: 50% 3%, left top;
    background-size: 337px 344px, 100% 100%;
  }
  .map-bg h3 img {
    max-width: 10.5%;
  }
}

.form {
  position: relative;
  margin: 40px 0 0;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .form {
    width: 90%;
    margin: 30px auto;
  }
}

.map-tex {
  margin: -2% auto 0;
  padding: 0 100px;
}

.map-tex p {
  width: 800px;
  font-size: 1.6rem;
  margin: 0 auto;
  font-weight: 400;
  text-align: left;
}

.map-tex .map-att {
  font-size: 14px;
  margin: 1.2em auto 60px;
}

@media (max-width: 768px) {
  .map-tex {
    width: 90%;
    margin: -5% auto 0;
    padding: 0;
  }
  .map-tex p {
    width: 100%;
  }
  .map-tex .map-att {
    margin-bottom: 30px;
  }
}

/* form reset */
input[type='text'].postal-code {
  border: 4px solid #c9e7eb;
  background: #fff;
  padding: 1em;
  font-size: 16px;
  width: 233px;
  height: 51px;
}

input[type='text'].postal-code::-webkit-input-placeholder {
  color: #e3e3e3;
  font-size: 18px;
  vertical-align: middle;
}

input[type='text'].postal-code::-moz-placeholder {
  color: #e3e3e3;
  font-size: 18px;
  vertical-align: middle;
}

input[type='text'].postal-code:-ms-input-placeholder {
  color: #e3e3e3;
  font-size: 18px;
  vertical-align: middle;
}

input[type='text'].postal-code::-ms-input-placeholder {
  color: #e3e3e3;
  font-size: 18px;
  vertical-align: middle;
}

input[type='text'].postal-code::placeholder {
  color: #e3e3e3;
  font-size: 18px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  input[type='text'].postal-code {
    width: 100%;
  }
}

button:hover,
input[type='submit']:hover {
  opacity: 0.8;
}

.postal-code {
  width: 100%;
  margin: 0 auto 5em;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .postal-code {
    margin: 0 auto 3em;
  }
}

.btn {
  display: inline-block;
  border-radius: 5px;
  background-color: #51b1bf;
  width: 121px;
  height: 51px;
  line-height: 51px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  margin-left: 1em;
}

@media (max-width: 768px) {
  .btn {
    margin-left: 0.5em;
  }
}

.target-result {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff95a4;
  color: #fff;
  max-width: 600px;
  width: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  padding: 20px 0;
  border-radius: 5px;
}
.target-result::before {
  content: '';
  position: absolute;
  top: -14px;
  left: calc(50% - 26px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 13px 15px 13px;
  border-color: transparent transparent #ff95a4 transparent;
}
.target-result.check-ok {
  background-color: #51b1bf;
}
.target-result.check-ok::before {
  border-color: transparent transparent #51b1bf transparent;
}
.target-result.check-ng {
  background-color: darkgray;
}
.target-result.check-ng::before {
  border-color: transparent transparent darkgray transparent;
}

@media (max-width: 768px) {
  .target-result {
    font-size: 18px;
    padding: 15px 0;
    top: 85px;
  }
  .target-result::before {
    left: 45%;
  }
}

.content-faq {
  padding: 40px 100px;
}

.content-faq h2 {
  color: #51b1bf;
}

.content-faq h2:before {
  content: '';
  display: inline-block;
  width: 43px;
  height: 34px;
  background-image: url('../images/faq-icon.svg');
  background-size: contain;
  vertical-align: bottom;
  background-repeat: no-repeat;
  margin-right: 0.5em;
}

.content-faq h5 {
  font-size: 1.8rem;
  color: #51b1bf;
  text-align: center;
  background-color: #c9e7eb;
  border-radius: 5px;
  padding: 0.85em 0;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .content-faq {
    width: 90%;
    padding: 0;
  }
  .content-faq h5 {
    font-size: 1.6rem;
  }
}

.faq-area .accordion-container:last-child {
  border-bottom: 1px solid #c9e7eb;
}

.faq-title {
  border-radius: 0;
  background-color: #fff;
  box-shadow: none;
  color: #51b1bf;
  text-align: left;
  padding: 1em 0;
  box-sizing: border-box;
  border-top: 1px solid #c9e7eb;
}

.faq-title:before {
  background: #51b1bf;
}

.faq-title:after {
  background: #51b1bf;
}

@media (max-width: 768px) {
  .faq-title {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .faq-title_txt {
    width: 70%;
    line-height: 1.5;
  }
}

.faq-title.open {
  box-shadow: none;
  border-bottom: none;
}

.faq-cont {
  box-shadow: none;
  padding: 0;
  margin: 1em 0;
}

.faq-cont table {
  width: 100%;
  font-size: 1.3rem;
}

.faq-cont table tr:first-child {
  background-color: #fefeec;
}

.faq-cont table td {
  padding: 1em;
  border: 1px solid #e3e3e3;
}

.faq-cont table td:first-child {
  background-color: #f6f6f6;
}

.Q-icon {
  display: inline-block;
  text-align: center;
}

.Q-icon:before {
  content: 'Q';
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #51b1bf;
  color: #fff;
  line-height: 35px;
  border-radius: 50%;
  margin-right: 0.5em;
  font-weight: bold;
}

.A-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2em;
}

.A-txt {
  width: 93%;
  padding: 1em;
}

.A-txt .att-s {
  display: inline-block;
  font-size: 1.3rem;
}

.A-txt .faq-att {
  display: block;
  margin: 0.5em 0;
  font-size: 1.4rem;
}

.A-txt p {
  margin: 0 0 0.8em;
}

.txt-underline {
  text-decoration: underline;
}
h3.QA-price-ttl {
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #646464;
}
h3.QA-price-ttl:nth-child(3) {
  margin-top: 30px;
}
h3.QA-price-ttl::before {
  content: '';
  background: none;
  border-left: 4px solid;
  height: 22px;
  width: 0;
}

.QA-list {
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .QA-list {
    font-size: 1.3rem;
  }
}
.QA-price {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .faq-cont table.QA-price {
    width: 800px;
  }
}
table.QA-price td {
  text-align: center;
  padding: 1em 0.5em;
}
table.QA-price td.bg_l-yel {
  vertical-align: middle;
  padding: 1em 0.5em;
}

.fs-tax {
  font-size: 1rem;
}
.td-gray {
  background-color: #f6f6f6;
}

@media (max-width: 768px) {
  .A-txt {
    padding: 1em;
  }
}

.A-icon {
  display: inline-block;
  text-align: center;
}

.A-icon:before {
  content: 'A';
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #ff95a4;
  color: #fff;
  line-height: 35px;
  border-radius: 50%;
  margin-right: 0.5em;
  font-weight: bold;
}

.header_title {
  width: 100%;
  background-color: #f4fafb;
}

.header_title_inner {
  width: 1000px;
  margin: 0 auto;
  padding: 26px 0;
}

.header_title_inner h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 3.4rem;
  color: #51b1bf;
  padding: 35px 0 19px;
}

.header_title_inner ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header_title_inner ul li {
  position: relative;
  padding: 0 1em 0;
}

.header_title_inner ul li:first-child {
  color: #adadad;
  padding: 0 1em 0 0;
}

.header_title_inner ul li:first-child:before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 16px;
  background-image: url('../images/drop.svg');
  background-size: contain;
  vertical-align: text-bottom;
  margin-right: 0.5em;
}

.header_title_inner ul li:first-child:after {
  content: '';
  position: absolute;
  display: inline-block;
  height: 14px;
  border-right: 1px solid #adadad;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .header_title_inner {
    width: 90%;
    padding: 15px 0 20px;
  }
  .header_title_inner h2 {
    font-size: 2.4rem;
    padding: 15px 0 0;
  }
}

.form-content {
  width: 1000px;
  margin: 0 auto 30px;
  font-size: 1.6rem;
}

.form-content h3 {
  font-family: 'Noto Serif JP', serif;
  color: #51b1bf;
  margin: 40px 0;
  font-size: 3.8rem;
}

.form-content p {
  font-size: 14px;
}

@media (max-width: 768px) {
  .form-content {
    width: 90%;
    margin: 0 auto;
  }
  .form-content h3 {
    font-size: 2.4rem;
    margin: 20px 0;
  }
}

.input {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #fff;
}

.input li {
  background-color: #f4f4f5;
  padding: 20px;
}

.input li:first-child {
  width: 300px;
  background-color: #d9dcde;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.input li:last-child {
  width: 700px;
}

.input li span {
  display: inline-block;
  width: 60px;
  height: 25px;
  font-size: 1.4rem;
  line-height: 25px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  background-color: #d1626e;
}

@media (max-width: 768px) {
  .input {
    flex-direction: column;
  }
  .input li:first-child {
    width: 100%;
  }
  .input li:last-child {
    width: 100%;
  }
}

.form-name {
  width: 660px;
  height: 46px;
  margin: 0 auto;
  background-color: #f1d7d9;
}

@media (max-width: 768px) {
  .form-name {
    width: 100%;
  }
}

input[type='text'].form-name {
  font-size: 16px;
  padding: 0 0 0 1em;
  line-height: 1.8;
}

input[type='text'].form-name::-webkit-input-placeholder {
  color: #646464;
  font-size: 16px;
  vertical-align: middle;
}

input[type='text'].form-name::-moz-placeholder {
  color: #646464;
  font-size: 16px;
  vertical-align: middle;
}

input[type='text'].form-name:-ms-input-placeholder {
  color: #646464;
  font-size: 16px;
  vertical-align: middle;
}

input[type='text'].form-name::-ms-input-placeholder {
  color: #646464;
  font-size: 16px;
  vertical-align: middle;
}

input[type='text'].form-name::placeholder {
  color: #646464;
  font-size: 16px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  input[type='text'].form-name {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .input_tel li {
    padding: 20px 15px;
  }
  .input_tel li:last-child {
    display: flex;
  }
  .form-name_tel:first-child {
    margin-left: 0;
  }
  .form-name_tel {
    margin-left: 0.5em;
  }
}

@media (max-width: 768px) {
  .form-name_tel_c {
    margin: 0 5px;
  }
}

.form-name_tel {
  width: 100px;
}

input[type='tel'].form-name_tel {
  width: 100px;
  height: 46px;
  background-color: #f1d7d9;
  padding: 0 0 0 1em;
}

@media (max-width: 768px) {
  input[type='tel'].form-name_tel {
    width: 100px;
    font-size: 1.6rem;
  }
}

input[type='text'].form-name_txt {
  width: 100%;
  height: 500px;
}

.input_txt li:first-child p {
  font-size: 1.6rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: auto;
}

.input_txt li:first-child p span {
  display: inline-block;
}

@media (max-width: 768px) {
  .input_txt li:first-child p {
    margin: 0;
  }
}

.textContent {
  width: 95%;
  height: 160px;
  padding: 1em;
  font-size: 1.6rem;
  background-color: #f1d7d9;
}

@media (max-width: 768px) {
  .textContent {
    width: 89%;
  }
}

.txt-pink {
  color: #d0626e;
}

.reCAPTCHA {
  width: 100%;
  margin: 30px auto;
}

.btn_form {
  width: 340px;
  height: 75px;
  display: block;
  margin: 0 auto;
}

.btn_form a {
  width: 100%;
  border-radius: 75px;
  border: 1px solid #fff;
  box-shadow: 0px 0px 5px #00000026;
  background-color: #ffb027;
  box-sizing: border-box;
  color: #fff;
  line-height: 75px;
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.btn_form a:after {
  content: '';
  width: 9px;
  height: 9px;
  border: 0px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10%;
  margin-top: -4px;
}

@media (max-width: 768px) {
  .btn_form {
    width: 80%;
    margin: 0 auto;
  }
  .btn_form a {
    padding: 0.8em 0;
    font-size: 1.8rem;
  }
}

.contact_tel {
  margin-top: 74px;
}

.customer {
  width: 100%;
  margin: 25px 0 100px;
  padding: 40px 0;
  background-color: #f4f4f5;
}

.customer h4 {
  font-size: 2.8rem;
  color: #000;
}

.customer p {
  text-align: center;
  margin: 0.5em auto 1em;
}

@media (max-width: 768px) {
  .customer {
    padding: 30px 0;
    margin: 30px 0 60px;
  }
  .customer h4 {
    font-size: 2.4rem;
  }
}

.number_blk {
  font-family: 'Arial', 'ＭＳ ゴシック';
  font-size: 5rem;
  font-weight: bold;
  color: #000;
  display: block;
}

.number_blk:before {
  content: '';
  display: inline-block;
  width: 41px;
  height: 41px;
  background-image: url('../images/icon-phone_blk.png');
  background-size: contain;
  vertical-align: middle;
  margin-right: 0.2em;
}

@media (max-width: 768px) {
  .number_blk {
    font-size: 4rem;
  }
}

.input_confirm li:last-child {
  background-color: #f4f4f5;
}

.input_confirm input[type='text'].form-name {
  background-color: #f4f4f5;
}

.input_confirm input[type='email'].form-name {
  background-color: #f4f4f5;
}

.input_confirm input[type='tel'].form-name_tel {
  background-color: #f4f4f5;
}

.input_confirm .textContent {
  background-color: #f4f4f5;
}

.back_top a {
  background-color: #646464;
}

/* ----------
 refill
----------------------------*/
.monthly {
  font-size: 2.3rem;
  background: linear-gradient(transparent 47%, #f3ed2f 0%);
}

@media (max-width: 768px) {
  .monthly {
    font-size: 1.6rem;
  }
}

.monthly_price {
  font-size: 5.3rem;
  font-weight: 700;
  margin-left: 0.2em;
}

@media (max-width: 768px) {
  .monthly_price {
    font-size: 3.6rem;
  }
}

.taxin {
  font-size: 1.6rem;
}

.monthly_txt {
  padding: 6%;
}

.monthly_txt p {
  padding: 0;
}

.fix_price_refill {
  bottom: -4%;
}

@media (max-width: 768px) {
  .fix_price_refill {
    bottom: -270%;
  }
}

.refill-entry {
  margin: 10em auto 3em;
}

@media (max-width: 768px) {
  .refill-entry {
    width: 90%;
    margin: 8em auto 1em;
  }
}

.rent-commission_refill {
  margin: 2em 0;
}

.rent-commission_refill li {
  text-align: center;
}

.commission_under {
  margin: auto;
}

.refill-pay {
  margin: 2em 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.refill-pay li {
  width: 50%;
  padding: 1em;
  text-align: center;
  border: 1px solid #e3e3e3;
  border-collapse: collapse;
}

.refill-pay li:nth-child(odd) {
  background: #f6f6f6;
  border-right: none;
}

.refill-pay li:first-child {
  border-bottom: none;
  border-radius: 5px 0 0 0;
}

.refill-pay li:nth-child(2) {
  border-radius: 0 5px 0 0;
  border-bottom: none;
}

.refill-pay li:nth-child(3) {
  border-radius: 0 0 0 5px;
}

.refill-pay li:nth-child(4) {
  border-radius: 0 0 5px 0;
}

.add {
  font-size: 1.2rem;
}

.refill-img {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.refill-img img {
  max-width: 170px;
}

.refill-col {
  width: 350px !important;
  margin: 3em auto 2em !important;
  text-align: center;
  border: 1px solid #fff;
  padding: 0.5em 0;
}

@media (max-width: 768px) {
  .refill-col {
    width: 80% !important;
    color: #646464;
    border: 1px solid #646464;
  }
}

.refill-img_box {
  /* margin: 0 auto; */
  text-align: center;
}

.line-low {
  padding: 0.66em 0;
}

.line2 {
  line-height: 1.5;
}

.refill-cartridge {
  max-width: 800px;
  margin: 4em auto 0;
}

@media (max-width: 768px) {
  .refill-cartridge {
    width: 90%;
  }
}

.ctrg-cont {
  margin: 4em auto 0;
}

.ctrg-cont h5 {
  width: 800px;
  margin: 0 auto;
  font-size: 18px;
  background-color: #f6f6f6;
  padding: 1em 0;
  border-radius: 5px;
}

.ctrg-cont p {
  font-weight: bold;
}

@media (max-width: 768px) {
  .ctrg-cont {
    margin: 3em auto 0;
  }
  .ctrg-cont h5 {
    width: 100%;
  }
}

.cartridge {
  margin: 2em auto;
  display: flex;
  flex-wrap: wrap;
}

.cartridge li {
  padding: 1em;
  text-align: center;
  text-align: left;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.cartridge li:nth-child(odd) {
  width: 30%;
  background: #51b1bf;
  color: #fff;
  justify-content: center;
}

.cartridge li:nth-child(even) {
  width: 70%;
  color: #51b1bf;
  font-size: 1.4rem;
  border: 1px solid #51b1bf;
  border-collapse: collapse;
}

.cartridge li:first-child {
  border-radius: 5px 0 0 0;
}

.cartridge li:nth-child(2) {
  border-radius: 0 5px 0 0;
  border-bottom: none;
}

.cartridge li:nth-child(3) {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.cartridge li:nth-child(4) {
  border-bottom: none;
}

.cartridge li:nth-child(5) {
  border-radius: 0 0 0 5px;
}

.cartridge li:nth-child(6) {
  border-radius: 0 0 5px 0;
}

@media (max-width: 768px) {
  .cartridge {
    flex-direction: column;
  }
  .cartridge li:nth-child(odd) {
    width: 100%;
  }
  .cartridge li:nth-child(even) {
    width: 100%;
  }
  .cartridge li:first-child {
    border-radius: 5px 5px 0 0;
  }
  .cartridge li:nth-child(2) {
    border-radius: 0;
  }
  .cartridge li:nth-child(3) {
    border: none;
  }
  .cartridge li:nth-child(5) {
    border-radius: 0;
  }
  .cartridge li:nth-child(6) {
    border-radius: 0 0 5px 5px;
  }
}

.pd-top_pay {
  padding-top: 2em;
}

@media (max-width: 768px) {
  .pd-top_pay {
    padding-top: 1em;
  }
}

.ctrg-feature {
  max-width: 800px;
  margin: 2em auto;
  display: flex;
  flex-wrap: wrap;
  border-spacing: 0px;
}

.ctrg-feature li {
  padding: 0.5em 1em;
  border: 1px solid #e3e3e3;
  border-bottom: none;
}

.ctrg-feature li:nth-child(odd) {
  width: 30%;
  text-align: center;
  background: #f6f6f6;
  color: #646464;
  font-weight: normal;
  justify-content: center;
  border-right: none;
}

.ctrg-feature li:nth-child(even) {
  width: 70%;
  color: #646464;
  font-size: 1.6rem;
  font-weight: normal;
}

.ctrg-feature li:first-child {
  border-radius: 5px 0 0 0;
}

.ctrg-feature li:nth-child(2) {
  border-radius: 0 5px 0 0;
}

.ctrg-feature li:nth-child(5) {
  border-bottom: 1px solid #e3e3e3;
  border-radius: 0 0 0 5px;
}

.ctrg-feature li:last-child {
  border-bottom: 1px solid #e3e3e3;
  border-radius: 0 0 5px 0;
}

/*.ctrg-spec{
	width: 100%;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	border:1px solid #E3E3E3;
	border-top:none;
	border-bottom: none;
	-webkit-border-radius: 5px;
	        border-radius: 5px;
	li{
		width: 20%;
		padding: 0.5em 1em;
		border-right:1px solid #E3E3E3;
		border-bottom:1px solid #E3E3E3;
		display: flex;
		-webkit-justify-content: center;
		        justify-content: center;
		-webkit-align-items: center;
		        align-items: center;
		&:first-child{
			-webkit-border-radius: 5px 0 0 0;
			        border-radius: 5px 0 0 0;
		}
		&:nth-child(3n+2){
			width: 60%;
		}
		&:nth-child(-n+3){
			background-color: $main-blue;
			color: #fff;
			font-weight: bold;
			text-align: center;
		}
		&:nth-child(3n){
			border-right: none;
			text-align: center;
			vertical-align: middle;
		}
		&:nth-child(3){
			border-right:none;
			-webkit-border-radius: 0 5px 0 0;
			        border-radius: 0 5px 0 0;
		}
		&:last-child{
			-webkit-border-radius: 0 0 5px 0;
			        border-radius: 0 0 5px 0;
		}
		&:nth-last-child(3){
			-webkit-border-radius: 0 0 0 5px;
			        border-radius: 0 0 0 5px;
		}
	}
}*/
.ctrg-spec {
  width: 800px;
  border-collapse: collapse;
}

.ctrg-spec tr {
  text-align: left;
}

.ctrg-spec tr:first-child {
  white-space: nowrap;
  text-align: center;
  background-color: #51b1bf;
  color: #fff;
  font-weight: bold;
}

.ctrg-spec td {
  border: 1px solid #e3e3e3;
  padding: 1em;
  vertical-align: middle;
}

.ctrg-spec td:first-child {
  background-color: #f6f6f6;
}

.ctrg-spec td:nth-child(3n + 2) {
  width: 61%;
}

.ctrg-spec td:nth-child(3n) {
  text-align: center;
}

@media (max-width: 1240px) {
  .ctrg-spec {
    overflow-y: scroll;
    transform: translateZ(0);
  }
}

.bg-main {
  background-color: #51b1bf !important;
}

.refill-spec tr:first-child {
  text-align: center;
}

.flex-care {
  align-items: flex-start;
}

.care-txt {
  text-align: center;
  font-weight: bold;
}

.feature-cont_refill {
  position: relative;
}

.care-rib {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  padding: 0.6em 0;
  text-align: center;
  background-color: #51b1bf;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 0 5px 0 5px;
}

.bx-pager_refill {
  margin-bottom: 4em;
}

.refill-foot {
  width: 100%;
  display: flex;
  justify-content: center;
}

.refill-foot a {
  display: block;
  max-width: 148px;
  background-color: #51b1bf;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 1em 0;
  position: relative;
}

.refill-foot a:after {
  content: '';
  position: absolute;
  display: inline-block;
  height: 10px;
  right: 10px;
  top: 44%;
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
}

.bn-sk {
  width: 50%;
  height: 350px;
  background-image: url('../images/refill/bn-sk.jpg');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% auto;
  position: relative;
}

.bn-sk p {
  font-size: 2.1rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
}

.bn-sk p span {
  display: block;
  font-size: 1.4rem;
}

.bn-sk .foot-txt {
  top: 35%;
  left: 18%;
}

@media (max-width: 1240px) {
  .bn-sk .foot-txt {
    top: 47%;
    left: 5%;
  }
}

.foot-txt {
  width: 315px;
  margin: 0 auto;
  position: absolute;
}

.bn-refill {
  width: 50%;
  height: auto;
  background-image: url('../images/refill/bn-refill.jpg');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% auto;
  position: relative;
}

.bn-refill p {
  font-size: 2.1rem;
  text-align: center;
  color: #000;
  font-weight: bold;
}

.bn-refill p span {
  display: block;
  font-size: 1.4rem;
}

.bn-refill .refill-btn {
  left: 155px;
}

.bn-refill .foot-txt {
  width: 378px;
  top: 35%;
  left: 5.5%;
}

@media (max-width: 1240px) {
  .bn-refill .foot-txt {
    top: 47%;
    left: 5%;
  }
}

.refill-btn {
  width: 148px;
  margin: 0 auto;
}

.refill-btn a {
  display: block;
  width: 100%;
  background-color: #51b1bf;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 1em 0;
  position: relative;
}

.refill-btn a:after {
  content: '';
  position: absolute;
  display: inline-block;
  height: 10px;
  right: 10px;
  top: 42%;
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
}

.pd-l {
  padding-left: 1.5em !important;
}

.btn_entry_sp {
  width: 47%;
}
@media (max-width: 768px) {
  .btn_entry_sp {
    width: 90%;
  }
}
.dsp-no {
  display: none;
}

/* page ----
---------------------------*/
.page h3 {
  color: #646464;
  font-size: 2rem;
  text-align: left;
  background-color: #f6f6f6;
  padding: 0.4em 1em;
  border-top: 5px solid #e6e6e6;
}

.page h4 {
  color: #646464;
  font-size: 1.8rem;
  text-align: left;
  background-color: #f6f6f6;
  padding: 0.4em 1em;
}

.page h5 {
  color: #646464;
  font-size: 1.6rem;
  text-align: left;
  padding: 0.4em 1em;
  border-top: 1px solid #e6e6e6;
}

.page span {
  display: block;
  margin-left: 1.5em;
}

@media (max-width: 768px) {
  .page {
    width: 90%;
    margin: 0 auto;
  }
  .page h3 {
    font-size: 1.8rem;
  }
  .page h4 {
    font-size: 1.6rem;
  }
  .page h5 {
    font-size: 1.4rem;
  }
}

.page-box {
  margin: 2em 0;
}

.page-box table {
  width: 97%;
  margin: 0 auto;
  border-collapse: collapse;
}

.page-box table td {
  border: 1px solid #e3e3e3;
  padding: 1em;
}

.page-box table td:first-child {
  background-color: #f6f6f6;
}

@media (max-width: 768px) {
  .page-box table td {
    display: block;
    text-align: left;
    width: 100%;
  }
}

/* TOP重要なお知らせここから */
.news-cont {
  margin: 0;
}

.news-cont .news-cont-head {
  background-color: #51b1bf;
  border-radius: 5px 0 0 5px;
  border: 1px solid #51b1bf;
  text-align: center;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  min-width: 176px;
}
.news-cont .news-cont-head p {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.news-cont .news-cont-body {
  padding: 20px;
  border: 1px solid #51b1bf;
  border-radius: 0 5px 5px 0;
  width: 100%;
}
.news-cont .important .news-cont-head {
  background-color: #ff95a4;
  border: 1px solid #ff95a4;
}
.news-cont .important .news-cont-body {
  border: 1px solid #ff95a4;
}

.news-cont .news-cont-body ul li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #64646433;
}
.news-cont .news-cont-body ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.news-cont .news-cont-body ul li a {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.news-cont .news-cont-body ul li a::before {
  content: '';
  position: absolute;
  display: inline-block;
  left: 0;
  top: 11px;
  bottom: 0;
  width: 5px;
  height: 5px;
  margin-top: -4px;
  border: 2px solid #646464;
  border-color: #646464 #646464 transparent transparent;
  transform: rotate(45deg);
}
.news-cont .news-cont-body ul li .news-date {
  display: block;
  margin-left: 20px;
  width: 100px;
}
.news-cont .news-cont-body ul li .news-title {
  position: relative;
  width: 100%;
}
.news-cont .news-cont-body ul li .news-title::after {
  display: none;
}
.news-cont .news-cont-body ul li .news-txt {
  width: auto;
}
@media (max-width: 768px) {
  .news-cont {
    margin: 0 0 2em !important;
  }
  .news-cont .news-cont-head {
    width: 100%;
    display: block;
    border-radius: 5px 5px 0 0;
    padding: 0;
    min-width: auto;
    padding: 0;
    min-width: auto;
  }
  .news-cont .news-cont-body {
    width: 100%;
    border-radius: 0 0 5px 5px;
  }
  .news-cont .news-cont-body ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .news-cont .news-cont-body ul li:last-child {
    margin-bottom: 5px;
  }
  .news-cont .news-cont-body ul li a {
    display: block;
  }
  .news-cont .news-cont-body ul li a::before {
    display: none;
  }
  .news-cont .news-cont-body ul li .news-date {
    margin-bottom: 5px;
    margin-left: 0;
    width: auto;
  }
  .news-cont .news-cont-body ul li .news-txt {
    width: 95%;
  }
  .news-cont .news-cont-body ul li .news-title {
    position: relative;
  }
  .news-cont .news-cont-body ul li .news-title::after {
    content: '';
    position: absolute;
    display: inline-block;
    right: 0;
    top: 50%;
    bottom: 0;
    width: 5px;
    height: 5px;
    margin-top: -4px;
    border: 2px solid #646464;
    border-color: #646464 #646464 transparent transparent;
    transform: rotate(45deg);
  }
}
/* TOP重要なお知らせここまで */

.in-list {
  margin: 1em 0;
  padding-left: 1em;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/*210303 SKリンク縮小対応*/
.sk_lnk {
  text-align: center;
  margin-bottom: 40px;
}
.sk_lnk a {
  display: inline-block;
  background-color: #51b1bf;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 1em 3em;
  border-radius: 5px;
  position: relative;
}
.sk_lnk a::after {
  content: '';
  position: absolute;
  display: inline-block;
  right: 10px;
  top: 42%;
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .sk_lnk {
    width: 90%;
    margin: 20px auto;
  }
  .sk_lnk a {
    width: 100%;
    padding: 1em 2em;
  }
}

/*210802 お友達紹介バナー追加*/
.campaign-friend_bnr {
  width: 500px;
  margin: 0 auto 80px;
  border-radius: 5px;
}
.campaign-friend_bnr a img {
  border-radius: 5px;
}
.campaign-friend_bnr a img:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .campaign-friend_bnr {
    width: 90%;
    margin: 40px auto 30px;
  }
}

/*210929 料金詳細ページ追加*/
#gloval-nav .sp-menu_top {
  margin: 0;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
#gloval-nav .sp-menu_top a {
  color: #51b1bf;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}
#gloval-nav .sp-menu_price {
  margin: 20px 0 0;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
#gloval-nav .sp-menu_price a {
  color: #51b1bf;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 46px;
  position: relative;
}
#gloval-nav .sp-menu_price a::before {
  content: '';
  width: 40px;
  height: 40px;
  display: inline-block;
  background-image: url(https://locca.premium-water.net/wp-content/themes/locca/images/plan-icon.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 0;
  margin-top: -20px;
}
.price-detail {
  text-align: center;
}
.price-detail a {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 6px auto 0;
  padding-right: 12px;
  position: relative;
}
.price-detail a::after {
  content: '';
  position: absolute;
  display: inline-block;
  right: 0;
  top: 50%;
  bottom: 0;
  width: 5px;
  height: 5px;
  margin-top: -4px;
  border: 1px solid #fff;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
}
.price-detail_btn {
  text-align: center;
  margin: 40px auto 20px;
}
.price-detail_btn a {
  display: inline-block;
  background-color: #51b1bf;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 48px;
  border-radius: 5px;
  position: relative;
  width: 420px;
  height: 48px;
  box-sizing: border-box;
}
.price-detail_btn a::after {
  content: '';
  position: absolute;
  display: inline-block;
  right: 20px;
  top: 50%;
  bottom: 0;
  width: 5px;
  height: 5px;
  margin-top: -4px;
  border: 2px solid #fff;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .fix_price_refill {
    bottom: -220%;
  }
  .price-detail_btn a {
    width: 100%;
  }
}

/*211022 表調整*/
.ctrg-spec td:first-child {
  text-align: center;
}
.ctrg-spec td:nth-child(3n + 2) {
  width: 35%;
  text-align: center;
}
@media (max-width: 768px) {
  .ctrg-spec {
    width: 100%;
  }
  .ctrg-spec td:first-child {
    width: 80%;
    text-align: left;
  }
  .ctrg-spec td:nth-child(3n + 2) {
    width: 30%;
  }
}
.modal_txt {
  text-align: center;
}
.modal_txt a {
  color: #51b1bf;
  text-decoration: underline;
}
.content {
  margin: 0 auto;
  padding: 40px;
}
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  font-size: 12px;
  background: #fff;
  left: 50%;
  padding: 20px 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 70%;
  overflow-y: scroll;
}
.modal .modal_ttl {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 10px;
}
.modal .modal_ttl span {
  font-size: 14px;
  font-size: 1.4rem;
  margin-left: 5px;
}
.modal .modal_com {
  margin: 0 0 15px;
}
.modal .ctrg-spec {
  width: 100%;
}
.modal .ctrg-spec tr:first-child td {
  text-align: center;
}
.modal .ctrg-spec td:first-child {
  width: 50%;
  text-align: left;
}
.ctrg-spec td:nth-child(3n + 2) {
  width: 50%;
}
.modal .ctrg-spec {
  margin-bottom: 20px;
}
.modal .modal-close-wrapper {
  width: 200px;
  margin: 0 auto;
}
.modal .modal-close-wrapper .js-modal-close {
  width: 200px;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
}
.content.content-plan {
  margin: 120px auto 0;
}
@media (max-width: 768px) {
  .modal__content {
    width: 80%;
    height: 60%;
    top: 40%;
    padding: 20px;
  }
  .modal .modal_ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .fix_price {
    bottom: -270%;
  }
}

/*220128 フッターリンク追加*/
footer ul {
  padding: 48px 40px 40px;
}
footer li {
  padding: 0 1em;
}
@media (max-width: 768px) {
  footer ul {
    padding: 0;
    align-items: center;
  }
  footer ul li {
    padding: 1.3em 0;
  }
  footer ul li:nth-last-child(2) {
    border-bottom: none;
  }
  footer li:last-child {
    width: 50%;
  }
}

/*220214 FAQページ追加*/
#gloval-nav .sp-menu_faq {
  margin: 20px 0 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
#gloval-nav .sp-menu_faq a {
  color: #51b1bf;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 46px;
  position: relative;
}
#gloval-nav .sp-menu_faq a::before {
  content: '';
  width: 46px;
  height: 40px;
  display: inline-block;
  background-image: url(https://locca.premium-water.net/wp-content/themes/locca/images/faq-icon.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: -6px;
  margin-top: -20px;
}

/*220311 製品詳細ページ追加*/
#gloval-nav .sp-menu_product {
  margin: 20px 0 0;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
#gloval-nav .sp-menu_product a {
  color: #51b1bf;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 46px;
  position: relative;
}
#gloval-nav .sp-menu_product a::before {
  content: '';
  width: 40px;
  height: 40px;
  display: inline-block;
  background-image: url(https://locca.premium-water.net/wp-content/themes/locca/images/refill/product-icon.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 0;
  margin-top: -20px;
}
.content.content-slide {
  padding: 40px 40px 0;
}
.product-detail_btn {
  text-align: center;
  margin: 0 auto 80px;
}
.product-detail_btn a {
  display: inline-block;
  background-color: #51b1bf;
  color: #fff !important;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  /* line-height: 48px; */
  border-radius: 5px;
  position: relative;
  width: 420px;
  /* height: 48px; */
  box-sizing: border-box;
  line-height: 1.4em;
  padding: 12px 0;
}
.product-detail_btn a::after {
  content: '';
  position: absolute;
  display: inline-block;
  right: 20px;
  top: 50%;
  bottom: 0;
  width: 5px;
  height: 5px;
  margin-top: -4px;
  border: 2px solid #fff;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .product-detail_btn {
    width: 90%;
  }
  .product-detail_btn a {
    width: 100%;
  }
}

/*221214 slim R調整*/
.fix_price_refill {
  bottom: -20%;
}
.notes_txt {
  font-size: 10px;
  font-size: 1rem;
  display: block;
  line-height: 1.5;
}

.bot_btn a {
  width: 504px;
  margin: 0 auto 100px;
}
.sk_lnk a {
  width: 504px;
}
@media (max-width: 768px) {
  .fix_price_refill {
    bottom: -244%;
  }
  .bot_btn a {
    width: 100%;
  }
  .bot_btn a::before {
    width: 16px;
    height: 16px;
  }
  .sk_lnk a {
    width: 100%;
  }
}
/*230710 新規お申込み・お問合せエリア追加*/

.application_area {
  background-color: #fff;
  padding: 0 20px 60px;
}

.application_area h2 {
  color: #646464;
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 30px;
}
.application_area h2 img {
  width: 44px;
}
.application_area .balloon {
  color: #51b1bf;
  font-weight: bold;
  position: relative;
  display: inline-block;
  background-color: #fff;
  border: solid 1px #51b1bf;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}
.application_area .balloon::before,
.application_area .balloon::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.application_area .balloon::before {
  border: solid 12px transparent;
  border-top: solid 12px #51b1bf;
}
.application_area .balloon::after {
  border: solid 16px transparent;
  border-top: solid 16px #fff;
  margin-top: -5px;
}
.application_area .balloon p {
  line-height: 1.6;
  margin: 0;
}
.application_area .balloon .balloon_top {
  margin: 0;
  position: relative;
}
.application_area .balloon .balloon_top::before,
.application_area .balloon .balloon_top::after {
  position: relative;
  display: inline-block;
  content: '';
  background: #51b1bf;
  width: 1px;
  height: 18px;
  margin: 0 10px;
  margin-top: -0.2em;
  vertical-align: middle;
}
.application_area .balloon .balloon_top::before {
  transform: rotate(-30deg);
}
.application_area .balloon .balloon_top::after {
  transform: rotate(30deg);
}
.application_area .balloon .small_txt {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
}
.application_area .balloon .underline {
  font-size: 22px;
  font-size: 2.2rem;
  background: linear-gradient(transparent 70%, #f3ed2f 0%);
  margin-left: 0;
  display: inline;
}
.application_area .btn_wrap {
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}
.application_area .btn_wrap li {
  width: 100%;
  border: none;
  margin-bottom: 15px;
  padding: 0;
}
.application_area .btn_wrap li:first-child a {
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 80px;
  text-align: center;
  width: 100%;
  height: 80px;
  background-color: #ffb027;
  border-radius: 5px;
  position: relative;
  display: block;
}
.application_area .btn_wrap li:first-child a::before {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.32%22%20height%3D%2224.32%22%20viewBox%3D%220%200%2024.32%2024.32%22%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22a%22%20d%3D%22M23.674%2C6.821l-2.19%2C2.19a.571.571%2C0%2C0%2C1-.808%2C0L15.4%2C3.739a.571.571%2C0%2C0%2C1%2C0-.808l2.19-2.19a2.285%2C2.285%2C0%2C0%2C1%2C3.225%2C0L23.674%2C3.6A2.276%2C2.276%2C0%2C0%2C1%2C23.674%2C6.821ZM13.523%2C4.812%2C1.049%2C17.286.042%2C23.058a1.141%2C1.141%2C0%2C0%2C0%2C1.321%2C1.321l5.771-1.012L19.608%2C10.892a.571.571%2C0%2C0%2C0%2C0-.808L14.335%2C4.812a.576.576%2C0%2C0%2C0-.812%2C0ZM5.918%2C16.217a.662.662%2C0%2C0%2C1%2C0-.941l7.315-7.315a.665.665%2C0%2C1%2C1%2C.941.941L6.858%2C16.217a.662.662%2C0%2C0%2C1-.941%2C0ZM4.2%2C20.212h2.28v1.724l-3.064.537L1.942%2C21l.537-3.064H4.2Z%22%20transform%3D%22translate(-0.024%20-0.075)%22%2F%3E%3C%2Fsvg%3E');
  background-size: contain;
  position: relative;
  top: 0;
  left: -8px;
  display: inline-block;
}
.application_area .btn_wrap li:first-child a::after {
  content: '';
  width: 54px;
  height: 54px;
  background-image: url(/wp-content/themes/locca/images/copy_ico.svg);
  background-size: contain;
  position: absolute;
  top: -12px;
  right: -14px;
  display: inline-block;
}

.application_area .btn_wrap li:nth-child(2) a {
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 80px;
  padding: 3px 0px;
  background-color: #646464;
  border-radius: 5px;
  position: relative;
}
.application_area .btn_wrap li:nth-child(2) a p {
  margin: 0;
  line-height: 1.5;
}
.application_area .btn_wrap li:nth-child(2) a p.number {
  color: #fff;
  font-size: 22px;
  font-size: 2.2rem;
}
.application_area .btn_wrap li:nth-child(2) a p.number::before {
  width: 22px;
  height: 22px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2229.636%22%20height%3D%2229.636%22%20viewBox%3D%220%200%2029.636%2029.636%22%3E%3Cpath%20d%3D%22M.941%2C1.245%2C6.2.031a1.222%2C1.222%2C0%2C0%2C1%2C1.391.7L10.022%2C6.4a1.211%2C1.211%2C0%2C0%2C1-.349%2C1.417L6.607%2C10.326a18.75%2C18.75%2C0%2C0%2C0%2C8.965%2C8.965l2.509-3.066a1.213%2C1.213%2C0%2C0%2C1%2C1.417-.349L25.164%2C18.3a1.229%2C1.229%2C0%2C0%2C1%2C.708%2C1.4l-1.214%2C5.261a1.214%2C1.214%2C0%2C0%2C1-1.184.941A23.472%2C23.472%2C0%2C0%2C1%2C0%2C2.429%2C1.213%2C1.213%2C0%2C0%2C1%2C.941%2C1.245Z%22%20transform%3D%22translate(4.052%200)%20rotate(9)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M522.469%2C77.231h0c2.427%2C0%2C3.524%2C1.323%2C3.524%2C3.529%22%20transform%3D%22translate(-505.265%20-67.694)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3Cpath%20d%3D%22M522.469%2C77.231h0c4.891%2C0%2C7.1%2C2.665%2C7.1%2C7.109%22%20transform%3D%22translate(-503.419%20-71.993)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  position: relative;
  top: -2px;
}
.application_area .btn_wrap li:nth-child(2) a p.small_txt {
  font-size: 12px;
  font-size: 1.2rem;
}
.application_area .btn_wrap li:last-child {
  margin-bottom: 0;
}
.application_area .com_txt {
  margin: 0;
  text-align: center;
}
.inquiry_area {
  background-color: #dceff2;
  border: 1px solid #51b1bf;
  text-align: center;
  padding-bottom: 30px;
}
.inquiry_area .band {
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 30px;
  padding: 10px 0;
  background-color: #51b1bf;
}
.inquiry_area .inquiry_btn {
  width: auto;
  margin: 0 20px;
  display: block;
}
.inquiry_area .inquiry_btn li {
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
}
.inquiry_area .inquiry_btn li:nth-child(2) {
  margin: 0;
}
.inquiry_area .inquiry_btn li a {
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #51b1bf;
  border-radius: 5px;
  height: 80px;
  position: relative;
}
.inquiry_area .inquiry_btn li:first-of-type a {
  line-height: 80px;
}
.inquiry_area .inquiry_btn li:first-of-type a::before {
  content: '';
  width: 22px;
  height: 18px;
  background-image: url(/wp-content/themes/locca/images/web_ico.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  position: relative;
  top: 2px;
  left: -6px;
}
.inquiry_area .inquiry_btn li:first-of-type a::after {
  content: '';
  position: absolute;
  display: inline-block;
  right: 10px;
  top: 42%;
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
}
.inquiry_area .inquiry_btn li:nth-child(2) a {
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 80px;
  padding: 3px 0px;
  margin-bottom: 20px;
  background-color: #51b1bf;
  border-radius: 5px;
  position: relative;
}
.inquiry_area .inquiry_btn li:nth-child(2) a p {
  margin: 0;
  line-height: 1.5;
}
.inquiry_area .inquiry_btn li:nth-child(2) a p.number {
  color: #fff;
  font-size: 22px;
  font-size: 2.2rem;
}
.inquiry_area .inquiry_btn li:nth-child(2) a p.number::before {
  width: 22px;
  height: 22px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2229.636%22%20height%3D%2229.636%22%20viewBox%3D%220%200%2029.636%2029.636%22%3E%3Cpath%20d%3D%22M.941%2C1.245%2C6.2.031a1.222%2C1.222%2C0%2C0%2C1%2C1.391.7L10.022%2C6.4a1.211%2C1.211%2C0%2C0%2C1-.349%2C1.417L6.607%2C10.326a18.75%2C18.75%2C0%2C0%2C0%2C8.965%2C8.965l2.509-3.066a1.213%2C1.213%2C0%2C0%2C1%2C1.417-.349L25.164%2C18.3a1.229%2C1.229%2C0%2C0%2C1%2C.708%2C1.4l-1.214%2C5.261a1.214%2C1.214%2C0%2C0%2C1-1.184.941A23.472%2C23.472%2C0%2C0%2C1%2C0%2C2.429%2C1.213%2C1.213%2C0%2C0%2C1%2C.941%2C1.245Z%22%20transform%3D%22translate(4.052%200)%20rotate(9)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M522.469%2C77.231h0c2.427%2C0%2C3.524%2C1.323%2C3.524%2C3.529%22%20transform%3D%22translate(-505.265%20-67.694)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3Cpath%20d%3D%22M522.469%2C77.231h0c4.891%2C0%2C7.1%2C2.665%2C7.1%2C7.109%22%20transform%3D%22translate(-503.419%20-71.993)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  position: relative;
  top: -2px;
}
.inquiry_area .inquiry_btn li:nth-child(2) a p.small_txt {
  font-size: 12px;
  font-size: 1.2rem;
}
.inquiry_area .inquiry_btn li:nth-child(2) .txt_lnk {
  margin: 0;
  display: inline-block;
}
.inquiry_area .inquiry_btn li:nth-child(2) .txt_lnk a {
  color: #51b1bf;
  font-weight: bold;
  padding: 0 14px 0 0;
  margin: 0;
  height: auto;
  background-color: transparent;
  position: relative;
}
.inquiry_area .inquiry_btn li:nth-child(2) .txt_lnk a::after {
  content: '';
  position: absolute;
  display: inline-block;
  right: 0;
  top: 50%;
  bottom: 50%;
  width: 6px;
  height: 6px;
  border: 1px solid #51b1bf;
  border-color: #51b1bf #51b1bf transparent transparent;
  transform: rotate(45deg);
  margin-top: -4px;
}

/*PC
-------------------------*/
@media screen and (min-width: 768px) {
  .application_wrap {
    width: 504px;
    margin: 0 auto;
  }
  .application_area {
    padding: 0 0 40px;
  }
  footer .application_area {
    padding: 0 0 100px;
  }
  .application_area .btn_wrap {
    width: 100%;
    padding: 0;
  }
  .application_area .btn_wrap li:first-child a {
    font-size: 22px;
    font-size: 2.2rem;
    display: block;
  }
  .application_area .btn_wrap li:first-child a::before {
    width: 28px;
    height: 28px;
    top: 4px;
  }
  .application_area .btn_wrap li:nth-child(2) a {
    font-size: 16px;
    font-size: 1.6rem;
    height: 100px;
    padding: 6px 0px;
    display: block;
  }
  .application_area .btn_wrap li:nth-child(2) a p.number {
    font-size: 26px;
    font-size: 2.6rem;
  }
  .application_area .btn_wrap li:nth-child(2) a p.small_txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .application_area .btn_wrap li:nth-child(2)::before,
  .application_area .btn_wrap li:nth-child(2)::after {
    display: none;
  }
  .application_area .com_txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .inquiry_area .band {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 9px 0;
    margin-bottom: 40px;
  }
  .inquiry_area .inquiry_btn {
    width: 730px;
    margin: 0 auto;
    padding: 0;
    display: flex;
  }
  .inquiry_area .inquiry_btn li {
    margin: 0;
  }
  .inquiry_area .inquiry_btn li:first-of-type {
    margin-right: 50px;
  }
  .inquiry_area .inquiry_btn li:nth-child(2)::before,
  .inquiry_area .inquiry_btn li:nth-child(2)::after {
    display: none;
  }
  .inquiry_area .inquiry_btn li a {
    display: block;
  }
}

/*230727 ナビゲーション調整*/
.menu {
  width: 714px;
}
.menu li {
  width: 130px;
}
.menu li.usersvoice_anchor a .menu-icon img {
  margin: 0 0 0 10px;
}
.menu li.column_anchor a .menu-icon img {
  width: 40px;
}
.usersvoice h2 > img {
  width: 90px;
}
.content-slide .bx-wrapper .bx-controls-direction a {
  z-index: 100;
}
.CAL {
  margin-top: -40px;
  padding: 40px;
}
@media (max-width: 768px) {
  .menu {
    width: 100%;
  }
  .menu ul {
    flex-wrap: wrap;
  }
  .menu ul li {
    max-width: calc((100% - 10px * 3) / 3);
    flex: 0 0 calc((100% - 10px * 3) / 3);
  }
  .menu ul li:nth-child(-n + 3) {
    margin-bottom: 10px;
  }
  .usersvoice h2 > img {
    max-width: 18%;
  }
  .CAL.band_blue {
    margin-top: -20px;
    padding: 20px;
  }
}

/*230828 アイコン調整対応*/
@media (max-width: 768px) {
  .product__sp h2 img {
    max-width: 40%;
    width: 12%;
  }
}
@media screen and (min-width: 1024px) {
  .full-cont .product__sp h2 img {
    width: 8%;
  }
}

/*230925 instagramエリア追加対応*/
.instagram {
  margin: 0 20px;
}
.instagram h2 {
  color: #646464;
  margin-bottom: 20px;
}
.instagram h2 img {
  width: 50px;
  margin-bottom: 5px;
}
.instagram .txt_lead {
  text-align: center;
}
.instagram .insta {
  display: flex;
  flex-flow: column;
  justify-content: center;
  margin: 40px 0;
}
.instagram .insta .insta_box {
  line-height: 1.5;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
}
.instagram .insta .insta_box li {
  width: 32%;
  margin: 0 2% 2% 0;
  line-height: 1;
}
.instagram .insta .insta_box li:nth-of-type(3n) {
  margin-right: 0;
}
.instagram .insta .insta_box li:nth-of-type(n + 4) {
  margin-bottom: 0;
}
.instagram .insta .insta_box li .insta_box_img {
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.instagram .insta .insta_box li .insta_box_img img {
  height: 100%;
  left: 50%;
  max-width: initial;
  max-height: initial;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .instagram .insta {
    margin: 20px 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
  /*.instagram .insta .insta_box li {
    width: 33.3333%;
    padding: 2.5px;
  }*/
  .instagram .insta .insta_box li .insta_box_img {
    height: 28vw;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  .instagram .product-detail_btn {
    width: 100%;
  }
}
/*PC
-------------------------*/
@media screen and (min-width: 1024px) {
  .instagram {
    width: 920px;
    margin: 0 auto;
  }
}

/*20240524追加　ボタン色変更
-------------------------*/

.sp-menu_entry a {
  background-color: #00ad35;
}
.phone li:nth-child(2) {
  background-color: #00ad35;
}

.sp-phone {
  background-color: #00ad35;
}

.btn_entry--tel a {
  background-color: #00ad35;
}

.btn_form a {
  background-color: #00ad35;
}

.application_area .btn_wrap li:first-child a {
  background-color: #00ad35;
}
