@charset "UTF-8";
/*--------------------------------------------------------------
# common
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
# Forms
# Alignments
# Clearings
# Custom Style
--------------------------------------------------------------*/
html {
  font-size: medium;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body, button, input, select, optgroup, textarea {
  color: #333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "HiraKakuPro-W3", "Hiragino Kaku Gothic Pro", "Helvetica Neue", "游ゴシック Medium", meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  margin: 0 0 28px;
}

h1, h2, h3, h4 {
  line-height: 1.3;
}

h3 {
  font-size: 1.571em;
}

h4 {
  font-size: 1.429em;
}

h5 {
  font-size: 1.286em;
}

p {
  margin: 0;
}

dfn, cite, em, i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 14px;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark, ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 115%;
}

small {
  font-size: 86%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *::before, *::after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background: #fff; /* Fallback for when there is no custom background color defined. */
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

ul.disc li {
  padding-left: 1em;
  text-align: left;
  position: relative;
}

ul.disc li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

dl.disc dt {
  padding-left: 1em;
  text-align: left;
  position: relative;
}

dl.disc dt::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

dl.disc dd {
  padding-left: 1em;
}

ul.circle li {
  padding-left: 1em;
  text-align: left;
  position: relative;
}

ul.circle li::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}

ul.kome li {
  padding-left: 1em;
  text-align: left;
  position: relative;
}

ul.kome li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

ol.decimal {
  margin: 0 0 1.5em 1.5em;
  list-style: decimal;
}

ol.decimal > li > ol {
  list-style: lower-roman;
  margin: 0.5em 0 1em 1.5em;
}

.ind_mark {
  padding-left: 1em;
  text-indent: -1em;
  text-align: left;
}

li > ul.ind, li > ol.ind {
  margin-bottom: 0;
  margin-left: 1.5em;
}

li, dt, dd, th, td {
  line-height: 1.93;
}

dl, dt, dd {
  margin: 0;
}

img {
  height: auto; /* Make sure images are scaled correctly. */
  max-width: 100%; /* Adhere to container width. */
}

article img {
  vertical-align: top;
}

embed, iframe, object {
  max-width: 100%;
}

figure {
  margin: 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

a {
  color: #03c4e7;
}

/*a:visited { color: darken(#03c4e7, 15%); }
a:hover, a:focus, a:active { color: lighten(#03c4e7, 15%); }*/
a:focus, a:hover, a:active {
  outline: 0;
}

a:hover {
  opacity: 0.7;
}

a.linkArrow {
  color: #333;
}

a.linkArrow::before {
  content: "";
  display: inline-block;
  border: solid transparent;
  border-left-color: inherit;
  border-width: 3.5px 0 3.5px 6px;
  width: 0;
  height: 0;
  margin-right: 0.3em;
  vertical-align: middle;
}

a.linkArrow2 {
  color: #03c4e7;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button, input[type=button], input[type=reset], input[type=submit] {
  border: none;
  background: transparent;
  color: #333;
  padding: 0;
  outline: none;
  cursor: pointer;
}

button:hover, input[type=button]:hover, input[type=reset]:hover, input[type=submit]:hover {
  opacity: 0.7;
}

input[type=text], input[type=email], input[type=url], input[type=password], input[type=search], input[type=number], input[type=tel], input[type=range], input[type=date], input[type=month], input[type=week], input[type=time], input[type=datetime], input[type=datetime-local], input[type=color], textarea {
  color: #666;
  border: 1px solid #ddd;
  padding: 8px 0.8em;
}

input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=range]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, input[type=month]::-webkit-input-placeholder, input[type=week]::-webkit-input-placeholder, input[type=time]::-webkit-input-placeholder, input[type=datetime]::-webkit-input-placeholder, input[type=datetime-local]::-webkit-input-placeholder, input[type=color]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #bbb;
}

input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=range]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=color]::-moz-placeholder, textarea::-moz-placeholder {
  color: #bbb;
}

input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=range]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, input[type=month]:-ms-input-placeholder, input[type=week]:-ms-input-placeholder, input[type=time]:-ms-input-placeholder, input[type=datetime]:-ms-input-placeholder, input[type=datetime-local]:-ms-input-placeholder, input[type=color]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #bbb;
}

input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=url]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=search]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=range]::-ms-input-placeholder, input[type=date]::-ms-input-placeholder, input[type=month]::-ms-input-placeholder, input[type=week]::-ms-input-placeholder, input[type=time]::-ms-input-placeholder, input[type=datetime]::-ms-input-placeholder, input[type=datetime-local]::-ms-input-placeholder, input[type=color]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #bbb;
}

input[type=text]::placeholder, input[type=email]::placeholder, input[type=url]::placeholder, input[type=password]::placeholder, input[type=search]::placeholder, input[type=number]::placeholder, input[type=tel]::placeholder, input[type=range]::placeholder, input[type=date]::placeholder, input[type=month]::placeholder, input[type=week]::placeholder, input[type=time]::placeholder, input[type=datetime]::placeholder, input[type=datetime-local]::placeholder, input[type=color]::placeholder, textarea::placeholder {
  color: #bbb;
}

input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=range]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, input[type=month]::-webkit-input-placeholder, input[type=week]::-webkit-input-placeholder, input[type=time]::-webkit-input-placeholder, input[type=datetime]::-webkit-input-placeholder, input[type=datetime-local]::-webkit-input-placeholder, input[type=color]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #bbb;
}

input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=range]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, input[type=month]:-ms-input-placeholder, input[type=week]:-ms-input-placeholder, input[type=time]:-ms-input-placeholder, input[type=datetime]:-ms-input-placeholder, input[type=datetime-local]:-ms-input-placeholder, input[type=color]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #bbb;
}

input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=range]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=color]::-moz-placeholder, textarea::-moz-placeholder {
  color: #bbb;
}

input[type=text]:focus, input[type=email]:focus, input[type=url]:focus, input[type=password]:focus, input[type=search]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=range]:focus, input[type=date]:focus, input[type=month]:focus, input[type=week]:focus, input[type=time]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=color]:focus, textarea:focus {
  color: #111;
}

#fs_Register input[type=text], #fs_Register input[type=email], #fs_Register input[type=url], #fs_Register input[type=password], #fs_Register input[type=search], #fs_Register input[type=number], #fs_Register input[type=tel], #fs_Register input[type=range], #fs_Register input[type=date], #fs_Register input[type=month], #fs_Register input[type=week], #fs_Register input[type=time], #fs_Register input[type=datetime], #fs_Register input[type=datetime-local], #fs_Register input[type=color], #fs_Register textarea {
  padding: 13px 0.8em;
}

select {
  border: 1px solid #ddd;
  padding: 8px 0.8em;
}

textarea {
  width: 100%;
}

.fs-c-inputGroup, .fs-c-inputGroup--vertical, .fs-c-inputGroup--inline {
  border-color: #ddd;
  border-radius: 0;
}

.fs-c-inputGroup > button, .fs-c-inputGroup--vertical > button, .fs-c-inputGroup--inline > button {
  border-color: #ddd;
  border-radius: 0;
}

.fs-c-dropdown__menu {
  padding: 13px 7em 13px 0.8em;
}

button,
.btn_optionToggle,
.nolink {
  cursor: pointer;
}

.btn_img_small {
  max-width: 200px;
}

.btn_img_full {
  max-width: 335px;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clearfix::before, .clearfix::after, .float_list::before, .float_list::after, .login_content::before, .login_content::after, #header::before, #header::after, #main::before, #main::after, #footer::before, #footer::after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clearfix::after, .float_list::after, .login_content::after, #header::after, #main::after, #footer::after {
  clear: both;
}

.clear {
  clear: both;
}

/*--------------------------------------------------------------
# Custom Style
--------------------------------------------------------------*/
/*** common style ***/
body.lbOpen {
  overflow: hidden;
}

.sec_mbt,
.sec1 {
  margin-bottom: 55px;
}

.sec1:last-child {
  margin-bottom: 0;
}

.sec2 {
  margin-top: 30px;
}

.sec_lb {
  max-width: 540px;
  padding: 0 5.33%;
  margin: 0 auto 35px;
  text-align: center;
}

.sec_cont {
  display: block;
  padding: 0 5.33%;
}
.sec_cont + .sec_cont {
  margin-top: 45px;
}

.sec_cont_l {
  display: block;
  padding-left: 5.33%;
}

.sec_cont_r {
  display: block;
  padding-right: 5.33%;
}

.sec_inner {
  padding-left: 5.33% !important;
  padding-right: 5.33% !important;
}

.sec_inner_pad {
  padding-top: 40px;
  padding-bottom: 40px;
}

.sec_inner_wFull {
  margin: 0 -5.97%;
}

.sec_inner_wFull_r {
  margin-right: -5.97%;
}

.para {
  line-height: 1.714;
  text-align: justify;
}
.para > * + * {
  margin-top: 1.5em;
}

.para_lh {
  line-height: 1.714;
}

.h3 {
  margin-bottom: 1.682em;
  font-size: 1.571em; /*22px*/
  font-weight: 500;
  line-height: 1.318;
}

.h4 {
  margin-bottom: 1.682em;
  font-size: 1.286em; /*18px*/
  font-weight: 500;
  line-height: 1.389;
}

.h-lb01 {
  padding: 0.5em 0.2em 0.563em;
  margin-bottom: 0.625em;
  border-radius: 3em;
  background: #03c4e7;
  color: #fff;
  font-size: 1.143em;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.h-lb02 {
  padding: 0.667em 0.5em 0.722em;
  margin-bottom: 0.778em;
  background: #cdf7fe;
  color: #03c4e7;
  font-size: 1.286em;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.h-lb03 {
  padding: 0.111em 0 0.222em;
  margin-bottom: 1.333em;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
  font-size: 1.286em;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.h-lb04 {
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: solid 1px #000;
  font-size: 1.143em;
  font-weight: 500;
  line-height: 1.4;
}

.h-lb05 {
  padding: 0.667em 1.111em 0.722em;
  margin-bottom: 1.833em;
  background: #03c4e7;
  color: #fff;
  font-size: 1.286em;
  font-weight: 500;
  line-height: 1.4;
}

.h-lb06 {
  margin-bottom: 1.89em;
  color: #03c4e7;
  font-size: 1.286em;
  font-weight: 500;
  line-height: 1.4;
}

.h-arrow {
  padding-left: 20px !important;
  position: relative;
}

.h-arrow + .h-arrow {
  margin-left: 1em;
}

.h-arrow::before, .h-arrow::after {
  content: "" !important;
  display: block;
  position: absolute;
}

.h-arrow::before {
  background: #03c4e7;
  border-radius: 4px;
  width: 13px;
  height: 13px;
  top: 3px;
  left: 0;
}

.h-arrow::after {
  border: solid transparent;
  border-left-color: #fff;
  border-width: 3px 0 3px 4px;
  width: 0;
  height: 0;
  top: 6.5px;
  left: 5px;
}

a.h-arrow {
  color: inherit;
  text-decoration: none !important;
  line-height: 1.3;
}

a.h-arrow::before {
  top: 2px;
}

a.h-arrow::after {
  top: 5.5px;
}

.link01 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 15.929em; /*223px*/
  height: 3.214em; /*45px*/
  border: solid 1px #000;
  background: #fff;
  color: inherit;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}
.link01::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: block;
  width: 8px;
  height: 8px;
  margin: -4px -4px 0 0;
  border-right: solid 1px;
  border-top: solid 1px;
}

.lead_box_big p {
  font-size: 108%;
  line-height: 1.69;
}

.catch {
  margin-bottom: 1.25em;
  font-size: 1.714em; /*24px*/
  font-weight: 700;
  line-height: 1.375;
  text-align: center;
}
.catch.is-bal {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.catch.is-bal::before, .catch.is-bal::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 1.8em;
  border-left: solid 1px;
}
.catch.is-bal::before {
  left: 0;
  -webkit-transform: rotate(-26deg) translate(-0.9em, 0.5em);
          transform: rotate(-26deg) translate(-0.9em, 0.5em);
}
.catch.is-bal::after {
  right: 0;
  -webkit-transform: rotate(26deg) translate(0.9em, 0.5em);
          transform: rotate(26deg) translate(0.9em, 0.5em);
}

.check_list li {
  min-height: 27px;
  padding: 4px 0 0 25px;
  margin-bottom: 8px;
  position: relative;
}

.check_list li::before {
  content: url("../image/icon_check.png");
  display: block;
  width: 28px;
  height: 27px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0.77);
  transform: scale(0.77);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.list01 > li {
  padding: 7px 0;
  border-bottom: solid 1px #ccc;
}
.list01 > li:last-child {
  border-bottom: none;
}

.box01 {
  padding: 35px 20px;
  border-radius: 15px;
  border: solid 4px #b8ecf5;
  background: #fff;
}

.table {
  border-collapse: collapse;
  width: 100%;
}
.table th,
.table td {
  border: solid 1px #ddd;
  vertical-align: middle;
}
.table th {
  padding: 4px 13px;
  background: #eee;
}
.table td {
  padding: 4px 10px;
  background: #fff;
}

.table_dl {
  display: table;
  border-collapse: collapse;
  width: 100%;
}
.table_dl > dl {
  display: table-row;
}
.table_dl > dl > dt,
.table_dl > dl > dd {
  display: table-cell;
  border: solid 1px #ddd;
  vertical-align: middle;
}
.table_dl > dl > dt {
  width: 90px;
  padding: 4px 13px;
  background: #eee;
}
.table_dl > dl > dd {
  padding: 4px 10px;
  background: #fff;
}

.about_dl > dl + dl {
  margin-top: 18px;
}

.about_dl > dl dt, .about_dl > dl dd {
  line-height: 1.5;
}

.about_dl > dl > dt {
  background: url("../image2/line_dot_b.png") 0 100% repeat-x;
  padding: 0 0 5px 1.3em;
  margin: 0 0 8px;
  position: relative;
}

.about_dl > dl > dt::before {
  content: "■";
  position: absolute;
  top: 0;
  left: 0;
}

.shop-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 25px auto -15px;
}
.shop-list > li {
  width: 47.76%;
  margin-bottom: 15px;
}
.shop-list img {
  width: 100%;
  border-radius: 9px;
}

.service_dl > dl > dt {
  background: #e6ded6;
  padding: 7px 10px 5px 30px;
  margin-bottom: 10px;
  line-height: 1.3;
  position: relative;
}

.service_dl > dl > dt::before, .service_dl > dl > dt::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
}

.service_dl > dl > dt::before {
  background: #57290d;
  width: 13px;
  height: 13px;
  top: 9px;
  left: 10px;
}

.service_dl > dl > dt::after {
  background: #e6ded6;
  width: 5px;
  height: 5px;
  top: 13px;
  left: 14px;
}

.service_dl > dl > dd {
  margin-bottom: 15px;
}

.service_dl > dl > dd, .service_dl > dl > dd dt, .service_dl > dl > dd dd, .service_dl > dl > dd li {
  line-height: 1.5;
}

.float_dl {
  overflow: hidden;
}

.float_dl > dt, .float_dl > dd {
  float: left;
}

.float_dl > dt {
  clear: both;
}

.table1 th, .table1 td {
  border: solid 1px #ddd;
  height: 45px;
  padding: 5px 14px;
  text-align: left;
  line-height: 1.3;
}

.table1 th {
  background: #fcf9df;
  font-weight: 400;
}

.table1 td {
  background: #fff;
}

.img_kado {
  border-radius: 15px;
}

.img_kado_s {
  border-radius: 9px;
}

.img_maru {
  border-radius: 50%;
}

/*.fig_maru_w { border: solid 4px #fff; border-radius: 50%; box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); overflow: hidden; }
.fig_maru_w img { width: 100%; vertical-align: top; }*/
.figcap {
  padding: 2px 0;
  margin: 2px 0 5px;
  text-align: center;
  font-size: 115%;
  line-height: 1.3;
}

.figname {
  margin-top: 20px;
  text-align: center;
  font-size: 1.286em;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.figname .small {
  font-size: 0.889em;
}

.map {
  text-align: center;
}

.map iframe {
  width: 100%;
  height: 280px;
  vertical-align: top;
}

#maps {
  width: 100%;
  height: 0;
  padding-top: 280px;
}

.iblock {
  display: inline-block;
}

.hide_box {
  overflow: hidden;
}

.for_sp, .for_sp_i, .for_tab-sp, .for_tab-sp_i {
  display: none !important;
}

/* 404 & search */
.error404 .page-content .widget-title, .search-no-results .page-content .widget-title {
  font-size: 122%;
}

.search-form {
  margin: 10px 0 20px;
}

@media screen and (max-width: 959px) {
  .for_pc {
    display: none !important;
  }
  .for_tab-sp {
    display: block !important;
  }
  .for_tab-sp_i {
    display: inline !important;
  }
}
@media screen and (max-width: 599px) {
  .for_pc-tab {
    display: none !important;
  }
  .for_sp {
    display: block !important;
  }
  .for_sp_i {
    display: inline !important;
  }
  /* 404 & search */
  .search-form .search-field {
    padding: 6px 0.4em;
  }
}
.float_list li {
  float: left;
}

.flex_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.w100 {
  width: 100%;
}

.red, .fs-c-requiredMark::before {
  color: #cf1848;
}

.ored {
  color: #f31f03;
}

.blown {
  color: #57290d;
}

.orange {
  color: #fd8403;
}

.yellow {
  color: #fcc401;
}

.kon {
  color: #000033;
}

.skyblue {
  color: #03c4e7;
}

.bg_cream {
  background: #fdf0b6 url("../image2/bg_pt_cream.jpg");
  background-size: 375px;
}

.bg_skyblue {
  background: #d1f6fb url("../image2/bg_pt_skyblue.jpg");
  background-size: 375px;
}

.n {
  font-weight: 400;
}

.m {
  font-weight: 500;
}

.b {
  font-weight: 700;
}

.txt12 {
  font-size: 0.857em;
}

.txt14 {
  font-size: 1em;
}

.txt16 {
  font-size: 1.143em;
}

.txt18 {
  font-size: 1.286em;
}

.txt20 {
  font-size: 1.429em;
}

.tume {
  letter-spacing: -0.03em;
}

.tume2 {
  letter-spacing: -0.1em;
}

.t_tume {
  margin-top: 0;
}

.t_tumeHalf {
  margin-top: 14px;
}

.line-h_tume {
  line-height: 1.5;
}

.bt0 {
  margin-bottom: 0 !important;
}

.bt5 {
  margin-bottom: 5px !important;
}

.bt10 {
  margin-bottom: 10px !important;
}

.bt15 {
  margin-bottom: 15px !important;
}

.bt20 {
  margin-bottom: 20px !important;
}

.bt25 {
  margin-bottom: 25px !important;
}

.bt30 {
  margin-bottom: 30px !important;
}

.bt40 {
  margin-bottom: 40px !important;
}

.bt50 {
  margin-bottom: 50px !important;
}

.bt60 {
  margin-bottom: 60px !important;
}

.bt70 {
  margin-bottom: 70px !important;
}

.bt80 {
  margin-bottom: 80px !important;
}

.tp0 {
  margin-top: 0 !important;
}

.tp5 {
  margin-top: 5px !important;
}

.tp10 {
  margin-top: 10px !important;
}

.tp15 {
  margin-top: 15px !important;
}

.tp20 {
  margin-top: 20px !important;
}

.tp25 {
  margin-top: 25px !important;
}

.tp30 {
  margin-top: 30px !important;
}

.tp35 {
  margin-top: 35px !important;
}

.fleft {
  float: left;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.fright {
  float: right;
}

.tleft {
  text-align: left;
}

.tcenter {
  text-align: center;
}

.tright {
  text-align: right;
}

.tkinto {
  text-align: justify;
}

/* slider */
.swiper-button-next,
.swiper-button-prev {
  width: 16px;
  height: 30px;
  margin-top: -15px;
  background-size: contain;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 21.06%;
  right: auto;
  margin-left: -8px;
  background-image: url("../image2/icon_slider_prev.svg");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  left: auto;
  right: 21.06%;
  margin-right: -8px;
  background-image: url("../image2/icon_slider_next.svg");
}

/* flow list */
.flow_list .item_box {
  position: relative;
  padding: 10px 0 25px;
}
.flow_list .item_box::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 15.2%;
  bottom: 0;
  -webkit-transform: translate(0, 46.875%);
          transform: translate(0, 46.875%);
  width: 29px;
  height: 32px;
  background: url("../image2/flow_arrow.svg");
  background-size: contain;
}
.flow_list .item_box:nth-child(odd) {
  background: #fdf0b6 url("../image2/bg_pt_cream.jpg");
}
.flow_list .item_box:nth-child(even) {
  background: #fff;
}
.flow_list .item_box:last-child {
  padding-bottom: 10px;
}
.flow_list .item_box:last-child::after {
  display: none;
}
.flow_list .sec_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flow_list .item_img {
  max-width: 180px;
  width: 30.74%;
  padding-top: 15px;
}
.flow_list .item_txt {
  width: 64.18%;
}
.flow_list .item_lb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 1.286em;
}
.flow_list .item_icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 40.9%;
  margin-bottom: -8px;
}

/* guide list */
.guide_list > div {
  margin-bottom: 1px;
}
.guide_list > div > dt {
  position: relative;
  padding: 0.694em 0.5em 0.694em 2.222em;
  background: #fcd003;
  font-size: 1.286em; /*18px*/
  font-weight: 500;
  line-height: 1.4;
}
.guide_list > div > dt::before {
  content: "＋";
  position: absolute;
  left: 0.833em;
  top: 0.694em;
}
.guide_list > div > dt.is-active::before {
  content: "－";
}
.guide_list > div > dd {
  display: none;
  margin-top: 22px;
  margin-bottom: 50px;
}
.guide_list > div dd {
  line-height: 1.714;
}

/*--------------------------------------------------------------
# header
--------------------------------------------------------------*/
/*** header ***/
#tokutei {
  display: block;
}

#estimate03, #tokutei {
  padding-top: 80px;
  margin-top: -80px;
}

.fs-l-side {
  display: none;
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-right: 375px;
}
.fs-l-side::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
}
.fs-l-side .logo_pc {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 100%;
  padding-right: 375px;
  text-align: center;
}

#pcSlider .swiper-slide-active img,
#pcSlider .swiper-slide-duplicate-active img,
#pcSlider .swiper-slide-prev img {
  -webkit-animation: zoomUp 7s linear 0s normal both;
          animation: zoomUp 7s linear 0s normal both;
}
#pcSlider img {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.fs-l-page {
  width: 100%;
  padding-top: 75px;
  margin-left: auto;
  background: #fff;
  overflow: hidden;
}

#hd_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  width: 100%;
  height: 75px;
  padding-left: 5.33%;
  padding-right: 60px;
  background: #fff;
}

#hd_logo {
  display: inline-block;
  margin: 0;
  font-size: 10px;
  line-height: 1;
}

#hd_btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  /*.btn_icon {

  }*/
}
#hd_btn .btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  line-height: 1;
  text-align: center;
}
#hd_btn .btn_list li.login.my-true,
#hd_btn .btn_list li.logout.my-false {
  display: none;
}
#hd_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: inherit;
  text-decoration: none;
}
#hd_btn .btn_txt {
  font-size: 8.5px;
  font-weight: 500;
}

#toggle_btn {
  display: block;
  position: fixed;
  z-index: 1000;
  right: 0;
  top: 0;
  width: 60px;
  height: 75px;
  padding: 0;
  background: transparent;
  color: #000;
  font-size: 0;
  cursor: pointer;
}
#toggle_btn span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 1px;
  margin: -2px 0 0 -10px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
#toggle_btn span::before, #toggle_btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
#toggle_btn span::before {
  top: 4px;
}
#toggle_btn span::after {
  top: -4px;
}

#toggle_menu {
  display: none;
  position: fixed;
  z-index: 800;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fcd003;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}
#toggle_menu .lb {
  padding: 24px 20px;
  margin: 0;
  border-bottom: solid 1px #b19e48;
  font-size: 1em;
}

.toggle_inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 75px 20px 70px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#gnv a {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
}
#gnv .nolink {
  display: block;
  position: relative;
}
#gnv > li {
  border-bottom: solid 1px #b19e48;
}
#gnv > li > a {
  padding: 15px 30px 14px 22px;
}
#gnv > li > a::before {
  content: "";
  display: block;
  position: absolute;
  right: 18px;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: solid 1px;
  border-top: solid 1px;
}
#gnv > li > .nolink {
  padding: 15px 30px 14px 22px;
}
#gnv > li > .nolink::before {
  content: "";
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  border: solid transparent;
  border-top-color: #000;
  border-width: 12px 7px 0 7px;
  /*border-top-color: transparent;
  border-bottom-color: #000;
  border-width: 0 7px 12px 7px;*/
}
#gnv .child {
  padding: 0 0 0.25em 2.375em;
}
#gnv .child li {
  margin-bottom: 0.875em;
}
#gnv .child a {
  padding-left: 1.625em;
}
#gnv .child a::before {
  content: "→";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.gnvOpen {
  overflow: hidden;
}
.gnvOpen #hd_line {
  background: transparent;
}
.gnvOpen #toggle_btn span::before, .gnvOpen #toggle_btn span::after {
  top: 0;
}
.gnvOpen #toggle_btn span::before {
  -webkit-transform: rotate(-45deg) translateY(0px);
  transform: rotate(-45deg) translateY(0px);
}
.gnvOpen #toggle_btn span::after {
  -webkit-transform: rotate(45deg) translateY(0px);
  transform: rotate(45deg) translateY(0px);
}
.gnvOpen #toggle_menu {
  display: block;
}

@media screen and (min-width: 769px) {
  .fs-l-side {
    display: block;
  }
  .fs-l-page,
  #hd_line,
  #toggle_menu {
    width: 375px;
  }
  .fs-l-page {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  #hd_line {
    padding-left: 20px;
  }
  /* PC端末のみに限定すること */
  .gnvOpen .fs-l-side,
  .gnvOpen .fs-l-side .logo_pc {
    padding-right: 392px;
  }
  .gnvOpen #hd_line {
    right: 17px;
  }
  .gnvOpen #toggle_btn {
    right: 17px;
  }
  .gnvOpen #toggle_menu {
    width: 392px;
  }
  .gnvOpen .toggle_inner {
    padding-right: 37px;
  }
}
/* Page Header */
#page-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 150px;
  padding-top: 16px;
  background: 50% 50% no-repeat;
  background-size: cover;
}
#page-header::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.45;
}

#page-sub-header {
  position: relative;
  height: 125px;
  margin-bottom: 15px;
  background: #03c4e7;
  color: #fff;
}
#page-sub-header::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 62.68%);
          transform: translate(-50%, 62.68%);
  width: 67px;
  height: 67px;
  background: url("../image2/pageSubTitleIcon.png") 50% 50% no-repeat;
  background-size: contain;
}
.fs-body-product-basicpack5 #page-sub-header::before {
  background-image: url("../image2/pageSubTitleIcon-pack5.png");
}
.fs-body-product-basicpack10 #page-sub-header::before {
  background-image: url("../image2/pageSubTitleIcon-pack10.png");
}
.fs-body-product-basicpack20 #page-sub-header::before {
  background-image: url("../image2/pageSubTitleIcon-pack20.png");
}
.fs-body-product-futon #page-sub-header::before {
  background-image: url("../image2/pageSubTitleIcon-futon.png");
}

.page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  max-width: 100%;
  width: 500px;
  height: 100%;
  padding: 0 5.33%;
  margin: 0 auto;
  text-align: center;
}

.page-title-txt {
  display: block;
  width: 100%;
  height: 100%;
  background: 50% 50% no-repeat;
  background-size: 100%;
  font-size: 0;
}

.fs-body-product-first-time .page-title-txt {
  background-image: url("../image2/pageSubTitle-first.png");
}
.fs-body-product-basicpack5 .page-title-txt {
  background-image: url("../image2/pageSubTitle-pack5.png");
}
.fs-body-product-basicpack10 .page-title-txt {
  background-image: url("../image2/pageSubTitle-pack10.png");
}
.fs-body-product-basicpack20 .page-title-txt {
  background-image: url("../image2/pageSubTitle-pack20.png");
}
.fs-body-product-futon .page-title-txt {
  background-image: url("../image2/pageSubTitle-futon.png");
}

.cat-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cat-nav__item {
  width: 50%;
}
.cat-nav__item:nth-child(even) {
  border-left: solid 1px #ccc;
}
.cat-nav__item:nth-child(n+3) {
  border-top: solid 1px #ccc;
}
.cat-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 64px;
  background: #fff;
  color: inherit;
  font-size: 1.143em; /*16px*/
  font-weight: 500;
  text-decoration: none;
}
.cat-nav__link:hover,
.fs-body-product-basicpack5 .cat-nav__item--pack5 .cat-nav__link,
.fs-body-product-basicpack10 .cat-nav__item--pack10 .cat-nav__link,
.fs-body-product-basicpack20 .cat-nav__item--pack20 .cat-nav__link,
.fs-body-product-futon .cat-nav__item--futon .cat-nav__link  {
  background: #fcd003;
}
.cat-nav__link:hover {
  opacity: 1;
}

#bread {
  display: none !important;
  padding: 11px 0 7px;
  text-align: left;
}
#bread li {
  display: inline-block;
  font-size: 12px;
}
#bread li::before {
  content: ">";
  margin: 0 0.5em;
}
#bread li:first-child::before {
  display: none;
}
#bread .fs-c-breadcrumb__list {
  display: block;
  max-width: 1100px;
  width: 90%;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

/* Page Content */
#page-content {
  padding: 55px 0;
}

/*@media screen and (max-width: 959px) {
    #header .btn_box { position: static; right: 0; }
    #header .link_list { padding-top: 0; position: absolute; top: 0; right: 80px; }
    #header .link_list li { margin: 0; }
    #header .link_list a { display: block; padding: 24.5px 18px; }
    #header .mp_list { display: table; width: 100%; padding: 0; position: absolute; top: 80px; left: 0; }
    #header .mp_list li { display: table-cell; width: 33.33%; margin: 0; }
    #header .mp_list a { border-radius: 0; width: 100%; height: 60px; line-height: 60px; padding-top: 0; text-align: center; }
    #header .mp_list a img { display: inline; vertical-align: middle; margin: 0 5px; }
}*/
.fs-preview-header {
  display: none;
}

/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
/* Page Footer */
#page-footer {
  background: url("../image2/bg_canvas2.jpg");
  position: relative;
}

#page-footer:after {
  content: "";
  display: block;
  background: url("../image2/top-blog__line2.png") 50% 100% no-repeat;
  background-size: cover;
  width: 100%;
  height: 0;
  padding-top: 13px;
  padding-top: 0.93%;
  position: absolute;
  left: 0;
  bottom: 0;
}

#page-footer .sec_inner {
  padding: 32px 0 42px;
  position: relative;
}

#page-footer .bnr_trial {
  width: 19.18%;
  margin: 0;
  position: absolute;
  left: 0;
  bottom: -11px;
  z-index: 1;
}

#page-footer .bnr_list {
  float: right;
  width: 100%;
  padding-left: 19.18%;
  margin: 0 -0.56%;
  font-size: 0;
  text-align: center;
}

#page-footer .bnr_list li {
  display: inline-block;
  width: 47.76%;
  margin: 1.12%;
  font-size: 14px;
}

/*** footer ***/
#footer_line {
  padding: 45px 0 40px;
  background: #fcd003;
  text-align: center;
}
#footer_line a {
  color: inherit;
  text-decoration: none;
}

/*#footer_line .sns { margin-bottom: 20px; }
#footer_line .sns li { display: inline-block; vertical-align: middle; margin: 0 8px; }
#footer_line .bnr { max-width: 600px; margin: 0 auto -20px; font-size: 0; }
#footer_line .bnr li { display: inline-block; vertical-align: middle; font-size: 14px; width: 46%; margin: 0 2% 20px; }
#footer_line .bnr li img { vertical-align: top; }*/
#pagetop { position: fixed; z-index: 100; right: 0; bottom: 0; transform: translate(0, 100%); transition: transform .4s; }
body.is-scroll #pagetop { transform: translate(0, 0); }
#pagetop img { vertical-align: top; }
.fs-p-footerUtilityMenu {
  margin-top: 25px;
  text-align: left;
}
.fs-pt-menu__item--lv1 {
  border-bottom: solid 1px #000;
}
.fs-pt-menu__link--lv1 {
  display: block;
  position: relative;
  padding: 10px 0;
}
.fs-pt-menu__link--lv1::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: block;
  width: 8px;
  height: 8px;
  margin: -4px -4px 0 0;
  border-right: solid 1px;
  border-top: solid 1px;
}

#copy {
  margin-top: 35px;
  text-align: center;
}

/*@media screen and (min-width: 1400px) {
    #pagetop { right: -90px; }
}*/